: RE: how to disable multiref
add this line
call.setOption( org.apache.axis.AxisEngine.PROP_DOMULTIREFS, new
java.lang.Boolean( false) );
before u call invoke
-Original Message-
From: Munjal [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 15, 2002 4:52 PM
To: [EMAIL PROTECTED]
Subject
add this line
call.setOption( org.apache.axis.AxisEngine.PROP_DOMULTIREFS, new
java.lang.Boolean( false) );
before u call invoke
-Original Message-
From: Munjal [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 15, 2002 4:52 PM
To: [EMAIL PROTECTED]
Subject: how to disable multiref
Hi,
can someone tell me how to disable multiref in an axis client?
I am having problems invoking a service wherein i need to pass an array of
a class.
Thanks,
Munjal
Hi
Currently I have implemented my own Container for
Webservices but i am unable to handle mutirefs yet.
The clients using AXIS alpha3. Is there a option to
disable multiref generation?
If yes please give me a code snip.
thx
Frank
ok i looked thru the source and found one
possibility
AxisEngine ae=service.getEngine();
ae.setOption("sendMultiRefs",new
Boolean("false"));
never mind
frank