exchangefreaks.com Forum Index
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

HTTP/1.1 404 Resource Not Found - Security Descriptor

 
Post new topic   Reply to topic    exchangefreaks.com Forum Index -> MS Exchange 2000 Development
Author Message
Raj



Joined: 05 Aug 2007
Posts: 21

PostPosted: Fri Jul 20, 2007 7:50 am    Post subject: HTTP/1.1 404 Resource Not Found - Security Descriptor Reply with quote

Hi All,

This question is related to 404 (resource not found)
I am using WebDav technology to get folder details including security
descriptor. I am having a WebDav SQL Query to get folder details. If the
folders residing on the same exchange server where I am connecting to , I get
all details including security descriptor with out any problem. But if the
folders are residing on another exchange serer, I get details of folder but
not security descriptor! - Getting 404 error. So I have to go through each
folder individually to get the Security descriptor. IF not clear, I will
explain with examples

I have two exchange servers say - Exchange1 and Exchange2
Exchange1 contain say Folder F1 and contain subfolders F11,F12,F13,F14 and
so on
Exchange2 contain say Folder F2 and subfolders F21,F22,F23,F24 and so on

I am connecting to one exchange server - Say Exchange1 to get folder details.
When I use my SQL query to get all subfolder details from F1, I get details
including Security Descriptor but when I try to get subfolder details of F2
from Exchange1, I get details except Security Descriptor. The Status of
Security Descriptor is '404 Resource No Found'

So My questions are

1. What is the best option to solve this issue?
2. Any setting in Exchange server(Exchange1) will help us to get Security
Descriptor of other folders residing on other exchange servers?
3. What property help us to get the name of real exchange server where the
folders and subfolders reside?

Thanks

Raj

Archived from group: microsoft>public>exchange2000>development
Back to top
View user's profile Send private message
Glen Scales [MVP]



Joined: 05 Aug 2007
Posts: 92

PostPosted: Mon Jul 23, 2007 5:14 pm    Post subject: Re: HTTP/1.1 404 Resource Not Found - Security Descriptor Reply with quote

I'm pretty sure that you will need to query the server where there is a
local replica of the folder in question you trying to retrieve the Security
descriptor from. The folder hierarchy should be replicated to every Public
Folder Server but this doesn't contain the DACL's for the folder. What you
should be able to do is retrieve the replica list property
http://schemas.microsoft.com/mapi/proptag/0x66980102 which when you working
in WebDAV is a list of servers that contain a replica of this public folder
stored as Base64 encoded null terminated strings . Once you decode the
property you should then be able to firstly check if there's a replica on
the server your working with and query an appropriate server if not.

cheers
Glen



"Raj" wrote in message @microsoft.com...
> Hi All,
>
> This question is related to 404 (resource not found)
> I am using WebDav technology to get folder details including security
> descriptor. I am having a WebDav SQL Query to get folder details. If the
> folders residing on the same exchange server where I am connecting to , I
> get
> all details including security descriptor with out any problem. But if the
> folders are residing on another exchange serer, I get details of folder
> but
> not security descriptor! - Getting 404 error. So I have to go through each
> folder individually to get the Security descriptor. IF not clear, I will
> explain with examples
>
> I have two exchange servers say - Exchange1 and Exchange2
> Exchange1 contain say Folder F1 and contain subfolders F11,F12,F13,F14 and
> so on
> Exchange2 contain say Folder F2 and subfolders F21,F22,F23,F24 and so on
>
> I am connecting to one exchange server - Say Exchange1 to get folder
> details.
> When I use my SQL query to get all subfolder details from F1, I get
> details
> including Security Descriptor but when I try to get subfolder details of
> F2
> from Exchange1, I get details except Security Descriptor. The Status of
> Security Descriptor is '404 Resource No Found'
>
> So My questions are
>
> 1. What is the best option to solve this issue?
> 2. Any setting in Exchange server(Exchange1) will help us to get Security
> Descriptor of other folders residing on other exchange servers?
> 3. What property help us to get the name of real exchange server where the
> folders and subfolders reside?
>
> Thanks
>
> Raj
>
Back to top
View user's profile Send private message
Raj



