Ureader.com  
Microsoft software help and Community
   home   |   control panel login   |   archive   |  
 
Exchange
2000.active.directory
2000.admin
2000.announcements
2000.app.conversion
2000.applications
2000.clients
2000.clustering
2000.connectivity
2000.development
2000.documentation
2000.general
2000.information.store
2000.interop
2000.kms
2000.misc
2000.protocols
2000.realtime.collabo.
2000.setup
2000.transport
2000.win2000
admin
application.conversion
applications
clients
clustering
connectivity
design
development
misc
mobility
setup
tools
  
 
date: Mon, 6 Mar 2006 17:10:27 -0800,    group: microsoft.public.exchange2000.development        back       


WebDAV Appointment disappears from Outlook   
I have 2 problems while creating Appointments using WebDAV:
1) The appointment appears as a meeting with no name in the To: line.  I 
want a plain appointment.
2) After creating the appointment I see it appear in Outlook Calendar view, 
but if I click somwhere else and then back to the calendar view, the 
appointment is gone.  BUT, I can still see it in OWA, and also on the Outlook 
Today page - VERY WIERD!

I have consulted the following msdn articles with no success:
http://support.microsoft.com/?kbid=827432
http://support.microsoft.com/default.aspx?scid=kb;EN-US;q308373

I am making these calls using Java Jakarta-Slide APIs.

Any help is greatly appreciated!  

Thanks,
Josh
date: Mon, 6 Mar 2006 17:10:27 -0800   author:   jbrookes

Re: WebDAV Appointment disappears from Outlook   
1)
Try adding the apptstateflags property and setting it to 0 this should
ensure that the MeetingStatus property gets also gets set to 0 eg

xmlns:mapi=""http://schemas.microsoft.com/mapi/""
<mapi:apptstateflags dt:dt=""int"">0</mapi:apptstateflags>

2) Sounds like it something to do with the way you setting some properties 
what you could do is use something like Outlookspy to compare the properties 
and maybe capture whats changing when you click the appointment in Outlook.

Cheers
Glen



"jbrookes"  wrote in message 
news:60E3E843-75DE-4DBA-9BF1-73FE57BB875D@microsoft.com...
>I have 2 problems while creating Appointments using WebDAV:
> 1) The appointment appears as a meeting with no name in the To: line.  I
> want a plain appointment.
> 2) After creating the appointment I see it appear in Outlook Calendar 
> view,
> but if I click somwhere else and then back to the calendar view, the
> appointment is gone.  BUT, I can still see it in OWA, and also on the 
> Outlook
> Today page - VERY WIERD!
>
> I have consulted the following msdn articles with no success:
> http://support.microsoft.com/?kbid=827432
> http://support.microsoft.com/default.aspx?scid=kb;EN-US;q308373
>
> I am making these calls using Java Jakarta-Slide APIs.
>
> Any help is greatly appreciated!
>
> Thanks,
> Josh
date: Wed, 8 Mar 2006 10:08:49 +1100   author:   Glen Scales [MVP]

Re: WebDAV Appointment disappears from Outlook   
Hi Glen

   Where i can find the possible values for apptStateFlags ? I was wondering 
if I could use it to identify appointments (no participants) versus meetings 
(participants)... just looking into the participant fields seems trick, as I 
believe appointments/meetings created via OWA set the organizer into the to 
field... 

-- 
- Luciano Resende


"Glen Scales [MVP]" wrote:

> 1)
> Try adding the apptstateflags property and setting it to 0 this should
> ensure that the MeetingStatus property gets also gets set to 0 eg
> 
> xmlns:mapi=""http://schemas.microsoft.com/mapi/""
> <mapi:apptstateflags dt:dt=""int"">0</mapi:apptstateflags>
> 
> 2) Sounds like it something to do with the way you setting some properties 
> what you could do is use something like Outlookspy to compare the properties 
> and maybe capture whats changing when you click the appointment in Outlook.
> 
> Cheers
> Glen
> 
> 
> 
> "jbrookes"  wrote in message 
> news:60E3E843-75DE-4DBA-9BF1-73FE57BB875D@microsoft.com...
> >I have 2 problems while creating Appointments using WebDAV:
> > 1) The appointment appears as a meeting with no name in the To: line.  I
> > want a plain appointment.
> > 2) After creating the appointment I see it appear in Outlook Calendar 
> > view,
> > but if I click somwhere else and then back to the calendar view, the
> > appointment is gone.  BUT, I can still see it in OWA, and also on the 
> > Outlook
> > Today page - VERY WIERD!
> >
> > I have consulted the following msdn articles with no success:
> > http://support.microsoft.com/?kbid=827432
> > http://support.microsoft.com/default.aspx?scid=kb;EN-US;q308373
> >
> > I am making these calls using Java Jakarta-Slide APIs.
> >
> > Any help is greatly appreciated!
> >
> > Thanks,
> > Josh 
> 
> 
>
date: Wed, 5 Apr 2006 14:05:02 -0700   author:   Luciano Resende am

Re: WebDAV Appointment disappears from Outlook   
The apptstateFlags property operation and enums are pretty much undocument 
but the property you should use to identify weather a calendar item is a 
appointment or a meeting in the MeetingStatus property 
http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-C000-000000000046}/0x8217 
have a look at 
http://support.microsoft.com/default.aspx?scid=kb;en-us;320500 which has a 
good explantion of what values you can find in this property basically if 
you looking for appointments vs meeting look for anything with a 
meetingsstatus of 0

Cheers
Glen

