I got the service description from a tutorial and it didn't specify any
stop classes? 

Here's the web-service.xml I used.

<?xml version="1.0" encoding="UTF-8"?>

<deployment 
        xmlns="http://xml.apache.org/axis/wsdd/";
        targetNamespace="http://net.jboss.org/hello";
        xmlns:hello="http://net.jboss.org/hello";
        xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>
        <!-- this is an extension to the Axis deployment descriptor
which allows to
    specify the naming environment for the deployed ws logic -->

 
                        <service name="Hello" provider="Handler">
                                
                                <parameter name="handlerClass"
value="org.jboss.net.axis.server.EJBProvider"/> 
                                <parameter name="beanJndiName"
value="Hello"/> 
                                <parameter name="homeInterfaceName"
value="HelloHome"/>
                                <parameter name="remoteInterfaceName"
value="Hello"/>
                                <parameter name="allowedMethods"
value="*"/>
                
                <requestFlow name="HelloRequest">
                                        <handler name
="TransactionRequestHandler"
type="java:org.jboss.net.axis.server.TransactionRequestHandler"/>
                        </requestFlow>
                        
                        <responseFlow name="HelloResponse">
                                        <handler
name="SerialisationResponseHandler"
type="java:org.jboss.net.axis.server.SerialisationResponseHandler"/>
                                        <handler
name="TransactionResponseHandler"
type="java:org.jboss.net.axis.server.TransactionResponseHandler"/>
                        </responseFlow>

                        </service>
</deployment>

When I deploy the beans and attempt to view the services available it
throws the exception in the last mail.
http://localhost:8080/jboss-net/services/

Any ideas?

Thanks,
Mark,

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin
Conner
Sent: 13 March 2003 16:02
To: '[EMAIL PROTECTED]'
Subject: RE: [JBoss-user] Remote Beans as Web Services

Hiya Christoph.

> As mentioned in several mails, the allowedMethods="*" can
> lead to exposing some of the non-business EJB methods which
> are non-WS-compliant. This leads to problems when trying to access
WSDL.

Do you mind if I ask, have you set the stop classes in the service desc?

Our provider sets the list to javax.ejb.EJBLocalObject and
javax.ejb.EJBObject.
This prevents prevents the ejb methods being picked up.

        Kev

Kevin Conner
This is a personal e-mail. Any views or opinions presented are 
solely those of the author and do not necessarily represent those 
of Orchard Information Systems Ltd.



-------------------------------------------------------
This SF.net email is sponsored by:Crypto Challenge is now open! 
Get cracking and register here for some mind boggling fun and 
the chance of winning an Apple iPod:
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user





-------------------------------------------------------
This SF.net email is sponsored by:Crypto Challenge is now open! 
Get cracking and register here for some mind boggling fun and 
the chance of winning an Apple iPod:
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to