Hi all,
I am trying to set up Apache SOAP 2.2 to use with a simple test EJB on
Weblogic6.1. When I try to hit the deployed SOAP service, I get the
following error...
In TemplateProvider.locate()
URI: urn:ejbTest
DD.ServiceClass: org.apache.soap.providers.StatelessEJBProvider
DD.ProviderClass: com.manu.atd.Test
Call.MethodName: doSomething
Exception caught: javax.naming.NameNotFoundException: Unable to resolve
com.manu.atd.Test Resolved: '' Unresolved:'com' ; remaining
name 'manu.atd.Test'
Here's the deployment descriptor...
<?xml version="1.0"?>
<isd:service xmlns:isd="http://xml.apache.org/xml-soap/deployment"
id="urn:ejbTest">
<isd:provider type="org.apache.soap.providers.StatelessEJBProvider"
scope="Application" methods="create">
<isd:java class="com.manu.atd.Test"/>
<isd:option key="FullHomeInterfaceName"
value="com.manu.atd.TestHome" />
<isd:option key="ContextProviderURL" value="t3://localhost:7003" />
<isd:option key="FullContextFactoryName"
value="weblogic.jndi.WLInitialContextFactory" />
</isd:provider>
<isd:faultListener>org.apache.soap.server.DOMFaultListener</isd:faultListene
r>
</isd:service>
Any ideas?
Thanks
Eric
[EMAIL PROTECTED]