Questions tagged [wsdl2objc]
21 questions
11
votes
2 answers
wsdl2objc: 'libxml/tree.h' file not found
After i checked all this instructions (original wsdl2objc documentation), i get this error:
'libxml/tree.h' file not found
I checked several forum entries, because i'm not alone with this problem. Sadly nothing that worked for the others worked…

NicTesla
- 1,626
- 5
- 21
- 35
2
votes
1 answer
wsdl2objc or sudzc with WCF message security
Is it possible to generate a client with wsdl2objc or sudzc to consume a WCF service with message security and session management?
If someone know some other tool that can achieve this let me know!

António
- 975
- 1
- 12
- 31
1
vote
0 answers
how to parse a DataTable from webservice using wdsl2objc class
i have a problem when i get a DataTable from WebService using wsdl2objc.the webservice was written using .net and the GetUserInfo method returns a DataTable.
for (id mine in response.bodyParts){
if([mine…

M.J
- 21
- 3
1
vote
0 answers
ios how to get data from webservice with WSDL2ObjC
I am unable to show data in iPhone. Please advise.
getdata.h
@interface GetDataFromPhoneService_GetPhoneInfoResponse : NSObject {
/* elements */
tns2_GetPhoneInfoModel * GetPhoneInfoReturn;
/* attributes */
…

Masataga.Takashi
- 87
- 8
1
vote
0 answers
iphone calling web service with manually encrypted message
I'm developing an ios app which will invoke a web service operation. The existing web service is configured with wsHttpBinding security set as TransportWithMessageCredential.
I've used wsdl2objc to generate the implementation files (from wsdl)…

Valerie
- 659
- 6
- 14
1
vote
1 answer
Asynchronus operation inside NSOperation
I have a web service, which I'm using to upload images to a server. I consume the service inside an NSOperation. When I call the methods of service synchronously, everything is ok, but when I call the methods asynchronously, the web server never…

taffarel
- 4,015
- 4
- 33
- 61
0
votes
3 answers
wsdl2objc: ContractFilter mismatch at the EndpointDispatcher
We have a .NET WCF Service talking to an iPhone app. I'm using wsdl2objc to generate the objc code required for all the SOAP magic. SoapUI is able to add this service's wsdl and send requests correctly.
But the request generated by wsdl2objc…

Tejaswi Yerukalapudi
- 8,987
- 12
- 60
- 101
0
votes
0 answers
iOS call Web service don't get any data back
I want to create an iOS-App, which calls a Web service (from SAP company). I followed these steps here.
My problem is, I don't get any data back. I can give input parameter but I don't get any data back (Response). I get the WSDL body back without…

Ünal
- 11
- 4
0
votes
1 answer
How can I Use WSDL Webservies in IOS SDK
I am trying to use WSDL Webservice in my IOS application. I have google it for several days and I am not able to fetch data from the server.
My Service URL is similar to http://wsf.cdyne.com/WeatherWS/Weather.asmx?WSDL.
I want to know how can I…

btmanikandan
- 1,923
- 2
- 25
- 45
0
votes
2 answers
Objective-c : Unable to handle request without a valid action parameter. please supply a valid soap action
I'm trying to consume an ASMX web service from objective-c using the wsdl2objc tool. For now, I'm trying to consume the temperature conversion web service.
Using the tool, client classes got generated for consuming the service (I have used THIS…

Amogh Natu
- 781
- 1
- 10
- 37
0
votes
1 answer
ios wsdl2objc response error 500
i am trying to make a request to a SOAP web service with the code below.
BasicHttpBinding_IGTBEihaleWSBinding *binding = [GTBEIhaleWSSvc BasicHttpBinding_IGTBEihaleWSBinding];
binding.logXMLInOut = YES;
GTBEIhaleWSSvc_IhaleListesiGetir *request =…

UtkuS
- 234
- 3
- 10
0
votes
1 answer
wsdl2objc is not working on ios 6.0 simulator but works on ios 5 device
I am using wsdl2objc generated stub to interact with my soap service, everything is fine when i run the app on a device running iOS 5.But when I run the same app on the simulator (iOS 6) i see that no request is sent (debugged using fiddler).
I…

Suhas_United
- 237
- 2
- 10
0
votes
0 answers
WCF call nested in a WCF call
I have a backend made in C#, where I am making WCF calls to from iOS. It works pretty good, but I am stuck in a problem
Code:
#import "ListTableViewController.h"
#import "ListServiceSvc.h"
#import "LoginViewController.h"
@interface…

catu
- 888
- 6
- 24
0
votes
1 answer
calling a webservice that returns xml from ios with wdsl2objc
I'm making an app that searches a database via a webservice call that uses "login" and returns an xml "string".
The wdsl for this call is as follows:

JazeMan
- 10
- 7
0
votes
1 answer
Cannot import localhost urls from wsdl
I am trying to consume a WCF web service (which I did not write myself) using soap on an iPhone. I can test the service using SoapUI and .Net WebService Studio just fine when running the tools on the same web server. But when I try it from an other…

Chuckels5584
- 551
- 2
- 6
- 17