With applications having 500k+ lines of code, it is very important to us to shrink the amount of time it takes to code/test/redeploy. We have had success in the past with deploying the ejb's in an ear file and hot deploying the web components in an exploded war outside of the ear; the ejb components are tested outside of the container. Just starting to look at seam, but it appears as though this may be troublesome to say the least.
It seems as though most IDE solutions are fine with small applications where packaging and deployment times are negligible, but not very useful for large applications. Exadel?s solution fits into this category.
Just my 2 cents.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4038021#4038021
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4038021
If I put ws into seam application, for example:
| package com.minalink.reservas.ws;
|
| import javax.ejb.Stateless;
| import javax.jws.WebMethod;
| import javax.jws.WebService;
|
| @Stateless
| @WebService
| public class EstablecimientosWS {
|
| @WebMethod
| public String echo(String echo){
| return echo;
| }
|
| }
|
In the jbossws.war show it :
| Registered Service Endpoints
| ServiceEndpointID ServiceEndpointAddress
| jboss.ws:context=reservas,endpoint=ReservasWS http://localhost.localdomain:8080/reservas/ReservasWS?wsdl
|
This is OK.
But if click link wsdl :
| HTTP Status 404 - /reservas/ReservasWS
| type Status report
|
| message /reservas/ReservasWS
|
| description The requested resource (/reservas/ReservasWS) is not available.
| Apache Tomcat/5.5.20
|
If i create new ejb-module jar (Not Seam application) with this ws, this works fine.
Any idea? Can I put web services in seam application?
Thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4038008#4038008
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4038008