1 Reply Latest reply on Apr 1, 2008 1:03 PM by nickarls

    SEAM web services in glassfish?

    wiggy

      had a bunch of issues with webservices in jbossas4.2.2


      cany get these resolved at present.  Whilst this is pending I thought i'd have a go in glassfish instead.


      however the seam documentation only discusses the seam WS interceptor for jboss AS.


      here is the jboss defn that needs to get installed in META-INF.  Question is what is the config file name/content that needs to be deployed for glassfish?


      <jaxws-config xmlns="urn:jboss:jaxws-config:2.0"
      
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      
      xmlns:javaee="http://java.sun.com/xml/ns/javaee"
      
      xsi:schemaLocation="urn:jboss:jaxws-config:2.0 jaxws-config_2_0.xsd">
      
      <endpoint-config>
      
      <config-name>Seam WebService Endpoint</config-name>
      
      <pre-handler-chains>
      
      <javaee:handler-chain>
      
      <javaee:protocol-bindings>##SOAP11_HTTP</javaee:protocol-bindings>
      
      <javaee:handler>
      
      <javaee:handler-name>SOAP Request Handler</javaee:handler-name>
      
      <javaee:handler-class>org.jboss.seam.webservice.SOAPRequestHandler</javaee:handler-class>
      
      </javaee:handler>
      
      </javaee:handler-chain>
      
      </pre-handler-chains>
      
      </endpoint-config>
      
      </jaxws-config>