Hello
I am developing an iphone application for soap request for sharePoint i.e GetListItems web services. But I am getting different types of exceptions and i am very new to iphone and also soap request ..
Error is :-- "Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
"
And my xml code is :--
NSString *soapMessage = [NSString stringWithFormat:
@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<soap:Envelope xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"> \n"
"<soap:Body> \n"
"<GetListItems xmlns=\"http://schemas.microsoft.com/sharepoint/soap/\">\n"
"<listName>@""</listName>\n"
"<viewName>string</viewName>\n"
"<query></query>\n"
"<viewFields></viewFields>\n"
"<rowLimit></rowLimit>\n"
"<queryOptions></queryOptions>\n"
"<webID></webID>\n"
"</GetListItems>\n"
"</soap:Body> \n"
"</soap:Envelope>"];
I cannot find out where is the problem please help me..