I guess your service has no operation "add". I would try to allow all methods first:
<parameter name="allowedMethods" value="*"/> HTH, Peter -----Original Message----- From: Volkmann, Mark [mailto:[EMAIL PROTECTED]] Sent: 24 July 2002 23:18 To: '[EMAIL PROTECTED]' Subject: RE: provider="java:EJB" Thanks for the example Cyrus! Unfortunately I still can't get EJBProvider to work. I get "No such operation 'add'". Do you see anything suspicious in my deploy.wsdd below? <deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <service name="Math" provider="java:EJB"> <parameter name="allowedMethods" value="add"/> <parameter name="beanJndiName" value="Math"/> <parameter name="homeInterfaceName" value="com.agedwards.proto.math.ejb.MathHomeRemote"/> <parameter name="remoteInterfaceName" value="com.agedwards.proto.math.ejb.MathRemote"/> <parameter name="className" value="com.agedwards.proto.math.ejb.MathRemote"/> <parameter name="jndiURL" value="t3://localhost:7001"/> <parameter name="jndiContextClass" value="weblogic.jndi.WLInitialContextFactory"/> </service> </deployment>
