Bryan
Bryan

Reputation: 17581

iPhone Web Service Communication

I have been searching around the web all day for the best way to interface my iPhone application with a Linq .NET SOAP web service.

I think that this project is my answer: wsdl2objc http://code.google.com/p/wsdl2objc/wiki/UsageInstructions

The software creates several classes. It looks great, but the documentation is very limited and I am having trouble getting it to work. Does anyone know of a good tutorial or sample code for me?

Are there any similar projects out there to help with objective c web service digestion?

Upvotes: 1

Views: 828

Answers (2)

fyasar
fyasar

Reputation: 3996

I think soap protocol too heavy for Iphone enviroment when you play with large amonut data, you should use RestFull-WCF for .net server side that is a good example for you Creating RESTful Web Services with Windows Communication Foundation and youuse Json object on the client side (i mean objective-c onto Iphone) Httpriod

My suggestion is if you can use these, you won't have any performance problems.

Good lock

Upvotes: 0

Lex Li
Lex Li

Reputation: 63123

Sounds like MonoTouch can do .NET on iPhone. Then it won't be a problem to consume web service.

http://monotouch.net

Upvotes: 1

Related Questions