On 1/23/07, Alick Buckley <[EMAIL PROTECTED]> wrote:

In Axis 1.4, I use the sendMultiRefs parameter to disable MultiRefs in a
Axis server responses

Thank you.  I tried it, but now Axis can't find the http client transport:

I created a deployment file:

<deployment xmlns="http://xml.apache.org/axis/wsdd/";
   xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>
<globalConfiguration>
 <parameter name="sendMultiRefs" value="false"/>
</globalConfiguration>
</deployment>

then:

  EngineConfiguration config = new FileProvider("axis.config");

my call to the Java code generated from the WSDL had looked like:

  ServiceOnDemandPort port =
    new ServiceOnDemandServiceLocator()
    .getServiceOnDemandPort();

and I changed it to:

  ServiceOnDemandPort port =
    new ServiceOnDemandServiceLocator(config)
    .getServiceOnDemandPort();

but I get:

AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
faultSubcode:
faultString: No client transport named 'http' found!
faultActor:
faultNode:
faultDetail:

Any ideas?

Thanks!

Andrew

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to