On 5/13/06, LastHope <[EMAIL PROTECTED]> wrote: > > Hi, > I wrote in the message before how the query is constructed: > > _eventQuery.Query = _appointment.Subject; > EventFeed atomFeed = _service.Query(_eventQuery); > > "Test &" is the all of the _appointment.Subject... it's like making an > appointment "Work & Dinner": it doesn't work... > And as I said: I tried to change it to &... with no success...:( > Bye
The query string is part of the query URL and as such, it needs to be *url-encoded* not *using html entities*. More concretely, try "Test%20%26" in your query URL, which is the URL encoding of "Test &". Sorry I did not catch this the first time around. -- Kyle --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Calendar Data API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-calendar-help-dataapi -~----------~----~----~----~------~----~------~--~---
