[JBoss Web Services] New message: "Re: JBOss5.1.0-GA WS endpoint generated with wsconsume does not deploy"
by Michael Eibeck
User development,
A new message was posted in the thread "JBOss5.1.0-GA WS endpoint generated with wsconsume does not deploy":
http://community.jboss.org/message/519492#519492
Author : Michael Eibeck
Profile : http://community.jboss.org/people/skymic
Message:
--------------------------------------------------------------
Hi,
yes, my generated interface is annotated with @WebService:
@WebService(name = "SDOCustomerInterfaces", targetNamespace = "http://server.ws.aim.interfaces.skyguide.ch")
@XmlSeeAlso({
ObjectFactory.class
})
public interface SDOCustomerInterfaces {
...
The class which implements the generated WebService is also annotated with @WebService:
@WebService (serviceName="SDO_WS",
portName="SDOCustomerInterfaces",
wsdlLocation = "WEB-INF/wsdl/SDOCustomerInterfaces.wsdl",
targetNamespace = "http://server.ws.aim.interfaces.skyguide.ch",
endpointInterface="ch.skyguide.aim.interfaces.ws.server.SDOCustomerInterfaces")
@SOAPBinding(style = SOAPBinding.Style.DOCUMENT)
public class SDOCustomerInterfacesImpl implements SDOCustomerInterfaces {
And my web.xml references the class SDOCustomerInterfacesImpl in the tags <servlet-class>:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" >
<servlet>
<description>WS endpoint</description>
<display-name>WSServlet</display-name>
<servlet-name>WSServlet</servlet-name>
<servlet-class>ch.skyguide.aim.interfaces.ws.server.SDOCustomerInterfacesImpl</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>WSServlet</servlet-name>
<url-pattern>/services/SDOCustomerInterfacesImpl</url-pattern>
</servlet-mapping>
I have no jboss-web.xml since my WS_Server.war is deployed inside an ear. In the ear I jave the application.xml which defines the context:
<module id="WS_Server">
<web>
<web-uri>WS_Server.war</web-uri>
<context-root>WS_Server</context-root>
</web>
</module>
And in deployment I get the log entry from JBoss5.1.0_GA:
13:28:23,430 INFO [TomcatDeployment] deploy, ctxPath=/WS_Server
13:28:29,508 INFO [[/WS_Server]] Marking servlet WSServlet as unavailable
13:28:29,508 ERROR [[/WS_Server]] Servlet /WS_Server threw load() exception
java.lang.ClassCastException: ch.skyguide.aim.interfaces.ws.server.SDOCustomerInterfacesImpl cannot be cast to javax.servlet.Servlet
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1006)
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:950)
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4122)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4421)
at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:310)
at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:142)
at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)
at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)
at org.jboss.web.deployers.WebModule.start(WebModule.java:97)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
at $Proxy38.start(Unknown Source)
at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:286)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
at org.jboss.system.ServiceController.start(ServiceController.java:460)
at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)
at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)
at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1210)
at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:830)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.jmx.connector.invoker.InvokerAdaptorService.invoke(InvokerAdaptorService.java:263)
at sun.reflect.GeneratedMethodAccessor271.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:138)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:90)
at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:140)
at org.jboss.jmx.connector.invoker.SerializableInterceptor.invoke(SerializableInterceptor.java:74)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:90)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
at org.jboss.invocation.jrmp.server.JRMPProxyFactory.invoke(JRMPProxyFactory.java:180)
at sun.reflect.GeneratedMethodAccessor270.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
at org.jboss.invocation.jrmp.server.JRMPInvoker$MBeanServerAction.invoke(JRMPInvoker.java:855)
at org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:422)
at sun.reflect.GeneratedMethodAccessor269.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:305)
at sun.rmi.transport.Transport$1.run(Transport.java:159)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:619)
Any help?
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/519492#519492
16 years, 3 months
[Javassist] New message: "Runtime Exception when I try to getInterfaces() of a CtClass"
by Arvind K
User development,
A new message was posted in the thread "Runtime Exception when I try to getInterfaces() of a CtClass":
http://community.jboss.org/message/519491#519491
Author : Arvind K
Profile : http://community.jboss.org/people/megalodon
Message:
--------------------------------------------------------------
+Hello All,+
+I was trying to getInterfaces() of a CtClass object during load time but I keep getting exceptions of this format+
java.lang.RuntimeException: cannot find oracle/jdbc/driver/TypeCopyingBinder: oracle.jdbc.driver.TypeCopyingBinder found in oracle/jdbc/driver/TypeCopyingBinder.class
java.lang.RuntimeException: cannot find oracle/jdbc/driver/BINARY_DOUBLENullBinder: oracle.jdbc.driver.BINARY_DOUBLENullBinder found in oracle/jdbc/driver/BINARY_DOUBLENullBinder.class
+I tried to insert some classpaths to the classpool but I don't know if that worked or if it can be of any use to solve this problem. Does this have anything to do with the interface implementation classes being loaded by different class loaders or through different class pools? If so, how can I find out and get CtClass'es of them?+
+Please help. Thanks+
+-Arvind+
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/519491#519491
16 years, 3 months
[JBoss Web Services] New message: "Re: JBOss5.1.0-GA WS endpoint generated with wsconsume does not deploy"
by Jan Uhlir
User development,
A new message was posted in the thread "JBOss5.1.0-GA WS endpoint generated with wsconsume does not deploy":
http://community.jboss.org/message/519483#519483
Author : Jan Uhlir
Profile : http://community.jboss.org/people/espinosa_cz
Message:
--------------------------------------------------------------
Is you class annotated with @WebService? That is what deployment scanner is looking for. Your service definitively does not have to be a Servlet subclass. I wonder if you need web.xml at all, in theory the annotation is all you need, everything else can be generated and defaulted reasonably for you.
Here is my working example. POJO service class, JBoss 5.1.0.GA, Maven project, WAR archive.
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" ....>
<servlet>
<servlet-name>MyWebService</servlet-name>
<servlet-class>esp.home.wsarena.service.FooService</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>MyWebService</servlet-name>
<url-pattern>/FooService</url-pattern>
</servlet-mapping>
</web-app>
jboss-web.xml (not essential just to have a nice context root):
<?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
<!-- Exist here for sole reason of defining context root. There is no way how to do it in web.xml. This this JBoss specific way.
Glassfish has a similar configuration file where you can do the same.
Alternatives:
- make EAR file and specify context root for the web module in standard application.xml file.
- make it EJB JAR file. But WebService must be also an EJB3 then. Then there is no context root (?)
see: http://docs.jboss.org/jbossas/guides/webguide/r2/en/html/ch06.html
-->
<context-root>wsarena3</context-root>
</jboss-web>
FooService.java
/**
* Web service implementation
*/
@WebService
public class FooService {
public static final Logger log = Logger.getLogger(FooService.class.getName());
@WebMethod
public void fooMethod1(String command) {
log.info("fooMethod2: " + command);
}
@WebMethod
public String fooMethod2(String command) {
log.info("fooMethod2: " + command);
return "OK";
}
}
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/519483#519483
16 years, 3 months
[JBoss Web Services] New message: "Re: How can I force a particular WS implementation? How to ensure Metro over Native?"
by Jan Uhlir
User development,
A new message was posted in the thread "How can I force a particular WS implementation? How to ensure Metro over Native?":
http://community.jboss.org/message/519480#519480
Author : Jan Uhlir
Profile : http://community.jboss.org/people/espinosa_cz
Message:
--------------------------------------------------------------
There is not mentioned there can be only one stack implementation at a time on the JBossWS-Installation wiki page I cannot see it.
Do I even need to *install* an alternative stack like Metro?
What happens if I simply bundle in all Metro libraries to my WAR file plus all generated java stuff (from wsgen) and sun-jaxws.xml and web.xml to WEB-INF. The Metro stack should be used then shouldn't it?
Content of sun-jaxws.xml:
Content of web.xml:
I am just worried that deployer will scan classes for @WebService annotations and try to make JBossWS Native web services from them anyway. How to prevent class scanner to checking this particular application or WAR.
How to get feedback that my service really uses Metro and not Native?
Thank you.
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/519480#519480
16 years, 3 months
[JBoss Tools] New message: "Re: org.jboss.tools.jst.web.xml"
by Mario Marques Junior
User development,
A new message was posted in the thread "org.jboss.tools.jst.web.xml":
http://community.jboss.org/message/519477#519477
Author : Mario Marques Junior
Profile : http://community.jboss.org/people/mmarques
Message:
--------------------------------------------------------------
Actually I created the Seam project in EAR deployment configuration.
It added a lot more absolute paths. I think you can figure out which capabitilies they refers to.
<?xml version="1.0" encoding="UTF-8"?>
<file-systems VERSION="2.0.0" application-name="intranet-t4f"
model-entity="FileSystems" workspace-home="./WebContent/WEB-INF">
<file-system NAME="WEB-INF" location="%workspace.home%" model-entity="FileSystemFolder"/>
<file-system NAME="WEB-ROOT" info="Content-Type=Web"
location="%workspace.home%/.." model-entity="FileSystemFolder"/>
<file-system NAME="src" location="%workspace.home%/../../src" model-entity="FileSystemFolder"/>
<file-system NAME="lib" location="%workspace.home%/lib" model-entity="FileSystemFolder"/>
<file-system NAME="classes" location="%workspace.home%/classes" model-entity="FileSystemFolder"/>
<file-system NAME="intranet-t4f" location="%eclipse.project%" model-entity="FileSystemFolder"/>
<file-system NAME="lib-resources.jar"
location="C:\Arquivos de programas\Java\jre6\lib\resources.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-dnsns.jar"
location="C:\Arquivos de programas\Java\jre6\lib\ext\dnsns.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-localedata.jar"
location="C:\Arquivos de programas\Java\jre6\lib\ext\localedata.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-sunjce_provider.jar"
location="C:\Arquivos de programas\Java\jre6\lib\ext\sunjce_provider.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-sunmscapi.jar"
location="C:\Arquivos de programas\Java\jre6\lib\ext\sunmscapi.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-sunpkcs11.jar"
location="C:\Arquivos de programas\Java\jre6\lib\ext\sunpkcs11.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-activation.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\activation.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-antlr.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\antlr.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-avalon-framework.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\avalon-framework.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-commons-codec.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\commons-codec.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-commons-httpclient.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\commons-httpclient.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-commons-logging.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\commons-logging.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-concurrent.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\concurrent.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-ejb3-persistence.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\ejb3-persistence.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-FastInfoset.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\FastInfoset.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-getopt.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\getopt.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-hibernate-annotations.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\hibernate-annotations.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-hibernate-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\hibernate-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jacorb.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jacorb.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-javassist.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\javassist.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jaxb-api.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jaxb-api.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jaxb-impl.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jaxb-impl.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jaxb-xjc.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jaxb-xjc.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-stax-ex.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\stax-ex.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-streambuffer.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\streambuffer.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jaxws-rt.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jaxws-rt.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jaxws-tools.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jaxws-tools.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-annotations-ejb3.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-annotations-ejb3.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-aop-jdk50-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-aop-jdk50-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-aspect-jdk50-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-aspect-jdk50-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-common-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-common-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-deployment.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-deployment.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-ejb3-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-ejb3-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-ejb3x.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-ejb3x.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-iiop-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-iiop-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-j2ee.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-j2ee.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossws-spi.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossws-spi.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossws-common.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossws-common.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossws-framework.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossws-framework.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-jaxrpc.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-jaxrpc.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-jaxws.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-jaxws.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-saaj.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-saaj.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-mail.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\mail.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-remoting.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-remoting.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-xml-binding.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-xml-binding.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-policy.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\policy.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-stax-api.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\stax-api.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-wsdl4j.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\wsdl4j.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-jaxws-ext.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-jaxws-ext.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-jsr77-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-jsr77-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-serialization.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-serialization.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-srp-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-srp-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-system-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-system-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-transaction-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jboss-transaction-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossall-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossall-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbosscx-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbosscx-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossha-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossha-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossjmx-ant.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossjmx-ant.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossmq-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossmq-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbosssx-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbosssx-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossws-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossws-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossws-jboss42.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jbossws-jboss42.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jettison.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jettison.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jmx-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jmx-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jmx-invoker-adaptor-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jmx-invoker-adaptor-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jnp-client.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\jnp-client.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-log4j.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\log4j.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-logkit.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\logkit.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-scout.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\scout.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-servlet-api.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\servlet-api.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-trove.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\trove.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-wstx.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\wstx.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-xmlsec.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\client\xmlsec.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-common.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\lib\jboss-common.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-jmx.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\lib\jboss-jmx.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-system.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\lib\jboss-system.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-log4j-boot.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\lib\log4j-boot.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-autonumber-plugin.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\autonumber-plugin.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-bcel.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\bcel.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-bindingservice-plugin.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\bindingservice-plugin.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-bsf.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\bsf.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-bsh-deployer.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\bsh-deployer.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-bsh.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\bsh.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-cglib.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\cglib.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-commons-collections.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\commons-collections.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-dom4j.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\dom4j.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-el-api.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\el-api.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-hibernate-entitymanager.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\hibernate-entitymanager.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-hibernate3.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\hibernate3.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-hsqldb-plugin.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\hsqldb-plugin.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-hsqldb.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\hsqldb.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jaxen.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jaxen.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-common-jdbc-wrapper.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-common-jdbc-wrapper.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-hibernate.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-hibernate.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-iiop.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-iiop.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-jca.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-jca.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-jsr77.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-jsr77.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-jsr88.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-jsr88.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-management.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-management.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-monitoring.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-monitoring.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-remoting-int.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-remoting-int.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-srp.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-srp.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-transaction.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-transaction.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-vfs.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss-vfs.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jboss.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossjta-integration.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jbossjta-integration.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossjta.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jbossjta.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossmq.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jbossmq.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbosssx.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jbosssx.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbossts-common.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jbossts-common.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jmx-adaptor-plugin.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jmx-adaptor-plugin.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jnpserver.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jnpserver.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-joesnmp.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\joesnmp.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jsp-api.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\jsp-api.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-log4j-snmp-appender.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\log4j-snmp-appender.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-mail-plugin.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\mail-plugin.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-mysql-connector-java-5.1.10-bin.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\mysql-connector-java-5.1.10-bin.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-properties-plugin.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\properties-plugin.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-quartz.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\quartz.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-scheduler-plugin-example.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\scheduler-plugin-example.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-scheduler-plugin.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\scheduler-plugin.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-xmlentitymgr.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\lib\xmlentitymgr.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-faces.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-web.deployer\jsf-libs\jboss-faces.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jsf-api.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-web.deployer\jsf-libs\jsf-api.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jsf-impl.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-web.deployer\jsf-libs\jsf-impl.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-aop-jdk50.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-aop-jdk50.deployer\jboss-aop-jdk50.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-aspect-library-jdk50.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-aop-jdk50.deployer\jboss-aspect-library-jdk50.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jrockit-pluggable-instrumentor.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-aop-jdk50.deployer\jrockit-pluggable-instrumentor.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-pluggable-instrumentor.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\jboss-aop-jdk50.deployer\pluggable-instrumentor.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-ejb3.jar"
location="C:\home\mmarques\java\jboss-4.2.3.GA\server\default\deploy\ejb3.deployer\jboss-ejb3.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-commons-digester.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\commons-digester.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-seam-debug.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-debug.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-seam-excel.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-excel.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-seam-ioc.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-ioc.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-seam-mail.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-mail.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-seam-pdf.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-pdf.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-seam-remoting.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-remoting.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-seam-ui.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jboss-seam-ui.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jsf-facelets.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jsf-facelets.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jxl.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\jxl.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-richfaces-impl.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\richfaces-impl.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-richfaces-ui.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f\WebContent\WEB-INF\lib\richfaces-ui.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-seam.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\jboss-seam.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-antlr-runtime.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\antlr-runtime.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-commons-beanutils.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\commons-beanutils.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-drools-compiler.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\drools-compiler.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-drools-core.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\drools-core.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jboss-el.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\jboss-el.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-jbpm-jpdl.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\jbpm-jpdl.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-mvel2.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\mvel2.jar" model-entity="FileSystemJar"/>
<file-system NAME="lib-richfaces-api.jar"
location="C:\home\mmarques\workspace\t4f\intranet-t4f-ear\EarContent\lib\richfaces-api.jar" model-entity="FileSystemJar"/>
<web SERVLET_VERSION="2.4" model-entity="JstWeb" model-path="/web.xml">
<module URI="/WEB-INF/faces-config.xml" model-entity="WebJSFModule"
model-path="/faces-config.xml" src="src" web-root="WEB-ROOT"/>
</web>
</file-systems>
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/519477#519477
16 years, 3 months