Joined: 05 Aug 2007
Posts: 21

PostPosted: Mon Jul 23, 2007 7:40 am    Post subject: Re: HTTP/1.1 404 Resource Not Found - Security Descriptor Reply with quote

Hi Glen,

Thank you so much. Using that property I can see that list of exchange
servers which contain local replica of the folders.

one Doubt is, If a root folder local replica is present in a particular
exchange server, all subfolders also replicated on the same server?

DO you know what settings in exchange side to set so that all folders are
locally replicated?


Regards

Rajesh




"Glen Scales [MVP]" wrote:

> I'm pretty sure that you will need to query the server where there is a
> local replica of the folder in question you trying to retrieve the Security
> descriptor from. The folder hierarchy should be replicated to every Public
> Folder Server but this doesn't contain the DACL's for the folder. What you
> should be able to do is retrieve the replica list property
> http://schemas.microsoft.com/mapi/proptag/0x66980102 which when you working
> in WebDAV is a list of servers that contain a replica of this public folder
> stored as Base64 encoded null terminated strings . Once you decode the
> property you should then be able to firstly check if there's a replica on
> the server your working with and query an appropriate server if not.
>
> cheers
> Glen
>
>
>
> "Raj" wrote in message
> @microsoft.com...
> > Hi All,
> >
> > This question is related to 404 (resource not found)
> > I am using WebDav technology to get folder details including security
> > descriptor. I am having a WebDav SQL Query to get folder details. If the
> > folders residing on the same exchange server where I am connecting to , I
> > get
> > all details including security descriptor with out any problem. But if the
> > folders are residing on another exchange serer, I get details of folder
> > but
> > not security descriptor! - Getting 404 error. So I have to go through each
> > folder individually to get the Security descriptor. IF not clear, I will
> > explain with examples
> >
> > I have two exchange servers say - Exchange1 and Exchange2
> > Exchange1 contain say Folder F1 and contain subfolders F11,F12,F13,F14 and
> > so on
> > Exchange2 contain say Folder F2 and subfolders F21,F22,F23,F24 and so on
> >
> > I am connecting to one exchange server - Say Exchange1 to get folder
> > details.
> > When I use my SQL query to get all subfolder details from F1, I get
> > details
> > including Security Descriptor but when I try to get subfolder details of
> > F2
> > from Exchange1, I get details except Security Descriptor. The Status of
> > Security Descriptor is '404 Resource No Found'
> >
> > So My questions are
> >
> > 1. What is the best option to solve this issue?
> > 2. Any setting in Exchange server(Exchange1) will help us to get Security
> > Descriptor of other folders residing on other exchange servers?
> > 3. What property help us to get the name of real exchange server where the
> > folders and subfolders reside?
> >
> > Thanks
> >
> > Raj
> >
>
>
>
Back to top
View user's profile Send private message
Glen Scales [MVP]



Joined: 05 Aug 2007
Posts: 92

PostPosted: Tue Jul 24, 2007 12:50 pm    Post subject: Re: HTTP/1.1 404 Resource Not Found - Security Descriptor Reply with quote

> one Doubt is, If a root folder local replica is present in a particular
> exchange server, all subfolders also replicated on the same server?

No you cant count on this I've setup public folder specifically so there
where different replica and visibility levels with Subfolders to meet
certain project requirements where there where geographic dispersed servers
and project teams.

> DO you know what settings in exchange side to set so that all folders are
> locally replicated?

There is no one setting to do this you really need to deal with the replicas
on each folder, generally when a new folder is created it will inherit the
properties (eg security and replicas) from the root folder. A good tool for
looking at Public folder configuration is Pfdavadmin

Cheers
Glen


