RE: how to disable multiref

2002-04-16 Thread Adam.Leggett
: 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

RE: how to disable multiref

2002-04-15 Thread Vidyanand Murunikkara
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

how to disable multiref

2002-04-15 Thread Munjal
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

How to disable MULTIREF

2002-03-16 Thread Frank Peters
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  

Re: How to disable MULTIREF

2002-03-16 Thread Frank Peters
ok i looked thru the source and found one possibility   AxisEngine ae=service.getEngine(); ae.setOption("sendMultiRefs",new Boolean("false"));     never mind   frank