I am having issues connecting to this webservice, any ideas what I am doing wrong?
- (void)startRetrievingHotels
{
//Create the web service URL
NSURL *url = [NSURL URLWithString:@"https://www.stratexlive.com/tenants/commercialbank/_vti_bin/stratexws.asmx"];
//Create the web service request
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
NSString *requestString = [self buildHotelListRequest];
NSLog(@"%@", requestString );
[request setDelegate:self];
[request setUsername:@"asdfasdf@asdfasdf.com"];
[request setPassword:@"asdfasdfasdfasdf$"];
[request appendPostData:[[self buildHotelListRequest] dataUsingEncoding:NSUTF8StringEncoding]]; //Set the xml request
[request startAsynchronous];
}
- (NSString *)buildHotelListRequest
{
NSString *result = [NSString stringWithFormat: @"<?xml version=\"1.0\"?>"
@"<GetUserName xmlns=\"https://www.sdf.com/\" />"];
NSLog(@"HOTEL LIST REQUEST: %@", result);
return result;
}
This is the response I get:
> <?xml version="1.0" encoding="utf-8"?><soap:Envelope
> xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Header><soap12:Upgrade
> xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"><soap12:SupportedEnvelope
> qname="soap:Envelope"
> xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" />
>
> <soap12:SupportedEnvelope qname="soap12:Envelope"
> xmlns:soap12="http://www.w3.org/2003/05/soap-envelope" />
>
> </soap12:Upgrade></soap:Header><soap:Body><soap:Fault>
>
> <faultcode>soap:VersionMismatch</faultcode><faultstring>Possible SOAP
> version mismatch: Envelope namespace https://www.stratexsystems.com/
> was unexpected. Expecting
> http://schemas.xmlsoap.org/soap/envelope/.</faultstring>
>
> <detail /></soap:Fault></soap:Body>
>
> </soap:Envelope>
I read about soap and found that you are missing something.
Here is some of info but I’m not sure where to put the username and password.
Hope you will figure it out.