• 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
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

AxisFault Exception... was it a valid wsdd descriptor

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

I am using eclipse3.1, Lomboz3.1 and Jboss4.04RC1. And for webservices i down loaded Apache Axis 1.2.1 and installed.

Everything working fine. Happy axis and all.

Now my problem is that. I have followed the TUSC tutorals. On chapter 9.

I created new deploy.wsdd. and After giving this command in working directory, I got this message.

>> java org.apache.axis.client.AdminClient deploy.wsdd

I got this messages...

Processing file deploy.wsdd
Exception: AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}
Server.userException
faultSubcode:
faultString: java.lang.Exception: Unable to process the message -was it
a valid WSDD descriptor?
faultActor:
faultNode:
faultDetail: {http://xml.apache.org/axis/}hostname:indpro1

i used this wsdd file....

<?xml version="1.0" encoding="UTF-8"?>
<deployment xmlns="http://xml.apache.org/axis/wsdd"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java" >

<service name="MyStoreLoginService" provider="java:EJB">

<parameter name="beanJndiName" value="StoreAccessLocal"/>
<parameter name="homeInterfaceName" value="au.com.tusc.session.StoreAccessLocalHome"/>
<parameter name="remoteInterfaceName" value="au.com.tusc.session.StoreAccessLocal"/>

<parameter name="allowedMethods" value="loginUser"/>
<parameter name="jndiURL" value="jnp://localhost:1099"/>
<parameter name="jndiContextClass" value="org.jnp.interfaces.NamingContextFactory"/>
</service>
</deployment>

OR

<?xml version="1.0" encoding="UTF-8"?>
<deployment xmlns="http://xml.apache.org/axis/wsdd"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">

<service name="MyStoreLoginService" provider="java:EJB">
<parameter name="beanJndiName" value="StoreAccessBean"/>
<parameter name="homeInterfaceName" value="au.com.tusc.session.StoreAccessHome"/>
<parameter name="remoteInterfaceName" value="au.com.tusc.session.StoreAccess"/>
<parameter name="allowedMethods" value="loginUser"/>
<parameter name="jndiURL" value="jnp://localhost:1099"/>
<parameter name="jndiContextClass" value="org.jnp.interfaces.NamingContextFactory"/>
</service>
</deployment>


Please help me. I am getting trouble and struggle with 2 weeks.

Regards,
Sunny Suresh M.
 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey,

I also faced the same problem. I could resolve the problem by changing the following line:
<deployment xmlns="http://xml.apache.org/axis/wsdd"

solution:
<deployment xmlns="http://xml.apache.org/axis/wsdd/"

Look one slash is added at the end of wsdd.

Hope it would be helpful
 
If you live in a cold climate and on the grid, incandescent light can use less energy than LED. Tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic