good evening!
I'm using eclipse,
jboss and axis!
i got the following problem and really don't have any idea who to solve it
i've got a
ejb, named SearchBean ... and i want to make a web service ... so i wrote a deploy.wsdd:
<deployment
xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<service name ="MySearchService3" provider="java:EJB">
<parameter name="beanJndiName"
value="Search"/>
<parameter name="homeInterfaceName" value="at.ejb.shop.SearchLocalHome"/>
<parameter name="remoteInterfaceName" value="at.ejb.shop.SearchLocal"/>
<parameter name="jndiURL" value="jnp://localhost:1099"/>
<parameter name="jndiContextClass" value="org.jnp.interfaces.NamingContextFactory"/>
<parameter name="allowedMethods" value="*"/>
<parameter name="scope" value="application"/>
</service>
</deployment>
when i deploy it, i see it under web services ... but - and that's my big problem: i can't see the methods, that I want to invoke!?
what should i do?
[ November 17, 2004: Message edited by: Doris Wagner ]