The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
9 views

wsdl2objc unsigned byte workaround?

I am trying to process some requests through a SOAP web service and I am using code generated by wsdl2objc. The auto-generated code doesn't compile, due to declarations like this: @property (retain) ...
0
votes
0answers
55 views

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: <s:element name="PerformGlobalSearch"> ...
1
vote
0answers
97 views

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 * ...
0
votes
0answers
213 views

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 ...
0
votes
1answer
84 views

wsdl2obj Sap SimpleTransformationFault

i have a simple rfc that takes a string(input) and returns that string(output). On the xcode part, i'm using wsdl2obj. Here is the code //create web service binding zstringSoapBinding *binding = ...
0
votes
0answers
35 views

<libxml/tree.h> file not found” in XCode 4.5 [duplicate]

Possible Duplicate: Can’t find headers for libxml2 and iOS 5.0 SDK / Xcode 4.2 (beta 3) As http://code.google.com/p/wsdl2objc/wiki/UsageInstructions says I added -lxml2 to other linker ...
0
votes
1answer
61 views

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 ...
-1
votes
2answers
284 views

Table view data source array deallocated after handling asynchronous loading of data

I'm pretty new to Objective-C and am having a problem updating my UITableView after an asynchronous call. I have a table view populated from an NSMutableArray; I populate the array from a JSON ...
0
votes
0answers
145 views

Sending XML string over SOAP, without it being encoded

I'm using Wsdl 2 Objective C to call a SOAP web service. My issue is one of the parameters I'm trying to send is an XML string. When i send it , it is being encoded, so when the server receives it, it ...
0
votes
1answer
366 views

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 ...
0
votes
2answers
108 views

Allowed use of the WSDL2OBJC generated output

I have managed to get some output from wsdl2objc working in my iPhone app project and I am nearing the stage of submitting the app to the App Store. My question before I do this relates to the ...
0
votes
0answers
177 views

wsdl2obj request and repeating elements

I am new to Objective C development and I am trying to create an SOAP client inside an iPad app using wsdl2objc I have a SOAP web service, which i created with PHP nuSOAP. The web service has just ...
0
votes
1answer
406 views

call wcf service from xcode4.3

I am a .Net programmer and a beginner in Xcode. I want to display the result from a WCF service on the iPad in UITableViewController. I have successfully created stubs for the service by using ...
0
votes
0answers
102 views

how to capture webservice call response using wsdl2objc ios

I'm developing a app which uses WSDL server. I have generated code from wsdl2objc. I have done with creating soap envelop request header and about to start server call. Can some one of you please ...
0
votes
1answer
58 views

WSDL2OBJC for Android?

I have been using Wsdl2Objc to generate proxy's for my web services to use during IPhone dev....it works GREAT! I now need a version similar to it, that will generate Java code, the same way. Any ...
6
votes
1answer
4k views

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 ...
0
votes
1answer
86 views

wsdl in iphone and '-id' in value name

I have little(big) problem:/ I work with WSDL which has input values define in this way: user-id, transfer-id, etc. and after convertion from wsdl to objective-C there are errors because every using ...
0
votes
2answers
535 views

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 ...
1
vote
1answer
320 views

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!