"Raj" wrote in message @microsoft.com...
> Hi Glen,
>
> Thank you so much. Using that property I can see that list of exchange
> servers which contain local replica of the folders.
>
> one Doubt is, If a root folder local replica is present in a particular
> exchange server, all subfolders also replicated on the same server?
>
> DO you know what settings in exchange side to set so that all folders are
> locally replicated?
>
>
> Regards
>
> Rajesh
>
>
>
>
> "Glen Scales [MVP]" wrote:
>
>> I'm pretty sure that you will need to query the server where there is a
>> local replica of the folder in question you trying to retrieve the
>> Security
>> descriptor from. The folder hierarchy should be replicated to every
>> Public
>> Folder Server but this doesn't contain the DACL's for the folder. What
>> you
>> should be able to do is retrieve the replica list property
>> http://schemas.microsoft.com/mapi/proptag/0x66980102 which when you
>> working
>> in WebDAV is a list of servers that contain a replica of this public
>> folder
>> stored as Base64 encoded null terminated strings . Once you decode the
>> property you should then be able to firstly check if there's a replica on
>> the server your working with and query an appropriate server if not.
>>
>> cheers
>> Glen
>>
>>
>>
>> "Raj" wrote in message
>> @microsoft.com...
>> > Hi All,
>> >
>> > This question is related to 404 (resource not found)
>> > I am using WebDav technology to get folder details including security
>> > descriptor. I am having a WebDav SQL Query to get folder details. If
>> > the
>> > folders residing on the same exchange server where I am connecting to ,
>> > I
>> > get
>> > all details including security descriptor with out any problem. But if
>> > the
>> > folders are residing on another exchange serer, I get details of folder
>> > but
>> > not security descriptor! - Getting 404 error. So I have to go through
>> > each
>> > folder individually to get the Security descriptor. IF not clear, I
>> > will
>> > explain with examples
>> >
>> > I have two exchange servers say - Exchange1 and Exchange2
>> > Exchange1 contain say Folder F1 and contain subfolders F11,F12,F13,F14
>> > and
>> > so on
>> > Exchange2 contain say Folder F2 and subfolders F21,F22,F23,F24 and so
>> > on
>> >
>> > I am connecting to one exchange server - Say Exchange1 to get folder
>> > details.
>> > When I use my SQL query to get all subfolder details from F1, I get
>> > details
>> > including Security Descriptor but when I try to get subfolder details
>> > of
>> > F2
>> > from Exchange1, I get details except Security Descriptor. The Status of
>> > Security Descriptor is '404 Resource No Found'
>> >
>> > So My questions are
>> >
>> > 1. What is the best option to solve this issue?
>> > 2. Any setting in Exchange server(Exchange1) will help us to get
>> > Security
>> > Descriptor of other folders residing on other exchange servers?
>> > 3. What property help us to get the name of real exchange server where
>> > the
>> > folders and subfolders reside?
>> >
>> > Thanks
>> >
>> > Raj
>> >
>>
>>
>>
Back to top
View user's profile Send private message
Raj



Joined: 05 Aug 2007
Posts: 21

PostPosted: Tue Jul 24, 2007 11:50 am    Post subject: Re: HTTP/1.1 404 Resource Not Found - Security Descriptor Reply with quote

Thanks Glen for the response.

So there is not option to set replica at the root which inherit to already
exisitng folder!!!.
I am having lot of folders and it may be hard to do this for indivudal
folders.

Regards

Raj



"Glen Scales [MVP]" wrote:

