Hi Long,

In your CXF-SE xbean.xml, I see that you try to make the JNDI lookup on a Weblogic application server.

Nevertheless, I can't see the weblogic.jar file into your SU lib directory.

To be able to make JNDI lookup and RMI-IIOP, you need the weblogic client lib.

In your pom.xml, you should have a dependency like this:

<dependency>
  <groupId>com.oracle.weblogic</groupId>
  <artifactId>server</artifactId>
  <version>10.3</version>
</dependency>

You can install the weblogic.jar into your maven working copy using:
mvn install:install-file -DgroupId=com.oracle.weblogic -DartifactId=server -Dfile=$WLS_HOME/server/lib/weblogic.jar -Dversion=10.3 -Dpackaging=jar

Could you make a try adding the weblogic.jar into the SU ?

Regards
JB

laolong wrote:
 Hi JB,
http://www.nabble.com/file/p23978791/demo.zip demo.zip
    I built a test EJB but got same error again, all java code and bean
defination are in attached, could you please review it?
I'm sorry that cannot find a way to send email with attachement to you
alone, so I have to use 'Reply' page to upload the file.

   Thanks a lot.

Long

Hummm, weird.

Could you provide the annotate in the your LoginService class (and the corresponding interface) ? It looks like that the CXF-SE side is not deployed correctly (and so the HTTP component can't find it). Have you all EJB proxy requirements present in your SU zip (EJBs stub, etc) ? Is it possible to provide your cxf-se zip file (only to my, not on the mailing list) ?

Regards
JB

Reply via email to