View Single Post
  #4 (permalink)  
Old 03-10-2006, 11:13 AM
sdouglass sdouglass is offline
Intermediate Member
 
Posts: 22
Default

I've got another question. I'm creating an appointment over SOAP, and I'm trying to set up an appointment that recurs on the 2nd Wednesday of every month, for example. Here's some of the XML that I'm sending:

<m>
<su>SOAP test appointment</su>
<inv loc="2000 Main St., Emeryville, CA 94608" name="SOAP test appointment" type="event">
<s d="20060306T220000" tn="(GMT-08.00) Pacific Time (US &amp; Canada) / Tijuana"/>
<dur h="2"/>
<or a="sdouglass@myserver.com" d="My Name"/>
<recur>
<add>
<rule freq="MON">
<byday>
<wkday day="WE" ordwk="+2/>
</byday>
</rule>
</add>
</recur>
</inv>
</m>

When I log in and check my calendar I see the original appointment showing up on the correct day, with the correct start/end times. The recurring instances are showing up every month on the same day of the month as the original instance, though. (Not on the second Wednesday of every month.) When I edit the recurrence for the series, I see the following:

Repeat:
Monthly
Day 6 of every 1 month(s)
[selected] The first Sunday of every 1 month(s)

This seems to happen no matter which day of the week and which week of the month I try to use. Am I doing something wrong, or is there a bug here? I couldn't find anything in Bugzilla that corresponded to this but maybe I didn't use the right search terms? Is anybody else doing this same thing? If so please share some tips.
Reply With Quote