> > one Doubt is, If a root folder local replica is present in a particular
> > exchange server, all subfolders also replicated on the same server?
>
> No you cant count on this I've setup public folder specifically so there
> where different replica and visibility levels with Subfolders to meet
> certain project requirements where there where geographic dispersed servers
> and project teams.
>
> > DO you know what settings in exchange side to set so that all folders are
> > locally replicated?
>
> There is no one setting to do this you really need to deal with the replicas
> on each folder, generally when a new folder is created it will inherit the
> properties (eg security and replicas) from the root folder. A good tool for
> looking at Public folder configuration is Pfdavadmin
>
> Cheers
> Glen
>
>
> "Raj" wrote in message
> @microsoft.com...
> > Hi Glen,
> >
> > Thank you so much. Using that property I can see that list of exchange
> > servers which contain local replica of the folders.
> >
> > one Doubt is, If a root folder local replica is present in a particular
> > exchange server, all subfolders also replicated on the same server?
> >
> > DO you know what settings in exchange side to set so that all folders are
> > locally replicated?
> >
> >
> > Regards
> >
> > Rajesh
> >
> >
> >
> >
> > "Glen Scales [MVP]" wrote:
> >
> >> I'm pretty sure that you will need to query the server where there is a
> >> local replica of the folder in question you trying to retrieve the
> >> Security
> >> descriptor from. The folder hierarchy should be replicated to every
> >> Public
> >> Folder Server but this doesn't contain the DACL's for the folder. What
> >> you
> >> should be able to do is retrieve the replica list property
> >> http://schemas.microsoft.com/mapi/proptag/0x66980102 which when you
> >> working
> >> in WebDAV is a list of servers that contain a replica of this public
> >> folder
> >> stored as Base64 encoded null terminated strings . Once you decode the
> >> property you should then be able to firstly check if there's a replica on
> >> the server your working with and query an appropriate server if not.
> >>
> >> cheers
> >> Glen
> >>
> >>
> >>
> >> "Raj" wrote in message
> >> @microsoft.com...
> >> > Hi All,
> >> >
> >> > This question is related to 404 (resource not found)
> >> > I am using WebDav technology to get folder details including security
> >> > descriptor. I am having a WebDav SQL Query to get folder details. If
> >> > the
> >> > folders residing on the same exchange server where I am connecting to ,
> >> > I
> >> > get
> >> > all details including security descriptor with out any problem. But if
> >> > the
> >> > folders are residing on another exchange serer, I get details of folder
> >> > but
> >> > not security descriptor! - Getting 404 error. So I have to go through
> >> > each
> >> > folder individually to get the Security descriptor. IF not clear, I
> >> > will
> >> > explain with examples
> >> >
> >> > I have two exchange servers say - Exchange1 and Exchange2
> >> > Exchange1 contain say Folder F1 and contain subfolders F11,F12,F13,F14
> >> > and
> >> > so on
> >> > Exchange2 contain say Folder F2 and subfolders F21,F22,F23,F24 and so
> >> > on
> >> >
> >> > I am connecting to one exchange server - Say Exchange1 to get folder
> >> > details.
> >> > When I use my SQL query to get all subfolder details from F1, I get
> >> > details
> >> > including Security Descriptor but when I try to get subfolder details
> >> > of
> >> > F2
> >> > from Exchange1, I get details except Security Descriptor. The Status of
> >> > Security Descriptor is '404 Resource No Found'
> >> >
> >> > So My questions are
> >> >
> >> > 1. What is the best option to solve this issue?
> >> > 2. Any setting in Exchange server(Exchange1) will help us to get
> >> > Security
> >> > Descriptor of other folders residing on other exchange servers?
> >> > 3. What property help us to get the name of real exchange server where
> >> > the
> >> > folders and subfolders reside?
> >> >
> >> > Thanks
> >> >
> >> > Raj
> >> >
> >>
> >>
> >>
>
>
>

Back to top
View user's profile Send private message
Display posts from previous:   
Related Topics:
Modifying security attributes on Exchange Server programmati Hi, Using the Exchange System Manager, I can choose the server whose security attributes I wish to modify ( right click a server, choose Properties, and select the "Security" tab). How is it possible to do this I tried using the IADs int

OWA - File not found Hi I have Exchange 2000 on a Win 2000 server. OWA works fine but every now and then when trying to open an Email, they get the message, page not found or has been moved. I can find no consistant reason sometimes the message may be rich text or it could be

Exchange 2003: One user has found booked meeting room appoin We run an Exchange 2003 system with Outlook 2002 and 2003. One user has complained that 3 meetings (on 3 seperate days and in 2 seperate meeting rooms) have been cancelled in the meeting room's own calendar, and others have been able to subsequently book

Restore resource Hello, We have a 4+1 exchange cluster with exchange installed. On one resource group we have lost the System attendant resource. Does anyone know how to restore specific resources of a resource group ? We don't want to restore the entire cluster configura

Resource Scheduling Hello, I am trying to set up a meeting room as a resource in Exchange 5.5/ Outlook 98. I know you can set the resource to automatically respond with accepts or declines in Ex5.5 with OL2K, but can it be done with OL98? The following articles in the Exch
Post new topic   Reply to topic    exchangefreaks.com Forum Index -> MS Exchange 2000 Development All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group