Help

Controls

PermLinkWikiLink

Built with Seam

You can find the full source code for this website in the Seam package in the directory /examples/wiki. It is licensed under the LGPL.

Forum: Seam Users Forum ListTopic List
01. Apr 2008, 12:58 America/New_York | Link

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>

1 Reply:
01. Apr 2008, 13:03 America/New_York | Link

Without looking at any documentation, I would be surprised if it would be anything else than standard-jaxws-endpoint-config.xml

 

If a man speaks in the forest and there is no woman around to hear him, is he still wrong?