On Friday 16 January 2009 6:08:49 am Cecchi Sandrone wrote: > Hi all, > I've generated a service with this signature: User getUser(String > username). I'm using this service in C#, but the name of the object User > has became user, so not capitalized. How can I customize this feature? > Thanks
I'm not sure I understand the problem completely. You MAY be able to just add: @WebParam(name = "User") to fix it. Basically, check the generated wsdl and see what the element name is. The annotation above should change it from "user" to "User" which may fix it. -- Daniel Kulp [email protected] http://dankulp.com/blog
