• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

deploy.wsdd AxisFault

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi.

I have created a webservice and tried to deploy it but am getting this error:

Processing file deployIdCliWS3.wsdd
Exception: AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
faultSubcode:
faultString: Couldn't find an appropriate operation for XML QName {http://xml.apache.org/axis/wsdd/}deployment
faultActor:
faultNode:
faultDetail:
{http://xml.apache.org/axis/}hostname:jslee1


I´m not sure what information to provide to the Topic.

This is the deploy.wsdd file:

<deployment
xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">

<!-- Services from IdCliService WSDL service -->

<service name="IdCliPort" provider="java:RPC" style="wrapped" use="literal">
<parameter name="wsdlTargetNamespace" value="uri:IdCli.ws.tid.es"/>
<parameter name="wsdlServiceElement" value="IdCliService"/>
<parameter name="schemaQualified" value="uri:IdCli.ws.tid.es"/>
<parameter name="wsdlServicePort" value="IdCliPort"/>
<parameter name="className" value="es.tid.ws.IdCli.generated.IdCliPortSoapBindingImpl"/>
<parameter name="wsdlPortType" value="IdCli"/>
<parameter name="typeMappingVersion" value="1.2"/>
<operation name="idCliOp" qname="operNS:idCliOp" xmlns:operNS="uri:IdCli.ws.tid.es" returnQName="retNS:idCliOpReturn" xmlns:retNS="uri:IdCli.ws.tid.es" returnType="rtns:IdCliResult" xmlns:rtns="uri:IdCli.ws.tid.es" soapAction="" >
<parameter qname="pns:in0" xmlns:pns="uri:IdCli.ws.tid.es" type="tns:string" xmlns:tns="http://www.w3.org/2001/XMLSchema"/>
</operation>
<parameter name="allowedMethods" value="idCliOp"/>

<arrayMapping
xmlns:ns="uri:IdCli.ws.tid.es"
qname="ns:ArrayOfLlamada"
type="java:es.tid.ws.IdCli.generated.Llamada[]"
innerType="cmp-ns:Llamada" xmlns:cmp-ns="uri:IdCli.ws.tid.es"
encodingStyle=""
/>
<typeMapping
xmlns:ns="uri:IdCli.ws.tid.es"
qname="ns:IdCliResult"
type="java:es.tid.ws.IdCli.generated.IdCliResult"
serializer="org.apache.axis.encoding.ser.BeanSerializerFactory"
deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory"
encodingStyle=""
/>
<typeMapping
xmlns:ns="uri:IdCli.ws.tid.es"
qname="ns:Llamada"
type="java:es.tid.ws.IdCli.generated.Llamada"
serializer="org.apache.axis.encoding.ser.BeanSerializerFactory"
deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory"
encodingStyle=""
/>
</service>
</deployment>
 
Karen Castillo
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi.

This issue was solved by updating and restarting axis in weblogic. At some moment during deploying and undeploying axis needed a restart.
 
reply
    Bookmark Topic Watch Topic
  • New Topic