OWA development

Y

Yahya Saad

Dear Sirs,

I have a web page with the code shown below, I am trying to display
items of a public folder called testEFS, I copied this code mainly from the
Exchange SDK, but I am still not able to publish this page. Should it be
published in a public folder or on the IIS? Since whenever I run the page I
receive the custom error "You are not authorized to view this page.". After
being able to display the items in that Public Folder I would like to search
the through it accoding to specific criteria.

______________________________________________________________________


<html XMLNS:wf>
<head>
<title>View Public Folder</title>

<STYLE>
@media all {
wf\:view
{ behavior:url(/exchweb/controls/wfview.htc); }
}
</STYLE>
</head>
<body>
<H1>View testEFS</H1>

<p>
<wf:view id="View1"
style="width:100%;height:80%"
URL="/public/testEFS"
storeType="1"
RowsPerPage="20"
viewDescriptor="View1_XML"
viewClass="/exchweb/views/wfview.xsl"
linkspec="%DataUrl%"
navType=0>

<XML id="View1_XML">
<view
xmlns:v="http://schemas.microsoft.com/schemas/view"
xmlns:d="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882">
<imagepath>/exchweb/img/</imagepath>
<name>Normal</name>
<column><heading>Custom property</heading>
<prop>customprop</prop>
<type>string</type>
<width>100</width>
<sortable>1</sortable>
<format></format>
<visible>1</visible>
<multivalued>0</multivalued>
<style></style>
<checkbox>0</checkbox>
</column>
<column><heading>Custom property</heading>
<prop>customprop</prop>
</column>
</view>
</XML>
</wf:view>
</form>
</body></html>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top