override wsdl

2008-12-12 Thread Rodrigo Asensio
Is there any way to override the wsdl generation ?? or should I do it manually ? thanks Rodrigo Asensio rasen...@gmail.com http://www.rodrigoasensio.com To err is human, but to really screw up requires the root password.

Re: override wsdl

2008-12-12 Thread Rodrigo Asensio
wanna override the default nillable and maxOccurrences attrib at types Rodrigo Asensio rasen...@gmail.com http://www.rodrigoasensio.com To err is human, but to really screw up requires the root password. On Fri, Dec 12, 2008 at 1:06 PM, keith chapman keithgchap...@gmail.com wrote: Depends

Re: override wsdl

2008-12-12 Thread Rodrigo Asensio
all right, thanks for the tip Rodrigo Asensio rasen...@gmail.com http://www.rodrigoasensio.com To err is human, but to really screw up requires the root password. On Fri, Dec 12, 2008 at 2:26 PM, Deepal Jayasinghe dee...@opensource.lk wrote: For that case, you have to put your wsdl

Re: Problem with a simple Object[] in RPCServiceClient

2008-12-11 Thread Rodrigo Asensio
Finally It was solved. how ? the ws was done in coldfusion 7 who uses axis1 and there are some problems with doc-literal and soap encoding. Server side changed the wsdl and now I can retrieve arrays[] with the same code. Thanks for helping. R Rodrigo Asensio [EMAIL PROTECTED] http

Re: Problem with a simple Object[] in RPCServiceClient

2008-12-11 Thread Rodrigo Asensio
nop, I said this is a coldfusion axis1 ws. I found that according to the specification, fault and header message parts must be defined as document/literal, even if the body is defined as RPC style. regards and thanks Rodrigo Asensio [EMAIL PROTECTED] http://www.rodrigoasensio.com To err

compatibility issues

2008-12-11 Thread Rodrigo Asensio
is there any way to intersect the wget of the wsdl ?? or should I change it manually and point to a custom file ?? any property to set in the java2wsdl ant task ??? regards R Rodrigo Asensio rasen...@gmail.com http://www.rodrigoasensio.com To err is human, but to really screw up requires the root

Response a Custom XSD

2008-12-11 Thread Rodrigo Asensio
and not in the xs:sequence, is this possible or they are crazy asking me this ? is this standard ??? Rodrigo Asensio rasen...@gmail.com http://www.rodrigoasensio.com To err is human, but to really screw up requires the root password.

Re: Response a Custom XSD

2008-12-11 Thread Rodrigo Asensio
/ /xs:complexType /xs:element Rodrigo Asensio rasen...@gmail.com http://www.rodrigoasensio.com To err is human, but to really screw up requires the root password. On Thu, Dec 11, 2008 at 3:35 PM, Rodrigo Asensio rasen...@gmail.com wrote: Axis2 141 we are developing a ws based

Problem with a simple Object[] in RPCServiceClient

2008-12-10 Thread Rodrigo Asensio
) { this.usrfld1 = usrfld1; } Rodrigo Asensio [EMAIL PROTECTED] http://www.rodrigoasensio.com To err is human, but to really screw up requires the root password.

Re: Problem with a simple Object[] in RPCServiceClient

2008-12-10 Thread Rodrigo Asensio
Class[] returnTypes = new Class[]{(Struct_cards[])} this don't compile because the objects inside the array must be Class type, and I already tried that one Class[] returnTypes = new Class[]{Struct_cards[].class} Rodrigo Asensio [EMAIL PROTECTED] http://www.rodrigoasensio.com To err is human

Re: Problem with a simple Object[] in RPCServiceClient

2008-12-10 Thread Rodrigo Asensio
=usrfld1 nillable=true type=xsd:string/ /sequence /complexType − complexType name=ArrayOfStruct_cards − complexContent − restriction base=soapenc:Array attribute ref=soapenc:arrayType wsdl:arrayType=impl:Struct_cards[]/ /restriction /complexContent /complexType Rodrigo Asensio [EMAIL PROTECTED] http

Re: Problem with a simple Object[] in RPCServiceClient

2008-12-10 Thread Rodrigo Asensio
[]{struct_cards.class}; Object[] results = serviceClient.invokeBlocking(actionQ, params, ax); return results; } Rodrigo Asensio [EMAIL PROTECTED] http://www.rodrigoasensio.com To err is human, but to really screw up requires the root password. On Wed, Dec 10