"Luciano Resende" <luck@newsgroups.nospam> wrote in message 
news:D92B07AB-0397-4B0E-A979-BD9352263BC4@microsoft.com...
> Hi Glen
>
>   Where i can find the possible values for apptStateFlags ? I was 
> wondering
> if I could use it to identify appointments (no participants) versus 
> meetings
> (participants)... just looking into the participant fields seems trick, as 
> I
> believe appointments/meetings created via OWA set the organizer into the 
> to
> field...
>
> -- 
> - Luciano Resende
>
>
> "Glen Scales [MVP]" wrote:
>
>> 1)
>> Try adding the apptstateflags property and setting it to 0 this should
>> ensure that the MeetingStatus property gets also gets set to 0 eg
>>
>> xmlns:mapi=""http://schemas.microsoft.com/mapi/""
>> <mapi:apptstateflags dt:dt=""int"">0</mapi:apptstateflags>
>>
>> 2) Sounds like it something to do with the way you setting some 
>> properties
>> what you could do is use something like Outlookspy to compare the 
>> properties
>> and maybe capture whats changing when you click the appointment in 
>> Outlook.
>>
>> Cheers
>> Glen
>>
>>
>>
>> "jbrookes"  wrote in message
>> news:60E3E843-75DE-4DBA-9BF1-73FE57BB875D@microsoft.com...
>> >I have 2 problems while creating Appointments using WebDAV:
>> > 1) The appointment appears as a meeting with no name in the To: line. 
>> > I
>> > want a plain appointment.
>> > 2) After creating the appointment I see it appear in Outlook Calendar
>> > view,
>> > but if I click somwhere else and then back to the calendar view, the
>> > appointment is gone.  BUT, I can still see it in OWA, and also on the
>> > Outlook
>> > Today page - VERY WIERD!
>> >
>> > I have consulted the following msdn articles with no success:
>> > http://support.microsoft.com/?kbid=827432
>> > http://support.microsoft.com/default.aspx?scid=kb;EN-US;q308373
>> >
>> > I am making these calls using Java Jakarta-Slide APIs.
>> >
>> > Any help is greatly appreciated!
>> >
>> > Thanks,
>> > Josh
>>
>>
>>
date: Thu, 6 Apr 2006 08:58:16 +1000   author:   Glen Scales [MVP]

Re: WebDAV Appointment disappears from Outlook   
Hi Glen

   Thanks, this helped... Also, one question is, i really had to use the 
apptstateFlags and set it to 0, in order to make my webDav appointments to 
show as appointments in Exchange and for this MAPI property to work... If I 
don't set the appstateFlags, all appointments were showing as meetings using 
OWA.

   Anyway, I'm all set for now... 

-- 
- Luciano Resende


"Glen Scales [MVP]" wrote:

> The apptstateFlags property operation and enums are pretty much undocument 
> but the property you should use to identify weather a calendar item is a 
> appointment or a meeting in the MeetingStatus property 
> http://schemas.microsoft.com/mapi/id/{00062002-0000-0000-C000-000000000046}/0x8217 
> have a look at 
> http://support.microsoft.com/default.aspx?scid=kb;en-us;320500 which has a 
> good explantion of what values you can find in this property basically if 
> you looking for appointments vs meeting look for anything with a 
> meetingsstatus of 0
> 
> Cheers
> Glen
> 
> "Luciano Resende" <luck@newsgroups.nospam> wrote in message 
> news:D92B07AB-0397-4B0E-A979-BD9352263BC4@microsoft.com...
> > Hi Glen
> >
> >   Where i can find the possible values for apptStateFlags ? I was 
> > wondering
> > if I could use it to identify appointments (no participants) versus 
> > meetings
> > (participants)... just looking into the participant fields seems trick, as 
> > I
> > believe appointments/meetings created via OWA set the organizer into the 
> > to
> > field...
> >
> > -- 
> > - Luciano Resende
> >
> >
> > "Glen Scales [MVP]" wrote:
> >
> >> 1)
> >> Try adding the apptstateflags property and setting it to 0 this should
> >> ensure that the MeetingStatus property gets also gets set to 0 eg
> >>
> >> xmlns:mapi=""http://schemas.microsoft.com/mapi/""
> >> <mapi:apptstateflags dt:dt=""int"">0</mapi:apptstateflags>
> >>
> >> 2) Sounds like it something to do with the way you setting some 
> >> properties
> >> what you could do is use something like Outlookspy to compare the 
> >> properties
> >> and maybe capture whats changing when you click the appointment in 
> >> Outlook.
> >>
> >> Cheers
> >> Glen
> >>
> >>
> >>
> >> "jbrookes"  wrote in message
> >> news:60E3E843-75DE-4DBA-9BF1-73FE57BB875D@microsoft.com...
> >> >I have 2 problems while creating Appointments using WebDAV:
> >> > 1) The appointment appears as a meeting with no name in the To: line. 
> >> > I
> >> > want a plain appointment.
> >> > 2) After creating the appointment I see it appear in Outlook Calendar
> >> > view,
> >> > but if I click somwhere else and then back to the calendar view, the
> >> > appointment is gone.  BUT, I can still see it in OWA, and also on the
> >> > Outlook
> >> > Today page - VERY WIERD!
> >> >
> >> > I have consulted the following msdn articles with no success:
> >> > http://support.microsoft.com/?kbid=827432
> >> > http://support.microsoft.com/default.aspx?scid=kb;EN-US;q308373
> >> >
> >> > I am making these calls using Java Jakarta-Slide APIs.
> >> >
> >> > Any help is greatly appreciated!
> >> >
> >> > Thanks,
> >> > Josh
> >>
> >>
> >> 
> 
> 
>
date: Thu, 6 Apr 2006 10:24:02 -0700   author:   Luciano Resende am

Google
 
Web ureader.com


    COPYRIGHT 2007, YARDI TECHNOLOGY LIMITED, ALL RIGHT RESERVE  |   contact us