Questions tagged [sudzc]

SudzC generates code for multiple platforms for accessing SOAP-based web services

This is a .NET web site solution that uses XSLT to transform SOAP-based web service definition WSDL files into complete code packages. The code that is generated is easy to read and update.

While SudzC supports multiple platforms, it's focus is on code generation for Objective-C libraries for iPhone development.

source: http://code.google.com/p/sudzc/

85 questions
18
votes
1 answer

SudzC ARC version - objc_msgSend call causes EXC_BAD_ACCESS using 64-bit architecture

Edit - I've tracked the below issue to a 64-bit vs 32-bit architecture issue... see my posted answer for how I resolved I've used SudzC to generate SOAP code for a web service. They supply you with a sample application, which I was able to use…
Jim
  • 2,300
  • 1
  • 19
  • 43
10
votes
4 answers

Sudzc with iOS 5 and ARC

I've been trying to get a webservices working using Sudzc. Whenever I convert my WSDL to obj-c without automatic reference counting it works just fine. The problem is, we are building all our applications in iOS 5 now and all our code uses ARC.…
Twan
  • 155
  • 3
  • 7
7
votes
2 answers

Objective-C Sudzc WSDL Generator Alternative

Sudzc (www.sudcz.com) appears that it is no longer a project that is being contributed to! After a year of no commits and some serious bugs especially with returning list of objects this helpful tool appears to be fading into the black holes of…
Matt
  • 2,803
  • 9
  • 33
  • 57
4
votes
3 answers

How do I pass arrays of values to SudzC-generated webservice classes?

I have a sudzc service class generated from a WSDL that accepts an ArrayOfInt and ArrayOfString objects as parameters. The service method signature is this: - (SoapRequest*) Search: (id ) handler filters: (NSMutableArray*)…
Jon Limjap
  • 94,284
  • 15
  • 101
  • 152
4
votes
2 answers

NSURLConnection delegate methods on background thread

EDIT2 - Rewrote the question I want to do some web service communication in the background. I am using Sudzc as the handler of HTTPRequests and it works like this: SudzcWS *service = [[SudzcWS alloc] init]; [service sendOrders:self withXML:@"my xml…
3
votes
0 answers

SUDZ generating errored code from my working WSDL

I am attempting to generate my SOAP WSDL to obj-c using sudzc. It will not compile because it is producing a generated class LenType, which attempts to bring in "string.h". This is problematic... /* LenType.h The interface definition of…
Jerry
  • 940
  • 2
  • 12
  • 26
3
votes
1 answer

Passing arguments with SudzC

I discover yesterday a library to use WebServices with Objective-C : Sudzc. I try to use this and i have a problem with parameters in call methods. I call like this : SDZMobileActionsBeanService *service = [SDZMobileActionsBeanService…
Sebastien
  • 51
  • 3
3
votes
1 answer

sudzc how to use the returned object from ws call

The sudzc generated stub is: (void)HandleSearchResult: (id) value { ... The document indicates that "value" can be cast into (SDZSearchItemsByUpcResponse *). However that was not true. In XCode, the type of "value" appears to be __NSCFDictionary.
勿绮语
  • 9,170
  • 1
  • 29
  • 37
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
2
votes
1 answer

Sudzc not converting 2012-03-07T21:08:23.6875-05:00 into an NSDate

What format string do I need to use to parse the string value of "2012-03-07T21:08:23.6875-05:00" into an NSDate? Background: I'm using Sudzc ARC against a .NET web service. The web method is return two .NET DateTime properties. Although both are…
Erik Olson
  • 5,807
  • 1
  • 18
  • 17
2
votes
1 answer

sudzc generates wrong soap request

I tried to use Sudzc to generate my SOAP requests. But the generated requests are wrong. Below are the Sudzc generated soap request and the working SoapUI request of a very simple example request. Has anybody experienced the same problems? Sudzc…
kay
  • 23
  • 1
  • 4
2
votes
1 answer

iOS app use sudzc to connect soap web service

I'm doing a simple change password through a web service project, using sudzc to generate the SOAP requests. When I run the project, I just keep receiving nothing in the simulator. Here's my code: .h #import @interface…
2
votes
1 answer

iPhone/Objective-C - Strange error when passing string to method

I am using http://www.sudzc.com/ to access SOAP Web Services in my iPhone application. I have a method in ASP.NET that takes a string and returns a string (facebook access token to be exact). This string is the…
gotnull
  • 26,454
  • 22
  • 137
  • 203
2
votes
1 answer

Can i change the server url with sudzc?

I am trying to generate source code from a wsdl file for iOS. I've stumbled upon a couple of tools and so far wsclient++ and sudzc at least seem to work. But I need to send requests to different servers with the same soap interface, depending on the…
2
votes
2 answers

SOAP Web Service - Java Server - iOS Client - SudzC send or receive large files

My system: Server: Java Soap Web Service generated by JAX WS 2.2.3 (-wsgen) Client: iOS - Soap Web Service generated by SudzC I am using SudzC on iOS to communicate with a Java web service. I want to upload NSData files from the iOS client to the…
user2017
  • 143
  • 1
  • 2
  • 10
1
2 3 4 5 6