I want to consume a webservice written in .NET from iPhone , it uses NetTcpBinding shows in wsdl. is it possible to consume webservice other than BasicHttpBinding from iphone?. If possible, How can i consume it?.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can consume service exposed by
netTcpBindingonly by WCF clients (= .net). Any other client needs enormous effort to make this work because you will have to reimplement WCF’s communication protocol.Even
basicHttpBindingis not very good choice because iPhone has poor support for SOAP (check link provided by @Franchesca). The best choice is using REST service exposing POX (simple XML) or JSON withwebHttpBindingas mentioned by @Valery Pavlov.