Title: 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>

> -----Original Message-----
> From: Hurst, Cyrus [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, July 24, 2002 8:08 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: provider="java:EJB"
>
>
>  Hi Mark,
>    I have Axis beta 3 deployed on Weblogic 6.1 sp1 and the following
> deploy.wsdd works:
>      <deployment xmlns="http://xml.apache.org/axis/wsdd/"
>                 
> xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"
>                 
> xmlns:xsi="http:/www.w3.org/2000/10/XMLSchema-instance">
>     <service name="AssociateInfo" provider="java:EJB">
>         <parameter name="beanJndiName"
> value="jndi/ejb/AssociateSessionEJB" />
>         <parameter name="homeInterfaceName"
> value="com.nielsenmedia.lrs.cpr.associate.AssociateSessionHome" />
>         <parameter name="remoteInterfaceName"
> value="com.nielsenmedia.lrs.cpr.associate.AssociateSession" />
>         <parameter name="allowedMethods"
> value="getAssociateIDFromDMZID" />
>         <parameter name="className"
> value="com.nielsenmedia.lrs.cpr.associate.AssociateSession" /> 
>         <parameter name="jndiURL"            
> value="t3://d2loc:9023" />
>         <parameter name="jndiContextClass"
> value="weblogic.jndi.WLInitialContextFactory" />
>     </service>
>     </deployment>
>
> -Cyrus
>
> -----Original Message-----
> From: Volkmann, Mark [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 23, 2002 6:07 PM
> To: '[EMAIL PROTECTED]'
> Subject: provider="java:EJB"
>
>
> Can someone please send me an example of WSDD that deploys a
> service using
> the EJBProvider?  Opinions seem to vary on what parameters
> are required.
> Currently I have the following in my deploy.wsdd file and
> it's not working.
> I've deployed Axis in WebLogic 7.
> <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="java: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="jndiUser" value="Administrator"/>
>       <parameter name="jndiPassword" value="thePassword"/>
>       <parameter name="jndiURL" value="t3://localhost:7001"/>
>       <parameter name="jndiContextClass"
>                  value="weblogic.jndi.WLInitialContextFactory"/>
>   </service>
> </deployment>
>
>
> **************************************************************
> **************
> *******
> WARNING: All e-mail sent to and from this address will be received or
> otherwise recorded by the A.G. Edwards corporate e-mail system and is
> subject to archival, monitoring or review by, and/or disclosure to,
> someone other than the recipient.
> **************************************************************
> **************
> ********
>

Reply via email to