Hi Heitzo
I dont know of any parameter is the WSDD file that is gonna help you do
what you want to do.
But I guess there is one way to do what you want to do. What you can do
is to set up an handler in the request flow. IN the
invoke(MessageContext msgContext ) method u can take the MessageContext
object and do
msgContext.setProperty( PROP_DOMULTIREFS, new Boolean(false) );
This should (atleast in theory) work :)
Vidyanand.
-----Original Message-----
From: Heitzso [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 05, 2002 6:25 AM
To: [EMAIL PROTECTED]
Subject: RE: href, mozilla soap, and custom serializers
Works great. My mozilla 1.0rc3 javascript soap client doesn't
have any problem deserializing the inline (non-href'ed) data
structures.
Do you by any chance know if it's possible to control that
setting deeper down in the configuration to provide a finer
grained control over whether a specific service or operation
uses hrefs/multirefs or not?
Thanks!!
Heitzso
On Tue, 2002-06-04 at 23:40, Vidyanand Murunikkara wrote:
>
> HI Heitzso
>
> If the problem you are trying to solve is to prevent the axsi server
> from sending multi refs then it is very much possible and can be done
in
> the server-config.wsdd.
>
> Look for <parameter name="sendMultiRefs" value="true"/> inside
> /deployment/globalConfiguration . Just change the value of this
> paramter to false.
>
> Hope this helps
> Vidyanand.