How to get the exact value out of the response I am getting from the web service?

You are sending the request to the wrong URL. Try NSURL *tmpURl=NSURL URLWithString:NSString stringWithFormat:@"w3schools.com/webservices/tempconvert.as....

You are sending the request to the wrong URL. Try NSURL *tmpURl=NSURL URLWithString:NSString stringWithFormat:@"w3schools.com/webservices/tempconvert.as...; Apart from that you should probably set Content-Type and Content-Length: NSString *postLength = NSString stringWithFormat:@"%d", params length; theRequest setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"; theRequest setValue:postLength forHTTPHeaderField:@"Content-Length".

I believe what you're getting is a . NET error. The reason is probably because you are connecting to a SOAP web service.In iOS, there is no native SOAP protocol implementation.

Essentially SOAP works by sending some standard XML into the body of the request sent to the server. Just connecting to that web address does not mean you are communicating with the web service, which is why . NET is giving you the error.

Even though you go to that web address with your browser and it appears to work, the site itself is doing all of the SOAP-ing for you so you aren't aware of it. You have two options. Either create a soap request from scratch or use a REST service in your test.

REST services act just like you are assuming this one works. REST services are just a fancy way of saying "web services that can be accessed simply by going to the http address." Here's another SOAP example.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions