From do-not-reply at jboss.com Sun Jul 1 16:26:13 2007 From: do-not-reply at jboss.com (garypinkham) Date: Sun, 1 Jul 2007 16:26:13 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: User guide link not available without proxy. Message-ID: <9872425.1183321573535.JavaMail.jboss@colo-br-02.atl.jboss.com> Is there any movement on this? I haven't been able to get to the docs for days. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059471#4059471 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059471 From do-not-reply at jboss.com Mon Jul 2 09:46:27 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 2 Jul 2007 09:46:27 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JBossWS supports pluggable Web Service stacks Message-ID: <8560762.1183383987106.JavaMail.jboss@colo-br-02.atl.jboss.com> Starting with JBossWS-2.1.0, which is targeted for 1-Aug-2007, JBossWS will provide a general web service integration layer. For the first time, our users will have the choice to deploy one of three possible certified JAXWS stacks in JBoss-5.0, JBoss-4.2 and JBoss-4.0. The supported stacks are JBossWS Native, Sun's Metro and Apache CFX. Since each stack comes with its own specific functional feature set and performance characteristics users will be able to deploy the stack that best suits their needs. There will be a common deployment model and management interface to all deployable stacks. Over the next few months the JBossWS team will focus on advanced functionality such as WS-ReliableMessaging, WS-Trust, WS-AtomicTransaction, WS-BusinessActivity, etc. We would love to get your feedback on this topic this will help us to prioritize the integration work and hence provide you with a web service offering that combines the best of what is currently out there. I am especially happy to hear that both the Sun Metro and Apache CXF community and project leads endorse this move and are committed to the success of their respective stacks in JBoss. Here is what they have to say ... Sun: Metro anonymous wrote : | The GlassFish[1] community very much welcomes JBoss use of our Web Services stack (JAX-WS RI and Project Tango, now combined as Project Metro[2]) and we look forward to feedback and synergies with the expanded developer community", said Eduardo Pelegri-Llopart, Distinguished Engineer at Sun and overall lead of the GlassFish Community | | [1] http://glassfish.java.net | [2] http://metro.dev.java.net | | Eduardo Pelegri-Llopart | IONA: Apache CXF anonymous wrote : | We're excited that on the strength of the CXF project and its growing user base, the JBoss community has decided to incorporate CXF into its offerings for Web service integration. This move is indicative of the power of open source to drive innovation and speed the adoption of new technologies. | | Dan Kulp, Principal Engineer at IONA Technologies and Apache CXF Committer | EnvoiSolutions: Apache CXF anonymous wrote : | I'm very excited to see JBossWS take such a strong user and community centric approach. Many CXF users have been already been deploying inside JBoss due to CXF's unique capabilities and JBoss's strength as an application server. I'm excited to see this integration grow even deeper in future. | | Dan Diephouse | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059614#4059614 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059614 From do-not-reply at jboss.com Mon Jul 2 11:47:47 2007 From: do-not-reply at jboss.com (djayakaran) Date: Mon, 2 Jul 2007 11:47:47 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problem Accessing Web Service Message-ID: <28956109.1183391267730.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm still having the problem. Am I missing something obvious? Tried everything I know to do... can someone please help? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059660#4059660 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059660 From do-not-reply at jboss.com Tue Jul 3 05:53:26 2007 From: do-not-reply at jboss.com (andrea.le) Date: Tue, 3 Jul 2007 05:53:26 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Writing WS client returning complex object Message-ID: <13290618.1183456406377.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi this is my problem, i hope someone help me... i'm trying to deploy a simple web service that returns a complex Object. The class that I want to return is: package esempio; | | public class TestClass { | private String name; | public TestClass() { | } | | public String getName() { | return name; | } | public void setName(String name) { | System.out.println("settato il nome: "+name); | this.name = name; | } | } | and this is the service class I wrote: package esempio; | | import javax.ejb.Stateless; | import javax.jws.WebMethod; | import javax.jws.WebParam; | import javax.jws.WebResult; | import javax.jws.WebService; | import javax.jws.soap.SOAPBinding; | | @WebService(targetNamespace="urn:testws") | @SOAPBinding(style= SOAPBinding.Style.DOCUMENT) | @Stateless(name="provaServizio") | public class ProvaServizioImpl { | @WebMethod | @WebResult(name="testClassResult") | public TestClass getTestClass( | @WebParam(name = "nome") String name) { | TestClass ritorno = new TestClass(); | ritorno.setName(name); | return ritorno; | } | } | I packaged this two classe in a jar that I named "ws2.jar" and copied this jar in jboss 4.05GA server/default/deploy folder. The service seems deployed, because if put the address "localhost:8080/ws2/provaServizio?wsdl" on a browser it returns this WSDL: | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | So I think the service is working. Then I wrote this simple Client, including in its classpath the jar containing the TestClass file: import java.net.URL; | | import javax.naming.Context; | import javax.xml.namespace.QName; | import javax.xml.rpc.Service; | import javax.xml.rpc.ServiceFactory; | import esempio.ProvaServizioImpl; | import esempio.TestClass; | | public class Client { | public static void main(String[] args) throws Exception { | | System.out.println("Start"); | | ServiceFactory factory= ServiceFactory.newInstance(); | | Service factoryTest = factory.createService(new URL("http://localhost:8080/ws2/provaServizio?wsdl"), | new QName("http://esempio/jaws", "ProvaServizioImplService")); | ProvaServizioImpl proxyTest = (ProvaServizioImpl)factoryTest.getPort(ProvaServizioImpl.class); | | TestClass ritorno = (TestClass)proxyTest.getTestClass("test"); | | System.out.println("ritorno del secondo servizio "+ritorno.getName()); | } | } | Running the Client it returns this error: " Exception in thread "main" org.jboss.ws.WSException: Cannot obtain java type mapping for: {urn:testws}getTestClass at org.jboss.ws.deployment.JSR109MetaDataBuilder.buildParameterMetaDataDoc(JSR109MetaDataBuilder.java:451) at org.jboss.ws.deployment.JSR109MetaDataBuilder.setupOperationsFromWSDL(JSR109MetaDataBuilder.java:200) at org.jboss.ws.deployment.JSR109ClientMetaDataBuilder.buildMetaDataInternal(JSR109ClientMetaDataBuilder.java:208) at org.jboss.ws.deployment.JSR109ClientMetaDataBuilder.buildMetaData(JSR109ClientMetaDataBuilder.java:126) at org.jboss.ws.deployment.JSR109ClientMetaDataBuilder.buildMetaData(JSR109ClientMetaDataBuilder.java:82) at org.jboss.ws.jaxrpc.ServiceImpl.(ServiceImpl.java:96) at org.jboss.ws.jaxrpc.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:157) at org.jboss.ws.jaxrpc.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:128) at Client.main(Client.java:19) " Now i know that there is error in mapping but i dont know if i wrong something in client or if i need some kind of configuration file(xml). I read thousands over thousands of examples about WS and clients, but I'm confused... using EJB3 i must generate some mapping file? In which way? I read examples that just return primitives types, but never complex Object types... Can u help me pls? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059850#4059850 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059850 From do-not-reply at jboss.com Tue Jul 3 09:38:05 2007 From: do-not-reply at jboss.com (tweedledee) Date: Tue, 3 Jul 2007 09:38:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - NullPointerException in ServiceEndpointManagerFactory Message-ID: <8325997.1183469885905.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm currently running a fresh install of JBoss AS 4.2.0 and have installed JBossWS 1.2.1 using the installation notes i.e. via the Ant script. I've tried to run the examples that come with the 1.2.1 release but I keep getting a NullPointerException within the ServiceEndpointManagerFactory class: | java.lang.NullPointerException | org.jboss.ws.core.server.ServiceEndpointManagerFactory.getServiceEndpointManager(ServiceEndpointManagerFactory.java:52) | org.jboss.ws.core.server.AbstractServiceEndpointServlet.initServiceEndpointManager(AbstractServiceEndpointServlet.java:135) | org.jboss.ws.core.server.AbstractServiceEndpointServlet.init(AbstractServiceEndpointServlet.java:60) | org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179) | org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84) | org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104) | org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156) | org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241) | org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844) | org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:580) | org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) | java.lang.Thread.run(Thread.java:619) | | It appears that the code is trying to obtain a KernelRegistry object but is failing: public ServiceEndpointManager getServiceEndpointManager() | { | KernelRegistry registry = KernelLocator.getKernel().getRegistry(); | KernelRegistryEntry entry = registry.getEntry(ServiceEndpointManager.BEAN_NAME); | return (ServiceEndpointManager)entry.getTarget(); | } Does anyone know if this is an installation issue or a bug? Regards. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059969#4059969 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059969 From do-not-reply at jboss.com Tue Jul 3 10:03:54 2007 From: do-not-reply at jboss.com (andrea.le) Date: Tue, 3 Jul 2007 10:03:54 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Writing WS client returning complex object Message-ID: <32633426.1183471434593.JavaMail.jboss@colo-br-02.atl.jboss.com> In all book i've read it'write: In EJB, metadata annotations dramatically simplify development and testing of applications, without having to depend on an external XML configuration file. Manning - EJB3 in action Mastering EJB 4th Ed Now if service is in correct form like TestClass why i should use "probably" xml or external tool? Ist' really possible to build a client with only EJB3? Regards View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059982#4059982 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059982 From do-not-reply at jboss.com Tue Jul 3 11:04:27 2007 From: do-not-reply at jboss.com (Abatecruento) Date: Tue, 3 Jul 2007 11:04:27 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - WS security : Unprocessed 'mustUnderstand' header element Message-ID: <23899861.1183475067558.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello! I'm developing web services using JbossWS 1.0.4.GA in Jboss 4.0.4.GA I have to implement the WS-Security. So I wrote the jboss-wsse-server, jboss-wsse-client, I updated the web.xml with the tags and the jboss-client with the tag, I genarated the truststore and the keystore and I inizialized the system variables for the truststore and the keystore. When the client run, it sends a SOAP message encrypted ad it has to do (as I can see using the tcpmon). But the WS answers with a fault. It says that there is a "Unprocessed 'mustUnderstand' header element: {http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}Security". I hope someone help me, because I'm desperate. Thanks Angelo View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060019#4060019 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060019 From do-not-reply at jboss.com Tue Jul 3 11:15:01 2007 From: do-not-reply at jboss.com (davideling) Date: Tue, 3 Jul 2007 11:15:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen Message-ID: <16776290.1183475701700.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi Angelo, I suppose Your service isn't enabled to receive WS-Security SOAP envelopes. Have you the @EndpointConfig annotation in your code? | @WebService(endpointInterface="myPackage.SayHelloCiphered", | serviceName="SayHelloCiphered", | portName="SayHelloCipheredSOAP", | targetNamespace="http://www.tai.it/SayHelloCiphered" | ) | @EndpointConfig(configName = "Standard WSSecurity Endpoint") | public class SayHelloCipheredImpl implements SayHelloCiphered { | //... | } | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060025#4060025 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060025 From do-not-reply at jboss.com Tue Jul 3 11:24:27 2007 From: do-not-reply at jboss.com (Abatecruento) Date: Tue, 3 Jul 2007 11:24:27 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen Message-ID: <32899704.1183476267584.JavaMail.jboss@colo-br-02.atl.jboss.com> No I haven't this annotation. What it is really strange is that the same WS, deployed in the JbossWS 1.2.1 with Jboss 4.2.0 (obviously with the libraries updated to this versions) runs correctly. Maybe a problem with the libraries? Perapsh some important library that there isn't? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060030#4060030 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060030 From do-not-reply at jboss.com Tue Jul 3 11:29:43 2007 From: do-not-reply at jboss.com (davideling) Date: Tue, 3 Jul 2007 11:29:43 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen Message-ID: <3006116.1183476583360.JavaMail.jboss@colo-br-02.atl.jboss.com> Can you try to put that annotation now? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060032#4060032 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060032 From do-not-reply at jboss.com Tue Jul 3 11:52:26 2007 From: do-not-reply at jboss.com (Abatecruento) Date: Tue, 3 Jul 2007 11:52:26 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen Message-ID: <18580249.1183477946671.JavaMail.jboss@colo-br-02.atl.jboss.com> I've tried, but Eclipse sign the annotation as an error. Now, I'm not so skilled in the use of the annotation, but I think I shouldn't define it, should I? Isn't this annotation already defined? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060041#4060041 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060041 From do-not-reply at jboss.com Tue Jul 3 12:03:08 2007 From: do-not-reply at jboss.com (davideling) Date: Tue, 3 Jul 2007 12:03:08 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen Message-ID: <24512734.1183478588337.JavaMail.jboss@colo-br-02.atl.jboss.com> My web service code have this import import org.jboss.ws.annotation.EndpointConfig; ... but I used JBossWS 1.2.1GA Bye View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060051#4060051 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060051 From do-not-reply at jboss.com Tue Jul 3 14:20:58 2007 From: do-not-reply at jboss.com (robsie) Date: Tue, 3 Jul 2007 14:20:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Deploying CrimePortalBeans on jboss 4.0.5.GA Message-ID: <2059707.1183486858022.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I've got the example "CrimePortalBeans" of jboss training course. This example runs on jboss 4.0.3_SP1 without problems. Unfortunatly on jboss 4.0.5.GA the example doesn't work. Following messages occur after deploying (server: default): 19:49:04,842 INFO [EjbModule] Deploying OrganizationBean | 19:49:04,862 WARN [PortComponentMetaData] element in webservices.xml not namespace qualified: OrganizationEndpointPort | 19:49:04,892 WARN [JSR109ServerMetaDataBuilder] Adding wsdl targetNamespace to: {http://crimeportal/ws4ee}OrganizationEndpointPort | 19:49:04,892 WARN [JSR109ServerMetaDataBuilder] Cannot obtain SEI mapping for: crimeportal.ws.OrganizationEndpoint | 19:49:04,932 INFO [TomcatDeployer] deploy, ctxPath=/CrimePortalBeans, warUrl=.../tmp/deploy/CrimePortalBeans.jar-ws12861.war/ | 19:49:05,082 INFO [ProxyFactory] Bound EJB Home 'OrganizationBean' to jndi 'ejb/OrganizationBean' | 19:49:05,082 INFO [EJBDeployer] Deployed: file:/D:/dev/jboss/jboss-4.0.5.GA/server/default/deploy/CrimePortalBeans.jar | 19:49:05,132 INFO [WSDLFilePublisher] WSDL published to: file:/D:/dev/jboss/jboss-4.0.5.GA/server/default/data/wsdl/CrimePortalBeans.jar/OrganizationServiceEJB | .wsdl | 19:49:05,142 WARN [SchemaBindingBuilder] Global element not found in schema: {http://crimeportal/ws4ee}in0 | 19:49:05,142 WARN [SchemaBindingBuilder] Cannot obtain type binding for: {http://crimeportal/ws4ee}in0 | 19:49:05,142 WARN [SchemaBindingBuilder] Global element not found in schema: {http://crimeportal/ws4ee}getContactInfoReturn | 19:49:05,142 WARN [SchemaBindingBuilder] Cannot obtain type binding for: {http://crimeportal/ws4ee}getContactInfoReturn After trying to call "getContactInfo" by the client, I've got following stacktrace: 19:52:16,697 INFO [PortComponentHandler] init: [class=crimeportal.handler.PortComponentHandler,headers=[{http://crimeportal/ws4ee}handler-test],config={param1 | value1}] | 19:52:16,697 ERROR [SOAPFaultExceptionHelper] SOAP request exception | javax.xml.rpc.soap.SOAPFaultException: Endpoint {http://crimeportal/ws4ee}OrganizationEndpointPort does not contain operation meta data for: getContactInfo | at org.jboss.ws.server.ServiceEndpointInvoker.getDispatchDestination(ServiceEndpointInvoker.java:181) | at org.jboss.ws.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:107) | at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.java:209) | at org.jboss.ws.server.ServiceEndpointManager.processSOAPRequest(ServiceEndpointManager.java:355) | at org.jboss.ws.server.StandardEndpointServlet.doPost(StandardEndpointServlet.java:115) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) | at org.jboss.ws.server.StandardEndpointServlet.service(StandardEndpointServlet.java:76) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) | at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) | at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175) | at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74) | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) | at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156) | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) | at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869) | at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664) | at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) | at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112) | at java.lang.Thread.run(Thread.java:595) Thanks for your help Robert View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060099#4060099 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060099 From do-not-reply at jboss.com Tue Jul 3 14:38:04 2007 From: do-not-reply at jboss.com (Mehdi.b) Date: Tue, 3 Jul 2007 14:38:04 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Error accessing Web service Message-ID: <12872838.1183487884701.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello ! I'm french, so excuse my possible langage faults ! :) I created an EJB 3 session bean and deployed it as a web service. Everything looks working great. I've tried it in a Web Service Explorer. This is my WSDL | ? | | ? | | ? | | ? | | ? | | | | | ? | | ? | | | | | | | | | ? | | | | ? | | | | ? | | ? | | | | | | ? | | | ? | | | ? | | | | ? | | | | | | ? | | ? | | | | | | The problem comes with the client, here is the code | URL wsdlLocation; | | try { | | wsdlLocation = new URL("http://bureau:8080/EJBWS2/HelloBean?wsdl"); | QName serviceNameQ = new QName( "http://ws.cdam.clemessy.com/jaws", "HelloBeanService"); | | // dynamic service usage | Service service = Service.create(wsdlLocation, serviceNameQ); | | //String namespace = "http://ws.cdam.clemessy.com/jaws"; | //String portName = "HelloBeanPort"; | //QName portQN = new QName(namespace, portName); | | //HelloBean proxy = service.getPort(portQN, HelloBean.class); | HelloBean proxy = service.getPort(HelloBean.class); | //HelloBean proxy = service.getPort(serviceNameQ,HelloBean.class); | | /* | Iterator itPort = service.getPorts(); // Iterate trough the ports | while (itPort.hasNext()) { // For each port in WSDL | QName port = itPort.next(); | System.out.println("port : "+port); | HelloBean proxy = service.getPort(port,HelloBean.class); | }*/ | | | | } catch (MalformedURLException ex) { | ex.printStackTrace(); | } | and i have the following error | Exception in thread "main" No corresponding port found for the service interface com.clemessy.cdam.ws.HelloBean in http://bureau:8080/EJBWS2/HelloBean?wsdl | at com.sun.xml.ws.client.ServiceContextBuilder.processAnnotations(ServiceContextBuilder.java:110) | at com.sun.xml.ws.client.ServiceContextBuilder.completeServiceContext(ServiceContextBuilder.java:85) | at com.sun.xml.ws.client.WSServiceDelegate.processServiceContext(WSServiceDelegate.java:114) | at com.sun.xml.ws.client.WSServiceDelegate.createEndpointIFBaseProxy(WSServiceDelegate.java:266) | at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:162) | at javax.xml.ws.Service.getPort(Service.java:120) | at clientejbws2.Main.main(Main.java:48) | If someone has a solution, I would be grateful ! Thanks in advance. Best regards. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060102#4060102 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060102 From do-not-reply at jboss.com Wed Jul 4 01:33:48 2007 From: do-not-reply at jboss.com (tejasjani) Date: Wed, 4 Jul 2007 01:33:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - wstools-config file for multiple port-types in wsdl Message-ID: <3026133.1183527228435.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I am trying to create a wstools config file for a wsdl with multiple ports. Can someone show an example or point me to the DTD/schma for this config file? Thank You in advance Tejas View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060231#4060231 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060231 From do-not-reply at jboss.com Wed Jul 4 01:48:46 2007 From: do-not-reply at jboss.com (ram_kumar) Date: Wed, 4 Jul 2007 01:48:46 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Cannot find port in wsdl (need help) Message-ID: <22152273.1183528126956.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I also get the similar error in the deployment of a service in the JBoss 4.0.4 GA. We are using Jbpm bpel1.1beta3. During the deployment process we get the following error. | org.jboss.ws.WSException: Cannot find port in wsdl: {http://abc.com/ws-bp/batchproduct}BatchproductPT | at org.jboss.ws.metadata.JSR109ServerMetaDataBuilder.buildMetaData(JSR109ServerMetaDataBuilder.java:141) | at org.jboss.ws.server.WebServiceDeployerJSE.createWebServicesMetaData(WebServiceDeployerJSE.java:189) | at org.jboss.ws.server.WebServiceDeployer.create(WebServiceDeployer.java:103) | at org.jboss.ws.server.WebServiceDeployerJSE.create(WebServiceDeployerJSE.java:66) | at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.create(SubDeployerInterceptorSupport.java:180) | at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:91) | 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:659) | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210) | at $Proxy31.create(Unknown Source) | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:953) | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:807) | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771) | at sun.reflect.GeneratedMethodAccessor57.invoke(Unknown Source) | at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | at java.lang.reflect.Method.invoke(Method.java:585) | at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155) | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94) | at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133) | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88) | at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142) | 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:659) | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210) | at $Proxy8.deploy(Unknown Source) | at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421) | at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:610) | at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263) | at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:274) | at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:225) | The webservices.xml is given below, | | | | | | | Batch Product Process | | WEB-INF/wsdl/batchproduct-service.wsdl | WEB-INF/jaxrpc-mapping.xml | | | | BatchproductPT | | portNS:BatchproductPT | | | org.jbpm.bpel.tutorial.batchproduct.BatchproductPT | | | batchproductServlet | | | | batchproductHandler | | org.jbpm.bpel.integration.server.SoapHandler | | | partnerLinkHandle | batchproduct | | | | | | | | FileReadPortType | | | portNS:FileReadPortType | | | com.abc.blwb.BestLinkage.FileReadService | | | filereadServlet | | | | filereadHandler | | org.jbpm.bpel.integration.server.SoapHandler | | | partnerLinkHandle | fileread | | | | | | | | | | The batchproduct.wsdl generated is given below, | | | | | | | | | | | | | | | | | | | | | | | | | | The batchproduct-binding-1.wsdl generated is as follows, | | | | | | | | | | | | | | The batchproduct-service.wsdl is given below, | | | | | | | | | | The jaxrpc-mapping.xml generated is given below. | | | | org.jbpm.bpel.tutorial.batchproduct | http://abc.com/ws-bp/batchproduct | | | org.jbpm.bpel.tutorial.batchproduct | http://abc.com/wsdl/batchproduct | | | org.jbpm.bpel.tutorial.batchproduct.BatchproductService | serviceNS:batchproductService | | BatchproductServicePort | BatchproductServicePort | | | | org.jbpm.bpel.tutorial.batchproduct.BatchproductPT | portTypeNS:BatchproductPT | bindingNS:BatchproductPTBinding | | sendprocess | sendprocess | | 0 | java.lang.String | | wsdlMsgNS:batchProductRequestMessage | BatchProductRequest | IN | | | | | | And finally the bpel file written, | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Could anyone please help us in fixing this as soon as possible ? Thanks & Regards, Ram Kumar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060236#4060236 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060236 From do-not-reply at jboss.com Wed Jul 4 02:42:11 2007 From: do-not-reply at jboss.com (patel_123) Date: Wed, 4 Jul 2007 02:42:11 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - web service returns list? Message-ID: <19732704.1183531331301.JavaMail.jboss@colo-br-02.atl.jboss.com> hi i am using JAX-WS RI 2.0_03-b24-fcs version. i want to know JAX WS 2.0 supports list interface.can web service return list? could any one help me in this? thanks in advance. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060244#4060244 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060244 From do-not-reply at jboss.com Wed Jul 4 03:05:44 2007 From: do-not-reply at jboss.com (Abatecruento) Date: Wed, 4 Jul 2007 03:05:44 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen Message-ID: <31402261.1183532744802.JavaMail.jboss@colo-br-02.atl.jboss.com> I checked and the only annotation provided in the version of Jboss I'm using is @PortComponent. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060250#4060250 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060250 From do-not-reply at jboss.com Wed Jul 4 03:15:38 2007 From: do-not-reply at jboss.com (davideling) Date: Wed, 4 Jul 2007 03:15:38 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen Message-ID: <20701912.1183533338120.JavaMail.jboss@colo-br-02.atl.jboss.com> Are you developing JAX-WS Web Service or JAX-RPC Web Service? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060258#4060258 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060258 From do-not-reply at jboss.com Wed Jul 4 03:25:05 2007 From: do-not-reply at jboss.com (Abatecruento) Date: Wed, 4 Jul 2007 03:25:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen Message-ID: <3612598.1183533905749.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm developing JAX-RPC. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060260#4060260 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060260 From do-not-reply at jboss.com Wed Jul 4 03:45:53 2007 From: do-not-reply at jboss.com (davideling) Date: Wed, 4 Jul 2007 03:45:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen Message-ID: <8532976.1183535153979.JavaMail.jboss@colo-br-02.atl.jboss.com> Now I understand why You don't use annotations. I'm sorry, but I cannot help you with JAX-RPC Web service and WS-Security. I'm quite sure You have to configure the skeleton artifacts creation at first step but i don't know how. Bye View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060270#4060270 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060270 From do-not-reply at jboss.com Wed Jul 4 05:30:29 2007 From: do-not-reply at jboss.com (Mikha) Date: Wed, 4 Jul 2007 05:30:29 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - POJO web services and standard security annotations Message-ID: <25806249.1183541429935.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi! I'm new to JAX-WS and trying to find my way around this technology. One thing of particular importance for me is how JBoss treats standard security annotations when deploying POJO web services. JSR 181 "Web Services Metadata for the JavaTM Platform" doesn't mention security-related annotations explicitely; however change log there contains comment "Removed security annotations as these will be defined by JSR 250 ? Common Annotations." So I took it as security-related annotations apply to web services, includng POJO-based. However, when I tried to test it in JBoss-4.2.0.GA, I found that container simply ignores these annotations or, at least, @RolesAllowed. Here is code snippet: | @WebService(name = "AccountingIf", endpointInterface = "org.mikha.webservice.test.accountingif3.AccountingIf") | @RolesAllowed("AccountingIfClient") | public class AccountingIfImpl implements AccountingIf | { | | /** web service context */ | @Resource | private WebServiceContext m_ctx; | | /** | * @see org.mikha.webservice.test.accountingif3.AccountingIf#commit(org.mikha.webservice.test.accountingif3.RecordTypeType, | * long) | */ | public void commit(RecordTypeType recordType, long trID) | { | // TODO Auto-generated method stub | } | | /** | * @see org.mikha.webservice.test.accountingif3.AccountingIf#fetch(org.mikha.webservice.test.accountingif3.RecordTypeType, | * int) | */ | public FetchResultType fetch(RecordTypeType recordType, int dataSize) | { | Principal p = m_ctx.getUserPrincipal(); | if (!m_ctx.isUserInRole("AccountingIfClient")) | { | throw new SecurityException("User " + p | + " is not allowed to access accounting interface"); | } | // .... | | When request is made by user belonging to "AccountingIfClient" role, both methods work fine. But, when request is made by valid user not belonging to "AccountingIfClient" role, "commit" method still works; and "fetch" method throws "javax.xml.ws.soap.SOAPFaultException: User johndoe is not allowed to access accounting interface", which comes from my code, not from container. The questions: 1) Should container for POJO-based web services honor standard security annotations? 2) If not, is there any way to specify security restrictions for POJO-based web services in declarative manner (i.e. without checking access rights in the business logic)? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060314#4060314 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060314 From do-not-reply at jboss.com Wed Jul 4 06:53:41 2007 From: do-not-reply at jboss.com (florian79) Date: Wed, 4 Jul 2007 06:53:41 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - HalloWorld Problem Message-ID: <13280790.1183546421395.JavaMail.jboss@colo-br-02.atl.jboss.com> I got exceptions by tring a hallo world example I use: jboss-4.2.0.GA with jbossws-1.2.1.GA (default WS) My EJB- endpoint: | import javax.ejb.Stateless; | import javax.jws.WebMethod; | import javax.jws.WebResult; | import javax.jws.WebService; | import javax.jws.soap.SOAPBinding; | | //@WebService | @WebService(name="HalloWorldWS") | //@WebService(name="HalloWorldWS",serviceName="HalloWorldWSService") | @SOAPBinding(style = SOAPBinding.Style.RPC, use = SOAPBinding.Use.LITERAL) | //@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.BARE) | //@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) | @Stateless | public class HalloWorldWSImpl implements HalloWorldWS | { | @WebMethod(operationName="getHalloWorld") | @WebResult(name="hallo") | public final String getHalloWorld() | { | return "Hallo Welt"; | } | | } | and my client unit test code: | private void initByService() throws Exception | { | String strURL = "http://localhost:8080/HalloWorldWSImplService/HalloWorldWSImpl"; | String strQName = "HalloWorldWSImpl"; | URL url = new URL(strURL + "?wsdl"); | QName qname = new QName(strURL,strQName); | Service service = Service.create(url, qname ); //here I get the exception!!! | HalloWorldWS mySessionBean = service.getPort(HalloWorldWS.class); | } | By using the SOAPBinding: @SOAPBinding(style = SOAPBinding.Style.RPC, use = SOAPBinding.Use.LITERAL) I get the following exception: | javax.xml.ws.WebServiceException: java.lang.IllegalArgumentException: local part cannot be "null" when creating a QName | at javax.xml.ws.Service.create(Service.java:731) | at com.dooris.ws.HalloWorldWSImplTest.initByService(HalloWorldWSImplTest.java:41) | at com.dooris.ws.HalloWorldWSImplTest.setUp(HalloWorldWSImplTest.java:22) | 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:585) | at org.junit.internal.runners.BeforeAndAfterRunner.invokeMethod(BeforeAndAfterRunner.java:74) | at org.junit.internal.runners.BeforeAndAfterRunner.runBefores(BeforeAndAfterRunner.java:50) | at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:33) | at org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75) | at org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45) | at org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:71) | at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35) | at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42) | at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34) | at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52) | at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38) | at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196) | Caused by: java.lang.IllegalArgumentException: local part cannot be "null" when creating a QName | at javax.xml.namespace.QName.(QName.java:164) | at javax.xml.namespace.QName.(QName.java:113) | at com.ibm.wsdl.xml.WSDLReaderImpl.parseExtensibilityAttributes(WSDLReaderImpl.java:1344) | at com.ibm.wsdl.xml.WSDLReaderImpl.parseMessage(WSDLReaderImpl.java:1268) | at com.ibm.wsdl.xml.WSDLReaderImpl.parseDefinitions(WSDLReaderImpl.java:309) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2265) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2229) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2282) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2303) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2335) | at org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:130) | at org.jboss.ws.metadata.umdm.ServiceMetaData.getWsdlDefinitions(ServiceMetaData.java:321) | at org.jboss.ws.metadata.builder.jaxws.JAXWSClientMetaDataBuilder.buildMetaData(JAXWSClientMetaDataBuilder.java:83) | at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.(ServiceDelegateImpl.java:140) | at org.jboss.ws.core.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:61) | at javax.xml.ws.Service.(Service.java:83) | at org.jboss.ws.core.jaxws.client.ServiceExt.(ServiceExt.java:60) | at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) | at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) | at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) | at java.lang.reflect.Constructor.newInstance(Constructor.java:494) | at javax.xml.ws.Service.create(Service.java:726) | ... 22 more | By using the SOAPBinding: @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.BARE) or @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) I get the following exception: | javax.xml.ws.WebServiceException: org.jboss.ws.metadata.wsdl.WSDLException: javax.wsdl.WSDLException: WSDLException (at /definitions/message[1]/part): faultCode=UNBOUND_PREFIX: Unable to determine namespace of 'tns:getHalloWorld'. | at javax.xml.ws.Service.create(Service.java:731) | at com.dooris.ws.HalloWorldWSImplTest.initByService(HalloWorldWSImplTest.java:41) | at com.dooris.ws.HalloWorldWSImplTest.setUp(HalloWorldWSImplTest.java:22) | 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:585) | at org.junit.internal.runners.BeforeAndAfterRunner.invokeMethod(BeforeAndAfterRunner.java:74) | at org.junit.internal.runners.BeforeAndAfterRunner.runBefores(BeforeAndAfterRunner.java:50) | at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:33) | at org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75) | at org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45) | at org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:71) | at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35) | at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42) | at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34) | at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52) | at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38) | at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196) | Caused by: org.jboss.ws.metadata.wsdl.WSDLException: javax.wsdl.WSDLException: WSDLException (at /definitions/message[1]/part): faultCode=UNBOUND_PREFIX: Unable to determine namespace of 'tns:getHalloWorld'. | at org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:155) | at org.jboss.ws.metadata.umdm.ServiceMetaData.getWsdlDefinitions(ServiceMetaData.java:321) | at org.jboss.ws.metadata.builder.jaxws.JAXWSClientMetaDataBuilder.buildMetaData(JAXWSClientMetaDataBuilder.java:83) | at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.(ServiceDelegateImpl.java:140) | at org.jboss.ws.core.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:61) | at javax.xml.ws.Service.(Service.java:83) | at org.jboss.ws.core.jaxws.client.ServiceExt.(ServiceExt.java:60) | at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) | at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) | at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) | at java.lang.reflect.Constructor.newInstance(Constructor.java:494) | at javax.xml.ws.Service.create(Service.java:726) | ... 22 more | Caused by: javax.wsdl.WSDLException: WSDLException (at /definitions/message[1]/part): faultCode=UNBOUND_PREFIX: Unable to determine namespace of 'tns:getHalloWorld'. | at com.ibm.wsdl.util.xml.DOMUtils.getQName(DOMUtils.java:309) | at com.ibm.wsdl.util.xml.DOMUtils.getQualifiedAttributeValue(DOMUtils.java:367) | at com.ibm.wsdl.xml.WSDLReaderImpl.getQualifiedAttributeValue(WSDLReaderImpl.java:2019) | at com.ibm.wsdl.xml.WSDLReaderImpl.parsePart(WSDLReaderImpl.java:1278) | at com.ibm.wsdl.xml.WSDLReaderImpl.parseMessage(WSDLReaderImpl.java:1257) | at com.ibm.wsdl.xml.WSDLReaderImpl.parseDefinitions(WSDLReaderImpl.java:309) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2265) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2229) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2282) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2303) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2335) | at org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:130) | ... 33 more | where is my stupide mistake? Thank you! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060348#4060348 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060348 From do-not-reply at jboss.com Wed Jul 4 07:40:19 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Wed, 4 Jul 2007 07:40:19 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: POJO web services and standard security annotations Message-ID: <29043932.1183549219424.JavaMail.jboss@colo-br-02.atl.jboss.com> Try adding the @Stateless annotation to the service bean. In that case @RolesAllowed should be handled by the EJB3 container. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060384#4060384 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060384 From do-not-reply at jboss.com Wed Jul 4 07:43:08 2007 From: do-not-reply at jboss.com (sverker) Date: Wed, 4 Jul 2007 07:43:08 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Failed to setup client ENC ... Cannot bind webservice to cli Message-ID: <13931503.1183549388497.JavaMail.jboss@colo-br-02.atl.jboss.com> We have a project that deploys to the AS as an ear. Suddenly the deployment begun to fail because it says that the webservice clients are already bound. We have two webservice clients that are deployed as jar files in the ear. They are referenced by application.xml like this: | | IdentificationApi-europe-3.0-1.jar | | | SmsApi-europe-5.1-1.jar | | Until now this have worked fine. The webservice clients were deployed and could be looked up from jndi. They are not directly called by the ejb's but through a third package. Now we've started to get exceptions during the deploy, the webservice clients are first bound but directly after we get an Exception that client ENC could not be bound because of NameAlreadyBoundException. According to the debug output in server.log this happens when it tries to deploy our ejb jar. I've searched that jar and the only reference I can find is that MANIFEST.MF specifies one of the webservice clients in it's classpath (don't know why though, as there is no reference to it in pom.xml) This is the relevant log output: 13:11:34,154 INFO [ClientDeployer] Client ENC bound under: IdentificationApi30Europe-client | 13:11:34,444 INFO [ClientDeployer] Client ENC bound under: SmsApi51Europe-client | 13:11:34,584 WARN [NestedThrowable] Duplicate throwable nesting of same base type: class org.jboss.deployment.DeploymentException is assignable from: class org.jboss.deployment.DeploymentException | 13:11:34,594 ERROR [MainDeployer] Could not start deployment: file:/C:/java/jboss-4.0.5.GA/server/default/tmp/deploy/tmp34838t2-tvportal-0.1.ear-contents/t2-tvportal-core-0.1.jar | org.jboss.deployment.DeploymentException: Failed to setup client ENC; - nested throwable: (org.jboss.deployment.DeploymentException: Cannot bind webservice to client environment; - nested throwable: (javax.naming.NameAlreadyBoundException)) | | at org.jboss.deployment.ClientDeployer.start(ClientDeployer.java:171) | at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025) | at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1015) | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819) | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782) | at sun.reflect.GeneratedMethodAccessor19.invoke(Unknown Source) | at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces | sorImpl.java:25) | at java.lang.reflect.Method.invoke(Method.java:585) | at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch | er.java:155) | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94) | at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractIntercept | or.java:133) | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88) | at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelM | BeanOperationInterceptor.java:142) | 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:659) | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210) | at $Proxy8.deploy(Unknown Source) | at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymen | tScanner.java:421) | at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentS | canner.java:610) | at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread. | doScan(AbstractDeploymentScanner.java:263) | at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread. | loop(AbstractDeploymentScanner.java:274) | at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread. | run(AbstractDeploymentScanner.java:225) | Caused by: org.jboss.deployment.DeploymentException: Cannot bind webservice to c | lient environment; - nested throwable: (javax.naming.NameAlreadyBoundException) | at org.jboss.ws.integration.jboss.WebServiceClientDeployer.setupServiceR | efEnvironment(WebServiceClientDeployer.java:94) | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. | java:39) | at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces | sorImpl.java:25) | at java.lang.reflect.Method.invoke(Method.java:585) | at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch | er.java:155) | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94) | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86) | at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker. | java:264) | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659) | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210) | at $Proxy62.setupServiceRefEnvironment(Unknown Source) | at org.jboss.webservice.WebServiceClientHandler.setupServiceRefEnvironme | nt(WebServiceClientHandler.java:94) | at org.jboss.deployment.ClientDeployer.setupEnvironment(ClientDeployer.j | ava:272) | at org.jboss.deployment.ClientDeployer.start(ClientDeployer.java:167) | ... 22 more | Caused by: javax.naming.NameAlreadyBoundException | at org.jnp.server.NamingServer.bind(NamingServer.java:144) | at org.jnp.server.NamingServer.bind(NamingServer.java:109) | at org.jnp.server.NamingServer.bind(NamingServer.java:109) | at org.jnp.server.NamingServer.bind(NamingServer.java:109) | at org.jnp.interfaces.NamingContext.bind(NamingContext.java:566) | at org.jnp.interfaces.NamingContext.bind(NamingContext.java:531) | at org.jboss.util.naming.Util.bind(Util.java:102) | at org.jboss.util.naming.Util.bind(Util.java:89) | at org.jboss.ws.integration.jboss.WebServiceClientDeployer.setupServiceR | efEnvironment(WebServiceClientDeployer.java:87) | ... 36 more | If I remove the webservice clients from application.xml then the ejb jar is not deployed. The application is generated with AndroMDA so the problem could have occured because of some update there but on the other hand I've verified all deployment descriptiors and it looks correct. Another strange thing is that if I deploy the application as an unpackaged ear, i.e. as a directory then it works eventhough it's the same content. The problem first occured when we deployed on a freshly installed 4.2.0. We then went back to our lab server with 4.0.5, the same problem. Even when taking the same ear that deploys successfully on the production server (also 4.0.5) cause the same problem. What to look for? What could be the cause of this problem? What is the correct way to deploy the webservice clients in our ear? I couldn't find documentation regarding that so I tried this variant and it has worked until now. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060390#4060390 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060390 From do-not-reply at jboss.com Wed Jul 4 08:11:35 2007 From: do-not-reply at jboss.com (Mikha) Date: Wed, 4 Jul 2007 08:11:35 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: POJO web services and standard security annotations Message-ID: <6333566.1183551095804.JavaMail.jboss@colo-br-02.atl.jboss.com> "heiko.braun at jboss.com" wrote : Try adding the @Stateless annotation to the service bean. In that case @RolesAllowed should be handled by the EJB3 container. | Thank you. It didn't help. Probably, because this code is deployed as web application (.war file). Besides, in order for this class to be proper stateless session bean, I would need to annotate interface class with either @Local or @Remote, right? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060401#4060401 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060401 From do-not-reply at jboss.com Wed Jul 4 08:47:01 2007 From: do-not-reply at jboss.com (lzap) Date: Wed, 4 Jul 2007 08:47:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - WebService that catches all requests Message-ID: <705782.1183553221952.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello, we are developing a module that will dynamicaly translate SOAP calls to CORBA calls and back in JBoss. I would like to create some special handler or something that will catch all WS requests for given scope and pass them to CORBA. How to do that? Where to start? I am new to JBoss... Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060438#4060438 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060438 From do-not-reply at jboss.com Wed Jul 4 08:49:28 2007 From: do-not-reply at jboss.com (davideling) Date: Wed, 4 Jul 2007 08:49:28 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: HalloWorld Problem Message-ID: <9762224.1183553368370.JavaMail.jboss@colo-br-02.atl.jboss.com> In test/client code when You create QNames you have to use the namespace, not the service url. | QName("http://serviceNameSpace/","ServiceName") | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060441#4060441 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060441 From do-not-reply at jboss.com Wed Jul 4 09:24:05 2007 From: do-not-reply at jboss.com (andrea.le) Date: Wed, 4 Jul 2007 09:24:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Writing WS client returning complex object Message-ID: <4745071.1183555445980.JavaMail.jboss@colo-br-02.atl.jboss.com> But i need know if the question is stupid or nobody can help me... Thank u View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060465#4060465 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060465 From do-not-reply at jboss.com Wed Jul 4 09:46:10 2007 From: do-not-reply at jboss.com (patel_123) Date: Wed, 4 Jul 2007 09:46:10 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - WARN [SchemaTypeCreator] JAX-RPC does not allow collection Message-ID: <11004607.1183556770885.JavaMail.jboss@colo-br-02.atl.jboss.com> hi I am trying web service,where it returns collection. following is the code snippet, @WebMethod() public Collection getAccountList() { Query query=em.createQuery("from CustomerInfo c"); return query.getResultList(); } the problem is at the time of deploying i am getting following warning, WARN [SchemaTypeCreator] JAX-RPC does not allow collection types skipping: customer.__JBossWS_CustomerRegisteration_EndpointInterfacePort_getAccountListResponse.result i am using JBoss 4.0.5,it supporting JAX-WS RI 2.0_03-b24-fcs version. could anybody tell me why this warning? is JAX WS not able to resolve the collection type? i tested my web service with webservice explorer provided myeclipse5.5 IDE,there web service returns null please help me in this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060478#4060478 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060478 From do-not-reply at jboss.com Wed Jul 4 10:12:20 2007 From: do-not-reply at jboss.com (davideling) Date: Wed, 4 Jul 2007 10:12:20 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Writing WS client returning complex object Message-ID: <23725538.1183558340727.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello Andrea, haven't you generated your client artifacts using wsconsume? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060492#4060492 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060492 From do-not-reply at jboss.com Wed Jul 4 10:32:18 2007 From: do-not-reply at jboss.com (andrea.le) Date: Wed, 4 Jul 2007 10:32:18 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Writing WS client returning complex object Message-ID: <16864971.1183559538027.JavaMail.jboss@colo-br-02.atl.jboss.com> No i didnt'. Is it absolutely needed? A part client artifacts that i will do and the "wrong" client, the service and TestClass are ok? Thank a lot for ur answer View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060496#4060496 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060496 From do-not-reply at jboss.com Wed Jul 4 10:42:32 2007 From: do-not-reply at jboss.com (davideling) Date: Wed, 4 Jul 2007 10:42:32 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Writing WS client returning complex object Message-ID: <2462096.1183560152141.JavaMail.jboss@colo-br-02.atl.jboss.com> I think so. If you use wsconsume (very easy to use tool) you get the correct WSDL/Java mapping. Looking your WSDL I saw that the input part is a complex type. Probably you'll get a Java Bean as input parameter. Sorry for my english, but I'm italian ;) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060499#4060499 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060499 From do-not-reply at jboss.com Wed Jul 4 10:44:02 2007 From: do-not-reply at jboss.com (GenesisD) Date: Wed, 4 Jul 2007 10:44:02 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Writing WS client returning complex object Message-ID: <4306511.1183560242589.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi davideling, i was reading this thread 'cause i'have the same problems of andra. Now, it seems that we must produce this artifacts to consume the service, but it is not so clear if we must use wsconsume or wsprovide (in relation to the fact we wrote service class befor wsdl and not the inverse)? Then, artifacts are needed to the client to use TestClass objects, or are needed to the service for correct working? TestClass class needs some additional annotation? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060500#4060500 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060500 From do-not-reply at jboss.com Wed Jul 4 10:47:08 2007 From: do-not-reply at jboss.com (GenesisD) Date: Wed, 4 Jul 2007 10:47:08 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Writing WS client returning complex object Message-ID: <7816146.1183560428249.JavaMail.jboss@colo-br-02.atl.jboss.com> "davideling" wrote : | | Looking your WSDL I saw that the input part is a complex type. | No, output is complex, input is just a String. "davideling" wrote : | Sorry for my english, but | I'm italian ;) | Me too View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060503#4060503 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060503 From do-not-reply at jboss.com Wed Jul 4 10:59:41 2007 From: do-not-reply at jboss.com (davideling) Date: Wed, 4 Jul 2007 10:59:41 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Writing WS client returning complex object Message-ID: <22608566.1183561181835.JavaMail.jboss@colo-br-02.atl.jboss.com> wsconsume "consume" WSDL documents so from WSDL documents you get Java artifacts. Your auto-generated WSDL have a "parameters" part that is an element. It's type is "tns:getTestClass"... a complex type. | ... | | | | | | ... | | ... | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060508#4060508 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060508 From do-not-reply at jboss.com Wed Jul 4 11:36:10 2007 From: do-not-reply at jboss.com (fredash) Date: Wed, 4 Jul 2007 11:36:10 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JBOSS-WS Client not sending COOKIE after 2 calls Message-ID: <28411127.1183563370281.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I just tested under JBoss AS 4.0.5 & JBossWS 1.2.1 a session mecanism based on the HTTP Session Cookie (with a code sample from Rama Pulavarthi's blog). Here is the Web Service code: | @WebService | public class Hello { | @Resource | private WebServiceContext wsContext; | public int getCounter(){ | MessageContext mc = wsContext.getMessageContext(); | HttpSession session = ((javax.servlet.http.HttpServletRequest)mc.get(MessageContext.SERVLET_REQUEST)).getSession(); | // Get a session property "counter" from context | if (session == null) | throw new WebServiceException("No session in WebServiceContext"); | Integer counter = (Integer)session.getAttribute("counter"); | if (counter == null) { | counter = new Integer(0); | System.out.println("Starting the Session"); | } | counter = new Integer(counter.intValue() + 1); | session.setAttribute("counter", counter); | return counter; | } | } | Here is the Web Service Client code: | Hello proxy = new HelloService().getHelloPort(); | ((BindingProvider)proxy).getRequestContext().put(BindingProvider.SESSION_MAINTAIN_PROPERTY,true); | int result = proxy.getCounter(); | System.out.println(result); | result = proxy.getCounter(); | System.out.println(result); | result = proxy.getCounter(); | System.out.println(result); | The first 2 calls to proxy.getCounter() method just worked as expected : On the first call, a new session is created by the Web-Service and a SET-COOKIE is sent by the HTTP transport layer to the Client. The second call to proxy.getCounter() generates a SOAP message with the COOKIE received after the first call. BUT, when a 3rd call is fired, the client do not send anymore the COOKIE and then the server re-creates a new session. The problem seems to be at the client level, when the client stops to send the COOKIE value after the second call. ** BTW, this code is for testing purpose and i know that the session mecanism in Web Services should ideally be implemented with the WS-Addressing mecanism. Thanks in advance for your suggestions. Fred. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060524#4060524 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060524 From do-not-reply at jboss.com Wed Jul 4 11:39:20 2007 From: do-not-reply at jboss.com (floefliep) Date: Wed, 4 Jul 2007 11:39:20 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: charset encoding problem with the jsr181pojo sample : ec Message-ID: <24867825.1183563560932.JavaMail.jboss@colo-br-02.atl.jboss.com> Who else has encountered this problem? Since it affects all non-ASCII UTF-8 characters, it should be basically everybody who's not using English in their webservice app ... Note my patch for 1.2.1GA (comes with JBoss 4.2.0GA) in the post above. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060526#4060526 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060526 From do-not-reply at jboss.com Thu Jul 5 03:10:39 2007 From: do-not-reply at jboss.com (florian79) Date: Thu, 5 Jul 2007 03:10:39 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: HalloWorld Problem Message-ID: <28707419.1183619439676.JavaMail.jboss@colo-br-02.atl.jboss.com> Thank you, that works now. But now I get the following exception for any SOAPBinding: | javax.xml.ws.WebServiceException: org.jboss.ws.metadata.wsdl.WSDLException: javax.wsdl.WSDLException: WSDLException (at /definitions/message[1]/part): faultCode=UNBOUND_PREFIX: Unable to determine namespace of 'xsd:string'. | at javax.xml.ws.Service.create(Service.java:731) | at com.dooris.ws.HalloWorldWSImplTest.initByService(HalloWorldWSImplTest.java:41) | at com.dooris.ws.HalloWorldWSImplTest.setUp(HalloWorldWSImplTest.java:22) | 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:585) | at org.junit.internal.runners.BeforeAndAfterRunner.invokeMethod(BeforeAndAfterRunner.java:74) | at org.junit.internal.runners.BeforeAndAfterRunner.runBefores(BeforeAndAfterRunner.java:50) | at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:33) | at org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75) | at org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45) | at org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:71) | at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35) | at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42) | at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34) | at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52) | at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38) | at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196) | Caused by: org.jboss.ws.metadata.wsdl.WSDLException: javax.wsdl.WSDLException: WSDLException (at /definitions/message[1]/part): faultCode=UNBOUND_PREFIX: Unable to determine namespace of 'xsd:string'. | at org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:155) | at org.jboss.ws.metadata.umdm.ServiceMetaData.getWsdlDefinitions(ServiceMetaData.java:321) | at org.jboss.ws.metadata.builder.jaxws.JAXWSClientMetaDataBuilder.buildMetaData(JAXWSClientMetaDataBuilder.java:83) | at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.(ServiceDelegateImpl.java:140) | at org.jboss.ws.core.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:61) | at javax.xml.ws.Service.(Service.java:83) | at org.jboss.ws.core.jaxws.client.ServiceExt.(ServiceExt.java:60) | at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) | at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) | at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) | at java.lang.reflect.Constructor.newInstance(Constructor.java:494) | at javax.xml.ws.Service.create(Service.java:726) | ... 22 more | Caused by: javax.wsdl.WSDLException: WSDLException (at /definitions/message[1]/part): faultCode=UNBOUND_PREFIX: Unable to determine namespace of 'xsd:string'. | at com.ibm.wsdl.util.xml.DOMUtils.getQName(DOMUtils.java:309) | at com.ibm.wsdl.util.xml.DOMUtils.getQualifiedAttributeValue(DOMUtils.java:367) | at com.ibm.wsdl.xml.WSDLReaderImpl.getQualifiedAttributeValue(WSDLReaderImpl.java:2019) | at com.ibm.wsdl.xml.WSDLReaderImpl.parsePart(WSDLReaderImpl.java:1282) | at com.ibm.wsdl.xml.WSDLReaderImpl.parseMessage(WSDLReaderImpl.java:1257) | at com.ibm.wsdl.xml.WSDLReaderImpl.parseDefinitions(WSDLReaderImpl.java:309) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2265) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2229) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2282) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2303) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2335) | at org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:130) | ... 33 more | | Any idea? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060663#4060663 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060663 From do-not-reply at jboss.com Thu Jul 5 03:36:05 2007 From: do-not-reply at jboss.com (davideling) Date: Thu, 5 Jul 2007 03:36:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: HalloWorld Problem Message-ID: <9676672.1183620965210.JavaMail.jboss@colo-br-02.atl.jboss.com> Can You try tu specify the same targetnamespace both in your service interface and your service implementation? example: 1) interface | @WebService( | name="TheServicePortType", | targetNamespace="http://www.tai.it/TheService" | ) | @SOAPBinding( | use=SOAPBinding.Use.LITERAL, | style=SOAPBinding.Style.DOCUMENT, | parameterStyle=SOAPBinding.ParameterStyle.WRAPPED | ) | public interface TheService { | | // bla bla .... | | } | 2) Implementation | @WebService( | endpointInterface="mypackage.TheService", | targetNamespace="http://www.tai.it/TheService", | serviceName="TheService", | portName="TheServiceSOAP" | ) | public class TheServiceImpl implements TheService { | | //... bla bla implementation | | } | Bye View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060680#4060680 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060680 From do-not-reply at jboss.com Thu Jul 5 03:44:07 2007 From: do-not-reply at jboss.com (davideling) Date: Thu, 5 Jul 2007 03:44:07 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: HalloWorld Problem Message-ID: <6137184.1183621447798.JavaMail.jboss@colo-br-02.atl.jboss.com> Another question... did you start from WSDL or Java? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060683#4060683 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060683 From do-not-reply at jboss.com Thu Jul 5 03:54:44 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Thu, 5 Jul 2007 03:54:44 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Writing WS client returning complex object Message-ID: <26867177.1183622084103.JavaMail.jboss@colo-br-02.atl.jboss.com> You are using an old jbossws installation. It's probably still the default one that ships with the AS. Make sure you are using at least 1.2. http://jbws.dyndns.org/mediawiki/index.php?title=JBossWS View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060687#4060687 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060687 From do-not-reply at jboss.com Thu Jul 5 04:22:42 2007 From: do-not-reply at jboss.com (florian79) Date: Thu, 5 Jul 2007 04:22:42 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: HalloWorld Problem Message-ID: <24994911.1183623762273.JavaMail.jboss@colo-br-02.atl.jboss.com> I do not know if I understood your question, but I think I start from WSDL: | public class TheServiceImplTest | { | TheService mySessionBean; | @Before | public void setUp() throws Exception | { | String strURL = "http://localhost:8080/TheServiceImplService/TheServiceImpl"; | String strNameSpace = "http://www.tai.it/TheService"; | String strQName = "HalloWorldWS"; | URL url = new URL(strURL + "?wsdl"); | QName qname = new QName(strNameSpace,strQName); | Service service = Service.create(url, qname ); | TheService mySessionBean = service.getPort(TheService.class); | } | @Test | public final void testGetHalloWorld() | { | String strTemp = mySessionBean.getHalloWorld(); | System.out.println(strTemp); | } | } | I implemented the service exactly as you described: The Interface: | import javax.ejb.Local; | import javax.jws.WebService; | import javax.jws.soap.SOAPBinding; | @WebService(name="TheServicePortType",targetNamespace="http://www.tai.it/TheService") | SOAPBinding.Use.LITERAL) | @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) | @Local | public interface TheService | { | public String getHalloWorld(); | } | The Implementation: | import javax.ejb.Stateless; | import javax.jws.WebService; | | @WebService( | endpointInterface="com.dooris.ws.TheService", | targetNamespace="http://www.tai.it/TheService", | serviceName="TheService", | portName="TheServiceSOAP" | ) | @Stateless | public class TheServiceImpl implements TheService | { | public final String getHalloWorld() | { | return "Hallo Welt"; | } | } | The Exception: | javax.xml.ws.WebServiceException: org.jboss.ws.metadata.wsdl.WSDLException: javax.wsdl.WSDLException: WSDLException (at /definitions/message[1]/part): faultCode=UNBOUND_PREFIX: Unable to determine namespace of 'tns:getHalloWorldResponse'. | at javax.xml.ws.Service.create(Service.java:731) | at com.dooris.ws.TheServiceImplTest.initByService(TheServiceImplTest.java:30) | at com.dooris.ws.TheServiceImplTest.setUp(TheServiceImplTest.java:18) | 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:585) | at org.junit.internal.runners.BeforeAndAfterRunner.invokeMethod(BeforeAndAfterRunner.java:74) | at org.junit.internal.runners.BeforeAndAfterRunner.runBefores(BeforeAndAfterRunner.java:50) | at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:33) | at org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75) | at org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45) | at org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:71) | at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35) | at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42) | at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34) | at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52) | at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38) | at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386) | at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196) | Caused by: org.jboss.ws.metadata.wsdl.WSDLException: javax.wsdl.WSDLException: WSDLException (at /definitions/message[1]/part): faultCode=UNBOUND_PREFIX: Unable to determine namespace of 'tns:getHalloWorldResponse'. | at org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:155) | at org.jboss.ws.metadata.umdm.ServiceMetaData.getWsdlDefinitions(ServiceMetaData.java:321) | at org.jboss.ws.metadata.builder.jaxws.JAXWSClientMetaDataBuilder.buildMetaData(JAXWSClientMetaDataBuilder.java:83) | at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.(ServiceDelegateImpl.java:140) | at org.jboss.ws.core.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:61) | at javax.xml.ws.Service.(Service.java:83) | at org.jboss.ws.core.jaxws.client.ServiceExt.(ServiceExt.java:60) | at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) | at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) | at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) | at java.lang.reflect.Constructor.newInstance(Constructor.java:494) | at javax.xml.ws.Service.create(Service.java:726) | ... 22 more | Caused by: javax.wsdl.WSDLException: WSDLException (at /definitions/message[1]/part): faultCode=UNBOUND_PREFIX: Unable to determine namespace of 'tns:getHalloWorldResponse'. | at com.ibm.wsdl.util.xml.DOMUtils.getQName(DOMUtils.java:309) | at com.ibm.wsdl.util.xml.DOMUtils.getQualifiedAttributeValue(DOMUtils.java:367) | at com.ibm.wsdl.xml.WSDLReaderImpl.getQualifiedAttributeValue(WSDLReaderImpl.java:2019) | at com.ibm.wsdl.xml.WSDLReaderImpl.parsePart(WSDLReaderImpl.java:1278) | at com.ibm.wsdl.xml.WSDLReaderImpl.parseMessage(WSDLReaderImpl.java:1257) | at com.ibm.wsdl.xml.WSDLReaderImpl.parseDefinitions(WSDLReaderImpl.java:309) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2265) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2229) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2282) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2303) | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2335) | at org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:130) | ... 33 more | The WSDL: | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060695#4060695 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060695 From do-not-reply at jboss.com Thu Jul 5 04:24:38 2007 From: do-not-reply at jboss.com (pixel) Date: Thu, 5 Jul 2007 04:24:38 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JBoss 4.2.0 web service not exposing getters Message-ID: <33387654.1183623878115.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I have what I hope is a fairly simple problem, and I suspect I am just missing something obvious. I have a web service with a method which returns a POJO containing Strings, longs and booleans. I can access the variables directly if I set @XmlAccessorType(XmlAccessType.FIELD), but I can't get the service to expose the getters. Is this possible, as I want some logic in the getters. Web Service | @Stateless | @WebContext(contextRoot="/web-services", secureWSDLAccess=false) | @WebService(name="MobileUpdate", serviceName = "MobileUpdate") | @SOAPBinding(style = SOAPBinding.Style.RPC) | public class MobileUpdateService { | @WebMethod | public MobileConfigResponse getConfig( String msisdn ) { | return new MobileConfigAction().act( msisdn ); | } | } | Returned POJOs | @XmlAccessorType(XmlAccessType.FIELD) | public class MobileConfigResponse { | | protected String[] errors; | protected String config; | protected long id; | | MobileConfigResponse() {} | | public MobileConfigResponse( String[] _errors, String _config, long _id ) { | errors = _errors; | config = _config; | id = _id; | } | | public String[] getErrors){ | return errors; | } | | public boolean isError() { | return errors != null && errors.length > 0 | } | | public String getConfig() { | return config; | } | | public long getId() { | return id; | } | | } | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060696#4060696 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060696 From do-not-reply at jboss.com Thu Jul 5 04:46:56 2007 From: do-not-reply at jboss.com (davideling) Date: Thu, 5 Jul 2007 04:46:56 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: HalloWorld Problem Message-ID: <12370881.1183625216737.JavaMail.jboss@colo-br-02.atl.jboss.com> If you start from WSDL try to get service artifacts by wsconsume View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060703#4060703 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060703 From do-not-reply at jboss.com Thu Jul 5 05:24:55 2007 From: do-not-reply at jboss.com (florian79) Date: Thu, 5 Jul 2007 05:24:55 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: HalloWorld Problem Message-ID: <32174510.1183627495765.JavaMail.jboss@colo-br-02.atl.jboss.com> ok - now I understood! I do not start from WSDL. I generate the WSDL by jboss at deployment time. Now I generated my java sources by wsconsume from the (bad generated) WSDL and I got the same Exception, of Corse. What is the way to tell jboos to generate valid WSDL from my java sources? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060716#4060716 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060716 From do-not-reply at jboss.com Thu Jul 5 06:35:53 2007 From: do-not-reply at jboss.com (pixel) Date: Thu, 5 Jul 2007 06:35:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBoss 4.2.0 web service not exposing getters Message-ID: <23002762.1183631753216.JavaMail.jboss@colo-br-02.atl.jboss.com> Update - I have found that I can expose the getters by having matching setters, but I don't want a redundant setter for isError: | public boolean isIsError() { | return errors != null && errors.length > 0; | } | public void setIsError( boolean _notUsed ) { | } | I'm sure that we didn't need to have setters like this when we were using JBoss3 with JBoss.Net View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060731#4060731 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060731 From do-not-reply at jboss.com Thu Jul 5 06:44:21 2007 From: do-not-reply at jboss.com (florian79) Date: Thu, 5 Jul 2007 06:44:21 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Unsupported content type: application/x-www-form-urlencoded Message-ID: <26282099.1183632261282.JavaMail.jboss@colo-br-02.atl.jboss.com> I try to create a SOAP- connection between jboss-ws and an AJAX- Client (WebBrowser). The WebService is proper deployed. If I start a AJAX-Request to the WebService's URL then I will get the following exception: | 09:59:04,171 ERROR [SOAPFaultHelperJAXWS] SOAP request exception | javax.xml.soap.SOAPException: Unsupported content type: application/x-www-form-urlencoded | at org.jboss.ws.core.soap.MessageFactoryImpl.createMessage(MessageFactoryImpl.java:240) | at org.jboss.ws.core.soap.MessageFactoryImpl.createMessage(MessageFactoryImpl.java:179) | at org.jboss.ws.core.server.ServiceEndpoint.processRequest(ServiceEndpoint.java:197) | at org.jboss.ws.core.server.ServiceEndpointManager.processRequest(ServiceEndpointManager.java:448) | at org.jboss.ws.core.server.AbstractServiceEndpointServlet.doPost(AbstractServiceEndpointServlet.java:114) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:710) | at org.jboss.ws.core.server.AbstractServiceEndpointServlet.service(AbstractServiceEndpointServlet.java:75) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:803) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) | at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230) | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175) | at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179) | at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84) | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104) | at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156) | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241) | at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844) | at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:580) | at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) | at java.lang.Thread.run(Thread.java:595) | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060734#4060734 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060734 From do-not-reply at jboss.com Thu Jul 5 08:06:23 2007 From: do-not-reply at jboss.com (cheokfan) Date: Thu, 5 Jul 2007 08:06:23 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Error in JBossWS with large attachment Message-ID: <30996626.1183637183983.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi all, I am developing an application that use saaj to send an large attachment(about 100MB) to the server. The client side provides me an OutOfMemoryException. The problem is same as here http://jira.jboss.org/jira/browse/JBWS-801 So I want to know how to enable chunked streaming in the jboss ws. Hope someone can help me. Thank you~~~~ I am using JBOSS 4.20GA. FanCo View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060766#4060766 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060766 From do-not-reply at jboss.com Thu Jul 5 11:00:46 2007 From: do-not-reply at jboss.com (andrea.le) Date: Thu, 5 Jul 2007 11:00:46 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Writing WS client returning complex object Message-ID: <13204134.1183647646068.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm using JBossAS 4.0.5 GA jbossws-1.2.0.GA JVM 1.5.11 JbossIDE anonymous wrote : Now, it seems that we must produce this artifacts to consume the service, but it is not so clear if we must use wsconsume or wsprovide (in relation to the fact we wrote service class befor wsdl and not the inverse)? | | Then, artifacts are needed to the client to use TestClass objects, or are needed to the service for correct working? | | TestClass class needs some additional annotation? | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060861#4060861 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060861 From do-not-reply at jboss.com Fri Jul 6 05:31:24 2007 From: do-not-reply at jboss.com (georgesberscheid) Date: Fri, 6 Jul 2007 05:31:24 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JAXM Message-ID: <25932186.1183714284195.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, what would be the best way to create a JAXM endpoint and a JAXM client in my JBoss Application Server 4.2? Thanks a lot, Georges View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061179#4061179 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061179 From do-not-reply at jboss.com Fri Jul 6 06:28:54 2007 From: do-not-reply at jboss.com (GenesisD) Date: Fri, 6 Jul 2007 06:28:54 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - jbossws installation problem? Message-ID: <2495463.1183717734077.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm using jboss 4.0.5GA and I tryed to integrate it with jbossws-1.2.1.GA. I followed instruction and if I access to localHost:8080/jbossws I see the "Welcome to JBoss Web Services" page. Now, in bin folder of my AS i can't see, nor use, wsprovide, wsconsume and other similar tools. Why? Where I'm wrong? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061198#4061198 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061198 From do-not-reply at jboss.com Fri Jul 6 09:38:01 2007 From: do-not-reply at jboss.com (Maffewl) Date: Fri, 6 Jul 2007 09:38:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - implicit namespace support? Message-ID: <1480834.1183729081201.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, im attempting to upgrade from jboss-net/axis to JBossWS. I want to do this transparently to existing clients. When I issue an existing request : | | | | ... | <:getAccount> | | i get an error saying my endpoint "does not contain operation metadata for: getAccount" if i qualify that node w/ a namespace it works , but is there any way to support it without modifying the request? Why wouldn't it default to the namespace specified in the service? Thanks in advance. matt View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061309#4061309 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061309 From do-not-reply at jboss.com Fri Jul 6 12:30:21 2007 From: do-not-reply at jboss.com (robsie) Date: Fri, 6 Jul 2007 12:30:21 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Deploying CrimePortalBeans on jboss 4.0.5.GA Message-ID: <29717792.1183739421724.JavaMail.jboss@colo-br-02.atl.jboss.com> I found some working examples in http://labs.jboss.com/jbossws/downloads View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061388#4061388 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061388 From do-not-reply at jboss.com Fri Jul 6 18:45:53 2007 From: do-not-reply at jboss.com (eric@attask.com) Date: Fri, 6 Jul 2007 18:45:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - using a derived class from javax.xml.ws.Service I need to ca Message-ID: <33491302.1183761953580.JavaMail.jboss@colo-br-02.atl.jboss.com> Trying to integrate into SalesForce using JBossws1.2 SP1 instead of Axis. I've generated the java stubs and I can connect just fine. One I login I'm given a new SeverURL and a sessionID. I need to change the location that I connect to and I need to attach the SessionID to the soap Bindings for every subsequent request. | QName q = new QName("urn:partner.soap.sforce.com", "SforceService"); | SforceService service = new SforceService(urlToWSDL, q); | LoginResult lr = service.getSoap().login("username", "password"); | System.out.println("lr.getServerUrl() = " + lr.getServerUrl()); | System.out.println("lr.getSessionId() = " + lr.getSessionId()); SforceService extends javax.xml.ws.Service and was generated by wsconsume from the sales-force partner wsdl. I need to set the new server url to the lr.getServerUrl and I need to include the lr.getSessionId as a SOAP header. I can get this to work using Axis but I want to use JBossWS. --------USING AXIS --------- SforceService service extends org.apache.axis.client.Stub. The axis org.apache.axis.client.Stub provides _setProperty and setHeader Example: | service._setProperty(SoapBindingStub.ENDPOINT_ADDRESS_PROPERTY, serverURL); and SessionHeader sessionHeader = new SessionHeader(); | sessionHeader.setSessionId(sessionID); | // Add the header to the binding stub. | String sforceURI = new SforceServiceLocator().getServiceName().getNamespaceURI(); | service.setHeader(sforceURI, "SessionHeader", sessionHeader); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061513#4061513 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061513 From do-not-reply at jboss.com Fri Jul 6 19:22:51 2007 From: do-not-reply at jboss.com (eric@attask.com) Date: Fri, 6 Jul 2007 19:22:51 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - setHeader and setServerURL, using javax.xml.ws.Service? Message-ID: <32297522.1183764171230.JavaMail.jboss@colo-br-02.atl.jboss.com> Trying to integrate into SalesForce using JBossws1.2 SP1 instead of Axis. I've generated the java stubs and I can connect just fine. One I login I'm given a new SeverURL and a sessionID. I need to change the location that I connect to and I need to attach the SessionID to the soap Bindings for every subsequent request. | QName q = new QName("urn:partner.soap.sforce.com", "SforceService"); | SforceService service = new SforceService(urlToWSDL, q); | LoginResult lr = service.getSoap().login("username", "password"); | System.out.println("lr.getServerUrl() = " + lr.getServerUrl()); | System.out.println("lr.getSessionId() = " + lr.getSessionId()); SforceService extends javax.xml.ws.Service and it was generated by wsconsume from the sales-force partner wsdl. I need to set the new server url to the lr.getServerUrl and I need to include the lr.getSessionId as a SOAP header. I can get this to work using Axis but I want to use JBossWS. --------USING AXIS --------- SforceService service extends org.apache.axis.client.Stub. The axis org.apache.axis.client.Stub provides _setProperty and setHeader Example: | service._setProperty(SoapBindingStub.ENDPOINT_ADDRESS_PROPERTY, serverURL); and SessionHeader sessionHeader = new SessionHeader(); | sessionHeader.setSessionId(sessionID); | // Add the header to the binding stub. | String sforceURI = new SforceServiceLocator().getServiceName().getNamespaceURI(); | service.setHeader(sforceURI, "SessionHeader", sessionHeader); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061520#4061520 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061520 From do-not-reply at jboss.com Sun Jul 8 11:39:21 2007 From: do-not-reply at jboss.com (VishalPai) Date: Sun, 8 Jul 2007 11:39:21 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - (HTTPS + Basic HTTP Authorization + Proxy Server) and Webser Message-ID: <12339893.1183909161648.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I have created the same simple hello web service following the same steps as mentioned in the JBOSS chapter 12 document (http://docs.jboss.org/jbossas/jboss4guide/r2/html/ch12.html). JBOSS version: JBoss [Zion] 4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339. JBOSSWS version: jbossws-1.0.3.SP1 (date=200609291417). I have deployed the web service on a external server that lives on the internet. The access from my machine to the server is through a proxy server which is a Microsoft ISA 2004 SP2 on windows 2003 server in cluster mode (two array members). I am trying to protect the web service through basic HTTP authentication + HTTPS authentication. I have written two types of clients to the web service. i) Stub based consumer. ii) DII based consumer. Following are the scenarios where these clients fail. i) Stub based client does not work as soon as I enabled HTTPS on the server. ii) DII based client works in the above scenario but fails when I enable basic authentication in addition to HTTPS on the server. iii) ALL WORKS WELL IF THERE IS NO PROXY SERVER FOR STUB BASED CONSUMER. I HAVE NOT TRIED THE SAME FOR DII BASED CONSUMER. I have set the required user name/password and also set the proxy related properties in my source code. Following are my findings: i. DII based mechanism of invoking the web service (All scenarios with proxy server which is a Microsoft ISA). Works with only HTTP. Works with only HTTPS. Works with HTTP + Basic authentication. Does not work with HTTPS + basic authentication. ii. Stub based mechanism of invoking the web service (All scenarios with proxy server which is a Microsoft ISA). Works with only HTTP. Works with HTTP + Basic authentication. Does not work with HTTPS. Does not work with HTTPS + basic authentication. [Follows from above.] The output that I see is following [I have set the debug property to ssl]: instantiated an instance of class com.sun.net.ssl.internal.ssl.SSLSocketFactoryImpl After this line my client hangs forever. My thread dump shows that a socket is waiting for read operation to complete. [If needed I can post the dump as well.] I am in real urgent need of a solution as this scenario has stalled our release. Thanks in advance Best Regards, Vishal View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061736#4061736 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061736 From do-not-reply at jboss.com Sun Jul 8 15:02:56 2007 From: do-not-reply at jboss.com (palin) Date: Sun, 8 Jul 2007 15:02:56 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Unsupported content type: application/x-www-form-urlenco Message-ID: <21409198.1183921376940.JavaMail.jboss@colo-br-02.atl.jboss.com> MessageFactoryImpl is throwing that exception since it only supports text/xml and application/soap+xml content types. I'd suggest to check your ajax client's requests. Alessio Soldano http://www.javalinux.it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061751#4061751 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061751 From do-not-reply at jboss.com Sun Jul 8 15:35:22 2007 From: do-not-reply at jboss.com (palin) Date: Sun, 8 Jul 2007 15:35:22 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problem Accessing Web Service Message-ID: <29424189.1183923322380.JavaMail.jboss@colo-br-02.atl.jboss.com> I'd check the deployment; are client and server side sharing classes? JBossWS stack throws that exception when it can't find @WebService annotation on the specified SEI, thus I suspect the class it's checking for annotation is not what you think it should be (classloading issue?) Bye Alessio Soldano http://www.javalinux.it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061754#4061754 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061754 From do-not-reply at jboss.com Sun Jul 8 16:00:04 2007 From: do-not-reply at jboss.com (palin) Date: Sun, 8 Jul 2007 16:00:04 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Accessing jaxws web service gives error complaining abou Message-ID: <31326974.1183924804330.JavaMail.jboss@colo-br-02.atl.jboss.com> "rickcr" wrote : For now, I'm just trying to test this from a client running on the same server, so I thought I'd only need the generated Service stub. | ... | What I don't even get is why it's complaining about not being able to find: | net.learntechnology.sample.ejb.slsb.jaxws.ProcessSpec | | I don't even have a package by that name. I have packages that start with net.learntechnology.sample.ejb.slsb but nothing with jaxws.ProcessSpec | | I'm really stumped here. Any idea what I'm doing wrong? Are you keeping the generated Service stub only, without the other generated classes? I think you should keep all generated client classes, which I suspect include something having the jaxws.ProcessSpec package. Bye Alessio Soldano http://www.javalinux.it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061757#4061757 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061757 From do-not-reply at jboss.com Sun Jul 8 16:34:48 2007 From: do-not-reply at jboss.com (palin) Date: Sun, 8 Jul 2007 16:34:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: advice needed Message-ID: <32613777.1183926888225.JavaMail.jboss@colo-br-02.atl.jboss.com> You should check the content type in your http requests. Valid content types are text/xml(soap1.1) and application/soap+xml (soap1.2) Bye Alessio Soldano http://www.javalinux.it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061763#4061763 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061763 From do-not-reply at jboss.com Sun Jul 8 17:00:36 2007 From: do-not-reply at jboss.com (palin) Date: Sun, 8 Jul 2007 17:00:36 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: setHeader and setServerURL, using javax.xml.ws.Service? Message-ID: <19232736.1183928436930.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, first of all consider upgrading to 2.0.GA. To change the web service address dynamically for a request, you might do something like ((BindingProvider)proxy).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, "..."); Bye Alessio Soldano http://www.javalinux.it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061768#4061768 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061768 From do-not-reply at jboss.com Sun Jul 8 18:58:50 2007 From: do-not-reply at jboss.com (rickcr) Date: Sun, 8 Jul 2007 18:58:50 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Accessing jaxws web service gives error complaining abou Message-ID: <15492573.1183935530164.JavaMail.jboss@colo-br-02.atl.jboss.com> It didn't seem to matter how I tried to access the webservice - whether using the generated stubs, creating the service manually, or I even tried axis2 client stubs - I just had no luck when I tried to use the bean from the jmx console. Yet, if I used this client code from a servlet there wasn't a problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061785#4061785 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061785 From do-not-reply at jboss.com Mon Jul 9 03:57:59 2007 From: do-not-reply at jboss.com (tweedledee) Date: Mon, 9 Jul 2007 03:57:59 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: NullPointerException in ServiceEndpointManagerFactory Message-ID: <30139583.1183967879221.JavaMail.jboss@colo-br-02.atl.jboss.com> This turned out to be a simple case of comflicting JBossWS jars in the classpath. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061835#4061835 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061835 From do-not-reply at jboss.com Mon Jul 9 05:05:13 2007 From: do-not-reply at jboss.com (fredash) Date: Mon, 9 Jul 2007 05:05:13 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: charset encoding problem with the jsr181pojo sample : ec Message-ID: <13808596.1183971913301.JavaMail.jboss@colo-br-02.atl.jboss.com> Yes i have had this exact same problem, as described in first post of this thread (see the post of smalbequi). I develop on Mac OS X 10.4.10, Jboss 4.0.5 + JbossWS 1.2.1 GA. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061856#4061856 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061856 From do-not-reply at jboss.com Mon Jul 9 07:43:40 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Mon, 9 Jul 2007 07:43:40 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossws installation problem? Message-ID: <20302576.1183981420837.JavaMail.jboss@colo-br-02.atl.jboss.com> Try 2.0 it contains a correct installer. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061936#4061936 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061936 From do-not-reply at jboss.com Mon Jul 9 08:34:18 2007 From: do-not-reply at jboss.com (fredash) Date: Mon, 9 Jul 2007 08:34:18 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBOSS-WS Client not sending COOKIE after 2 calls Message-ID: <32616325.1183984458514.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I just installed JBoss-ws 2.0 GA and the problem is just the same : the client doesn't send the JSESSIONID COOKIE after the second call, so a new HTTP session is created by the server. Can someone confirm this problem please ? Thanks, Fred. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061955#4061955 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061955 From do-not-reply at jboss.com Mon Jul 9 09:42:00 2007 From: do-not-reply at jboss.com (acxjbertr) Date: Mon, 9 Jul 2007 09:42:00 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Any thoughts on this? Message-ID: <23682991.1183988520954.JavaMail.jboss@colo-br-02.atl.jboss.com> Any thoughts on this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061976#4061976 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061976 From do-not-reply at jboss.com Mon Jul 9 10:09:22 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 9 Jul 2007 10:09:22 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - jbossws-2.0.0.GA released Message-ID: <13902461.1183990162264.JavaMail.jboss@colo-br-02.atl.jboss.com> As of this post I am happy to anounce that jbossws-2.0.0.GA is released. This is the first fully certified JAXWS web services implemenation. It runs on jboss-5.0.x, jboss-4.2.0, jboss-4.0.5 JAXWS brings to web services what EJB3 brings to EJB. With its greatly simplified programming model and functional enhancements it is desigend to take the place of previous JAX-RPC web service implementations. Details of how to download and install the new stack can be found in our new wiki http://jbws.dyndns.org/mediawiki/index.php/Main_Page To get started please have a look at the Quick Start and User Guide http://jbws.dyndns.org/mediawiki/index.php/Quick_Start http://jbws.dyndns.org/mediawiki/index.php/JAX-WS_User_Guide If you don't know it already, you'll be surprised how easy it is to do Web Services. I'd like to thank the team and the many contributors for all the hard work to make this release possible. Enjoy View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061989#4061989 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061989 From do-not-reply at jboss.com Mon Jul 9 10:13:05 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 9 Jul 2007 10:13:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: User guide link not available without proxy. Message-ID: <29344675.1183990385774.JavaMail.jboss@colo-br-02.atl.jboss.com> Sorry for the inconvenience, we've been moving house with our IT infrastructure. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061994#4061994 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061994 From do-not-reply at jboss.com Mon Jul 9 11:08:05 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 9 Jul 2007 11:08:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: POJO web services and standard security annotations Message-ID: <586913.1183993685470.JavaMail.jboss@colo-br-02.atl.jboss.com> anonymous wrote : | I would need to annotate interface class with either @Local or @Remote, right? | There is no such requirement. Have a look at our standalone samples. There we show how to secure EJB3 endpoints. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062023#4062023 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062023 From do-not-reply at jboss.com Mon Jul 9 11:26:33 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 9 Jul 2007 11:26:33 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WebService that catches all requests Message-ID: <19203698.1183994793298.JavaMail.jboss@colo-br-02.atl.jboss.com> Have a look at the standard-jaxws-endpoint-config.xml, there you install jaxws handlers for all endoints that use that config. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062035#4062035 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062035 From do-not-reply at jboss.com Mon Jul 9 11:32:18 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 9 Jul 2007 11:32:18 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WARN [SchemaTypeCreator] JAX-RPC does not allow collect Message-ID: <800755.1183995138138.JavaMail.jboss@colo-br-02.atl.jboss.com> Please monitor http://jira.jboss.org/jira/browse/JBWS-1731 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062040#4062040 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062040 From do-not-reply at jboss.com Mon Jul 9 11:38:11 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 9 Jul 2007 11:38:11 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Message-ID: <26367532.1183995491239.JavaMail.jboss@colo-br-02.atl.jboss.com> Why not use jaxws? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062044#4062044 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062044 From do-not-reply at jboss.com Mon Jul 9 11:40:57 2007 From: do-not-reply at jboss.com (acxjbertr) Date: Mon, 9 Jul 2007 11:40:57 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Message-ID: <18769966.1183995657253.JavaMail.jboss@colo-br-02.atl.jboss.com> I plan on migrating our product to JAXWS asap, but this project was started before JAXWS was a viable option in JBossWS. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062046#4062046 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062046 From do-not-reply at jboss.com Mon Jul 9 11:41:20 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 9 Jul 2007 11:41:20 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Error in JBossWS with large attachment Message-ID: <18253965.1183995680581.JavaMail.jboss@colo-br-02.atl.jboss.com> This should be fixed in 2.0.0.GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062047#4062047 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062047 From do-not-reply at jboss.com Mon Jul 9 13:02:53 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 9 Jul 2007 13:02:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: implicit namespace support? Message-ID: <8873381.1184000574023.JavaMail.jboss@colo-br-02.atl.jboss.com> The question is: does the client send a request that conforms to the abstract contract defined in wsdl. You might find that the message is invalid because it incorrectly does not namespace qualify the RPC element. To further support such "invalid" messages, you would need to have a pre-processing stage (i.e. a servlet filter) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062074#4062074 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062074 From do-not-reply at jboss.com Mon Jul 9 13:06:01 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 9 Jul 2007 13:06:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: using a derived class from javax.xml.ws.Service I need t Message-ID: <2210361.1184000761789.JavaMail.jboss@colo-br-02.atl.jboss.com> | Stub._setProperty | is JAXRPC API. You need to use the JAXWS equivalent | BindingProvider.ENDPOINT_ADDRESS_PROPERTY | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062075#4062075 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062075 From do-not-reply at jboss.com Mon Jul 9 13:08:32 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 9 Jul 2007 13:08:32 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBOSS-WS Client not sending COOKIE after 2 calls Message-ID: <29579477.1184000912082.JavaMail.jboss@colo-br-02.atl.jboss.com> I'll look into it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062076#4062076 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062076 From do-not-reply at jboss.com Mon Jul 9 13:34:12 2007 From: do-not-reply at jboss.com (eric@attask.com) Date: Mon, 9 Jul 2007 13:34:12 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: setHeader and setServerURL, using javax.xml.ws.Service? Message-ID: <16244902.1184002452833.JavaMail.jboss@colo-br-02.atl.jboss.com> That seems to reset the URL: SforceService service = new SforceService(urlToWSDL, q); | Soap soapBinding = service.getSoap(); | LoginResult lr = soapBinding.login("username", password"); | ((BindingProvider)soapBinding).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, lr.getServerUrl()); | That works perfectly, with JBoss 1.2.1 sp1 I still haven't figured out how to set the sessionID. I've tried: SessionHeader session = new SessionHeader(); | session.setSessionId(lr.getSessionId()); | ((BindingProvider)soapBinding).getRequestContext().put("SessionHeader", session); | but I still get the following error: Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: INVALID_SESSION_ID: Invalid Session ID found in SessionHeader: Illegal Session at org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS.getSOAPFaultException(SOAPFaultHelperJAXWS.java:56) at org.jboss.ws.core.jaxws.binding.SOAP11BindingJAXWS.throwFaultException(SOAP11BindingJAXWS.java:111) at org.jboss.ws.core.CommonSOAPBinding.unbindResponseMessage(CommonSOAPBinding.java:460) at org.jboss.ws.core.CommonClient.invoke(CommonClient.java:333) at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:185) at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:163) at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:149) at $Proxy22.query(Unknown Source) THIS IS HOW YOU SET THE SESSION HEADER IN AXIS: SoapBindingStub service; // public class SoapBindingStub extends org.apache.axis.client.Stub implements com.sforce.soap.partner.Soap SessionHeader sessionHeader = new SessionHeader(); | sessionHeader.setSessionId(sessionID); | | String sforceURI = new SforceServiceLocator().getServiceName().getNamespaceURI(); | service.setHeader(sforceURI, "SessionHeader", sessionHeader); | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062080#4062080 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062080 From do-not-reply at jboss.com Mon Jul 9 13:34:28 2007 From: do-not-reply at jboss.com (cowsudders) Date: Mon, 9 Jul 2007 13:34:28 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - .NET client calling Java web-service (SOAPFaultException) Message-ID: <3611457.1184002468011.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi all We are replacing a set of .NET web-services with a set of Java ones (deployed into JBoss 4.0.5). All is fine with building/deploying/calling the web-services from .NET - however, I'm having some trouble with regards exceptions. The .NET client code (which we cannot change), has the following code: | try { | doWebServiceCall() | } | catch(SoapException se) | { | MessageBox.Show("Soap Exception Received! " + se.Message); | outXmlBrowser.Navigate( WriteToTempFile(se.Detail.InnerXml), ref n_pointer, ref n_pointer, ref n_pointer, ref n_pointer); | } The problem is highlighted in bold - I cannot seem to fill the Detail object being returned in the SOAPFaultException I throw in the web-service code. I'm throwing a simple SOAPFaultException as follows: | try { | String strXML = MyObject.getXML(); | Detail faultDetail = SOAPFactory.newInstance().createDetail(); | faultDetail.addChildElement("SoapErrorDetail").addChildElement(strXML); | } | catch(Exception e) { | logit(e); | } | The following snippet shows the JBoss log file after the above code executes: | 2007-07-09 17:46:07,709 DEBUG [javax.xml.rpc.soap.SOAPFaultException] new SOAPFaultException [code={http://schemas.xmlsoap.org/soap/envelope/}Client,string= | | ,actor=null,detail=null] | As can be seen in bold, the Detail object is null.... I have a few questions: i) How can I create the SOAPFaultException so that the Detail object is not null when it is pushed out of JBoss? ii) As seen above, I am pushing an XML string into the Detail object. However, I also have this XML document as an org.w3c.dom.Element object. Therefore, it is possible to push the XML document in this form into the Detail object in order to stop it being null? If so, how do I convert an org.w3c.dom.Element object into javax.xml.soap.SOAPElement object in order to add it to the Detail object set within the SOAPFaultException object. Is it possible to return a Detail object from JBoss? Thanks in advance for all your help, Thanks Kind regards Dave View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062081#4062081 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062081 From do-not-reply at jboss.com Mon Jul 9 16:01:04 2007 From: do-not-reply at jboss.com (eric@attask.com) Date: Mon, 9 Jul 2007 16:01:04 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: setHeader and setServerURL, using javax.xml.ws.Service? Message-ID: <19649782.1184011264743.JavaMail.jboss@colo-br-02.atl.jboss.com> I think i'm getting a little closer, after reading the JAX-RPC user guild I think I need to set the: Unbound SOAP Headers on the client proxy, see http://jbws.dyndns.org/mediawiki/index.php?title=JAX-RPC_User_Guide#Unbound_SOAP_Headers I've tried this but it didn't seem to work | URL urlToWSDL = JbossWSConnection.class.getResource("/partner-wsdl.xml"); | QName q = new QName("urn:partner.soap.sforce.com", "SforceService"); | SforceService service = new SforceService(urlToWSDL, q); | Soap soapBinding = service.getSoap(); | StubExt stub = (StubExt)soapBinding; | LoginResult lr = soapBinding.login("username", "password"); | SessionHeader session = new SessionHeader(); | session.setSessionId(lr.getSessionId()) | QName headerQ = new QName(service.getServiceName().getNamespaceURI(), "SessionHeader"); | stub.addUnboundHeader(headerQ, Constants.TYPE_LITERAL_ANYTYPE, SessionHeader.class, ParameterMode.IN); | stub.setUnboundHeaderValue(headerQ, session); This is the error that I get: Caused by: org.jboss.ws.WSException: Cannot obtain serializer factory for: [xmlType={http://www.w3.org/2001/XMLSchema}anyType,javaType=class com.sforce.soap.partner.SessionHeader] at org.jboss.ws.core.soap.ObjectContent.getSerializerFactory(ObjectContent.java:189) at org.jboss.ws.core.soap.ObjectContent.marshallObjectContents(ObjectContent.java:139) at org.jboss.ws.core.soap.ObjectContent.transitionTo(ObjectContent.java:65) at org.jboss.ws.core.soap.SOAPContentElement.transitionTo(SOAPContentElement.java:129) at org.jboss.ws.core.soap.SOAPContentElement.writeElement(SOAPContentElement.java:536) at org.jboss.ws.core.soap.SOAPHeaderElementImpl.writeElement(SOAPHeaderElementImpl.java:132) at org.jboss.ws.core.soap.SOAPElementImpl.writeElementContent(SOAPElementImpl.java:825) at org.jboss.ws.core.soap.SOAPElementImpl.writeElement(SOAPElementImpl.java:810) at org.jboss.ws.core.soap.SOAPElementImpl.writeElementContent(SOAPElementImpl.java:825) at org.jboss.ws.core.soap.SOAPElementImpl.writeElement(SOAPElementImpl.java:810) at org.jboss.ws.core.soap.SOAPElementWriter.writeElementInternal(SOAPElementWriter.java:149) at org.jboss.ws.core.soap.SOAPElementWriter.writeElement(SOAPElementWriter.java:130) at org.jboss.ws.core.soap.SOAPMessageImpl.writeTo(SOAPMessageImpl.java:288) at org.jboss.ws.core.soap.SOAPMessageMarshaller.write(SOAPMessageMarshaller.java:76) at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:164) I'm guessing the problem has to do with stub.addUnboundHeader(headerQ, Constants.TYPE_LITERAL_ANYTYPE, SessionHeader.class, ParameterMode.IN); any Idea on which QName xmlType I should pick? I'm using the org.jboss.ws.Constants Interface. I've also tried: | QName headerQ = new QName(service.getServiceName().getNamespaceURI(), "SessionHeader"); | SessionHeader.class, ParameterMode.IN); | stub.addUnboundHeader(headerQ, Constants.TYPE_LITERAL_STRING, String.class, ParameterMode.IN); | stub.setUnboundHeaderValue(headerQ, lr.getSessionId()); | but then I get the infamous: Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: INVALID_SESSION_ID: Invalid Session ID found in SessionHeader: Illegal Session at org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS.getSOAPFaultException(SOAPFaultHelperJAXWS.java:56) at org.jboss.ws.core.jaxws.binding.SOAP11BindingJAXWS.throwFaultException(SOAP11BindingJAXWS.java:111) at org.jboss.ws.core.CommonSOAPBinding.unbindResponseMessage(CommonSOAPBinding.java:460) at org.jboss.ws.core.CommonClient.invoke(CommonClient.java:333) at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:185) at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:163) at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:149) at $Proxy22.query(Unknown Source) at salesforce.JbossWSConnection.querySample(JbossWSConnection.java:165) at salesforce.JbossWSConnection.main(JbossWSConnection.java:66) 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:585) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:90) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062129#4062129 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062129 From do-not-reply at jboss.com Mon Jul 9 20:42:09 2007 From: do-not-reply at jboss.com (jkessler) Date: Mon, 9 Jul 2007 20:42:09 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossws-2.0.0.GA install issues Message-ID: <210068.1184028129179.JavaMail.jboss@colo-br-02.atl.jboss.com> I am trying to install jbossws-2.0.0.GA on a Windows box with JBoss 5.0 Beta 2. I am running JDK 1.5 It seems that the install scripts have changed with this version but the docs have not been updated. I updated the ant.properties file and then ran the build.bat script. This script returned no errors or success messages. JBossWS 2.0 was not installed. Please advise. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062218#4062218 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062218 From do-not-reply at jboss.com Tue Jul 10 03:43:58 2007 From: do-not-reply at jboss.com (Ufic) Date: Tue, 10 Jul 2007 03:43:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - How to return a complex type? Message-ID: <3183784.1184053438112.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi. I'm a new user of JBoss. I'm trying to create a WebService with JBoss 4.2.0 and Eclipse 3.1 (using Java 1.5 and Ejb 2.1: I must use these versions). No problem with business methods returning a String, but I can't create business methods returning an array of Strings, a JavaBean or (it's my really goal) an array of JavaBeans. I realize that in some way I have to map Java types in xml types and viceversa. But, HOW? I have to change wsdl file, jaxrpc-mapping.xml, webservices.xml or I have to create some new file? Googling, I found too many infos: sorry, maybe this is a faq but it's driving me crazy :( . I can deploy a Service that returns an array of Strings but the client throws the follow exception: {http://xml.apache.org/axis/}stackTrace:org.xml.sax.SAXException: | Deserializing parameter 'result': could not find deserializer for type | {http://dipartimento.wsEjb.agaticarnazzo.it/types}String.Array | at org.apache.axis.message.RPCHandler.onStartChild(RPCHandler.java:308) | at org.apache.axis.encoding.DeserializationContextImpl.startElement(DeserializationContextImpl.java:1040) | at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:198) | at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:856) | at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:325) | at org.apache.axis.message.RPCElement.getParams(RPCElement.java:349) | at org.apache.axis.client.Call.invoke(Call.java:2379) | at org.apache.axis.client.Call.invoke(Call.java:2278) | at org.apache.axis.client.Call.invoke(Call.java:1772) | at org.apache.axis.client.AxisClientProxy.invoke(AxisClientProxy.java:195) | at $Proxy0.getDocumenti(Unknown Source) | at it.agaticarnazzo.dipartimento.wsPojo.TestClient.main(TestClient.java:30) And if I try to deploy a webservice that returns a JavaBean, Jboss prints the follow error: Cannot load java type: MyJavaBean.in.its.package Can someone help me? :( View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062268#4062268 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062268 From do-not-reply at jboss.com Tue Jul 10 05:53:34 2007 From: do-not-reply at jboss.com (Juergen.Zimmermann) Date: Tue, 10 Jul 2007 05:53:34 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JBossWS 2.0 throws WebServiceException: Error creating JAXBC Message-ID: <2825959.1184061214172.JavaMail.jboss@colo-br-02.atl.jboss.com> I updated my JBoss 4.2 installation to JBossWS 2.0. Only minor modifications where necessary for ANT build.xml files (JARs changed regarding classpath, classes for ANT tasks changed). However, if I run my JBossWS clients I get this stacktrace. What's going on? Any hint is appreciated! When testing with the generic WS test client of the Eclipse plugin WTP everything works fine. java.lang.ExceptionInInitializerError | at java.lang.reflect.Constructor.newInstance(Constructor.java:513) | at java.lang.Class.newInstance0(Class.java:355) | at java.lang.Class.newInstance(Class.java:308) | at javax.xml.ws.spi.FactoryFinder.newInstance(FactoryFinder.java:36) | at javax.xml.ws.spi.FactoryFinder.find(FactoryFinder.java:95) | at javax.xml.ws.spi.Provider.provider(Provider.java:76) | at javax.xml.ws.Service.(Service.java:57) | at de.hska.wsgen.KundenverwaltungService.(KundenverwaltungService.java:41) | at de.hska.test.WebServicesJBossWSTest.setupProxy(WebServicesJBossWSTest.java:44) | Caused by: javax.xml.ws.WebServiceException: Error creating JAXBContext for W3CEndpointReference. | at com.sun.xml.ws.spi.ProviderImpl.getEPRJaxbContext(ProviderImpl.java:188) | at com.sun.xml.ws.spi.ProviderImpl.(ProviderImpl.java:65) | Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 2 counts of IllegalAnnotationExceptions | Two classes have the same XML type name "address". Use @XmlType.name and @XmlType.namespace to assign different names to them. | this problem is related to the following location: | at com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Address | at public com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Address com.sun.xml.ws.developer.MemberSubmissionEndpointReference.addr | at com.sun.xml.ws.developer.MemberSubmissionEndpointReference | this problem is related to the following location: | at javax.xml.ws.wsaddressing.W3CEndpointReference$Address | at private javax.xml.ws.wsaddressing.W3CEndpointReference$Address javax.xml.ws.wsaddressing.W3CEndpointReference.address | at javax.xml.ws.wsaddressing.W3CEndpointReference | Two classes have the same XML type name "elements". Use @XmlType.name and @XmlType.namespace to assign different names to them. | this problem is related to the following location: | at com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Elements | at public com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Elements com.sun.xml.ws.developer.MemberSubmissionEndpointReference.referenceProperties | at com.sun.xml.ws.developer.MemberSubmissionEndpointReference | this problem is related to the following location: | at javax.xml.ws.wsaddressing.W3CEndpointReference$Elements | at private javax.xml.ws.wsaddressing.W3CEndpointReference$Elements javax.xml.ws.wsaddressing.W3CEndpointReference.referenceParameters | at javax.xml.ws.wsaddressing.W3CEndpointReference | | at com.sun.xml.bind.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:66) | at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:422) | at com.sun.xml.bind.v2.runtime.JAXBContextImpl.(JAXBContextImpl.java:270) | at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:103) | at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:81) | at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:210) | at javax.xml.bind.ContextFinder.find(ContextFinder.java:366) | at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:574) | at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:522) | at com.sun.xml.ws.spi.ProviderImpl.getEPRJaxbContext(ProviderImpl.java:186) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062337#4062337 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062337 From do-not-reply at jboss.com Tue Jul 10 07:02:52 2007 From: do-not-reply at jboss.com (lzap) Date: Tue, 10 Jul 2007 07:02:52 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WebService that catches all requests Message-ID: <2899128.1184065372545.JavaMail.jboss@colo-br-02.atl.jboss.com> Am I able to add new handler from the code? If not, how to add the handler that will be able to catch some requests without breaking the whole JBoss installation? I am searching through the documentation and I cannot find any information about this config file. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062368#4062368 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062368 From do-not-reply at jboss.com Tue Jul 10 07:53:10 2007 From: do-not-reply at jboss.com (Juergen.Zimmermann) Date: Tue, 10 Jul 2007 07:53:10 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS 2.0 throws WebServiceException: Error creating J Message-ID: <23924379.1184068390090.JavaMail.jboss@colo-br-02.atl.jboss.com> Soved: The endorsed dir wasn't set to $JBOSS_HOME/lib/endorsed View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062384#4062384 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062384 From do-not-reply at jboss.com Tue Jul 10 10:37:18 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Tue, 10 Jul 2007 10:37:18 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBOSS-WS Client not sending COOKIE after 2 calls Message-ID: <8021882.1184078238060.JavaMail.jboss@colo-br-02.atl.jboss.com> http://jira.jboss.org/jira/browse/JBWS-1733 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062479#4062479 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062479 From do-not-reply at jboss.com Tue Jul 10 10:40:46 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Tue, 10 Jul 2007 10:40:46 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: .NET client calling Java web-service (SOAPFaultException Message-ID: <28707573.1184078446561.JavaMail.jboss@colo-br-02.atl.jboss.com> Please create a jira issue with a patch to our exception test cases that allows me to reproduce what you are seeing View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062484#4062484 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062484 From do-not-reply at jboss.com Tue Jul 10 10:44:25 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Tue, 10 Jul 2007 10:44:25 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBOSS-WS Client not sending COOKIE after 2 calls Message-ID: <9104544.1184078665463.JavaMail.jboss@colo-br-02.atl.jboss.com> You can use this preinstalled AS5.0 tag svn co https://svn.jboss.org/repos/jbossas/tags/JBoss_5_0_0_Beta2_JBossWS_2_0_0_GA The AS5.0 trunk recently changed its deployer architecture. It can only be used with jbossws/trunk not jbossws-2.0.0.GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062489#4062489 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062489 From do-not-reply at jboss.com Tue Jul 10 10:50:48 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Tue, 10 Jul 2007 10:50:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WebService that catches all requests Message-ID: <17843654.1184079048603.JavaMail.jboss@colo-br-02.atl.jboss.com> Have a look at http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_Endpoint_Configuration it show how the WS-Addressing endpoint config installs a handler for WSA processing View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062501#4062501 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062501 From do-not-reply at jboss.com Tue Jul 10 11:01:04 2007 From: do-not-reply at jboss.com (fredash) Date: Tue, 10 Jul 2007 11:01:04 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBOSS-WS Client not sending COOKIE after 2 calls Message-ID: <28026700.1184079664650.JavaMail.jboss@colo-br-02.atl.jboss.com> Thank you for your support. I am developping on Mac OS X 10.4.10 with Jboss AS 4.0.5, the AS 5.0 installer is not yet available for my platform. How can i install that new version on Mac OS X ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062510#4062510 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062510 From do-not-reply at jboss.com Tue Jul 10 11:39:41 2007 From: do-not-reply at jboss.com (lzap) Date: Tue, 10 Jul 2007 11:39:41 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WebService that catches all requests Message-ID: <1772290.1184081981859.JavaMail.jboss@colo-br-02.atl.jboss.com> So everything I need is to insert new endpoint-config tag and provide implementation of the class? Looks good. In what order are handlers called? I need to have my handler first. Thanks for help. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062538#4062538 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062538 From do-not-reply at jboss.com Tue Jul 10 12:16:03 2007 From: do-not-reply at jboss.com (eric@attask.com) Date: Tue, 10 Jul 2007 12:16:03 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: setHeader and setServerURL, using javax.xml.ws.Service? Message-ID: <5524435.1184084163416.JavaMail.jboss@colo-br-02.atl.jboss.com> Does anyone know if JBossws 2.0.GA has added anything in the setHeaders arena? I'm sitll looking for a solution to my problem. I'm currently on JBoss 1.2.1 SP1 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062561#4062561 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062561 From do-not-reply at jboss.com Tue Jul 10 15:50:43 2007 From: do-not-reply at jboss.com (andycooper) Date: Tue, 10 Jul 2007 15:50:43 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Can't access JBossWS user guide, quickstart guide Message-ID: <17685852.1184097043879.JavaMail.jboss@colo-br-02.atl.jboss.com> All, I'm trying to access JBossWS documenation: things like http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_Endpoint_Configuration but whenever I do so I get a timeout while connecting. This has been happening for a couple of days. Is anyone else experiencing this problem? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062662#4062662 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062662 From do-not-reply at jboss.com Tue Jul 10 17:01:48 2007 From: do-not-reply at jboss.com (DjHitItUp) Date: Tue, 10 Jul 2007 17:01:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Perl SOAP:Lite Client Issues With 4.0.4.GA Message-ID: <10570291.1184101308067.JavaMail.jboss@colo-br-02.atl.jboss.com> #!/usr/bin/perl -w use SOAP::Lite; use XML::DOM; $result = SOAP::Lite -> proxy(WEBSERVICE_URL_WITHOUT_WSDL_PARAMETER) -> call(SOAP::Data->name('')->attr({xmlns => EXTRA_WEBSERVICE_NAMESPACE}) => SOAP::Data->name( => )); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062688#4062688 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062688 From do-not-reply at jboss.com Tue Jul 10 18:45:25 2007 From: do-not-reply at jboss.com (eric@attask.com) Date: Tue, 10 Jul 2007 18:45:25 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Can't access JBossWS user guide, quickstart guide Message-ID: <7757800.1184107525085.JavaMail.jboss@colo-br-02.atl.jboss.com> http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_Endpoint_Configuration work just fine for me View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062735#4062735 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062735 From do-not-reply at jboss.com Tue Jul 10 19:02:56 2007 From: do-not-reply at jboss.com (chris05atm) Date: Tue, 10 Jul 2007 19:02:56 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - "Endpoint does not contain operation metadata" exception Message-ID: <31729137.1184108576612.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello all. I've been stuck on this problem for 3 days now and it is driving me crazy. I originally had just one web method exposed as a web service and everything worked fine. I added an additional method and while the first operation still works... the second one throws a "Endpoint does not contain operation metadata" exception when it gets called. This is running on jboss-4.2.0.GA with jbossws 1.2.1 GA. WSDL: | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Interface: | | package webservice; | | import javax.jws.WebMethod; | import javax.jws.WebParam; | import javax.jws.WebResult; | import javax.jws.WebService; | import javax.xml.ws.RequestWrapper; | import javax.xml.ws.ResponseWrapper; | | @WebService(name = "FindInterface", targetNamespace = "xmlapi_1.0") | //@XmlSeeAlso({ | // ObjectFactory.class | //}) | public interface FindInterface { | | | /** | * | * @param filter | * @param fullClassName | * @param resultFilter | * @return | * returns java.lang.String | */ | @WebMethod | @WebResult(name = "result", targetNamespace = "xmlapi_1.0") | @RequestWrapper(localName = "find", targetNamespace = "xmlapi_1.0", className = "webservice.FindT") | @ResponseWrapper(localName = "findResponse", targetNamespace = "xmlapi_1.0", className = "webservice.FindResponseT") | public String find( | @WebParam(name = "fullClassName", targetNamespace = "xmlapi_1.0") | String fullClassName, | @WebParam(name = "filter", targetNamespace = "xmlapi_1.0") | String filter, | @WebParam(name = "resultFilter", targetNamespace = "xmlapi_1.0") | String resultFilter); | | /** | * | */ | @WebMethod | @RequestWrapper(localName = "ping", targetNamespace = "xmlapi_1.0", className = "webservice.PingT") | @ResponseWrapper(localName = "pingResponse", targetNamespace = "xmlapi_1.0", className = "webservice.PingResponseT") | public void ping(); | | } | Implementation snippet: | package webservice; | | @WebService(name = "FindInterface", serviceName = "XmlApiMethods", | portName = "FindInterfacePort", | targetNamespace = "xmlapi_1.0", | wsdlLocation = "META-INF/wsdl/XmlApiMethods.wsdl" , | endpointInterface = "webservice.FindInterface") | | public class FindImpl implements FindInterface { ... | Bit of code that generates the ping request (raw request). This is what currently fails. The client uses something very similar and cannot be changed: | public static String getPingRequest(String user, String password, String clientId) { | return "" + | "" + | "
" + | "" + user + | ""+ password + | ""+clientId+""+ | "
"+ | "
"; | } | The find bit of code that currently works: | public static String getSoapRequest(String user, String password, String clientId, | String root) { | return "" + | "\n"+ | "
\n"+ | "" + user + | ""+ password + | ""+clientId+"\n"+ | "
"+ | ""+ | ""+root+""+ | ""+ | ""+ | "
"; | } | I have read about operations that take no parameters having issues when using "wrapped" document/literal style. Is this the problem? I have tried so many different permutations of WSDL, java code, etc. that I am out of ideas. Any suggestions or pointers would be appreciated. This seems to be a somewhat common issue on this forum but none of the other examples seem to be the cause here and this one involves an empty "wrapped" operation. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062747#4062747 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062747 From do-not-reply at jboss.com Tue Jul 10 19:06:09 2007 From: do-not-reply at jboss.com (andycooper) Date: Tue, 10 Jul 2007 19:06:09 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Can't access JBossWS user guide, quickstart guide Message-ID: <29260548.1184108769577.JavaMail.jboss@colo-br-02.atl.jboss.com> "eric at attask.com" wrote : http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_Endpoint_Configuration work just fine for me Thanks. It seems to work for me from home, so I'll check with our IT folk at work and ask them what's up. I'll try a tracert and see if that yields any information as well. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062750#4062750 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062750 From do-not-reply at jboss.com Tue Jul 10 23:16:02 2007 From: do-not-reply at jboss.com (chris05atm) Date: Tue, 10 Jul 2007 23:16:02 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Message-ID: <20408454.1184123762053.JavaMail.jboss@colo-br-02.atl.jboss.com> Moved to jbossws version 2.0 GA and now I get this error when I deploy the war: | 22:03:04,567 INFO [LifecycleHandlerImpl] WebService stopped: http://127.0.0.1:8 | 080/xmlapi/invoke | 22:03:04,567 INFO [BasicEndpointRegistry] remove: jboss.ws:context=xmlapi,endpo | int=find | 22:03:04,797 WARN [PolicyMetaDataBuilder] Cannot get service '{xmlapi_1.0}FindI | mplService' from the given wsdl definitions! Eventual policies attached to this | service won't be considered. | 22:03:05,027 INFO [TomcatDeployer] deploy, ctxPath=/xmlapi, warUrl=.../tmp/depl | oy/tmp27747xmlapi-exp.war/ | 22:03:05,157 INFO [WSDLFilePublisher] WSDL published to: file:/C:/cygwin/home/S | tokeC/jboss-4.2.0.GA/server/default/data/wsdl/xmlapi.war/XmlApiMethods.wsdl | 22:03:05,177 INFO [BasicEndpointRegistry] register: jboss.ws:context=xmlapi,end | point=find | 22:03:05,177 INFO [LifecycleHandlerImpl] WebService started: http://127.0.0.1:8 | 080/xmlapi/invoke | The find method still works, while the ping method still returns the error: | 22:14:58,563 ERROR [SOAPFaultHelperJAXRPC] SOAP request exception | javax.xml.rpc.soap.SOAPFaultException: Endpoint {xmlapi_1.0}FindInterfacePort do | es not contain operation meta data for: {xmlapi_1.0}ping | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062772#4062772 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062772 From do-not-reply at jboss.com Tue Jul 10 23:36:13 2007 From: do-not-reply at jboss.com (maping1208) Date: Tue, 10 Jul 2007 23:36:13 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Can't access JBossWS user guide, quickstart guide Message-ID: <16977288.1184124973498.JavaMail.jboss@colo-br-02.atl.jboss.com> I still can not access JBossWS1.2.1 user guide. Both url don't available: http://jbws.dyndns.org/mediawiki/index.php/JAX-WS_User_Guide http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_Endpoint_Configuration . can anybody help? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062774#4062774 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062774 From do-not-reply at jboss.com Tue Jul 10 23:40:26 2007 From: do-not-reply at jboss.com (chris05atm) Date: Tue, 10 Jul 2007 23:40:26 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Message-ID: <2261861.1184125226234.JavaMail.jboss@colo-br-02.atl.jboss.com> Considering a possible bug? in the raw soap generation I moved onto using a client created from wsconsume. Same error so this is maybe a WSDL issue... but the WSDL looks correct and the files are generated from the WSDL so now I'm really confused. A possible deployment problem? Simple client: | package webservice; | | import java.net.MalformedURLException; | import java.net.URL; | | import javax.xml.namespace.QName; | import javax.xml.ws.Service; | | public class FindClient { | | public static void main(String[] args) throws MalformedURLException { | Service service = Service.create(new URL("http://127.0.0.1:8080/xmlapi/invoke?wsdl"), | new QName("xmlapi_1.0", "XmlApiMethods")); | | FindInterface find = service.getPort(FindInterface.class); | | find.ping(); | } | | } | The error generated: | Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: Endpoint {xmlapi_1.0}FindInterfacePort does not contain operation meta data for: {xmlapi_1.0}ping | at org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS.getSOAPFaultException(SOAPFaultHelperJAXWS.java:69) | at org.jboss.ws.core.jaxws.binding.SOAP11BindingJAXWS.throwFaultException(SOAP11BindingJAXWS.java:109) | at org.jboss.ws.core.CommonSOAPBinding.unbindResponseMessage(CommonSOAPBinding.java:553) | at org.jboss.ws.core.CommonClient.invoke(CommonClient.java:371) | at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:243) | at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:164) | at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:150) | at $Proxy15.ping(Unknown Source) | at webservice.FindClient.main(FindClient.java:17) | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062775#4062775 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062775 From do-not-reply at jboss.com Wed Jul 11 03:30:30 2007 From: do-not-reply at jboss.com (rajinikanth11) Date: Wed, 11 Jul 2007 03:30:30 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Exception while sending/receiving param using web-servic Message-ID: <11122518.1184139030581.JavaMail.jboss@colo-br-02.atl.jboss.com> Have u resolved this issue, I am getting similar error message with web services. Please help me if you find a solution. Quick response is appreciated. Please send me a response to my personal ID: p.rajinikanth at gmail.com Thank you in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062813#4062813 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062813 From do-not-reply at jboss.com Wed Jul 11 03:49:53 2007 From: do-not-reply at jboss.com (maping1208) Date: Wed, 11 Jul 2007 03:49:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Still can not access JBossWS1.2.1 user guide. Message-ID: <14873223.1184140193903.JavaMail.jboss@colo-br-02.atl.jboss.com> Both url don't available: http://jbws.dyndns.org/mediawiki/index.php/JAX-WS_User_Guide http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_Endpoint_Configuration . View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062820#4062820 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062820 From do-not-reply at jboss.com Wed Jul 11 05:00:25 2007 From: do-not-reply at jboss.com (palin) Date: Wed, 11 Jul 2007 05:00:25 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Message-ID: <16175356.1184144425131.JavaMail.jboss@colo-br-02.atl.jboss.com> "chris05atm" wrote : 22:03:04,797 WARN [PolicyMetaDataBuilder] Cannot get service '{xmlapi_1.0}FindImplService' from the given wsdl definitions! Eventual policies attached to this service won't be considered. | | | This is actually a warning; it says that the policy deployer was not able to get '{xmlapi_1.0}FindImplService' from the given wsdl definition, i.e. most probably the provided wsdl file doesn't match with the service metadata obtained from the annotated classes. For this reason eventual policies (cfr. WS-PolicyAttachment specs) won't be considered. But I think you don't care this, at least at the moment, since you have no attached policies. "chris05atm" wrote : Considering a possible bug? in the raw soap generation I moved onto using a client created from wsconsume. Same error so this is maybe a WSDL issue... but the WSDL looks correct and the files are generated from the WSDL so now I'm really confused. A possible deployment problem? | Do you mean the annotated server classes were generated starting from wsconsume, i.e. using a top-down development strategy http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_User_Guide#Top-Down_.28Using_wsconsume.29 ? If not, I would try this... Bye Alessio Soldano http://www.javalinux.it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062855#4062855 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062855 From do-not-reply at jboss.com Wed Jul 11 05:16:43 2007 From: do-not-reply at jboss.com (leo5abi) Date: Wed, 11 Jul 2007 05:16:43 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Jboss ws - Access data from a table Message-ID: <23862112.1184145403566.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello, I am building a WS using JBOSS WS to access data from a Oracle Table. I created an Entity bean to acces the Table and then use a stateless session bean to control the EB and also use it as a webservice Endpoint. When i try to fetch all records from table (approx 1500 records) using Webservice it take 2 minutes to display data. I have Verified with the server log that time between Incoming Soap Message and Outgoing Soap Message is not > 20 sec .Does that mean that it is Soap Response(HTTP) that take so much time? Any tips to reduce this. Also how can i minimize the Debug in server log for soap message. Now it display the entire soap message Response in the server.log /Amit View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062864#4062864 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062864 From do-not-reply at jboss.com Wed Jul 11 08:28:21 2007 From: do-not-reply at jboss.com (rudyfell) Date: Wed, 11 Jul 2007 08:28:21 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Generate WSDL (From JBoss Eclipse IDE or Command line) Message-ID: <30329433.1184156901089.JavaMail.jboss@colo-br-02.atl.jboss.com> i have the same problem running wstools from the eclipse ide in linux. I am therefore using the comand line which is working well. About the error you receive when using the command line | Exception in thread "main" java.lang.NoClassDefFoundError: javax/jws/soap/SOAPBinding$ParameterStyle | at org.jboss.ws.tools.helpers.ToolsHelper.handleJavaToWSDLGeneration(ToolsHelper.java:105) | at org.jboss.ws.tools.WSTools.process(WSTools.java:133) | at org.jboss.ws.tools.WSTools.generate(WSTools.java:69) | at org.jboss.ws.tools.WSTools.generate(WSTools.java:119) | at org.jboss.ws.tools.WSTools.main(WSTools.java:58) | i think its because you have not added jboss-wsclient.jar to build path since it contains the javax.jws.soap package. Therefore adding this to your project should make it work. It can be found in the com.eviware.soapui.jbosside.wstools_0.4.1/lib which is under eclipse/plugins. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062943#4062943 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062943 From do-not-reply at jboss.com Wed Jul 11 09:37:02 2007 From: do-not-reply at jboss.com (bartvh) Date: Wed, 11 Jul 2007 09:37:02 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - @WebFault and @XmlType Message-ID: <25636132.1184161022528.JavaMail.jboss@colo-br-02.atl.jboss.com> Can @WebFault and @XmlType be used on the same element? I have an application exception with additional information. The exception gets defined in the .wsdl as a complex type, but the @XmlType annotation information does not seem to be taken into account: the type is defined in the wrong namespace, and nested elements are included in the type that should not be there. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062968#4062968 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062968 From do-not-reply at jboss.com Wed Jul 11 11:24:17 2007 From: do-not-reply at jboss.com (lacp46) Date: Wed, 11 Jul 2007 11:24:17 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Endpoint does not contain operation meta data for: getAc Message-ID: <29520508.1184167457487.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, do u resolve your problem? I have the same error, I installed Jboss 4.2.0.GA and deployed my old web services packages that work fine in Jboss 4.0.5.GA. Thanks ... Luis. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063049#4063049 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063049 From do-not-reply at jboss.com Wed Jul 11 11:28:48 2007 From: do-not-reply at jboss.com (lacp46) Date: Wed, 11 Jul 2007 11:28:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Endpoint does not contain operation meta data for: getAc Message-ID: <22950215.1184167728460.JavaMail.jboss@colo-br-02.atl.jboss.com> The error. {"Endpoint {http://xxxx.com/}UniversalManagementEndPointPort does not contain operation meta data for: {http://xxxx.com/}startSession"} thanks .. Luis. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063055#4063055 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063055 From do-not-reply at jboss.com Wed Jul 11 12:25:12 2007 From: do-not-reply at jboss.com (chris05atm) Date: Wed, 11 Jul 2007 12:25:12 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Message-ID: <24765769.1184171112287.JavaMail.jboss@colo-br-02.atl.jboss.com> The classes were generated by the wsconsume tool. The warning isn't the concern so much as the Endpoint error that occurs when the ping command is actually called. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063087#4063087 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063087 From do-not-reply at jboss.com Wed Jul 11 12:34:37 2007 From: do-not-reply at jboss.com (chris05atm) Date: Wed, 11 Jul 2007 12:34:37 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Message-ID: <6755654.1184171677746.JavaMail.jboss@colo-br-02.atl.jboss.com> To be more specific: the server service classes were also generated by wsconsume tool. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063095#4063095 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063095 From do-not-reply at jboss.com Wed Jul 11 13:53:00 2007 From: do-not-reply at jboss.com (gryffin) Date: Wed, 11 Jul 2007 13:53:00 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - setting up an ssl web service & client Message-ID: <17214537.1184176380528.JavaMail.jboss@colo-br-02.atl.jboss.com> I am running JBoss 4.0.5 w/ JbossWS 1.2.1. I have enabled the SSL connector and am able to access the WSDL for my web service using a browser on port 8443 with a certificate I created using keytool. The client works if I provide it the old http/port 80 URL in it's local WSDL. If I try to aim it at https/port 8443, the client dies with the following error: | Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target | <-- works <-- doesn't work I have imported the server cert into a keystore in the client's bin directory. I configured the client to use the keystore ( I believe ) by using jboss-wsse-client.xml in the client's bin directory. jboss-wsse-client.xml | | | client.keystore | shimdev | | | | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063132#4063132 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063132 From do-not-reply at jboss.com Wed Jul 11 14:06:49 2007 From: do-not-reply at jboss.com (jbride) Date: Wed, 11 Jul 2007 14:06:49 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS supports pluggable Web Service stacks Message-ID: <28910122.1184177209893.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi Thomas, Could you please elaborate (or direct us to some discussions that elaborate on) the following comment from your earlier post : "There will be a common deployment model and management interface to all deployable stacks. " Thank you! jeff View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063138#4063138 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063138 From do-not-reply at jboss.com Wed Jul 11 14:50:37 2007 From: do-not-reply at jboss.com (Juergen.Zimmermann) Date: Wed, 11 Jul 2007 14:50:37 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JBoss 2.0: Specifying SOAP 1.2 for WSProvideTask ? Message-ID: <26853956.1184179837412.JavaMail.jboss@colo-br-02.atl.jboss.com> How do I specify that a SOAP 1.2 binding should be generated by the ANT task WSProvideTask? IMHO in the wsdl file's section there should be: instead of: Any hint is appreciated! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063151#4063151 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063151 From do-not-reply at jboss.com Thu Jul 12 02:51:57 2007 From: do-not-reply at jboss.com (PatrickMadden) Date: Thu, 12 Jul 2007 02:51:57 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JRE 1.6 on the client - my expeirences Message-ID: <28064722.1184223117219.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, Over the last week and a half I was pulling my hair out trying to get Java Web Start client side applications to correctly execute web service calls to the backend on JBoss 4.2.0.GA when the client side JRE was JRE 1.6.x. I posted a detailed explanation of how I got everything working on the JBoss Seam forum. Basically I just got lucky and downloaded the JBoss AS 4.2.1 branch code from SVN and the JBoss Web Services 2.0 code on July 7. For those interested here is the link to my detailed explanation: http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063323#4063323 As stated in my link, I hope this stops others from pulling their hair out as well. I'm 40 now and can't afford to lose anymore :) Hope this helps, PVM View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063329#4063329 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063329 From do-not-reply at jboss.com Thu Jul 12 05:27:46 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 12 Jul 2007 05:27:46 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossws-2.0.0.GA released Message-ID: <16241170.1184232466311.JavaMail.jboss@colo-br-02.atl.jboss.com> The supported target containers are | jboss-5.0.0.Beta2 https://svn.jboss.org/repos/jbossas/tags/JBoss_5_0_0_Beta2_JBossWS_2_0_0_GA | jboss-4.2.0.GA https://svn.jboss.org/repos/jbossas/tags/JBoss_4_2_0_GA | jboss-4.0.5.GA https://svn.jboss.org/repos/jbossas/tags/JBoss_4_0_5_GA | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063374#4063374 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063374 From do-not-reply at jboss.com Thu Jul 12 07:17:16 2007 From: do-not-reply at jboss.com (nudelaug) Date: Thu, 12 Jul 2007 07:17:16 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Documentation on generated WSDLs Message-ID: <25240623.1184239036385.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello! Is there a possibility in jbossws to add schema-documentation like: blabla to a wsdl when it is autogenerated at deployment? Do I need a special Annotation? kind regards Wolf View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063429#4063429 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063429 From do-not-reply at jboss.com Thu Jul 12 07:47:07 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 12 Jul 2007 07:47:07 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS supports pluggable Web Service stacks Message-ID: <20178602.1184240827167.JavaMail.jboss@colo-br-02.atl.jboss.com> Common deployment model means that you can use standard EE5 deployments with all tree stacks. You will not have to provide Metro or CXF proprietary descriptors. In short, deployment archives should depend on the WS stack that is currently installed. Common management interface means that you can use the http://localhost:8080/jbossws context to view/manage your endpoint. This includes start/stop, endpoint metrics, etc View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063435#4063435 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063435 From do-not-reply at jboss.com Thu Jul 12 07:54:53 2007 From: do-not-reply at jboss.com (M.Schumpa) Date: Thu, 12 Jul 2007 07:54:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - consume WS error after update to JBossWS 2.0 Message-ID: <25378382.1184241293121.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi dear community, I'm pretty new to the whole JBoss WebService topic and I'm writing a diploma thesis about it. to get startet, I wrote a simple example which consist of a WebService and an Java Client connecting to that Service in order to consume it. Everything went fine with the JBoss 4.2.0 GA release. Because I need some of the feature of JAXB 2.0, I upgraded to JBossWS 2.0. I think everything went fine here, because I get the following message in the console while starting JBoss.[ManagedEndpointRegistry] jbossws-native-2.0.0.GA (build=200707051029) I added the all the jars in %JBOSS_HOME%\client and %JBOSS_HOME%\lib\endorsed to classpath, like I did it while using the JBoss 4.2.0 GA release. My problem is: If I try to reach the service with the following code I get an WebServiceException | URL url = new URL("http://127.0.0.1:8080/BspDog/Examples?wsdl"); | QName qname = new QName("http://dogstapler.com/","ExamplesService"); | Service service = Service.create(url,qname); | ExamplesEndpoint ee = service.getPort(ExamplesEndpoint.class); | The wsdl is reachable at the given location. The first lines of it look like this: | | | | The error thrown by the client while executing the 3rd line of the sample code: | Exception in thread "main" javax.xml.ws.WebServiceException: Unable to load Provider: Failed to load javax.xml.ws.spi.Provider: com.sun.xml.ws.spi.ProviderImpl | at javax.xml.ws.spi.Provider.provider(Provider.java:98) | at javax.xml.ws.Service.(Service.java:83) | at javax.xml.ws.Service.create(Service.java:721) | at com.dogstapler.client.ClientBspDog3.main(ClientBspDog3.java:31) | Caused by: java.lang.IllegalStateException: Failed to load javax.xml.ws.spi.Provider: com.sun.xml.ws.spi.ProviderImpl | at javax.xml.ws.spi.ProviderLoader.loadProvider(ProviderLoader.java:96) | at javax.xml.ws.spi.Provider.provider(Provider.java:90) | ... 3 more | Caused by: java.lang.ExceptionInInitializerError | at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) | at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) | at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) | at java.lang.reflect.Constructor.newInstance(Constructor.java:494) | at java.lang.Class.newInstance0(Class.java:350) | at java.lang.Class.newInstance(Class.java:303) | at javax.xml.ws.spi.ProviderLoader.loadProvider(ProviderLoader.java:91) | ... 4 more | Caused by: javax.xml.ws.WebServiceException: Error creating JAXBContext for W3CEndpointReference. | at com.sun.xml.ws.spi.ProviderImpl.getEPRJaxbContext(ProviderImpl.java:188) | at com.sun.xml.ws.spi.ProviderImpl.(ProviderImpl.java:65) | ... 11 more | Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 2 counts of IllegalAnnotationExceptions | Two classes have the same XML type name "address". Use @XmlType.name and @XmlType.namespace to assign different names to them. | this problem is related to the following location: | at com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Address | at public com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Address com.sun.xml.ws.developer.MemberSubmissionEndpointReference.addr | at com.sun.xml.ws.developer.MemberSubmissionEndpointReference | this problem is related to the following location: | at javax.xml.ws.wsaddressing.W3CEndpointReference$Address | at private javax.xml.ws.wsaddressing.W3CEndpointReference$Address javax.xml.ws.wsaddressing.W3CEndpointReference.address | at javax.xml.ws.wsaddressing.W3CEndpointReference | Two classes have the same XML type name "elements". Use @XmlType.name and @XmlType.namespace to assign different names to them. | this problem is related to the following location: | at com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Elements | at public com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Elements com.sun.xml.ws.developer.MemberSubmissionEndpointReference.referenceProperties | at com.sun.xml.ws.developer.MemberSubmissionEndpointReference | this problem is related to the following location: | at javax.xml.ws.wsaddressing.W3CEndpointReference$Elements | at private javax.xml.ws.wsaddressing.W3CEndpointReference$Elements javax.xml.ws.wsaddressing.W3CEndpointReference.referenceParameters | at javax.xml.ws.wsaddressing.W3CEndpointReference | | at com.sun.xml.bind.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:66) | at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:422) | at com.sun.xml.bind.v2.runtime.JAXBContextImpl.(JAXBContextImpl.java:270) | at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:103) | at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:81) | 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:585) | at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:210) | at javax.xml.bind.ContextFinder.find(ContextFinder.java:366) | at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:574) | at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:522) | at com.sun.xml.ws.spi.ProviderImpl.getEPRJaxbContext(ProviderImpl.java:186) | ... 12 more | I'm looking foreward for your replies. Thanks in advance. M.Schumpa View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063438#4063438 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063438 From do-not-reply at jboss.com Thu Jul 12 09:20:31 2007 From: do-not-reply at jboss.com (mhohmann) Date: Thu, 12 Jul 2007 09:20:31 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Latency problem due to small TCP/IP packetsize Message-ID: <5740288.1184246431397.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello, we run a couple of webservices as interfaces to some datawarehouse reports. The webservices take some parameters in the soap-request to run the sql-querys against the DB. The result-data is returned as an XML-element in the body of the soap-reponse. An average reponse is about 130KB. With an MTU around 1500Byte the response should fit in <100 packets, but a network sniff showed that the server generates >10,000 packets for one response. The push-option in the IP-header is also set which instructs the IP-stack to send the paket immediatly before its payload-capacity is filled. This leads to latency problems because the firewall between the server and the client-applications takes more time to examine the packets. In case of a 130KB response a webservice-request through the firewall takes 10 seconds compare to <2 seconds without the firewall between client and server. Are there any options to configure the packetsize or some buffer parameters to change the behavior of packet generation (or Sockets) in JBoss, JBossWS or JVM? I really don?t know where to search for a Solution. I hope someone can help me. I'm looking foreward for your replies. Thanks in advance. Michael Hohmann PS: Sorry for my bad english View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063470#4063470 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063470 From do-not-reply at jboss.com Thu Jul 12 09:22:55 2007 From: do-not-reply at jboss.com (mhohmann) Date: Thu, 12 Jul 2007 09:22:55 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Latency problem due to small TCP/IP packetsize Message-ID: <2004621.1184246575333.JavaMail.jboss@colo-br-02.atl.jboss.com> Enviroment: AS: Jboss-4.0.4.GA OS: Windows Server 2003 jbossws1.4 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063472#4063472 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063472 From do-not-reply at jboss.com Thu Jul 12 09:51:01 2007 From: do-not-reply at jboss.com (claudio_br) Date: Thu, 12 Jul 2007 09:51:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: consume WS error after update to JBossWS 2.0 Message-ID: <5694225.1184248261577.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi M.Schumpa, I have had a similar problem. I have gotten this problem with a standalone client that consume a WS. I have resolved this problem removing the files: jaxws-rt.jar and jaxws-tools.jar of client?s classpath. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063495#4063495 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063495 From do-not-reply at jboss.com Thu Jul 12 10:15:20 2007 From: do-not-reply at jboss.com (M.Schumpa) Date: Thu, 12 Jul 2007 10:15:20 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: consume WS error after update to JBossWS 2.0 Message-ID: <19665314.1184249720883.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi clauio_br, thanks a lot for your replay. Your tip solved my problem :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063503#4063503 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063503 From do-not-reply at jboss.com Thu Jul 12 11:11:35 2007 From: do-not-reply at jboss.com (andycooper) Date: Thu, 12 Jul 2007 11:11:35 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Can't access JBossWS user guide, quickstart guide Message-ID: <18469414.1184253095594.JavaMail.jboss@colo-br-02.atl.jboss.com> "maping1208" wrote : I still can not access JBossWS1.2.1 user guide. | Both url don't available: | http://jbws.dyndns.org/mediawiki/index.php/JAX-WS_User_Guide | http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_Endpoint_Configuration . | | can anybody help? I can't access it from work either; my IT group tells me they're not blocking this and that it is a problem with jbws.dyndns.org. I *really* need to be able to access the JBossWS manuals - either via download or online. Not having access to them is completely crippling our development/prototyping. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063565#4063565 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063565 From do-not-reply at jboss.com Thu Jul 12 11:40:19 2007 From: do-not-reply at jboss.com (andrea.le) Date: Thu, 12 Jul 2007 11:40:19 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - All example return "String" help me to return Complex type.. Message-ID: <30658868.1184254819631.JavaMail.jboss@colo-br-02.atl.jboss.com> HI, now i've installed jems-installer-1.2.0.GA... Can help me someone? I would like build a service in which the return is a complex type (for example classe Animal or People)... Have read a lot of example? all various? but i dont' know one line base to follow? I've two class one for service(class A) and one for object to return (class B) i need configuration file? i've jbossws tools but when i use wsconsume with wsdl it generate (like i've seen in tutorial) a lot of file about service. If there is someone that can help me without milion line of code.. by EJB3 should be build e service and a client...but... Thank u View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063585#4063585 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063585 From do-not-reply at jboss.com Thu Jul 12 12:48:09 2007 From: do-not-reply at jboss.com (lacp46) Date: Thu, 12 Jul 2007 12:48:09 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - EndPoint ... does not contain operation meta data for ... er Message-ID: <20507929.1184258889500.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I have a problem consuming a web service deployed in Jboss 4.2.0.GA, the same package work fine using Jboss 4.0.5.GA. Here is the wsdl, code with annotations and Soap messages. Thanks in advance. Luis. wsdl | ***** UniversalManagement?wsdl | | - | | - | - | | | | | | ***** UniversalManagementSei_PortType61107.wsdl | | | - | - | | | | | - | - | - | - | | | | | | | | . | . | . | | | | | . | . | . | | | | | . | . | . | - | | | | | . | . | . | - | | - | | | - | | | - | | | | Code with annotations. | package com.services.mobistore.core.ws.universal.interfaces; | | import javax.jws.WebMethod; | import javax.jws.WebParam; | import javax.jws.WebResult; | import javax.jws.WebService; | import javax.jws.soap.SOAPBinding; | | @WebService( | name = "UniversalManagementSei", | targetNamespace = "http://jaws.universal.ws.core.mobistore.services.com/" ) | //serviceName = "UniversalManagement" ) | @SOAPBinding( style = SOAPBinding.Style.RPC ) | public interface UniversalManagementSei { | | @WebMethod( operationName="startSession")public abstract String startSession(@WebParam( name="credentials", targetNamespace= "http://jaws.universal.ws.core.mobistore.services.com/" ) Credentials credentials) | throws WsGenericException; | } | Soap messages. | | | | | | | test | | test | | | | | | | | | | env:Client | Endpoint | {http://management.ws.core.mobistore.services.com/}ManagementEndPointPort does not contain operation meta data for: | {http://management.ws.core.mobistore.services.com/}startSession | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063628#4063628 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063628 From do-not-reply at jboss.com Thu Jul 12 13:57:56 2007 From: do-not-reply at jboss.com (BmanT) Date: Thu, 12 Jul 2007 13:57:56 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Can I provide SAML Support for JBoss WS Handler with WSS4J? Message-ID: <20679977.1184263076489.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I'm new to the idea of handlers - but I've been tasked to write a handler that can create SAML assertions and from the JBossWS spec status page, I see that it is 0% complete. On a basic level, from what I understand about handlers, I can write a java class that will extend a *Handler. And then set the handler for the service in the xml file. And as long as the handler is on the classpath - it will be used. So can I package the WSS4J libraries, with my handler class so I can use the functionality? Or maybe just drop the wss4j.jar in the Jboss lib? Also - I'm writing the handler - but I am not writing the service. Does a handler have to be packaged with the service? Or can it be added as a jar or war file? The User Guide seems to indicate it has to be within the Service WAR file, but I just want to know if its possible to extract the handler to a separate archive. Why you ask? because another company is tasked with writing the service - but I am tasked with writing the handler - and I'm new to it - so I don't even know if that is possible. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063651#4063651 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063651 From do-not-reply at jboss.com Thu Jul 12 17:38:56 2007 From: do-not-reply at jboss.com (gryffin) Date: Thu, 12 Jul 2007 17:38:56 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: consume WS error after update to JBossWS 2.0 Message-ID: <24408903.1184276336541.JavaMail.jboss@colo-br-02.atl.jboss.com> I have a similar problem. ( Running 4.0.5 with JBossWS2.0.0-native.GA. ) When I remove these two jars from my path, my client won't get out of first gear. It complains of missing xerces libraries. | Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/xerces/xs/ | XSModel | at org.jboss.ws.metadata.builder.jaxws.JAXWSClientMetaDataBuilder.buildMetaData | (JAXWSClientMetaDataBuilder.java:81) | at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.(ServiceDelegateImpl.j | ava:131) | at org.jboss.ws.core.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl. | java:61) | at javax.xml.ws.Service.(Service.java:83) | at com.boeing.nmt.client.ws.NetworkLocationService.(NetworkLocationServic | e.java:45) | at com.boeing.nmt.client.ws.NLSClient.main(NLSClient.java:23) | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063739#4063739 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063739 From do-not-reply at jboss.com Thu Jul 12 20:31:10 2007 From: do-not-reply at jboss.com (davidchen) Date: Thu, 12 Jul 2007 20:31:10 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Can I deploy ws4ee endpoint to a separated TomCat? Message-ID: <22668536.1184286670537.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, there: As a newbie to web service, I have a "silly" question about jbossWS. All WS4EE web services (both stateless ejb and pojo style) deployed on jboss/deploy directory finally would be deployed on embedded Tomcat, am I right? So, the question is if I have another servlet container running separately from JBoss (for example, Jetty), where I deploy all my web applications, can I deploy ws4ee (not Axis style) web services on that separated independant from JBoss web server? Thanks a lot in advance David View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063758#4063758 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063758 From do-not-reply at jboss.com Thu Jul 12 20:35:05 2007 From: do-not-reply at jboss.com (chris05atm) Date: Thu, 12 Jul 2007 20:35:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: I am thinking there is some kind of deployment bug... Message-ID: <31644530.1184286905204.JavaMail.jboss@colo-br-02.atl.jboss.com> I completely removed the jboss installation and reinstalled. Took the exact same ant file with the exact same sources and deployed in the exact same way. Everything works. I believe there is a clean up issue in the jbossws 2.0 or something. I suspected this when I finally started trying to just deploy a standard servlet with the same war file name. Jboss spit out errors about the old WebService which I knew to be impossible given the files I had deployed. Something was being cached somewhere incorrectly. On reinstall everything worked fine. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063759#4063759 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063759 From do-not-reply at jboss.com Thu Jul 12 21:58:36 2007 From: do-not-reply at jboss.com (koganty) Date: Thu, 12 Jul 2007 21:58:36 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - ClassnotFoundError while trying to use wsrunclient Message-ID: <22768120.1184291916900.JavaMail.jboss@colo-br-02.atl.jboss.com> I am trying to run a WebService client generated using wsconsume from JBoss 4.0.5 running on JDK 1.6 using wsrunclient and am running into this error. I do have jaxb-impl.jar in the classpath. How do I ger arounf this issue. Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/xml/bind/api/ TypeReference at com.sun.xml.ws.model.RuntimeModeler.processDocWrappedMethod(RuntimeMo deler.java:571) at com.sun.xml.ws.model.RuntimeModeler.processMethod(RuntimeModeler.java :492) at com.sun.xml.ws.model.RuntimeModeler.processClass(RuntimeModeler.java: 334) at com.sun.xml.ws.model.RuntimeModeler.buildRuntimeModel(RuntimeModeler. java:220) at com.sun.xml.ws.client.WSServiceDelegate.addSEI(WSServiceDelegate.java :588) at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.jav a:291) at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.jav a:274) at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.jav a:267) at javax.xml.ws.Service.getPort(Service.java:92) at com.extremenetworks.epicenter.client.webservice.ClientManagerBeanServ ice.getClientManagerBeanPort(ClientManagerBeanService.java:51) at com.extremenetworks.epicenter.client.webservice.Test.main(Test.java:2 2) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063767#4063767 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063767 From do-not-reply at jboss.com Fri Jul 13 07:30:14 2007 From: do-not-reply at jboss.com (GenesisD) Date: Fri, 13 Jul 2007 07:30:14 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - No way to write a working client Message-ID: <6826807.1184326214832.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi all, I'm going crazy!!!!! I'm trying to write a f***ing client for a web service using: jboss-4.0.5GA jbossws-1.2.1.GA the service I deployed is the "jax-ws/WebResult" of jbossws-samples-1.2.1.GA/jbossws-samples-1.2.1.GA" I downloaded for your site. The service results correctly deployed. NOW, instead of using the non-sense client tomas diesler wrote to consume that damned service, I tryied to write another one, more simple. The client I wrote is: | import java.net.URL; | | import javax.xml.namespace.QName; | | import org.jboss.test.ws.jaxws.samples.webresult.CustomerRecord; | import org.jboss.test.ws.jaxws.samples.webresult.CustomerService; | import org.jboss.test.ws.jaxws.samples.webresult.USAddress; | | public class Client { | public static void main(String[] args) throws Exception { | System.out.println("Start"); | | javax.xml.ws.Service factoryTest = javax.xml.ws.Service.create(new URL("http://sviluppo-013:8080/jaxws-samples-webresult?wsdl"), | new QName("http://webresult.samples.jaxws.ws.test.jboss.org/", "CustomerServiceImplService")); | CustomerService proxyTest = (CustomerService)factoryTest.getPort(CustomerService.class); | CustomerRecord ritorno = (CustomerRecord)proxyTest.locateCustomer("nome","cognome", new USAddress()); | System.out.println("ritorno del secondo servizio "+ritorno.getFirstName()); | } | } is some one able to tell me if it is correct or not? the error that running this f***ing client shows is: | Start | Exception in thread "main" javax.xml.ws.WebServiceException: java.lang.NoSuchMethodError: org.jboss.ws.core.utils.JBossWSEntityResolver.getEntityMap()Ljava/util/Map; | at javax.xml.ws.Service.create(Service.java:731) | at uk.co.regdeveloper.webservice.Client.main(Client.java:35) | Caused by: java.lang.NoSuchMethodError: org.jboss.ws.core.utils.JBossWSEntityResolver.getEntityMap()Ljava/util/Map; | at org.jboss.ws.tools.JavaToXSD.resolveNamespaceURI(JavaToXSD.java:211) | at org.jboss.ws.tools.JavaToXSD.parseSchema(JavaToXSD.java:172) | at org.jboss.ws.tools.wsdl.WSDL11Reader.processTypes(WSDL11Reader.java:271) | at org.jboss.ws.tools.wsdl.WSDL11Reader.processDefinition(WSDL11Reader.java:158) | at org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:131) | at org.jboss.ws.metadata.umdm.ServiceMetaData.getWsdlDefinitions(ServiceMetaData.java:321) | at org.jboss.ws.metadata.builder.jaxws.JAXWSClientMetaDataBuilder.buildMetaData(JAXWSClientMetaDataBuilder.java:83) | at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.(ServiceDelegateImpl.java:140) | at org.jboss.ws.core.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:61) | at javax.xml.ws.Service.(Service.java:83) | at org.jboss.ws.core.jaxws.client.ServiceExt.(ServiceExt.java:60) | at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) | at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) | at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) | at java.lang.reflect.Constructor.newInstance(Constructor.java:494) | at javax.xml.ws.Service.create(Service.java:726) | ... 1 more | What the hell does it means?????? I know well that org.jboss.ws.core.utils.JBossWSEntityResolver class has not that method... so WHY my client tryes to call it? I read thousands of examples...hundreds of books and documantation, but I was not able to write a damned client for a very simple web service. So I'm so sorry for my words, but I'm going crazy!!!! Plz help me: in name of my mental health!!!!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063940#4063940 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063940 From do-not-reply at jboss.com Fri Jul 13 07:55:07 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Fri, 13 Jul 2007 07:55:07 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: ClassnotFoundError while trying to use wsrunclient Message-ID: <877843.1184327707974.JavaMail.jboss@colo-br-02.atl.jboss.com> Did you read the install notes for JDK 6? http://jbws.dyndns.org/mediawiki/index.php?title=Installation Please let me know if that works for 4.0.5 as well. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063946#4063946 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063946 From do-not-reply at jboss.com Fri Jul 13 09:27:26 2007 From: do-not-reply at jboss.com (claudio_br) Date: Fri, 13 Jul 2007 09:27:26 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: consume WS error after update to JBossWS 2.0 Message-ID: <32148533.1184333246416.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi gryffin, I can add the jar xercesImpl.jar localized in (JBOSS_HOME/lib/endorsed) in client?s classpath. It should resolve your problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063985#4063985 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063985 From do-not-reply at jboss.com Fri Jul 13 14:01:16 2007 From: do-not-reply at jboss.com (eric@attask.com) Date: Fri, 13 Jul 2007 14:01:16 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - soap binding header Message-ID: <30374330.1184349676308.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm trying to create this in jbossWS | | | QwWsHJyTPW.1pd0_jXlNKOSU | | I've tried doing the following but haven't had any luck StubExt soapStub = (StubExt)soapBinding; | QName headerQ = new QName(service.getServiceName().getNamespaceURI(), "SessionHeader"); | QName sessionId = new QName(service.getServiceName().getNamespaceURI(), "SessionHeader", "sessionId"); | soapStub.addUnboundHeader(headerQ, Constants.TYPE_LITERAL_STRING, String.class, ParameterMode.IN); | soapStub.setUnboundHeaderValue(sessionId, "QwWsHJyTPW.1pd0_jXlNKOSU"); | reference http://wiki.apexdevnet.com/index.php/Enterprise_Describe_Global View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064105#4064105 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064105 From do-not-reply at jboss.com Sat Jul 14 06:42:56 2007 From: do-not-reply at jboss.com (florian79) Date: Sat, 14 Jul 2007 06:42:56 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Unsupported content type: application/x-www-form-urlenco Message-ID: <31064762.1184409776471.JavaMail.jboss@colo-br-02.atl.jboss.com> yes it sounds like a problem with the content-type. But I set the HTTP- HEADER with 'Content-Type':'text/xml' And I tried the following encode variations: plain: escape: %3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csoap%3AEnvelope%20xmlns%3Asoap%3D%22http%3A//schemas.xmlsoap.org/soap/envelope/%22%3E%3Csoap%3ABody%3E%3CgetHalloWorld%20xmlns%3D%22http%3A//hibernate.base.dooris.com/jaws%22%3E%3C/getHalloWorld%3E%3C/soap%3ABody%3E%3C/soap%3AEnvelope%3E encodeURI: %3C?xml%20version=%221.0%22%20encoding=%22UTF-8%22?%3E%3Csoap:Envelope%20xmlns:soap=%22http://schemas.xmlsoap.org/soap/envelope/%22%3E%3Csoap:Body%3E%3CgetHalloWorld%20xmlns=%22http://hibernate.base.dooris.com/jaws%22%3E%3C/getHalloWorld%3E%3C/soap:Body%3E%3C/soap:Envelope%3E and encodeURIComponent: %3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csoap%3AEnvelope%20xmlns%3Asoap%3D%22http%3A%2F%2Fschemas.xmlsoap.org%2Fsoap%2Fenvelope%2F%22%3E%3Csoap%3ABody%3E%3CgetHalloWorld%20xmlns%3D%22http%3A%2F%2Fhibernate.base.dooris.com%2Fjaws%22%3E%3C%2FgetHalloWorld%3E%3C%2Fsoap%3ABody%3E%3C%2Fsoap%3AEnvelope%3E my HTTP-HEADER : | Request Headers | Host 18.nvmodules.netvibes.com | User-Agent Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4 | Accept text/javascript, text/html, application/xml, text/xml, */* | Accept-Language de | Accept-Encoding gzip,deflate | Accept-Charset ISO-8859-1,utf-8;q=0.7,*;q=0.7 | Keep-Alive 300 | Connection close | Content-Type text/xml | X-Requested-With XMLHttpRequest | Referer http://18.nvmodules.netvibes.com/api/uwa/frame/uwa_netvibes.php?id=18&moduleUrl=http%3A%2F%2Fwww.loom-gmbh.de%2Fdemo%2Fwidget_webservice.php&url=http%3A%2F%2Fwww.dooris.de%2Fnetvibes%2Fcontent1.htm&NVdomain=www.netvibes.com&NVthemeUrl=%2Fthemes%2Fcoriander%2Fscreen.css&NVlang=de_DE&NVlocale=de&NVcommType=TUAcallback&NVwidgetDomain=18.nvmodules.netvibes.com&NVsubspaceDomain=netvibes.com | Content-Length 324 | Pragma no-cache | Cache-Control no-cache | always the same exception with IE and MOZILLA is there any example in the web, how to call a jboss-webservice by browser? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064215#4064215 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064215 From do-not-reply at jboss.com Sat Jul 14 09:01:33 2007 From: do-not-reply at jboss.com (florian79) Date: Sat, 14 Jul 2007 09:01:33 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Unsupported content type: application/x-www-form-urlenco Message-ID: <30163497.1184418093464.JavaMail.jboss@colo-br-02.atl.jboss.com> there was a problem with the proxy... thank you for your help! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064226#4064226 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064226 From do-not-reply at jboss.com Mon Jul 16 04:19:03 2007 From: do-not-reply at jboss.com (Juergen.Zimmermann) Date: Mon, 16 Jul 2007 04:19:03 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - wsse.keystore: How to create? Message-ID: <29401533.1184573943179.JavaMail.jboss@colo-br-02.atl.jboss.com> I extended my app with WS-Security and signatures. Using wsse.keystore and wsse.truststore from the JBossWS examples works fine. However, I don't know how to create my own keystore and truststore. I tried these commands -- without success. Any hint is appreciated! keytool -genkeypair -alias wsse -keyalg RSA -keysize 2048 -sigalg SHA1withRSA -dname "CN=..." -keypass jbossws -storetype JKS -keystore testKeystore.jks -storepass jbossws -v | | keytool -exportcert -file test.cer -alias wsse -storetype JKS -keystore testKeystore.jks -storepass jbossws -v | | keytool -importcert -alias wsse -file test.cer -keypass jbossws -noprompt -storetype JKS -keystore testTruststore.jks -storepass jbossws -v View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064447#4064447 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064447 From do-not-reply at jboss.com Mon Jul 16 09:07:24 2007 From: do-not-reply at jboss.com (florian79) Date: Mon, 16 Jul 2007 09:07:24 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - webParameter is null Message-ID: <1755915.1184591244709.JavaMail.jboss@colo-br-02.atl.jboss.com> The call to the webservice works fine but the parameter are null (or 0 in case of int). I use a AJAX- Client and send directly the xml. the Bean: | @WebService( | endpointInterface="com.dooris.ws.TheServicePortType", | targetNamespace="http://www.tai.it/TheService", | serviceName="TheService", | portName="TheServiceSOAP" | ) | @Stateless | public class TheServiceImpl implements TheServiceSessionBean | { | public final String getHalloWorld() | { | return "Hallo Welt "; | } | | public final String sayHallo(int iNameGot) | { | return "Hallo " + iNameGot; | } | } | the call (xml): | 5567 and the response (xml) Status:200 | RESULT:Hallo 0 where is my mistake? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064528#4064528 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064528 From do-not-reply at jboss.com Mon Jul 16 09:13:09 2007 From: do-not-reply at jboss.com (florian79) Date: Mon, 16 Jul 2007 09:13:09 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: webParameter is null Message-ID: <29925625.1184591589591.JavaMail.jboss@colo-br-02.atl.jboss.com> the generated WSDL: | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064531#4064531 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064531 From do-not-reply at jboss.com Mon Jul 16 09:50:30 2007 From: do-not-reply at jboss.com (Juergen.Zimmermann) Date: Mon, 16 Jul 2007 09:50:30 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: wsse.keystore: How to create? Message-ID: <32933761.1184593830838.JavaMail.jboss@colo-br-02.atl.jboss.com> Solved: -exportcert additionally needs -rfc -importcert additionally needs -trustcacerts BTW, the options -genkeypair, -exportcert, -importcert are named according JDK 6.0 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064557#4064557 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064557 From do-not-reply at jboss.com Mon Jul 16 10:47:53 2007 From: do-not-reply at jboss.com (CarstenRudat) Date: Mon, 16 Jul 2007 10:47:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - EJB3 Webservice - java.sql.Date and/or custom datatypes Message-ID: <18063840.1184597273120.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi all, I've just started with JBossWS (jboss-5.0.0.Beta2 with an upgrade to the latest JBossWS 2...) from the EJB3-Webservice-Tutorial. The basic Calculator-example works (after changing QName's namespace), but any attempt to add a method, which hat a java.sql.Date or a custom datatype as a parameter fails. Is there a short tutorial how to manage custom types? I tried to add an XmlAdapter to do my own marshalling of java.sql.Date-types. And I tried to generate and use a jaxrpc-mapping.xml-file (with Suns wscompile - wstools didn't work for me). No attempt worked :-( So, I really would like to have an example or tutorial... Thanks. Carsten View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064586#4064586 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064586 From do-not-reply at jboss.com Mon Jul 16 12:47:35 2007 From: do-not-reply at jboss.com (eric@attask.com) Date: Mon, 16 Jul 2007 12:47:35 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: soap binding header Message-ID: <4641145.1184604455501.JavaMail.jboss@colo-br-02.atl.jboss.com> I feel a little dead in the water, can I get a JBoss guy to reply to this thread? I need to figure out how to create the xml header snippet posted above using the JBossWS object model. The code snippet needs to be included on every call so it needs to be attached to the StubExt object. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064652#4064652 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064652 From do-not-reply at jboss.com Mon Jul 16 14:16:11 2007 From: do-not-reply at jboss.com (koganty) Date: Mon, 16 Jul 2007 14:16:11 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: ClassnotFoundError while trying to use wsrunclient Message-ID: <11677662.1184609771900.JavaMail.jboss@colo-br-02.atl.jboss.com> I had to make some chnages to get it to work on top of the instructions. Had to add jbossall-client.jar to the classpath of wsrunclient.bat at the very end to get it to work. I guess too many jars and very little documentation. Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064676#4064676 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064676 From do-not-reply at jboss.com Mon Jul 16 18:12:48 2007 From: do-not-reply at jboss.com (zeOliverFT) Date: Mon, 16 Jul 2007 18:12:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS Tools Overview (wstools, wsprovide, wsconsume) Message-ID: <32375479.1184623968440.JavaMail.jboss@colo-br-02.atl.jboss.com> which jars are mandatory to use the wsconsume ant task ? I have read in the build.xml of a sample inside JbossWS : core.classpath, jbossws.classpath, and many other jars... Are they all mandatory ? Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064769#4064769 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064769 From do-not-reply at jboss.com Mon Jul 16 20:57:55 2007 From: do-not-reply at jboss.com (andycooper) Date: Mon, 16 Jul 2007 20:57:55 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Can't access JBossWS user guide, quickstart guide Message-ID: <19189680.1184633875778.JavaMail.jboss@colo-br-02.atl.jboss.com> "maping1208" wrote : I still can not access JBossWS1.2.1 user guide. | Both url don't available: | http://jbws.dyndns.org/mediawiki/index.php/JAX-WS_User_Guide | http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_Endpoint_Configuration . | | can anybody help? Well now I can't access it from home either. Does anyone at JBoss care about this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064793#4064793 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064793 From do-not-reply at jboss.com Mon Jul 16 21:13:54 2007 From: do-not-reply at jboss.com (davidchen) Date: Mon, 16 Jul 2007 21:13:54 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - wsconsume warning message: Cannot resolve the name? Message-ID: <32685095.1184634834329.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, there: I'm using jboss-4.2.0.GA (jbossws-1.2.1GA), to run the bare document example "DocBareServiceImpl". Everything seems fine when deploying the endpoint to jboss. However, I got warning message like: | C:\jboss-4.2.0.GA\bin>wsconsume -k http://127.0.0.1:8080/jbossws-samples-baredoc/DocBareService?wsdl | warning: src-resolve: Cannot resolve the name 'ns1:SubmitBareResponse' to a(n) 'type definition' component.line ? of http://127.0.0.1:8080/jbossws-samples-baredoc/DocBareService?wsdl#types?schema2 | And then, in stub generated by wsconsume, the bare document implement become wrapped style like: | @WebMethod(operationName = "SubmitPO") | @RequestWrapper(localName = "SubmitPO", targetNamespace = "http://document.samples.jaxws.webservice.TestCodes.dds.com/", className = "org.jboss.test.ws.jaxws.samples.soapbinding.SubmitBareRequest") | @ResponseWrapper(localName = "SubmitPOResponse", targetNamespace = "http://document.samples.jaxws.webservice.TestCodes.dds.com/", className = "org.jboss.test.ws.jaxws.samples.soapbinding.SubmitBareResponse") | public void submitPO( | @WebParam(name = "product", targetNamespace = "http://soapbinding.samples.jaxws.ws.test.jboss.org/") | String product, | @WebParam(name = "name", targetNamespace = "http://soapbinding.samples.jaxws.ws.test.jboss.org/", mode = WebParam.Mode.OUT) | Holder name, | @WebParam(name = "price", targetNamespace = "http://soapbinding.samples.jaxws.ws.test.jboss.org/", mode = WebParam.Mode.OUT) | Holder price); | So, the question is: 1. Any problem with that warning message? 2. Should the stub code be bare document style something like?: | public SubmitBareResponse submitPO(SubmitBareRequest poRequest) | Highly appreciated if any help you can give. And thanks a lot in advance. David View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064795#4064795 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064795 From do-not-reply at jboss.com Mon Jul 16 21:49:11 2007 From: do-not-reply at jboss.com (jktinoco) Date: Mon, 16 Jul 2007 21:49:11 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: implicit namespace support? Message-ID: <5137240.1184636951589.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I was using JBoss 4.0.5 and the next SOAP request works perfectly, now with JBoss 4.2 this request doesn't works. | | | | | 3 | | | | This same request with explicit namespace works perfectly in Jboss 4.2 | | | | | 3 | | | | Why doesn't work in JBoss 4.2 my first request? Thanks in advance!! Jair Karim View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064799#4064799 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064799 From do-not-reply at jboss.com Tue Jul 17 02:25:23 2007 From: do-not-reply at jboss.com (mmcgovern@oz) Date: Tue, 17 Jul 2007 02:25:23 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - How to define context for EJB3 web service Message-ID: <7047237.1184653523629.JavaMail.jboss@colo-br-02.atl.jboss.com> How do I define the web context for SLSB that I expose using @WebService? This is not a web app, so no web.xml or the like. I'd like to be able to do this using deploy-time configuration or at worst build time configuration. An annotation (e.g. @WebContext) does not allow me to have different deployments of the same code in the same app server - for example dev and staging web services running on same app server need to have different URLs to the web service. Thanks Michael View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064839#4064839 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064839 From do-not-reply at jboss.com Tue Jul 17 03:25:05 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Tue, 17 Jul 2007 03:25:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Can't access JBossWS user guide, quickstart guide Message-ID: <2531355.1184657105378.JavaMail.jboss@colo-br-02.atl.jboss.com> Sorry, we'd been migrating that box and experience network do problems throughout the last week. We'll get that fixed soon - thanks for your patience. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064858#4064858 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064858 From do-not-reply at jboss.com Tue Jul 17 08:30:01 2007 From: do-not-reply at jboss.com (merapyaraJboss) Date: Tue, 17 Jul 2007 08:30:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Error: Unable to createEndpointReference Provider Message-ID: <3878327.1184675401577.JavaMail.jboss@colo-br-02.atl.jboss.com> I m also facing same problem Can any body help me View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064968#4064968 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064968 From do-not-reply at jboss.com Tue Jul 17 09:18:56 2007 From: do-not-reply at jboss.com (lacp46) Date: Tue, 17 Jul 2007 09:18:56 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Message-ID: <26527656.1184678336402.JavaMail.jboss@colo-br-02.atl.jboss.com> You are lucky man, I continue with the same error and I reinstalled all again and nothing. "Endpoint does not contain operation metadata" exception. :(. greetz. Luis. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064990#4064990 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064990 From do-not-reply at jboss.com Tue Jul 17 09:28:43 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Tue, 17 Jul 2007 09:28:43 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS supports pluggable Web Service stacks Message-ID: <31812468.1184678923666.JavaMail.jboss@colo-br-02.atl.jboss.com> anonymous wrote : | In short, deployment archives should depend on the WS stack that is currently installed. | He probably means should depend on the WS stack... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064998#4064998 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064998 From do-not-reply at jboss.com Tue Jul 17 09:29:55 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Tue, 17 Jul 2007 09:29:55 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS supports pluggable Web Service stacks Message-ID: <15389271.1184678995383.JavaMail.jboss@colo-br-02.atl.jboss.com> lol, hit the return button by accident: i meant to say should _not_ depend on the WS stack View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064999#4064999 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064999 From do-not-reply at jboss.com Tue Jul 17 10:38:03 2007 From: do-not-reply at jboss.com (kadlecp) Date: Tue, 17 Jul 2007 10:38:03 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Asynchronous invocations Message-ID: <27837560.1184683083777.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello, I have tested asynchronous invocations with simple web service and simple standalone client. Everything works fine except that the client's virtual machine does not end its run. Maybe ExecutorService in org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl is not ever shutdown. Is it possible to shutdown it somehow? Is it possible to close explicitly a service or a port? I use JBossWS-1.2.1.GA with JBoss-5.0.0.Beta2. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065031#4065031 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065031 From do-not-reply at jboss.com Tue Jul 17 10:38:54 2007 From: do-not-reply at jboss.com (GenesisD) Date: Tue, 17 Jul 2007 10:38:54 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: No way to write a working client Message-ID: <6304243.1184683134901.JavaMail.jboss@colo-br-02.atl.jboss.com> ok ok now i know where i was wrong...but if some one helped me I' wouldn't lost so much time... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065033#4065033 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065033 From do-not-reply at jboss.com Tue Jul 17 15:22:41 2007 From: do-not-reply at jboss.com (nvaslav) Date: Tue, 17 Jul 2007 15:22:41 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - wsconsume Message-ID: <17424795.1184700161962.JavaMail.jboss@colo-br-02.atl.jboss.com> I am trying to follow User Guide's instrusctions with Top-Down development strategy. I have downloaded jbossws-1.2.1.GA. I issued the following command and get an error: C:\WS\jbossws-1.2.1.GA\install\bin>wsconsume Exception in thread "main" java.lang.NoClassDefFoundError: org/jboss/ws/tools/jaxws/command/wsconsume Please help me to solved this. Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065127#4065127 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065127 From do-not-reply at jboss.com Tue Jul 17 18:40:12 2007 From: do-not-reply at jboss.com (PatrickMadden) Date: Tue, 17 Jul 2007 18:40:12 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - web.xml modified to web.xml.org - Subsequent runs fail Message-ID: <20389183.1184712012069.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, On July 7, we download the SVN version of JBossWS 2.0.0.0.GA and also JBoss-4.2.1.GA version of application server. I also believe this problem occurred with JBossWS 1.2.1GA and JBoss-4.2.0.GA of the application server. We could deploy our exploded EAR file the first time and our web services would run just fine. However, the second time we ran the application server we would get errors saying failed to find endpoint for service etc. Finally we figured out that our web.xml in the WEB-INF directory was being overwritten and a copy was placed to web.xml.org. The original web.xml contains something like this: | | DBService | com.clooster.web.services.db.EJB3RemoteDBServiceBean | | | | DBService | /common/services/DBService | | At runtime this is modified to be: | | DBService | org.jboss.wsf.stack.jbws.ServiceEndpointServlet | | jboss.ws.endpoint | com.clooster.web.services.db.EJB3RemoteDBServiceBean | | | | DBService | /common/services/DBService | | I'm thinking the correct behaviour would be that this web.xml.org gets copied back to web.xml on shutdown of application server. Is this correct because if so its not happening - we have verified this on like 5 windows machines. We have now modified our run.bat to check for existence of web.xml.org and if it exists copy it to web.xml. Once we do this our web services seem to always deploy correctly. Can someone please advise? Thanks in advance, PVM View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065198#4065198 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065198 From do-not-reply at jboss.com Tue Jul 17 18:42:24 2007 From: do-not-reply at jboss.com (davidchen) Date: Tue, 17 Jul 2007 18:42:24 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Wrapped vs bare document in User Guide are confusing Message-ID: <18167120.1184712144083.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, there: I guess the description in User Guide about Wrapped and Bare document are confusing, and examples are kind of misleading. For bare document the example is: | @WebMethod | public SubmitBareResponse submitPO(SubmitBareRequest poRequest) | while for wrapped document the example is: | public String submitPO(String product, int quantity) | However, the bare document style should be "method PARAMETERS represent the entire message body" and the wrapped document should be "the parameters are elements wrapped inside a top-level element". It will be way more clear if User Guide can switch the examples in that section. Just my 2 cents, I'm a newbie to webservice. Please feel free to correct my above comments if I was wrong. Thanks a lot David View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065200#4065200 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065200 From do-not-reply at jboss.com Wed Jul 18 03:02:33 2007 From: do-not-reply at jboss.com (florian79) Date: Wed, 18 Jul 2007 03:02:33 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: webParameter is null Message-ID: <423193.1184742153229.JavaMail.jboss@colo-br-02.atl.jboss.com> I have the same problem in jbosws 1.2 and 2.0 is there any mistake in my request? really no idea?! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065275#4065275 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065275 From do-not-reply at jboss.com Wed Jul 18 03:18:44 2007 From: do-not-reply at jboss.com (Mpulse) Date: Wed, 18 Jul 2007 03:18:44 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Force a library to use a jar Message-ID: <14296469.1184743124744.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello We have some session beans that rely on an external library which in turn relies on Apache Axis. It cannot use ConnectionImplementations or MessageImplementations from org.jboss.ws because of some explicit casts. We use jboss-4.2.0.GA with jbossWs 2.0 so we have three reference to javax.xml.soap.*, one in rt.jar in the jvm6, one in jboss-saaj.jar in JBOSS/lib/endorsed/ and the last in Axis' saaj.jar. We would like this one single deployment unit to use the axis libraries without interferring with the SOAP libraries in jboss-saaj.jar. How do we force this and only this library to use Axis' saaj.jar? It seems that libraries in JBOSS_HOME/lib/endorsed supercede anything in the deployment unit classpath like app.ear/lib, webapp.war/WEB-INF/lib, myejb.jar/lib with or without adding the required libraries to the manifest classpath. Any ideas? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065278#4065278 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065278 From do-not-reply at jboss.com Wed Jul 18 05:39:57 2007 From: do-not-reply at jboss.com (avijitacclaris) Date: Wed, 18 Jul 2007 05:39:57 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Integrating Security feature in web service call with JBoss Message-ID: <26554975.1184751597564.JavaMail.jboss@colo-br-02.atl.jboss.com> My assignment includes integrating security feature in web servcie call.We use JBoss 4.0.3 SP1. I have added a header in the SOAP request and in the server side we need to process the header for whic we have added a handler. The stack trace is: Fault - org.jboss.webservice.server.ServiceException: Cannot initialize webservice; nested exception is: javax.xml.rpc.JAXRPCException: Cannot initialize handler chain AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/%7dServer.generalException faultSubcode: faultString: Cannot initialize webservice; nested exception is: javax.xml.rpc.JAXRPCException: Cannot initialize handler chain faultActor: faultNode: faultDetail: Caused by: javax.xml.rpc.JAXRPCException: Cannot initialize handler chain at org.jboss.webservice.handler.HandlerChainBaseImpl.addHandlersToChain(HandlerChainBaseImpl.java:99) at org.jboss.webservice.handler.HandlerChainBaseImpl.(HandlerChainBaseImpl.java:71) at org.jboss.webservice.handler.ServerHandlerChain.(ServerHandlerChain.java:34) at org.jboss.webservice.server.InvokerProvider.initHandlerChain(InvokerProvider.java:143) at org.jboss.webservice.server.InvokerProvider.initServiceDesc(InvokerProvider.java:98) ... 30 more Caused by: java.lang.ClassCastException: employee.WSSESecurityEnvironmentHandler at org.jboss.webservice.handler.HandlerChainBaseImpl.addHandlersToChain(HandlerChainBaseImpl.java:88) ... 34 more faultActor: faultNode: faultDetail: Please give me a solution.Thanks in advance. Avijit View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065311#4065311 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065311 From do-not-reply at jboss.com Wed Jul 18 09:21:58 2007 From: do-not-reply at jboss.com (deadrow) Date: Wed, 18 Jul 2007 09:21:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - WARN [EndpointMetaData] Loading SEI after eager initializati Message-ID: <13140104.1184764918812.JavaMail.jboss@colo-br-02.atl.jboss.com> I am using jboss 4.2.1GA and JbossWS 2.0.0 I get mi error full of this error. Am I doing something wrong? Is there a lazy initialization? Should I pay attention to this warning? I doesn't look so good to me. Please write back Regards Davide View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065379#4065379 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065379 From do-not-reply at jboss.com Wed Jul 18 10:09:36 2007 From: do-not-reply at jboss.com (palin) Date: Wed, 18 Jul 2007 10:09:36 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: No way to write a working client Message-ID: <25394390.1184767776031.JavaMail.jboss@colo-br-02.atl.jboss.com> "GenesisD" wrote : ok ok now i know where i was wrong...but if some one helped me I' wouldn't lost so much time... Letting the community know your problem's solution instead of complaining about the response you didn't get might eventually help someone else. Please check http://jbws.dyndns.org/mediawiki/index.php?title=FAQ#Why_are_my_forum_posts_not_answered_more_quickly.3F Alessio Soldano View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065394#4065394 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065394 From do-not-reply at jboss.com Wed Jul 18 11:18:16 2007 From: do-not-reply at jboss.com (palin) Date: Wed, 18 Jul 2007 11:18:16 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: wsconsume Message-ID: <31442226.1184771896880.JavaMail.jboss@colo-br-02.atl.jboss.com> Try running wsconsume from you application server bin directory, this should allow the wsconsume script to correctly set the classpath required to load org/jboss/ws/tools/jaxws/command/wsconsume. Bye Alessio Soldano http://www.javalinux.it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065428#4065428 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065428 From do-not-reply at jboss.com Wed Jul 18 11:24:44 2007 From: do-not-reply at jboss.com (djayakaran) Date: Wed, 18 Jul 2007 11:24:44 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problem Accessing Web Service Message-ID: <30286640.1184772284716.JavaMail.jboss@colo-br-02.atl.jboss.com> Thanks Alessio. I'll check your suggestion out and post a reply when I resolve the problem. David View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065433#4065433 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065433 From do-not-reply at jboss.com Wed Jul 18 12:06:29 2007 From: do-not-reply at jboss.com (andycooper) Date: Wed, 18 Jul 2007 12:06:29 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - WS-Security client? Message-ID: <29857889.1184774789591.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm trying to get a standalone JAX-WS client running with WS-Security. At present, it can't find the keystore. The documentation is somewhat incomplete in this regard: We did not specify a key store or trust store, because client apps instead use the wsse System properties instead. If this was a web or ejb client (meaning a webservice client in a war or ejb jar file), then we would have specified them in the client descriptor. Umm, ok, good. What are the wsse Ssytem properties? How about an example? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065464#4065464 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065464 From do-not-reply at jboss.com Wed Jul 18 12:08:34 2007 From: do-not-reply at jboss.com (lambeths) Date: Wed, 18 Jul 2007 12:08:34 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: how to get wstools working in jboss 4.2 Message-ID: <9633756.1184774914478.JavaMail.jboss@colo-br-02.atl.jboss.com> Did anyone find a solution to this problem. Recently upgraded from 4.0.5 to 4.2.1, having the same problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065466#4065466 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065466 From do-not-reply at jboss.com Wed Jul 18 12:49:57 2007 From: do-not-reply at jboss.com (8bits) Date: Wed, 18 Jul 2007 12:49:57 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossws-2.0.0.GA released Message-ID: <26846429.1184777397364.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello, I'm currently having some troubles with the WebServiceContext injection, and I saw that this release fixes this problem. The project that I work for is using jboss as 4.0.4, and I saw here: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossWSLegacyDocumentation that this version partially (?) supports the 2.0.0 version. Is this correct or am I misunderstood? Will I have any kind of issues with these 2 softwares working together? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065486#4065486 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065486 From do-not-reply at jboss.com Wed Jul 18 13:21:02 2007 From: do-not-reply at jboss.com (lambeths) Date: Wed, 18 Jul 2007 13:21:02 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: how to get wstools working in jboss 4.2 Message-ID: <10691133.1184779262988.JavaMail.jboss@colo-br-02.atl.jboss.com> I found a solution... I had to add a few jars to the WSTOOLS classpath in wstools.bat, but it was different for JRE 1.5 vs 1.6. Using JRE 1.5.x I had to add the following: set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/wsdl4j.jar | set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jboss-jaxrpc.jar | set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jboss-jaxws.jar | set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jboss-saaj.jar Using JRE 1.6.x only two of those lines were necessary: set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/wsdl4j.jar | set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jboss-jaxrpc.jar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065495#4065495 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065495 From do-not-reply at jboss.com Wed Jul 18 13:46:09 2007 From: do-not-reply at jboss.com (fredash) Date: Wed, 18 Jul 2007 13:46:09 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Getting Message-ID: <11476595.1184780769091.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, Same error for me... Could you tell me if this error has been corrected in newer versions of JBOSS AS and/or JBOSS WS ? Thanks, fred. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065508#4065508 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065508 From do-not-reply at jboss.com Wed Jul 18 17:51:34 2007 From: do-not-reply at jboss.com (gryffin) Date: Wed, 18 Jul 2007 17:51:34 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Axis vs Jboss compat issue Message-ID: <27274302.1184795494257.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi. I've got a webservice running on JBossAS 4.0.5 w/ JBossWS 1.2.1. I am able to use it fine over HTTP using a JBoss based client. I have a user who has an Axis based client who can't access the service. I get the following error trying to access an attribute of the submitted service parameter ( put another way, accessing a complex-type child element of the SOAP operation parameter ). I inspected the SOAP packet using a sniffer and it appears that the Axis client call is valid, though not identical to the JBoss client call. What should I look for? It's a really gnarly interop problem. All three, both clients and the service were generated from the same WSDL, so they should be following the same rules and schema. Here's the error, it looks like the child elements are not marshalling properly, but I don't have any idea how to troubleshoot that. Can anyone point in the right direction? Thanks! | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.jaxws.handler.MessageContextJAXWS] Begin response processing | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.soap.MessageContextAssociation] popMessageContext: org.jboss.ws.core.jaxws.handler.SOAPMessageContextJAXWS at 2098ff (Thread http-0.0.0.0-8080-2) | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.soap.MessageContextAssociation] pushMessageContext: org.jboss.ws.core.jaxws.handler.SOAPMessageContextJAXWS at e107d9 (Thread http-0.0.0.0-8080-2) | 2007-07-18 14:30:17,875 ERROR [org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS] SOAP request exception | java.lang.NullPointerException | at com.boeing.nmt.server.ws.NlsSoapServiceImpl.assetAssociationSet(NlsSoapServiceImpl.java:257) | 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:585) | at org.jboss.ws.core.server.ServiceEndpointInvokerJSE.invokeServiceEndpointInstance(ServiceEndpointInvokerJSE.java:104) | at org.jboss.ws.core.server.AbstractServiceEndpointInvoker.invoke(AbstractServiceEndpointInvoker.java:207) | at org.jboss.ws.core.server.ServiceEndpoint.processRequest(ServiceEndpoint.java:212) | at org.jboss.ws.core.server.ServiceEndpointManager.processRequest(ServiceEndpointManager.java:448) | at org.jboss.ws.core.server.AbstractServiceEndpointServlet.doPost(AbstractServiceEndpointServlet.java:114) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) | at org.jboss.ws.core.server.AbstractServiceEndpointServlet.service(AbstractServiceEndpointServlet.java:75) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) | at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) | at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175) | at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74) | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) | at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156) | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) | at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869) | at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664) | at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) | at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112) | at java.lang.Thread.run(Thread.java:595) | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS] Cannot obtain fault meta data for: class java.lang.NullPointerException | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.jaxws.handler.HandlerDelegateJAXWS] callFaultHandlerChain: PRE | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.jaxws.handler.HandlerDelegateJAXWS] callFaultHandlerChain: ENDPOINT | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.jaxws.handler.HandlerDelegateJAXWS] callFaultHandlerChain: POST | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.jaxws.handler.HandlerDelegateJAXWS] closeHandlerChain | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.jaxws.handler.HandlerChainExecutor] close | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.jaxws.handler.HandlerDelegateJAXWS] closeHandlerChain | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.jaxws.handler.HandlerChainExecutor] close | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.jaxws.handler.HandlerDelegateJAXWS] closeHandlerChain | 2007-07-18 14:30:17,875 DEBUG [org.jboss.ws.core.jaxws.handler.HandlerChainExecutor] close | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065585#4065585 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065585 From do-not-reply at jboss.com Wed Jul 18 21:08:31 2007 From: do-not-reply at jboss.com (cheokfan) Date: Wed, 18 Jul 2007 21:08:31 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Error in JBossWS with large attachment Message-ID: <29660476.1184807311100.JavaMail.jboss@colo-br-02.atl.jboss.com> I am using Jboss 4.2GA so that the version of JbossWS is 1.2.1GA. I shall download the 2.0 to try. Thanks for your reply. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065622#4065622 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065622 From do-not-reply at jboss.com Thu Jul 19 03:40:48 2007 From: do-not-reply at jboss.com (kadlecp) Date: Thu, 19 Jul 2007 03:40:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS-Security client? Message-ID: <11304113.1184830848792.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello, my WS-Security client looks like this. It works. public class TestClient { /** * @param args */ public static void main(String[] args) throws Exception { BasicConfigurator.configure(); System.setProperty("org.jboss.ws.wsse.keyStore", "resources/wsse.keystore"); System.setProperty("org.jboss.ws.wsse.trustStore", "resources/wsse.keystore"); System.setProperty("org.jboss.ws.wsse.keyStorePassword", "jbossws"); System.setProperty("org.jboss.ws.wsse.trustStorePassword", "jbossws"); System.setProperty("org.jboss.ws.wsse.keyStoreType", "jks"); System.setProperty("org.jboss.ws.wsse.keyStoreType", "jks"); URL wsdlFileURL = new URL("http://localhost:8080/simpleencrypt?wsdl"); QName qname = new QName("http://org.jboss.ws/samples/wssecurity", "HelloService"); URL securityURL = new File("resources/jboss-wsse-client.xml").toURI().toURL(); Service service = Service.create(wsdlFileURL, qname); ((ServiceExt)service).setSecurityConfig(securityURL.toExternalForm()); Hello port = service.getPort(Hello.class); ((StubExt)port).setConfigName("Standard WSSecurity Client"); String ret = port.echoUserType("hello world!"); System.out.println(ret); } } View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065656#4065656 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065656 From do-not-reply at jboss.com Thu Jul 19 03:48:39 2007 From: do-not-reply at jboss.com (kadlecp) Date: Thu, 19 Jul 2007 03:48:39 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS-Security client? Message-ID: <1906648.1184831319521.JavaMail.jboss@colo-br-02.atl.jboss.com> I use JBossWS 1.2.1.GA With JBossWS 2.0.0.GA. It works as well. But there is one small change in api. Except the line ((ServiceExt)service).setSecurityConfig(securityURL.toExternalForm()); in JBossWS 1.2.1 there is the line ((StubExt)port).setSecurityConfig(securityURL.toExternalForm()); inJBossWS 2.0.0. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065658#4065658 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065658 From do-not-reply at jboss.com Thu Jul 19 06:57:07 2007 From: do-not-reply at jboss.com (mhohmann) Date: Thu, 19 Jul 2007 06:57:07 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Latency problem due to small TCP/IP packetsize Message-ID: <20894178.1184842627279.JavaMail.jboss@colo-br-02.atl.jboss.com> I?ve set the option tcpNoDelay="false" in Tomcat HTTP-Connector Config. This seems to be the solution. Now the Response-Latency is acceptable. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065724#4065724 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065724 From do-not-reply at jboss.com Thu Jul 19 07:11:22 2007 From: do-not-reply at jboss.com (mhohmann) Date: Thu, 19 Jul 2007 07:11:22 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Jboss ws - Access data from a table Message-ID: <4529296.1184843482097.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, maybe this is the same problem as in my post: http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065724#4065724 I?ve set the option tcpNoDelay="false" in the Tomcat HTTP-Connector Config. Now the Response-Time is much better. File: Jboss-Instance/deploy/bossweb-tomcat55.sar/server.xml You can adjust the Debug in server.log by editing the File: JBoss/conf/log4j.xml Uncomment the following element and set the value to the log-level you want (e.g. INFO): View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065731#4065731 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065731 From do-not-reply at jboss.com Thu Jul 19 09:29:14 2007 From: do-not-reply at jboss.com (01012003) Date: Thu, 19 Jul 2007 09:29:14 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - web service endpoint dissappeared after restart Message-ID: <9621265.1184851754894.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I have developed a web service and tested which worked fine. A weird situation: after I restarted jboss I do not see my service in jbossws console. When I try to invoke the service I get this error: | 2007-07-19 14:22:55,610 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/].[RemoteSearch]] Servlet.service() for | servlet RemoteSearch threw exception | javax.xml.ws.WebServiceException: Cannot obtain endpoint for: jboss.ws:context=,endpoint=RemoteSearch | at org.jboss.wsf.spi.invocation.EndpointServlet.initServiceEndpoint(EndpointServlet.java:103) | at org.jboss.wsf.stack.jbws.ServiceEndpointServlet.initServiceEndpoint(ServiceEndpointServlet.java:49) | at org.jboss.wsf.spi.invocation.EndpointServlet.service(EndpointServlet.java:65) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:803) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) | at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230) | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175) | at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179) | at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:433) | at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84) | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104) | at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156) | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241) | at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844) | at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:580) | at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) | at java.lang.Thread.run(Thread.java:619) | I am using jbossws2.0, jboss-4.2.0 with jdk.1.6 on linux. I have done the steps to use jboss ws with jdk1.6. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065783#4065783 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065783 From do-not-reply at jboss.com Thu Jul 19 09:31:50 2007 From: do-not-reply at jboss.com (01012003) Date: Thu, 19 Jul 2007 09:31:50 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: web service endpoint dissappeared after restart Message-ID: <8163603.1184851910741.JavaMail.jboss@colo-br-02.atl.jboss.com> I have also realized that if I rename the class, deploy it and restart jboss it works fine, but if I restart it once again the problem comes back again. Thank you for any help in advance. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065784#4065784 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065784 From do-not-reply at jboss.com Thu Jul 19 10:17:40 2007 From: do-not-reply at jboss.com (andycooper) Date: Thu, 19 Jul 2007 10:17:40 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS-Security client? Message-ID: <31560915.1184854660925.JavaMail.jboss@colo-br-02.atl.jboss.com> Thanks! That, and the fact that I can't type in paths correctly, solved my problem :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065810#4065810 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065810 From do-not-reply at jboss.com Thu Jul 19 11:02:05 2007 From: do-not-reply at jboss.com (01012003) Date: Thu, 19 Jul 2007 11:02:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: web.xml modified to web.xml.org - Subsequent runs fail Message-ID: <7482879.1184857325996.JavaMail.jboss@colo-br-02.atl.jboss.com> having the same problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065853#4065853 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065853 From do-not-reply at jboss.com Thu Jul 19 11:09:26 2007 From: do-not-reply at jboss.com (01012003) Date: Thu, 19 Jul 2007 11:09:26 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: web service endpoint dissappeared after restart Message-ID: <30261277.1184857766750.JavaMail.jboss@colo-br-02.atl.jboss.com> I found out that this post is the same as http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4065853 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065858#4065858 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065858 From do-not-reply at jboss.com Thu Jul 19 11:54:18 2007 From: do-not-reply at jboss.com (GenesisD) Date: Thu, 19 Jul 2007 11:54:18 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: No way to write a working client Message-ID: <6880693.1184860458211.JavaMail.jboss@colo-br-02.atl.jboss.com> "palin" wrote : "GenesisD" wrote : ok ok now i know where i was wrong...but if some one helped me I' wouldn't lost so much time... | | Letting the community know your problem's solution instead of complaining about the response you didn't get might eventually help someone else. | Please check http://jbws.dyndns.org/mediawiki/index.php?title=FAQ#Why_are_my_forum_posts_not_answered_more_quickly.3F | | Alessio Soldano ma vaff*****o va, te, jboss e la relativa comunit? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065876#4065876 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065876 From do-not-reply at jboss.com Thu Jul 19 12:25:13 2007 From: do-not-reply at jboss.com (bglasco) Date: Thu, 19 Jul 2007 12:25:13 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - wsconsume error Message-ID: <30754646.1184862313054.JavaMail.jboss@colo-br-02.atl.jboss.com> parsing WSDL... generating code... [ERROR] null unknown location com\ballydev\sds\sdt\marketing\events\ObjectFactory.java com\ballydev\sds\sdt\marketing\events\SDTwsService.java com\ballydev\sds\sdt\marketing\events\Sdtws.java com\ballydev\sds\sdt\marketing\events\SdtwsResponse.java com\ballydev\sds\sdt\marketing\events\package-info.java C:\jboss42test\bin\output\com\ballydev\sds\sdt\marketing\events\SDTwsService.jav a:46: invalid method declaration; return type required public getSDTwsPort() { ^ 1 error compilation failed, errors should have been reported Failed to invoke WsImport java.lang.IllegalStateException: WsImport invocation failed. Try the verbose swi tch for more information at org.jboss.ws.tools.jaxws.impl.SunRIConsumerImpl.consume(SunRIConsumer View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065889#4065889 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065889 From do-not-reply at jboss.com Thu Jul 19 13:32:23 2007 From: do-not-reply at jboss.com (lambeths) Date: Thu, 19 Jul 2007 13:32:23 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Deploying JDeveloper/Oracle webservices on JBossWS Message-ID: <3355273.1184866343201.JavaMail.jboss@colo-br-02.atl.jboss.com> Has anyone solved this problem? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065907#4065907 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065907 From do-not-reply at jboss.com Thu Jul 19 13:54:47 2007 From: do-not-reply at jboss.com (01012003) Date: Thu, 19 Jul 2007 13:54:47 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - contract based approach Message-ID: <670261.1184867687863.JavaMail.jboss@colo-br-02.atl.jboss.com> Is it possible to create a SOAP message with contract based approach as: | javax.xml.soap.MessageFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL).createMessage(); | I have tried but getting: does not contain operation meta data for error. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065917#4065917 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065917 From do-not-reply at jboss.com Thu Jul 19 14:34:35 2007 From: do-not-reply at jboss.com (01012003) Date: Thu, 19 Jul 2007 14:34:35 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: contract based approach Message-ID: <10714601.1184870075194.JavaMail.jboss@colo-br-02.atl.jboss.com> Of course if I write the xml manually and send it over http like this: | | " | " | " | "test | " | " | " | it works, but if you do: | SOAPMessage msg = javax.xml.soap.MessageFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL).createMessage(); | SOAPEnvelope env = msg.getSOAPPart().getEnvelope(); | SOAPBody body = env.getBody(); | SOAPBodyElement be = body.addBodyElement(env.createName("search", "", "ws.hj.org")); | be.addChildElement("arg0").addTextNode("test"); | it produces and send different xml to endpoint which results in above mentioned exception View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065925#4065925 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065925 From do-not-reply at jboss.com Thu Jul 19 16:25:52 2007 From: do-not-reply at jboss.com (c_eric_ray) Date: Thu, 19 Jul 2007 16:25:52 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Configured DII Not Working Message-ID: <5854987.1184876752942.JavaMail.jboss@colo-br-02.atl.jboss.com> JBoss 4.0.5.GA/JBossWS 1.0.3 This code from the User's Guide does not work. Any ideas? String endpoint = "http://redbull:8080/ping/Ping"; | String namespace = "http://ls.vicor.com/ws"; | | ServiceFactory factory = ServiceFactory.newInstance(); | URL wsdlLocation = new URL(endpoint + "?wsdl"); | QName serviceName = new QName(namespace, "Ping"); | ServiceImpl service = (ServiceImpl)factory.createService(wsdlLocation, serviceName); | Call call = service.createCall(); | | QName operationName = new QName(namespace, "Ping_execute"); | call.setOperationName(operationName); | | String hello = "Hello"; | Object retObj = call.invoke(new Object[]{hello}); wsdl.. | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Is there something more I need to do. I get the following error: 15:13:30,661 ERROR [PingApplicationInstanceBean] org.jboss.ws.WSException: Cannot obtain java type mapping for: {http://ls.vicor.com/ws}execute | 15:13:30,662 ERROR [STDERR] org.jboss.ws.WSException: Cannot obtain java type mapping for: {http://ls.vicor.com/ws}execute | 15:13:30,662 ERROR [STDERR] at org.jboss.ws.deployment.JSR109MetaDataBuilder.buildParameterMetaDataDoc(JSR109MetaDataBuilder.java:451) | 15:13:30,662 ERROR [STDERR] at org.jboss.ws.deployment.JSR109MetaDataBuilder.setupOperationsFromWSDL(JSR109MetaDataBuilder.java:200) | 15:13:30,662 ERROR [STDERR] at org.jboss.ws.deployment.JSR109ClientMetaDataBuilder.buildMetaDataInternal(JSR109ClientMetaDataBuilder.java:208) | 15:13:30,662 ERROR [STDERR] at org.jboss.ws.deployment.JSR109ClientMetaDataBuilder.buildMetaData(JSR109ClientMetaDataBuilder.java:126) | 15:13:30,662 ERROR [STDERR] at org.jboss.ws.deployment.JSR109ClientMetaDataBuilder.buildMetaData(JSR109ClientMetaDataBuilder.java:82) | 15:13:30,662 ERROR [STDERR] at org.jboss.ws.jaxrpc.ServiceImpl.(ServiceImpl.java:96) | 15:13:30,662 ERROR [STDERR] at org.jboss.ws.jaxrpc.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:157) | 15:13:30,663 ERROR [STDERR] at org.jboss.ws.jaxrpc.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:128) | 15:13:30,663 ERROR [STDERR] at com.vicor.lm.server.ping.PingApplicationInstanceBean.pingApplications(PingApplicationInstanceBean.java:50) | 15:13:30,663 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor142.invoke(Unknown Source) | 15:13:30,663 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | 15:13:30,663 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585) | 15:13:30,663 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:112) | 15:13:30,663 ERROR [STDERR] at org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:166) | 15:13:30,663 ERROR [STDERR] at com.vicor.lm.server.interceptors.LogTraceInfo.logTraceInfo(LogTraceInfo.java:19) | 15:13:30,663 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor129.invoke(Unknown Source) | 15:13:30,663 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | 15:13:30,663 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585) | 15:13:30,663 ERROR [STDERR] at org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:118) | 15:13:30,663 ERROR [STDERR] at org.jboss.seam.intercept.EJBInvocationContext.proceed(EJBInvocationContext.java:37) | 15:13:30,663 ERROR [STDERR] at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:57) | 15:13:30,663 ERROR [STDERR] at org.jboss.seam.interceptors.MethodContextInterceptor.aroundInvoke(MethodContextInterceptor.java:27) | 15:13:30,663 ERROR [STDERR] at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:69) | 15:13:30,663 ERROR [STDERR] at org.jboss.seam.intercept.RootInterceptor.invoke(RootInterceptor.java:103) | 15:13:30,663 ERROR [STDERR] at org.jboss.seam.intercept.SessionBeanInterceptor.aroundInvoke(SessionBeanInterceptor.java:53) | 15:13:30,663 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor128.invoke(Unknown Source) | 15:13:30,663 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | 15:13:30,663 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585) | 15:13:30,663 ERROR [STDERR] at org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:118) | 15:13:30,663 ERROR [STDERR] at org.jboss.ejb3.interceptor.EJB3InterceptorsInterceptor.invoke(EJB3InterceptorsInterceptor.java:63) | 15:13:30,663 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,663 ERROR [STDERR] at org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor.invoke(TransactionScopedEntityManagerInterceptor.java:54) | 15:13:30,663 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,663 ERROR [STDERR] at org.jboss.ejb3.AllowedOperationsInterceptor.invoke(AllowedOperationsInterceptor.java:46) | 15:13:30,664 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,664 ERROR [STDERR] at org.jboss.aspects.tx.TxPolicy.invokeInCallerTx(TxPolicy.java:126) | 15:13:30,664 ERROR [STDERR] at org.jboss.aspects.tx.TxInterceptor$Required.invoke(TxInterceptor.java:195) | 15:13:30,664 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,664 ERROR [STDERR] at org.jboss.aspects.tx.TxPropagationInterceptor.invoke(TxPropagationInterceptor.java:76) | 15:13:30,664 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,664 ERROR [STDERR] at org.jboss.ejb3.stateless.StatelessInstanceInterceptor.invoke(StatelessInstanceInterceptor.java:62) | 15:13:30,664 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,664 ERROR [STDERR] at org.jboss.aspects.security.AuthenticationInterceptor.invoke(AuthenticationInterceptor.java:77) | 15:13:30,664 ERROR [STDERR] at org.jboss.ejb3.security.Ejb3AuthenticationInterceptor.invoke(Ejb3AuthenticationInterceptor.java:102) | 15:13:30,664 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,664 ERROR [STDERR] at org.jboss.ejb3.ENCPropagationInterceptor.invoke(ENCPropagationInterceptor.java:47) | 15:13:30,664 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,664 ERROR [STDERR] at org.jboss.ejb3.asynchronous.AsynchronousInterceptor.invoke(AsynchronousInterceptor.java:106) | 15:13:30,664 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,664 ERROR [STDERR] at org.jboss.ejb3.stateless.StatelessContainer.localInvoke(StatelessContainer.java:211) | 15:13:30,664 ERROR [STDERR] at org.jboss.ejb3.stateless.StatelessLocalProxy.invoke(StatelessLocalProxy.java:79) | 15:13:30,664 ERROR [STDERR] at $Proxy134.pingApplications(Unknown Source) | 15:13:30,664 ERROR [STDERR] at com.vicor.lm.server.ping.PingTimerBean.timerExpired(PingTimerBean.java:55) | 15:13:30,664 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor140.invoke(Unknown Source) | 15:13:30,665 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | 15:13:30,665 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585) | 15:13:30,665 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:112) | 15:13:30,665 ERROR [STDERR] at org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:166) | 15:13:30,665 ERROR [STDERR] at com.vicor.lm.server.interceptors.LogTraceInfo.logTraceInfo(LogTraceInfo.java:19) | 15:13:30,665 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor129.invoke(Unknown Source) | 15:13:30,665 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | 15:13:30,665 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585) | 15:13:30,665 ERROR [STDERR] at org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:118) | 15:13:30,665 ERROR [STDERR] at org.jboss.seam.intercept.EJBInvocationContext.proceed(EJBInvocationContext.java:37) | 15:13:30,665 ERROR [STDERR] at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:57) | 15:13:30,665 ERROR [STDERR] at org.jboss.seam.interceptors.MethodContextInterceptor.aroundInvoke(MethodContextInterceptor.java:27) | 15:13:30,665 ERROR [STDERR] at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:69) | 15:13:30,665 ERROR [STDERR] at org.jboss.seam.intercept.RootInterceptor.invoke(RootInterceptor.java:113) | 15:13:30,665 ERROR [STDERR] at org.jboss.seam.intercept.SessionBeanInterceptor.aroundInvoke(SessionBeanInterceptor.java:53) | 15:13:30,666 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor128.invoke(Unknown Source) | 15:13:30,666 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | 15:13:30,666 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585) | 15:13:30,666 ERROR [STDERR] at org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:118) | 15:13:30,666 ERROR [STDERR] at org.jboss.ejb3.interceptor.EJB3InterceptorsInterceptor.invoke(EJB3InterceptorsInterceptor.java:63) | 15:13:30,666 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,666 ERROR [STDERR] at org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor.invoke(TransactionScopedEntityManagerInterceptor.java:54) | 15:13:30,666 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,666 ERROR [STDERR] at org.jboss.ejb3.AllowedOperationsInterceptor.invoke(AllowedOperationsInterceptor.java:46) | 15:13:30,666 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,666 ERROR [STDERR] at org.jboss.aspects.tx.TxPolicy.invokeInOurTx(TxPolicy.java:79) | 15:13:30,666 ERROR [STDERR] at org.jboss.aspects.tx.TxInterceptor$Required.invoke(TxInterceptor.java:191) | 15:13:30,666 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,666 ERROR [STDERR] at org.jboss.aspects.tx.TxPropagationInterceptor.invoke(TxPropagationInterceptor.java:76) | 15:13:30,666 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,666 ERROR [STDERR] at org.jboss.ejb3.stateless.StatelessInstanceInterceptor.invoke(StatelessInstanceInterceptor.java:62) | 15:13:30,667 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,667 ERROR [STDERR] at org.jboss.aspects.security.AuthenticationInterceptor.invoke(AuthenticationInterceptor.java:77) | 15:13:30,667 ERROR [STDERR] at org.jboss.ejb3.security.Ejb3AuthenticationInterceptor.invoke(Ejb3AuthenticationInterceptor.java:102) | 15:13:30,667 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,667 ERROR [STDERR] at org.jboss.ejb3.ENCPropagationInterceptor.invoke(ENCPropagationInterceptor.java:47) | 15:13:30,667 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,667 ERROR [STDERR] at org.jboss.ejb3.asynchronous.AsynchronousInterceptor.invoke(AsynchronousInterceptor.java:106) | 15:13:30,667 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) | 15:13:30,667 ERROR [STDERR] at org.jboss.ejb3.stateless.StatelessContainer.callTimeout(StatelessContainer.java:150) | 15:13:30,667 ERROR [STDERR] at org.jboss.ejb.txtimer.TimerImpl$TimerTaskImpl.run(TimerImpl.java:524) | 15:13:30,667 ERROR [STDERR] at java.util.TimerThread.mainLoop(Timer.java:512) | 15:13:30,667 ERROR [STDERR] at java.util.TimerThread.run(Timer.java:462) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065952#4065952 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065952 From do-not-reply at jboss.com Thu Jul 19 22:02:51 2007 From: do-not-reply at jboss.com (koganty) Date: Thu, 19 Jul 2007 22:02:51 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JBossWS 2.0 cannot handle inhertiance Message-ID: <5569854.1184896971518.JavaMail.jboss@colo-br-02.atl.jboss.com> I am running JBoss 4.0.5 with JBossWS 2.0 with JDK 1.6. JBossWS looks like cannot handle inheritance. I have a class GetAllQueryRequest which extends QueryRequest which extends Request. I have an EJB3 SLSB with methods : @WebMethod public Response executeSyncRequest(Request request) @WebMethod public QueryResponse executeSyncRequest1(QueryRequest request) @WebMethod public GetAllQueryResponse executeSyncRequest2(GetAllQueryRequest request) When I generate the stubs on the client and in Test code call : GetAllQueryRequest req = new ObjectFactory().createGetAllQueryRequest(); GetAllQueryResponse resp = (GetAllQueryResponse)bean.executeSyncRequest(req); Eventhough I'm passing GetAllQueryRequest objecton the client..I'm just receiving the Request object on the server side. Am I missing something or is this a bug? Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066011#4066011 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066011 From do-not-reply at jboss.com Fri Jul 20 03:40:39 2007 From: do-not-reply at jboss.com (roger_pearse) Date: Fri, 20 Jul 2007 03:40:39 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Forcing CDATA tags to be output sometimes on some tags from Message-ID: <6379052.1184917239850.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello, I'm porting a web service to JBossWs and I've run into a backward compatibility issue. In the soap request, there is an optional tag to say "we want CDATA tags around the output fields in the response". So in the XML that appears back in the client it might be textualstuffwithembeddedwhoknowswhat or I can't work out how to force the CDATA's to appear. If I add them to the value of the field, they get turned into this: Can anyone tell me how to do this? Many thanks indeed! Roger Pearse View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066050#4066050 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066050 From do-not-reply at jboss.com Fri Jul 20 10:36:36 2007 From: do-not-reply at jboss.com (rodgerca) Date: Fri, 20 Jul 2007 10:36:36 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - trying to access a webservice - not working from either java Message-ID: <14516872.1184942196677.JavaMail.jboss@colo-br-02.atl.jboss.com> Webservice has deployed fine on jboss 4.2 BUT >From java client I get this at the ServiceFactory.createService() call Starting Test Client Creating a service Using: http://127.0.0.1:8080/echo/EchoBean?wsdl and {http://session.address.cmmgroup.com/}EchoService Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/ws/addressing/AddressingProperties at org.jboss.ws.core.jaxrpc.client.ServiceImpl.(ServiceImpl.java:107) at org.jboss.ws.core.jaxrpc.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:157) at org.jboss.ws.core.jaxrpc.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:128) at com.cmmgroup.address.client.EchoClient.main(EchoClient.java:23) >From SOAPUI I get this (on the server, at least it is actually reaching the server!) java.lang.UnsupportedOperationException: setProperty must be overridden by all subclasses of SOAPMessage I could send you my code but I pretty sure its ok - lifted straight from a web example. Also pretty sure my classpaths are ok - jboss-wsclient.jar, etc... Please help, I've been trying to fix this for about two days.... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066230#4066230 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066230 From do-not-reply at jboss.com Fri Jul 20 12:12:05 2007 From: do-not-reply at jboss.com (PeterJ) Date: Fri, 20 Jul 2007 12:12:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <16314163.1184947925598.JavaMail.jboss@colo-br-02.atl.jboss.com> The missing class is in client/jboss-jaxws.jar. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066261#4066261 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066261 From do-not-reply at jboss.com Fri Jul 20 14:03:00 2007 From: do-not-reply at jboss.com (gryffin) Date: Fri, 20 Jul 2007 14:03:00 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - jbossws 1.2.1 xml typing problem Message-ID: <15328716.1184954580131.JavaMail.jboss@colo-br-02.atl.jboss.com> I've got a web service that accepts a complex type as a parameter. It works with a JBossWS client, but I need it to work for an Axis client whcih is failing. We both used the same WSDL for our clients, and the service was built consuming the same WSDL. Specifically, JBoss fails to marshall the DeviceData and AssetData objects. I can't find anything wrong with the format or schema implementation Axis uses. It looks fine, but JBoss throws an error when trying to access the children of the SelectionValues portion. DeviceData dd = associationValues.getDeviceData() works dd.getDeviceList() fails Here's the SOAP envelope that Axis generates: | | | | | | | | 3M0000I | | TOOLING | | | | | | | | | 17P7W3261-501 | /TOOLING | 3M0000I | false | | | | | | Here's the JBossWS client call: | | | | | | devAssetId | devOwnerAppId | | | | | | low | | | | | Stunt Asset | /devTop1/dev1-b/dev1-b-2/dev1-b-2-a | dev asset | true | | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066299#4066299 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066299 From do-not-reply at jboss.com Fri Jul 20 21:27:42 2007 From: do-not-reply at jboss.com (davidchen) Date: Fri, 20 Jul 2007 21:27:42 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: SimpleTypes not creating classes with wsconsume Message-ID: <21912375.1184981262047.JavaMail.jboss@colo-br-02.atl.jboss.com> Any help so far? Furthermore, if using other "restriction" except "enumeration" (ex. "minInclusive", "maxInclusive"), neither wsconsume nor wsdl2java will create class for that simple type. So, any way to implement such restriction in java code so that jaxb can recognize? Thanks a lot David View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066366#4066366 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066366 From do-not-reply at jboss.com Sat Jul 21 22:38:21 2007 From: do-not-reply at jboss.com (gapesteguia) Date: Sat, 21 Jul 2007 22:38:21 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Cannot obtain java type mapping Message-ID: <634387.1185071901326.JavaMail.jboss@colo-br-02.atl.jboss.com> I want to use the following code in order to inkoke the USZip web service, but I got the exception: org.jboss.ws.WSException: Cannot obtain java type mapping for: {http://www.webserviceX.NET}>GetInfoByZIP I'm using jboss-4.2.1.GA. Could anyone help me ?. Thanks | public class CallWS { | String result; | public String CallUSZipCode() { | try | | { | | URL url = new URL("http://www.webservicex.net/uszip.asmx?wsdl"); | String targetNamespace = "http://www.webserviceX.NET"; | QName serviceName = new QName(targetNamespace, "USZip"); | QName portName = new QName(targetNamespace, "USZipHttpGet"); | QName operationName = new QName(targetNamespace, "getInfoByZip"); | | // create service | ServiceFactory factory = ServiceFactory.newInstance(); | | Service service = factory.createService(url, serviceName); | | // create call | Call call = service.createCall(portName, operationName); | // invoke the remote web service | result = (String) call.invoke(new Object[] {"75080"}); | //System.out.println(result); | | } catch(Exception e){ | System.out.println(e); | result = e.toString(); | } | | return (result); | } | } | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066450#4066450 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066450 From do-not-reply at jboss.com Sun Jul 22 05:45:11 2007 From: do-not-reply at jboss.com (kamilghosn) Date: Sun, 22 Jul 2007 05:45:11 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossws-2.0.0.GA released Message-ID: <5548716.1185097511139.JavaMail.jboss@colo-br-02.atl.jboss.com> Thomas, The install procedure is not working. 1) Downloaded JBOSS 4.0.5 GA 2) Downloaded jboss-2.0.0GA 3) Run build - it did not work - No errors or success reported 4) run ant after making changes to ant.properties and it built everything but did not deply. I wish you can post a more accurate procedure. I saw your reply on "jboss/trunk" - What do you mean by that? Regards, K View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066461#4066461 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066461 From do-not-reply at jboss.com Sun Jul 22 06:00:25 2007 From: do-not-reply at jboss.com (jwcone) Date: Sun, 22 Jul 2007 06:00:25 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossws-2.0.0.GA released Message-ID: <6695348.1185098425158.JavaMail.jboss@colo-br-02.atl.jboss.com> Huh, it worked for me. I installed jbossws-native-2.0.0.GA into JBoss 4.2.0.GA, earlier; it solved my @Resource WebServiceContext issue, so I'm pleased. I'm migrating some services from JBoss.NET, which is a pain because they were using RPC/Encoded and saving state with HTTP sessions/cookies -- I'm changing the services to use Document/Literal, but unless I wanted to throw out a bunch of business-layer code I had to retain the use of state, somehow. Injecting the WebServiceContext let me do that. I like the JBossWS/JAX-WS stack better than the JBoss.NET/Axis stack. Exposing web services with a Stateless session bean is effortless. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066462#4066462 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066462 From do-not-reply at jboss.com Sun Jul 22 13:10:38 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Sun, 22 Jul 2007 13:10:38 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: wsconsume error Message-ID: <10800302.1185124238082.JavaMail.jboss@colo-br-02.atl.jboss.com> Looks liek a classpath probem. How did you install jbossws? What version is it? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066480#4066480 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066480 From do-not-reply at jboss.com Sun Jul 22 13:12:56 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Sun, 22 Jul 2007 13:12:56 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: web.xml modified to web.xml.org - Subsequent runs fail Message-ID: <27688412.1185124376480.JavaMail.jboss@colo-br-02.atl.jboss.com> anonymous wrote : we ran the application server Do you mean 'reboot' the AS without touching the deplyment? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066481#4066481 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066481 From do-not-reply at jboss.com Sun Jul 22 13:15:45 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Sun, 22 Jul 2007 13:15:45 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Jboss ws - Access data from a table Message-ID: <18222103.1185124546008.JavaMail.jboss@colo-br-02.atl.jboss.com> The log4j category is 'jbossws.SAOPMessage'. When it's set to TRACE it displays the message in transit. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066482#4066482 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066482 From do-not-reply at jboss.com Sun Jul 22 13:18:39 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Sun, 22 Jul 2007 13:18:39 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Error in JBossWS with large attachment Message-ID: <7073199.1185124719198.JavaMail.jboss@colo-br-02.atl.jboss.com> Yes, chunked encoding was added with 2.0 The default configuration for JAX-WS clients and endpoints phas this enabled: | | Standard Client | http://org.jboss.ws/dispatch/validate | | http://org.jboss.ws/http#chunksize | 2048 | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066483#4066483 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066483 From do-not-reply at jboss.com Sun Jul 22 13:21:57 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Sun, 22 Jul 2007 13:21:57 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Latency problem due to small TCP/IP packetsize Message-ID: <7348596.1185124917380.JavaMail.jboss@colo-br-02.atl.jboss.com> No, there is no configuraion for this within JBossWS. However the tomcat configuration might be good starting point. It might as well be possible to change the default Socket Factory properties for the VM. It would be nice if you could share your experience with others using the WIKI: http://jbws.dyndns.org/mediawiki/index.php?title=JBossWS View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066484#4066484 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066484 From do-not-reply at jboss.com Sun Jul 22 13:22:56 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Sun, 22 Jul 2007 13:22:56 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WARN [EndpointMetaData] Loading SEI after eager initiali Message-ID: <25417580.1185124976327.JavaMail.jboss@colo-br-02.atl.jboss.com> Yes, it's not good. Could you post the server log, so we could investigate where this error comes from? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066485#4066485 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066485 From do-not-reply at jboss.com Sun Jul 22 13:26:58 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Sun, 22 Jul 2007 13:26:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Force a library to use a jar Message-ID: <9123608.1185125218261.JavaMail.jboss@colo-br-02.atl.jboss.com> IMO it's not possible with JDK 6, because the JDK itself ships with SAAJ and JAX-WS amongst others. The only way to get hold of this, is the endorsed directory mechanism. However this doesn't have the notion of 'scoping'. If this was JDK 5, it might be possible to isolate the Axis stuff in a scoped webapp deployment... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066486#4066486 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066486 From do-not-reply at jboss.com Sun Jul 22 13:29:55 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Sun, 22 Jul 2007 13:29:55 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Wrapped vs bare document in User Guide are confusing Message-ID: <19773788.1185125395210.JavaMail.jboss@colo-br-02.atl.jboss.com> Thanks for the feedback. Please feel free to improve the userguide in that area. Contributions to the WIKI are always welcome... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066487#4066487 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066487 From do-not-reply at jboss.com Sun Jul 22 13:37:46 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Sun, 22 Jul 2007 13:37:46 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: consume WS error after update to JBossWS 2.0 Message-ID: <10244531.1185125866723.JavaMail.jboss@colo-br-02.atl.jboss.com> anonymous wrote : I'm writing a diploma thesis about it. If your diploma thesis includes particular features or enhancements to JBossWS you'd like to see, please contact me about possible contribution packages. Regards, Heiko View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066488#4066488 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066488 From do-not-reply at jboss.com Sun Jul 22 13:40:51 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Sun, 22 Jul 2007 13:40:51 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Can I provide SAML Support for JBoss WS Handler with WSS Message-ID: <22049561.1185126051196.JavaMail.jboss@colo-br-02.atl.jboss.com> Can you elaborate further on this using the dev forum? You'll get more approriate feedback there: http://www.jboss.org/index.html?module=bb&op=viewforum&f=174 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066490#4066490 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066490 From do-not-reply at jboss.com Sun Jul 22 13:43:16 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Sun, 22 Jul 2007 13:43:16 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBoss 2.0: Specifying SOAP 1.2 for WSProvideTask ? Message-ID: <18796513.1185126196343.JavaMail.jboss@colo-br-02.atl.jboss.com> Well, i'd say if the service implementation is annotated with the correct @SOAPBinding the generated WSDL will reflect this. Did you specify a particular SOAPBinding this way? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066491#4066491 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066491 From do-not-reply at jboss.com Mon Jul 23 04:15:12 2007 From: do-not-reply at jboss.com (rodgerca) Date: Mon, 23 Jul 2007 04:15:12 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <23464849.1185178512469.JavaMail.jboss@colo-br-02.atl.jboss.com> Thank you for the reply I'm now getting a different error:- Starting Test Client Creating a service Using: http://127.0.0.1:8080/EchoBeanService/EchoBean?wsdl and {http://session.address.cmmgroup.com/}EchoBeanService Creating an instance Exception in thread "main" java.lang.NoSuchMethodError: org.jboss.xb.binding.Unmarshaller.setSchemaValidation(Z)V at org.jboss.ws.metadata.config.JBossWSConfigFactory.parse(JBossWSConfigFactory.java:78) at org.jboss.ws.metadata.config.JBossWSConfigFactory.getConfig(JBossWSConfigFactory.java:134) at org.jboss.ws.metadata.umdm.EndpointMetaData.initEndpointConfig(EndpointMetaData.java:712) at org.jboss.ws.metadata.umdm.EndpointMetaData.getConfig(EndpointMetaData.java:675) at org.jboss.ws.metadata.umdm.ParameterMetaData.getPartName(ParameterMetaData.java:439) at org.jboss.ws.metadata.umdm.ParameterMetaData.toString(ParameterMetaData.java:565) at java.lang.String.valueOf(Unknown Source) at java.lang.StringBuilder.append(Unknown Source) at org.jboss.ws.metadata.umdm.OperationMetaData.setReturnParameter(OperationMetaData.java:354) at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.buildOutputParameter(JAXRPCMetaDataBuilder.java:353) at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.buildParameterMetaDataRpc(JAXRPCMetaDataBuilder.java:592) at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.setupOperationsFromWSDL(JAXRPCMetaDataBuilder.java:210) at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaDataInternal(JAXRPCClientMetaDataBuilder.java:217) at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaData(JAXRPCClientMetaDataBuilder.java:134) at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaData(JAXRPCClientMetaDataBuilder.java:86) at org.jboss.ws.core.jaxrpc.client.ServiceImpl.(ServiceImpl.java:111) at org.jboss.ws.core.jaxrpc.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:157) at org.jboss.ws.core.jaxrpc.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:128) at com.cmmgroup.address.client.EchoClient.main(EchoClient.java:23) I've got the very latest version of jboss-xml-binding.jar and jboss-wsclient.jar in my classpath Sorry for all the newbie question but I've just about had enough of trying to figure this one out View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066554#4066554 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066554 From do-not-reply at jboss.com Mon Jul 23 05:00:13 2007 From: do-not-reply at jboss.com (vitarius) Date: Mon, 23 Jul 2007 05:00:13 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: web.xml modified to web.xml.org - Subsequent runs fail Message-ID: <25762827.1185181213102.JavaMail.jboss@colo-br-02.atl.jboss.com> I have the same problem with an exploded WAR, when restarting the application server, my web services get lost. The JBossWS implementation simply overlooks the servlet definitions that have already been modified. Rewriting the web.xml is okay, but it should be changed back to the original on shutdown. It could be an even better solution to perform this change in memory only. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066569#4066569 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066569 From do-not-reply at jboss.com Mon Jul 23 05:53:03 2007 From: do-not-reply at jboss.com (rodgerca) Date: Mon, 23 Jul 2007 05:53:03 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <18392217.1185184383624.JavaMail.jboss@colo-br-02.atl.jboss.com> I want you all to know that I 100% have the latest version of jboss-xml-binding.jar in my classpath. I've deleted all old version from my hard drive. If someone doesn't help me soon I'm going to jump in front of a bus or something ;-) I've had enough!!!! I've got all these in my classpath:- set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\client\jboss-saaj.jar set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\client\jboss-ejb3-client.jar set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\client\jboss-xml-binding.jar set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\client\jboss-jaxrpc.jar set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\client\jbossws-client.jar set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\client\activation.jar set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\client\mail.jar set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\client\wsdl4j.jar set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\lib\endorsed\xercesImpl.jar set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\client\jbossall-client.jar set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\server\default\lib\jboss-remoting.jar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066580#4066580 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066580 From do-not-reply at jboss.com Mon Jul 23 10:29:30 2007 From: do-not-reply at jboss.com (rashmi_yes) Date: Mon, 23 Jul 2007 10:29:30 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Cannot start service endpoint; - nested throwable: (org.jbos Message-ID: <31763006.1185200970849.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I have created an EJB Module using Netbeans 5.5.1 with Jboss 4.2.0. as in the below link & created webservice http://www.netbeans.org/kb/55/websvc-jaxws-jboss.html#Exercise_2 As Netbeans is only supporting JAX-RPC & not JAX-WS whereas JBoss wont support this. But, when I deployed the project I got the below exception from Jboss server 19:38:15,099 INFO [EJB3Deployer] Deployed: file:/C:/Apps/JBoss/jboss-4.2.0.GA/server/all/deploy/TestEJB.jar 19:38:15,130 INFO [WSDLFilePublisher] WSDL published to: file:/C:/Apps/JBoss/jboss-4.2.0.GA/server/all/data/wsdl/TestEJB.jar/WSTestEJBService60025.wsdl 19:38:15,162 INFO [ServiceEndpointManager] WebService started: http://127.0.0.1:8080/WSTestEJBService/WSTestEJB 19:38:18,615 ERROR [ServiceEndpointDeployer] Cannot create service endpoint java.lang.StringIndexOutOfBoundsException: String index out of range: -1 at java.lang.String.substring(String.java:1768) at org.jboss.ws.core.utils.JavaUtils.getPackageName(JavaUtils.java:540) at org.jboss.ws.metadata.wsdl.WSDLUtils.getTypeNamespace(WSDLUtils.java:709) at org.jboss.ws.metadata.builder.jaxws.JAXWSWebServiceMetaDataBuilder.processWebService(JAXWSWebServiceMetaDataBuilder.java:280) at org.jboss.ws.metadata.builder.jaxws.JAXWSWebServiceMetaDataBuilder.buildWebServiceMetaData(JAXWSWebServiceMetaDataBuilder.java:94) at org.jboss.ws.metadata.builder.jaxws.JAXWSServerMetaDataBuilder.setupProviderOrWebService(JAXWSServerMetaDataBuilder.java:49) at org.jboss.ws.metadata.builder.jaxws.JAXWSMetaDataBuilderEJB3.buildMetaData(JAXWSMetaDataBuilderEJB3.java:77) at org.jboss.ws.core.server.ServiceEndpointDeployer.create(ServiceEndpointDeployer.java:92) at org.jboss.ws.integration.jboss42.DeployerInterceptor.createServiceEndpoint(DeployerInterceptor.java:127) at org.jboss.ws.integration.jboss42.DeployerInterceptorEJB.createServiceEndpoint(DeployerInterceptorEJB.java:43) at org.jboss.ws.integration.jboss42.DeployerInterceptor.create(DeployerInterceptor.java:78) at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.create(SubDeployerInterceptorSupport.java:180) at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:91) 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:659) at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210) at $Proxy34.create(Unknown Source) at org.jboss.deployment.MainDeployer.create(MainDeployer.java:969) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:818) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782) at sun.reflect.GeneratedMethodAccessor23.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155) at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94) at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133) at org.jboss.mx.server.Invocation.invoke(Invocation.java:88) at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142) 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:659) at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210) at $Proxy9.deploy(Unknown Source) at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421) at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634) at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263) at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336) at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289) at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245) at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155) at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94) at org.jboss.mx.server.Invocation.invoke(Invocation.java:86) at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264) at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659) at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978) at $Proxy0.start(Unknown Source) at org.jboss.system.ServiceController.start(ServiceController.java:417) at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155) at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94) at org.jboss.mx.server.Invocation.invoke(Invocation.java:86) at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264) at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659) at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210) at $Proxy4.start(Unknown Source) at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302) at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766) 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:585) at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155) at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94) at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133) at org.jboss.mx.server.Invocation.invoke(Invocation.java:88) at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142) 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:659) at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210) at $Proxy5.deploy(Unknown Source) at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482) at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362) at org.jboss.Main.boot(Main.java:200) at org.jboss.Main$1.run(Main.java:508) at java.lang.Thread.run(Thread.java:595) 19:38:19,052 ERROR [ServiceEndpointPublisher] Cannot obtain waURL for: WSEJBModule.jar 19:38:19,052 ERROR [MainDeployer] Could not create deployment: file:/C:/Apps/JBoss/jboss-4.2.0.GA/server/all/deploy/WSEJBModule.jar I am new to webservice. So could you please get me a solution/idea to make his work. Or any other way to create EJBs using webservice. Thanks. by, Rashmi View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066675#4066675 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066675 From do-not-reply at jboss.com Mon Jul 23 11:30:41 2007 From: do-not-reply at jboss.com (PeterJ) Date: Mon, 23 Jul 2007 11:30:41 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <8516967.1185204642145.JavaMail.jboss@colo-br-02.atl.jboss.com> Are you using web services as they came with JBoss AS 4.2, or did you install a different version? How did you create the client stubs? Did you create them using 4.2 (or if you installed a different version of JBossWS, did you use that)? Does JBOSS_HOME on the client point to the 4.2 JBoss AS? P.S. Hope I caught you before the bus came... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066694#4066694 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066694 From do-not-reply at jboss.com Mon Jul 23 11:58:27 2007 From: do-not-reply at jboss.com (rodgerca) Date: Mon, 23 Jul 2007 11:58:27 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <11220969.1185206307552.JavaMail.jboss@colo-br-02.atl.jboss.com> Thanks for your reply I installed JBoss 4.2, I am running the messaging server. I installed the most recent ws files using the ant build in the jbossws-native-2.0.0.GA release. All the right files are now deployed to the default/deploy and messaging/deploy jbossws.sar directories. I fixed the jboss-xml-binding issue about 3 hours ago by changing the order in which the jars are loaded into my class path in eclipse. After 5 days solid on this, I now feel I am at the final hurdle: I am now getting the same problem from both the java client and the SOAP UI client:-- Exception in thread "main" java.lang.reflect.UndeclaredThrowableException at $Proxy0.echo(Unknown Source) at com.cmmgroup.address.client.EchoClient.main(EchoClient.java:32) Caused by: java.rmi.RemoteException: Call invocation failed; nested exception is: java.lang.UnsupportedOperationException: setProperty must be overridden by all subclasses of SOAPMessage at org.jboss.ws.core.jaxrpc.client.CallImpl.invokeInternal(CallImpl.java:536) at org.jboss.ws.core.jaxrpc.client.CallImpl.invoke(CallImpl.java:277) at org.jboss.ws.core.jaxrpc.client.PortProxy.invoke(PortProxy.java:151) ... 2 more Caused by: java.lang.UnsupportedOperationException: setProperty must be overridden by all subclasses of SOAPMessage at javax.xml.soap.SOAPMessage.setProperty(Unknown Source) at org.jboss.ws.core.soap.SOAPMessageImpl.(SOAPMessageImpl.java:67) at org.jboss.ws.core.soap.MessageFactoryImpl.createMessage(MessageFactoryImpl.java:155) at org.jboss.ws.core.CommonSOAP11Binding.createMessage(CommonSOAP11Binding.java:58) at org.jboss.ws.core.CommonSOAPBinding.bindRequestMessage(CommonSOAPBinding.java:156) at org.jboss.ws.core.CommonClient.invoke(CommonClient.java:289) at org.jboss.ws.core.jaxrpc.client.CallImpl.invokeInternal(CallImpl.java:517) ... 4 more The release notes for the latest version of jbossws tells me that this issue should be fixed. I understand that getting this error message means that I am not running the right version of jboss-saaj. But I can assure you that I am - everywhere! I've deleted every other saaj jar on my hard drive, including those in the eclipse plug in directories. I've definitely got the right jboss-saaj with the right setProperty() method in my eclipse classpath. Clutching at straws, I read somewhere about adding the jaxb_api and jaxws-api jars to my JDK and JRE lib/endorsed directories (I am running jdk 6) - but that doesn't seem to make a difference The bus was late, thank goodness, but I've really got to get the sorted. I've spent way too long on it already.... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066700#4066700 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066700 From do-not-reply at jboss.com Mon Jul 23 12:00:07 2007 From: do-not-reply at jboss.com (rodgerca) Date: Mon, 23 Jul 2007 12:00:07 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <19580969.1185206407348.JavaMail.jboss@colo-br-02.atl.jboss.com> Apologies, to answer your questions:- Client stubs have been created using all the 4.2/latest version of jbossws files. JBOSS_HOME points correctly to my 4.2 JBoss directory View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066701#4066701 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066701 From do-not-reply at jboss.com Mon Jul 23 12:30:20 2007 From: do-not-reply at jboss.com (PeterJ) Date: Mon, 23 Jul 2007 12:30:20 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <4831376.1185208220050.JavaMail.jboss@colo-br-02.atl.jboss.com> Ahah! You are using JDK 6 which comes with JAX-WS built-in and causes conflicts with JBoss WS. There is a wiki page that discusses this, and provides a fix, but I cannot seem to locate it. You also try going back to JDK 5. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066716#4066716 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066716 From do-not-reply at jboss.com Mon Jul 23 12:31:54 2007 From: do-not-reply at jboss.com (PeterJ) Date: Mon, 23 Jul 2007 12:31:54 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <26324372.1185208315153.JavaMail.jboss@colo-br-02.atl.jboss.com> Found it: http://jbws.dyndns.org/mediawiki/index.php?title=Installation View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066718#4066718 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066718 From do-not-reply at jboss.com Mon Jul 23 13:45:38 2007 From: do-not-reply at jboss.com (kadlecp) Date: Mon, 23 Jul 2007 13:45:38 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WSA sample; response header contains errors Message-ID: <18997358.1185212738630.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello, I am studding ws addressing right now and I thing I have the solution for the two times clientid. You have to delete line outProps.initializeAsReply(inProps, false) in org.jboss.test.ws.jaxws.samples.wsaddressing.ServerHandler.handleOutbound. The reason is that this line is called afterwards in org.jboss.ws.extensions.addressing.jaxws.WSAddressingServerHandler.handleOutbound. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066761#4066761 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066761 From do-not-reply at jboss.com Mon Jul 23 15:41:30 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Mon, 23 Jul 2007 15:41:30 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WSA sample; response header contains errors Message-ID: <20807808.1185219690627.JavaMail.jboss@colo-br-02.atl.jboss.com> What JBossWS version is it? I think this bug was fixed in 2.0 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066794#4066794 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066794 From do-not-reply at jboss.com Mon Jul 23 18:32:20 2007 From: do-not-reply at jboss.com (kadlecp) Date: Mon, 23 Jul 2007 18:32:20 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WSA sample; response header contains errors Message-ID: <25863272.1185229940320.JavaMail.jboss@colo-br-02.atl.jboss.com> Sorry for not mentioning the version. I use JBossWS 1.2.1.GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066837#4066837 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066837 From do-not-reply at jboss.com Mon Jul 23 18:49:27 2007 From: do-not-reply at jboss.com (bglasco) Date: Mon, 23 Jul 2007 18:49:27 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - wsrunclient error Message-ID: <30814089.1185230967216.JavaMail.jboss@colo-br-02.atl.jboss.com> Jboss 4.2 java 5 and jbossws 2.0 Exception in thread "main" javax.xml.ws.WebServiceException: Unable to load Prov ider: Failed to load javax.xml.ws.spi.Provider: org.jboss.ws.core.jaxws.spi.Prov iderImpl at javax.xml.ws.spi.Provider.provider(Provider.java:98) at javax.xml.ws.Service.(Service.java:83) at events.SdtwsService.(SdtwsService.java:40) at events.SdtClient.main(SdtClient.java:14) Caused by: java.lang.IllegalStateException: Failed to load javax.xml.ws.spi.Prov ider: org.jboss.ws.core.jaxws.spi.ProviderImpl at javax.xml.ws.spi.ProviderLoader.loadProvider(ProviderLoader.java:96) at javax.xml.ws.spi.Provider.provider(Provider.java:90) ... 3 more Caused by: java.lang.NoClassDefFoundError: org/jboss/util/NotImplementedExceptio n at java.lang.Class.getDeclaredConstructors0(Native Method) at java.lang.Class.privateGetDeclaredConstructors(Class.java:2357) at java.lang.Class.getConstructor0(Class.java:2671) at java.lang.Class.newInstance0(Class.java:321) at java.lang.Class.newInstance(Class.java:303) at javax.xml.ws.spi.ProviderLoader.loadProvider(ProviderLoader.java:91) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066841#4066841 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066841 From do-not-reply at jboss.com Mon Jul 23 18:57:03 2007 From: do-not-reply at jboss.com (PeterJ) Date: Mon, 23 Jul 2007 18:57:03 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: wsrunclient error Message-ID: <18747739.1185231423658.JavaMail.jboss@colo-br-02.atl.jboss.com> The missing class, org.jboss.util.NotImplementedException, is in client/jbossall-client.jar, which is one of the files included in the classpath by wsrunclient.jar. Which OS are you using? Does your account have access to the jboss files? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066843#4066843 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066843 From do-not-reply at jboss.com Tue Jul 24 04:09:47 2007 From: do-not-reply at jboss.com (Juergen.Zimmermann) Date: Tue, 24 Jul 2007 04:09:47 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBoss 2.0: Specifying SOAP 1.2 for WSProvideTask ? Message-ID: <21634018.1185264587569.JavaMail.jboss@colo-br-02.atl.jboss.com> I specified the SOAPBinding in the EJB3 stateless session bean as follows: ... | import static javax.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING; | ... | @WebService(name="Kundenverwaltung", | targetNamespace="http://ws.hska.de/kundenverwaltung", | serviceName="KundenverwaltungService") | @BindingType(SOAP12HTTP_BINDING) | | @Stateless | @Remote(KundenverwaltungService.class) | @RolesAllowed(ROLLE_MITARBEITER) | | @WebContext(contextRoot="/hska/KundenverwaltungService", | urlPattern="/*", | authMethod="BASIC", | transportGuarantee="NONE") | @SecurityDomain("hska") | @EndpointConfig(configName="Standard WSSecurity Endpoint") | public class KundenverwaltungServiceBean implements KundenverwaltungService {... The generated WSDL looks as follows: ... | | | Thanks for that - when I get up to speed I will treat newbies as well as you have treated me. The link you gave me tells me to add the following files to my JBOSS_HOME/lib directory. jboss-jaxrpc.jar jboss-saaj.jar jaxb-api.jar jaxws-api.jar I did that, but unfortunately I got the same error. I then decided to revert to JDK5 and the whole thing worked fine last night (was using demo code that I downloaded from a website) Came into work early this morning, really happy that I was going get round to writing the address lookup web service that was due in last Friday. But I am getting a bunch of errors again. I think it is because the return type on my web service is a complex type;- Exception in thread "main" org.jboss.ws.WSException: Cannot obtain java type mapping for: {http://session.address.cmmgroup.com/}getAddressByPostCode at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.processDocElement(JAXRPCMetaDataBuilder.java:627) at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.buildParameterMetaDataDoc(JAXRPCMetaDataBuilder.java:886) at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.setupOperationsFromWSDL(JAXRPCMetaDataBuilder.java:214) at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaDataInternal(JAXRPCClientMetaDataBuilder.java:217) at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaData(JAXRPCClientMetaDataBuilder.java:134) at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaData(JAXRPCClientMetaDataBuilder.java:86) at org.jboss.ws.core.jaxrpc.client.ServiceImpl.(ServiceImpl.java:111) at org.jboss.ws.core.jaxrpc.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:157) at org.jboss.ws.core.jaxrpc.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:128) at com.cmmgroup.address.client.RunAddressAsWebService.main(RunAddressAsWebService.java:27) I'm not clear from the other forums if there is a resolution to this as I am already using the latest version of JBossWs. My mood has changed from one of despair to hysteria....I am both laughing and crying at regular intervals. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066915#4066915 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066915 From do-not-reply at jboss.com Tue Jul 24 05:16:46 2007 From: do-not-reply at jboss.com (rashmi_yes) Date: Tue, 24 Jul 2007 05:16:46 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Cannot start service endpoint; - nested throwable: (org. Message-ID: <28488881.1185268606171.JavaMail.jboss@colo-br-02.atl.jboss.com> I think this is due to JBoss version compatibility. I used JBoss 4.0.4 instead of 4.2.0, I am able to create/deploy EJBModule View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066921#4066921 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066921 From do-not-reply at jboss.com Tue Jul 24 11:07:40 2007 From: do-not-reply at jboss.com (PeterJ) Date: Tue, 24 Jul 2007 11:07:40 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <6091741.1185289660699.JavaMail.jboss@colo-br-02.atl.jboss.com> Could you post your web service code and the wsdl? Also, did you start with the web service code and let the app server generate the wsdl, or did you start with the wsdl and generate Java stubs using wsconsume? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067052#4067052 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067052 From do-not-reply at jboss.com Tue Jul 24 11:14:18 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Tue, 24 Jul 2007 11:14:18 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBoss 2.0: Specifying SOAP 1.2 for WSProvideTask ? Message-ID: <33266790.1185290058123.JavaMail.jboss@colo-br-02.atl.jboss.com> I did create an issue for it: http://jira.jboss.com/jira/browse/JBWS-1761 If you would like to work on it you need to sign the contributor agreement and assign the issue to you: http://www.jboss.org/index.html?module=bb&op=viewtopic&t=67004 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067056#4067056 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067056 From do-not-reply at jboss.com Tue Jul 24 11:15:44 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Tue, 24 Jul 2007 11:15:44 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WSA sample; response header contains errors Message-ID: <20606184.1185290144090.JavaMail.jboss@colo-br-02.atl.jboss.com> OK, then try 2.0.GA: http://labs.jboss.com/jbossws/downloads View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067058#4067058 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067058 From do-not-reply at jboss.com Tue Jul 24 11:17:57 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Tue, 24 Jul 2007 11:17:57 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: web.xml modified to web.xml.org - Subsequent runs fail Message-ID: <16047877.1185290278104.JavaMail.jboss@colo-br-02.atl.jboss.com> I did create an issue for this: http://jira.jboss.com/jira/browse/JBWS-1762 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067060#4067060 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067060 From do-not-reply at jboss.com Tue Jul 24 11:59:59 2007 From: do-not-reply at jboss.com (bossy) Date: Tue, 24 Jul 2007 11:59:59 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Cannot get details in custon fault Message-ID: <245110.1185292799707.JavaMail.jboss@colo-br-02.atl.jboss.com> I need to throw a custom exception from a web service. The problem is I don't get the details. I'm running my WS under jboss 4.0.4. My wsdl contains the following : | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | My mapping file contains this: | | | | com.mycom.myapp.ws.types.MyOperationFault | typeNS:MyOperationFault | complexType | | MyOperationFaultCode | MyOperationFaultCode | | | MyOperationFaultSeverity | MyOperationFaultSeverity | | | MyOperationFaultMessage | MyOperationFaultMessage | | | MyOperationFaultComment | MyOperationFaultComment | | | | | | com.mycom.myapp.ws.types.MyOperationFault | exMsgNS:MyOperationFault | | MyOperationFaultCode | MyOperationFaultSeverity | MyOperationFaultMessage | MyOperationFaultComment | | | | | com.mycom.myapp.ws.serviceTestService | serviceNS:TestService | | TestSOAP | TestSOAP | | | | | | | com.mycom.myapp.ws.Test | portTypeNS:Test | bindingNS:TestSOAP | | | | | | MyOperation | MyOperation | | | | 0 | java.lang.String | | wsdlMsgNS:MyOperationRequest | par1 | IN | | | | | 1 | java.lang.String | | wsdlMsgNS:MyOperationRequest | par2 | IN | | | | | com.mycom.myapp.ws.api.MyOperationResponse | wsdlMsgNS:MyOperationResponse | parameters | | | | | | and this is how my methods are declared: | public MyOperationResponse MyOperation(MyOperationRequest request) throws RemoteException,MyOperationFault; | MyOperationFault extends extends Exception implements Serializable The problem is that when I throw MyOperationFault I get this: | | | | env:Client | com.mycom.myapp.ws.types.MyOperationFault | | | I would expect to see also an element "detail" with the rest of the MyOperationFault properties.Can somebody point me the right direction what am I doing wrong? Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067089#4067089 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067089 From do-not-reply at jboss.com Tue Jul 24 12:07:50 2007 From: do-not-reply at jboss.com (rodgerca) Date: Tue, 24 Jul 2007 12:07:50 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <17825787.1185293270992.JavaMail.jboss@colo-br-02.atl.jboss.com> I generated the wsdl from the code Here is the code:- ****************INTERFACE****************** package com.cmmgroup.address.session; import java.rmi.Remote; import java.util.List; import javax.jws.WebService; import javax.jws.soap.SOAPBinding; import com.cmmgroup.address.entities.POAddress; @WebService @SOAPBinding(style = javax.jws.soap.SOAPBinding.Style.RPC) public interface POAddressManagerWS extends Remote { @SuppressWarnings("unchecked") public List getAddressByPostCode(String postCode); @SuppressWarnings("unchecked") public List getAddressByText(String textString); } *********************SESSION BEAN********************8 package com.cmmgroup.address.session; import java.io.Serializable; import java.util.List; import javax.ejb.Remote; import javax.ejb.Stateless; import javax.jws.WebService; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import javax.persistence.Query; import com.cmmgroup.address.entities.POAddress; @Stateless @WebService(endpointInterface = "com.cmmgroup.address.session.POAddressManagerWS") public class POAddressManagerBean implements Serializable, POAddressManagerRemote, POAddressManagerLocal, POAddressManagerWS { private static final long serialVersionUID = 1L; @PersistenceContext(unitName="phoebusDS") private EntityManager em; @SuppressWarnings("unchecked") public List getAddressByPostCode(String postCode) { Query query = em.createNamedQuery("getAddrByPC"); query.setParameter("pc",postCode + "%"); return query.getResultList(); } @SuppressWarnings("unchecked") public List getAddressByText(String textString) { Query query = em.createNamedQuery("getAddrByText"); query.setParameter("text",textString); return query.getResultList(); } } *********************ENTITY BEAN**************** package com.cmmgroup.address.entities; import java.io.Serializable; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.NamedNativeQueries; import javax.persistence.NamedNativeQuery; import javax.persistence.Table; @NamedNativeQueries({ @NamedNativeQuery(name="getAddrByPC",query="select id, postCode, thoroughFare1, thoroughFare2, locality1, locality2, post_town, county from postcodes where postCode like :pc",resultClass=POAddress.class), @NamedNativeQuery(name="getAddrByText",query="select id, postCode, thoroughFare1, thoroughFare2, locality1, locality2, post_town, county from postcodes where CATSEARCH(address, :text,null)> 0",resultClass=POAddress.class), }) @Entity @Table(name="POSTCODES") public class POAddress implements Serializable{ /** * */ private static final long serialVersionUID = 1L; @Id private long id; private String postCode; private String thoroughFare1; private String thoroughFare2; private String locality1; private String locality2; private String post_Town; private String county; public POAddress() { super(); } public POAddress(String postCode, String thoroughFare1, String thoroughFare2, String locality1, String locality2, String post_Town, String county) { super(); this.postCode = postCode; this.thoroughFare1 = thoroughFare1; this.thoroughFare2 = thoroughFare2; this.locality1 = locality1; this.locality2 = locality2; this.post_Town = post_Town; this.county = county; } public String getCounty() { return county; } public void setCounty(String county) { this.county = county; } public String getLocality1() { return locality1; } public void setLocality1(String locality1) { this.locality1 = locality1; } public String getLocality2() { return locality2; } public void setLocality2(String locality2) { this.locality2 = locality2; } public String getPostCode() { return postCode; } public void setPostCode(String postCode) { this.postCode = postCode; } public String getPostTown() { return post_Town; } public void setPostTown(String postTown) { this.post_Town = postTown; } public String getThoroughFare1() { return thoroughFare1; } public void setThoroughFare1(String thoroughFare1) { this.thoroughFare1 = thoroughFare1; } public String getThoroughFare2() { return thoroughFare2; } public void setThoroughFare2(String thoroughFare2) { this.thoroughFare2 = thoroughFare2; } public long getId() { return id; } public void setId(long id) { this.id = id; } public String getPost_Town() { return post_Town; } public void setPost_Town(String post_Town) { this.post_Town = post_Town; } } The bean runs fine when using the remote or local interface ***************************MY TEST STUB*************** package com.cmmgroup.address.client; import java.net.URL; import javax.xml.namespace.QName; //import org.jboss.system.ServiceFactory; import javax.xml.rpc.Service; import javax.xml.rpc.ServiceFactory; import com.cmmgroup.address.entities.POAddress; import com.cmmgroup.address.session.POAddressManagerWS; public class RunAddressAsWebService { public static void main(String[] args) throws Exception { System.out.println("Starting Test Client"); URL url = new URL("http://127.0.0.1:8080/POAddressManagerBeanService/POAddressManagerBean?wsdl"); QName qname = new QName( "http://session.address.cmmgroup.com/", "POAddressManagerBeanService"); System.out.println("Creating a service Using: \n\t" + url + " \n\tand " + qname); ServiceFactory factory = ServiceFactory.newInstance(); System.out.println("Created new instance"); Service remote = factory.createService(url, qname); System.out.println("Obtaining reference to a proxy object"); POAddressManagerWS proxy = (POAddressManagerWS) remote.getPort(POAddressManagerWS.class); System.out.println("Accessed local proxy: " + proxy); for(POAddress address:proxy.getAddressByPostCode("IP4 4B")) { System.out.println(address.getThoroughFare1() + " " + address.getPostCode()); } } } ********************WSDL INTERFACE GENERATED********** - - - - - - - - - - - - - - - - - - - - - - - - - - - - Enjoy ;-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067094#4067094 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067094 From do-not-reply at jboss.com Tue Jul 24 12:32:09 2007 From: do-not-reply at jboss.com (PeterJ) Date: Tue, 24 Jul 2007 12:32:09 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <15563635.1185294729813.JavaMail.jboss@colo-br-02.atl.jboss.com> When you post XML contents, enclose it within [ code ]...[ /code ] brackets (without the spaces). Or select the XML text and click the Code button. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067104#4067104 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067104 From do-not-reply at jboss.com Tue Jul 24 20:25:38 2007 From: do-not-reply at jboss.com (davidchen) Date: Tue, 24 Jul 2007 20:25:38 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Does income xml request get validated against wsdl? Message-ID: <17842887.1185323138383.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, there: I'm using jboss4.2.0-GA, jbossws-1.2.1.GA. I have a wrapped document\literal web service. My question is does income xml request get validated automatically against the complex type defined in wsdl schema? if not, any configuration way to set to validate it automatically? I simply tested it by using soapUI, it seems no such xml validation implemented on any income xml request at all. So, just want to check if any configuration way exist in jbossws to validate automatically all those income xml request? Any help or comments will be highly appreciated. Thanks a lot in advance. David View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067233#4067233 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067233 From do-not-reply at jboss.com Wed Jul 25 04:01:11 2007 From: do-not-reply at jboss.com (aroppone) Date: Wed, 25 Jul 2007 04:01:11 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - WSSecurity and client information Message-ID: <12117986.1185350471056.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I'm very new to JBoss so this one could be very easy. I'm making an application that has both ws and servelt interfaces which both uses EJBs fo actual processing. At those web services I'd like to sign pretty much every message, which can be done via jboss-wsse-server/client.xml (?), but how can I get for example the DNs from the signatures to be used at the EJBs? Another thing is that I'm using some internal XML files that I'd like to sign with local key form the EJBs, how can I do that or where I could find WSDP 1.5 in JBoss? Ps. I've also some minor problems with deployment descriptors, because I can't get my EJBs to work by using ejb-refs (only project/bean/local works as in samples)? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067323#4067323 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067323 From do-not-reply at jboss.com Wed Jul 25 04:27:24 2007 From: do-not-reply at jboss.com (rodgerca) Date: Wed, 25 Jul 2007 04:27:24 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <6852168.1185352044255.JavaMail.jboss@colo-br-02.atl.jboss.com> - | - | - | | | | | - | - | | | | - | - | | | | - | - | | | | | | | | | | | | - | - | | | | - | - | | | | | | - | | | - | | | - | | | - | | | - | - | | | | - | | | | | - | | - | | - | | | - | | | | - | | - | | | - | | | | | - | - | | | | Hope this is ok.... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067327#4067327 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067327 From do-not-reply at jboss.com Wed Jul 25 11:03:13 2007 From: do-not-reply at jboss.com (deadrow) Date: Wed, 25 Jul 2007 11:03:13 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WARN [EndpointMetaData] Loading SEI after eager initiali Message-ID: <24983166.1185375793383.JavaMail.jboss@colo-br-02.atl.jboss.com> I attached two pieces of the server.log that may be useseful. I really hope you can help me. this is the deployment of my ear: 2007-07-24 07:20:32,776 DEBUG [org.jboss.ejb3.EJB3Deployer] start application, deploymentInfo: org.jboss.deployment.DeploymentInfo at b3900168 { url=file:/var/opt/jboss/icsol/apps/xapt.ear/xapnEJB.jar/ } deployer: MBeanProxyExt[jboss.ejb3:service=EJB3Deployer] status: Starting state: START_DEPLOYER watch: file:/var/opt/jboss/icsol/apps/xapt.ear/xapnEJB.jar/META-INF/ejb-jar.xml altDD: null lastDeployed: 1185254423000 lastModified: 1185201963000 mbeans: , short name: xapnEJB.jar, parent short name: xapt.ear 2007-07-24 07:20:32,778 DEBUG [org.jboss.system.ServiceController] starting service jboss.j2ee:service=EJB3,module=xapnEJB.jar 2007-07-24 07:20:32,779 DEBUG [org.jboss.ejb3.Ejb3Module] Starting jboss.j2ee:service=EJB3,module=xapnEJB.jar 2007-07-24 07:20:32,925 DEBUG [org.jboss.ejb3.EJBContainer] Initialising interceptors for AmministrazioneBean... 2007-07-24 07:20:32,925 DEBUG [org.jboss.ejb3.EJBContainer] Default interceptors: null 2007-07-24 07:20:32,930 DEBUG [org.jboss.ejb3.EJBContainer] Class interceptors: [] 2007-07-24 07:20:32,931 DEBUG [org.jboss.ejb3.EJBContainer] All applicable interceptor classes: [] 2007-07-24 07:20:32,933 DEBUG [org.jboss.ejb3.EJBContainer] Initialising interceptors for AnagraficaBean... 2007-07-24 07:20:32,933 DEBUG [org.jboss.ejb3.EJBContainer] Default interceptors: null 2007-07-24 07:20:32,933 DEBUG [org.jboss.ejb3.EJBContainer] Class interceptors: [] 2007-07-24 07:20:32,934 DEBUG [org.jboss.ejb3.EJBContainer] All applicable interceptor classes: [] 2007-07-24 07:20:32,936 DEBUG [org.jboss.ejb3.EJBContainer] Initialising interceptors for AutorizzazioniBean... 2007-07-24 07:20:32,936 DEBUG [org.jboss.ejb3.EJBContainer] Default interceptors: null 2007-07-24 07:20:32,936 DEBUG [org.jboss.ejb3.EJBContainer] Class interceptors: [] 2007-07-24 07:20:32,936 DEBUG [org.jboss.ejb3.EJBContainer] All applicable interceptor classes: [] 2007-07-24 07:20:32,941 DEBUG [org.jboss.ejb3.EJBContainer] Initialising interceptors for NotespeseBean... 2007-07-24 07:20:32,941 DEBUG [org.jboss.ejb3.EJBContainer] Default interceptors: null 2007-07-24 07:20:32,942 DEBUG [org.jboss.ejb3.EJBContainer] Class interceptors: [] 2007-07-24 07:20:32,942 DEBUG [org.jboss.ejb3.EJBContainer] All applicable interceptor classes: [] 2007-07-24 07:20:32,944 DEBUG [org.jboss.ejb3.EJBContainer] Initialising interceptors for TabelleAggiuntiveBean... 2007-07-24 07:20:32,944 DEBUG [org.jboss.ejb3.EJBContainer] Default interceptors: null 2007-07-24 07:20:32,944 DEBUG [org.jboss.ejb3.EJBContainer] Class interceptors: [] 2007-07-24 07:20:32,945 DEBUG [org.jboss.ejb3.EJBContainer] All applicable interceptor classes: [] 2007-07-24 07:20:32,981 DEBUG [org.jboss.ejb3.EJBContainer] Initialising interceptors for TrasferteBean... 2007-07-24 07:20:32,982 DEBUG [org.jboss.ejb3.EJBContainer] Default interceptors: null 2007-07-24 07:20:32,982 DEBUG [org.jboss.ejb3.EJBContainer] Class interceptors: [] 2007-07-24 07:20:32,983 DEBUG [org.jboss.ejb3.EJBContainer] All applicable interceptor classes: [] 2007-07-24 07:20:32,986 DEBUG [org.jboss.ejb3.EJBContainer] Initialising interceptors for UtilitySipertBean... 2007-07-24 07:20:32,986 DEBUG [org.jboss.ejb3.EJBContainer] Default interceptors: null 2007-07-24 07:20:32,986 DEBUG [org.jboss.ejb3.EJBContainer] Class interceptors: [] 2007-07-24 07:20:32,987 DEBUG [org.jboss.ejb3.EJBContainer] All applicable interceptor classes: [] 2007-07-24 07:20:32,989 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 17ecdf0{ url=null ,addedOrder=0} 2007-07-24 07:20:32,990 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 283d3{ url=null ,addedOrder=0} 2007-07-24 07:20:32,992 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 11cbec9{ url=null ,addedOrder=0} 2007-07-24 07:20:32,993 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 3184d8{ url=null ,addedOrder=0} 2007-07-24 07:20:32,995 DEBUG [org.jboss.ejb3.EJBContainer] Initialising interceptors for XapnDBBean... 2007-07-24 07:20:32,995 DEBUG [org.jboss.ejb3.EJBContainer] Default interceptors: null 2007-07-24 07:20:32,996 DEBUG [org.jboss.ejb3.EJBContainer] Class interceptors: [] 2007-07-24 07:20:32,996 DEBUG [org.jboss.ejb3.EJBContainer] All applicable interceptor classes: [] 2007-07-24 07:20:32,997 INFO [org.jboss.ejb3.JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer 2007-07-24 07:20:33,039 INFO [org.jboss.ejb3.JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AmministrazioneBean,service=EJB3 with dependencies: 2007-07-24 07:20:33,047 DEBUG [org.jboss.system.ServiceController] Creating service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AmministrazioneBean,service=EJB3 2007-07-24 07:20:33,047 DEBUG [org.jboss.system.ServiceController] adding depends in ServiceController.register: [] 2007-07-24 07:20:33,048 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Creating jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AmministrazioneBean,service=EJB3 2007-07-24 07:20:33,358 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 628e42{ url=null ,addedOrder=0} 2007-07-24 07:20:33,361 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 69cfe0{ url=null ,addedOrder=0} 2007-07-24 07:20:33,365 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at ceb8e2{ url=null ,addedOrder=0} 2007-07-24 07:20:33,626 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AmministrazioneBean.getListaAutorizzatori(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@6b54ef 2007-07-24 07:20:33,633 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.AmministrazioneBean.modificaAutorizzati(java.lang.String,java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1f7dab1 2007-07-24 07:20:33,641 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.AmministrazioneBean.cancellaAutorizzatori(java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@136d1d7 2007-07-24 07:20:33,645 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AmministrazioneBean.ricavaServer(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@aaa10 2007-07-24 07:20:33,646 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AmministrazioneBean.getListaAutorizzatiConPreselezionati(java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@231e35 2007-07-24 07:20:33,649 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AmministrazioneBean.getListaAutorizzati(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@19432e0 2007-07-24 07:20:33,651 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AmministrazioneBean.ricavaSchema(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@9830bc 2007-07-24 07:20:33,687 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Created jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AmministrazioneBean,service=EJB3 2007-07-24 07:20:33,687 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AmministrazioneBean,service=EJB3 dependents are: [] 2007-07-24 07:20:33,688 DEBUG [org.jboss.system.ServiceController] starting service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AmministrazioneBean,service=EJB3 2007-07-24 07:20:33,689 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Starting jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AmministrazioneBean,service=EJB3 2007-07-24 07:20:33,752 DEBUG [org.jboss.ejb3.tx.UserTransactionImpl] new UserTx: org.jboss.ejb3.tx.UserTransactionImpl at 1a28182 2007-07-24 07:20:33,802 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AmministrazioneBean.getListaAutorizzatori(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@d57bcb 2007-07-24 07:20:33,803 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.AmministrazioneBean.modificaAutorizzati(java.lang.String,java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1b277f0 2007-07-24 07:20:33,809 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.AmministrazioneBean.cancellaAutorizzatori(java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1e0338f 2007-07-24 07:20:33,811 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AmministrazioneBean.ricavaServer(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@592bb1 2007-07-24 07:20:33,813 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AmministrazioneBean.getListaAutorizzatiConPreselezionati(java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@438d57 2007-07-24 07:20:33,816 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AmministrazioneBean.getListaAutorizzati(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@f45732 2007-07-24 07:20:33,817 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AmministrazioneBean.ricavaSchema(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@188d2ae 2007-07-24 07:20:33,835 INFO [org.jboss.ejb3.EJBContainer] STARTED EJB: com.infocert.xapn.ejb.business.AmministrazioneBean ejbName: AmministrazioneBean 2007-07-24 07:20:33,888 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1596138{ url=null ,addedOrder=0} 2007-07-24 07:20:33,890 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1bbec72{ url=null ,addedOrder=0} 2007-07-24 07:20:33,896 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1349665{ url=null ,addedOrder=0} 2007-07-24 07:20:33,899 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1a32902{ url=null ,addedOrder=0} 2007-07-24 07:20:33,901 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at d95bc3{ url=null ,addedOrder=0} 2007-07-24 07:20:33,902 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1787a6{ url=null ,addedOrder=0} 2007-07-24 07:20:33,904 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at cab3bf{ url=null ,addedOrder=0} 2007-07-24 07:20:33,906 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1def658{ url=null ,addedOrder=0} 2007-07-24 07:20:33,908 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at ff366c{ url=null ,addedOrder=0} 2007-07-24 07:20:33,910 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 14e1705{ url=null ,addedOrder=0} 2007-07-24 07:20:33,911 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1c98360{ url=null ,addedOrder=0} 2007-07-24 07:20:33,913 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at d03350{ url=null ,addedOrder=0} 2007-07-24 07:20:33,915 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at d90727{ url=null ,addedOrder=0} 2007-07-24 07:20:33,990 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1c1e1e7{ url=null ,addedOrder=0} 2007-07-24 07:20:33,991 DEBUG [org.jboss.ejb3.stateless.BaseStatelessProxyFactory] Binding proxy for AmministrazioneBean in JNDI at xapt/AmministrazioneBean/remote 2007-07-24 07:20:33,993 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1d62a85{ url=null ,addedOrder=0} 2007-07-24 07:20:33,995 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 8d116e{ url=null ,addedOrder=0} 2007-07-24 07:20:33,996 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1737e47{ url=null ,addedOrder=0} 2007-07-24 07:20:33,997 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1678f0a{ url=null ,addedOrder=0} 2007-07-24 07:20:34,051 DEBUG [org.jboss.ejb.txtimer.EJBTimerServiceImpl] createTimerService: org.jboss.ejb.txtimer.TimerServiceImpl at a969e4 2007-07-24 07:20:34,063 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Started jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AmministrazioneBean,service=EJB3 2007-07-24 07:20:34,064 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AmministrazioneBean,service=EJB3 dependent components: [] 2007-07-24 07:20:34,064 DEBUG [org.jboss.ejb3.Ejb3Deployment] Bound ejb3 container jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AmministrazioneBean,service=EJB3 2007-07-24 07:20:34,064 INFO [org.jboss.ejb3.JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer 2007-07-24 07:20:34,064 INFO [org.jboss.ejb3.JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AnagraficaBean,service=EJB3 with dependencies: 2007-07-24 07:20:34,067 DEBUG [org.jboss.system.ServiceController] Creating service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AnagraficaBean,service=EJB3 2007-07-24 07:20:34,068 DEBUG [org.jboss.system.ServiceController] adding depends in ServiceController.register: [] 2007-07-24 07:20:34,068 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Creating jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AnagraficaBean,service=EJB3 2007-07-24 07:20:34,077 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AnagraficaBean.getAnagraficaUfficioViaggi(java.lang.String,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1673d71 2007-07-24 07:20:34,079 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AnagraficaBean.getAnagraficaAggDip(java.lang.String,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@f2e328 2007-07-24 07:20:34,080 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AnagraficaBean.getDescrizioneUfficioViaggiById(java.lang.String,java.lang.Integer,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1f6c18 2007-07-24 07:20:34,081 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AnagraficaBean.getAnagrafeVociAnticipoByAzienda(java.lang.String,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@f1cdfb 2007-07-24 07:20:34,082 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AnagraficaBean.getAnagraficaDestinazioniContabili(java.lang.String,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@10a59d2 2007-07-24 07:20:34,084 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AnagraficaBean.getAnagrafeCasseByAzienda(java.lang.String,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@8f1ed7 2007-07-24 07:20:34,085 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Created jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AnagraficaBean,service=EJB3 2007-07-24 07:20:34,085 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AnagraficaBean,service=EJB3 dependents are: [] 2007-07-24 07:20:34,085 DEBUG [org.jboss.system.ServiceController] starting service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AnagraficaBean,service=EJB3 2007-07-24 07:20:34,085 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Starting jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AnagraficaBean,service=EJB3 2007-07-24 07:20:34,087 DEBUG [org.jboss.ejb3.tx.UserTransactionImpl] new UserTx: org.jboss.ejb3.tx.UserTransactionImpl at 31e2ad 2007-07-24 07:20:34,092 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AnagraficaBean.getAnagraficaUfficioViaggi(java.lang.String,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@118da51 2007-07-24 07:20:34,095 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AnagraficaBean.getAnagraficaAggDip(java.lang.String,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@a50395 2007-07-24 07:20:34,096 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AnagraficaBean.getDescrizioneUfficioViaggiById(java.lang.String,java.lang.Integer,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@18e400b 2007-07-24 07:20:34,096 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AnagraficaBean.getAnagrafeVociAnticipoByAzienda(java.lang.String,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@ec850 2007-07-24 07:20:34,099 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AnagraficaBean.getAnagraficaDestinazioniContabili(java.lang.String,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@813aca 2007-07-24 07:20:34,100 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AnagraficaBean.getAnagrafeCasseByAzienda(java.lang.String,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@3ad545 2007-07-24 07:20:34,102 INFO [org.jboss.ejb3.EJBContainer] STARTED EJB: com.infocert.xapn.ejb.business.AnagraficaBean ejbName: AnagraficaBean 2007-07-24 07:20:34,108 DEBUG [org.jboss.ejb3.stateless.BaseStatelessProxyFactory] Binding proxy for AnagraficaBean in JNDI at xapt/AnagraficaBean/remote 2007-07-24 07:20:34,119 DEBUG [org.jboss.ejb.txtimer.EJBTimerServiceImpl] createTimerService: org.jboss.ejb.txtimer.TimerServiceImpl at cbb612 2007-07-24 07:20:34,126 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Started jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AnagraficaBean,service=EJB3 2007-07-24 07:20:34,126 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AnagraficaBean,service=EJB3 dependent components: [] 2007-07-24 07:20:34,126 DEBUG [org.jboss.ejb3.Ejb3Deployment] Bound ejb3 container jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AnagraficaBean,service=EJB3 2007-07-24 07:20:34,127 INFO [org.jboss.ejb3.JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer 2007-07-24 07:20:34,127 INFO [org.jboss.ejb3.JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AutorizzazioniBean,service=EJB3 with dependencies: 2007-07-24 07:20:34,130 DEBUG [org.jboss.system.ServiceController] Creating service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AutorizzazioniBean,service=EJB3 2007-07-24 07:20:34,130 DEBUG [org.jboss.system.ServiceController] adding depends in ServiceController.register: [] 2007-07-24 07:20:34,131 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Creating jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AutorizzazioniBean,service=EJB3 2007-07-24 07:20:34,137 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AutorizzazioniBean.getAutorizzatoriDiUnDipendente(java.lang.String,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@e54f3 2007-07-24 07:20:34,139 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Created jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AutorizzazioniBean,service=EJB3 2007-07-24 07:20:34,139 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AutorizzazioniBean,service=EJB3 dependents are: [] 2007-07-24 07:20:34,139 DEBUG [org.jboss.system.ServiceController] starting service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AutorizzazioniBean,service=EJB3 2007-07-24 07:20:34,140 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Starting jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AutorizzazioniBean,service=EJB3 2007-07-24 07:20:34,141 DEBUG [org.jboss.ejb3.tx.UserTransactionImpl] new UserTx: org.jboss.ejb3.tx.UserTransactionImpl at eb3f66 2007-07-24 07:20:34,146 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.AutorizzazioniBean.getAutorizzatoriDiUnDipendente(java.lang.String,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@8f5fc2 2007-07-24 07:20:34,148 INFO [org.jboss.ejb3.EJBContainer] STARTED EJB: com.infocert.xapn.ejb.business.AutorizzazioniBean ejbName: AutorizzazioniBean 2007-07-24 07:20:34,152 DEBUG [org.jboss.ejb3.stateless.BaseStatelessProxyFactory] Binding proxy for AutorizzazioniBean in JNDI at xapt/AutorizzazioniBean/remote 2007-07-24 07:20:34,163 DEBUG [org.jboss.ejb.txtimer.EJBTimerServiceImpl] createTimerService: org.jboss.ejb.txtimer.TimerServiceImpl at 2c1b13 2007-07-24 07:20:34,170 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Started jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AutorizzazioniBean,service=EJB3 2007-07-24 07:20:34,170 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AutorizzazioniBean,service=EJB3 dependent components: [] 2007-07-24 07:20:34,170 DEBUG [org.jboss.ejb3.Ejb3Deployment] Bound ejb3 container jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=AutorizzazioniBean,service=EJB3 2007-07-24 07:20:34,170 INFO [org.jboss.ejb3.JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer 2007-07-24 07:20:34,170 INFO [org.jboss.ejb3.JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=NotespeseBean,service=EJB3 with dependencies: 2007-07-24 07:20:34,173 DEBUG [org.jboss.system.ServiceController] Creating service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=NotespeseBean,service=EJB3 2007-07-24 07:20:34,174 DEBUG [org.jboss.system.ServiceController] adding depends in ServiceController.register: [] 2007-07-24 07:20:34,174 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Creating jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=NotespeseBean,service=EJB3 2007-07-24 07:20:34,181 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.NotespeseBean.getListaNotespese(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@e7736c 2007-07-24 07:20:34,182 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.NotespeseBean.insertTestataNotespese(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@14ad296 2007-07-24 07:20:34,185 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Created jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=NotespeseBean,service=EJB3 2007-07-24 07:20:34,185 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=NotespeseBean,service=EJB3 dependents are: [] 2007-07-24 07:20:34,186 DEBUG [org.jboss.system.ServiceController] starting service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=NotespeseBean,service=EJB3 2007-07-24 07:20:34,186 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Starting jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=NotespeseBean,service=EJB3 2007-07-24 07:20:34,187 DEBUG [org.jboss.ejb3.tx.UserTransactionImpl] new UserTx: org.jboss.ejb3.tx.UserTransactionImpl at 1479a6b 2007-07-24 07:20:34,192 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.NotespeseBean.getListaNotespese(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1eae775 2007-07-24 07:20:34,193 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.NotespeseBean.insertTestataNotespese(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@101b455 2007-07-24 07:20:34,196 INFO [org.jboss.ejb3.EJBContainer] STARTED EJB: com.infocert.xapn.ejb.business.NotespeseBean ejbName: NotespeseBean 2007-07-24 07:20:34,201 DEBUG [org.jboss.ejb3.stateless.BaseStatelessProxyFactory] Binding proxy for NotespeseBean in JNDI at xapt/NotespeseBean/remote 2007-07-24 07:20:34,213 DEBUG [org.jboss.ejb.txtimer.EJBTimerServiceImpl] createTimerService: org.jboss.ejb.txtimer.TimerServiceImpl at 132ca2b 2007-07-24 07:20:34,220 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Started jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=NotespeseBean,service=EJB3 2007-07-24 07:20:34,220 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=NotespeseBean,service=EJB3 dependent components: [] 2007-07-24 07:20:34,220 DEBUG [org.jboss.ejb3.Ejb3Deployment] Bound ejb3 container jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=NotespeseBean,service=EJB3 2007-07-24 07:20:34,220 INFO [org.jboss.ejb3.JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer 2007-07-24 07:20:34,221 INFO [org.jboss.ejb3.JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TabelleAggiuntiveBean,service=EJB3 with dependencies: 2007-07-24 07:20:34,224 DEBUG [org.jboss.system.ServiceController] Creating service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TabelleAggiuntiveBean,service=EJB3 2007-07-24 07:20:34,224 DEBUG [org.jboss.system.ServiceController] adding depends in ServiceController.register: [] 2007-07-24 07:20:34,225 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Creating jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TabelleAggiuntiveBean,service=EJB3 2007-07-24 07:20:34,243 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TabelleAggiuntiveBean.getAutoNoleggi(java.lang.String,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1202afe 2007-07-24 07:20:34,246 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TabelleAggiuntiveBean.getDescrizioneAutonoleggioById(java.lang.String,java.lang.Integer,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@e6bb83 2007-07-24 07:20:34,247 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TabelleAggiuntiveBean.getTipiMissione(java.lang.String,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@2098ff 2007-07-24 07:20:34,250 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Created jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TabelleAggiuntiveBean,service=EJB3 2007-07-24 07:20:34,250 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TabelleAggiuntiveBean,service=EJB3 dependents are: [] 2007-07-24 07:20:34,250 DEBUG [org.jboss.system.ServiceController] starting service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TabelleAggiuntiveBean,service=EJB3 2007-07-24 07:20:34,251 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Starting jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TabelleAggiuntiveBean,service=EJB3 2007-07-24 07:20:34,253 DEBUG [org.jboss.ejb3.tx.UserTransactionImpl] new UserTx: org.jboss.ejb3.tx.UserTransactionImpl at 1c98b2 2007-07-24 07:20:34,259 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TabelleAggiuntiveBean.getAutoNoleggi(java.lang.String,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@16ce9df 2007-07-24 07:20:34,261 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TabelleAggiuntiveBean.getDescrizioneAutonoleggioById(java.lang.String,java.lang.Integer,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@16e3762 2007-07-24 07:20:34,262 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TabelleAggiuntiveBean.getTipiMissione(java.lang.String,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@f61f5c 2007-07-24 07:20:34,264 INFO [org.jboss.ejb3.EJBContainer] STARTED EJB: com.infocert.xapn.ejb.business.TabelleAggiuntiveBean ejbName: TabelleAggiuntiveBean 2007-07-24 07:20:34,270 DEBUG [org.jboss.ejb3.stateless.BaseStatelessProxyFactory] Binding proxy for TabelleAggiuntiveBean in JNDI at xapt/TabelleAggiuntiveBean/remote 2007-07-24 07:20:34,281 DEBUG [org.jboss.ejb.txtimer.EJBTimerServiceImpl] createTimerService: org.jboss.ejb.txtimer.TimerServiceImpl at 809791 2007-07-24 07:20:34,288 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Started jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TabelleAggiuntiveBean,service=EJB3 2007-07-24 07:20:34,288 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TabelleAggiuntiveBean,service=EJB3 dependent components: [] 2007-07-24 07:20:34,288 DEBUG [org.jboss.ejb3.Ejb3Deployment] Bound ejb3 container jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TabelleAggiuntiveBean,service=EJB3 2007-07-24 07:20:34,288 INFO [org.jboss.ejb3.JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer 2007-07-24 07:20:34,289 INFO [org.jboss.ejb3.JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TrasferteBean,service=EJB3 with dependencies: 2007-07-24 07:20:34,292 DEBUG [org.jboss.system.ServiceController] Creating service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TrasferteBean,service=EJB3 2007-07-24 07:20:34,292 DEBUG [org.jboss.system.ServiceController] adding depends in ServiceController.register: [] 2007-07-24 07:20:34,292 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Creating jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TrasferteBean,service=EJB3 2007-07-24 07:20:34,315 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getListaAuto(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@fa9557 2007-07-24 07:20:34,316 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getAutoAutorizzati(java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@16292a4 2007-07-24 07:20:34,318 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getHotelAutorizzati(java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@8978c7 2007-07-24 07:20:34,322 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.updateDettaglioAuto(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1586ed7 2007-07-24 07:20:34,323 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.calcolaNumeroProtocollo(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@d4f13a 2007-07-24 07:20:34,325 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.updateDettaglioHotel(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@292edb 2007-07-24 07:20:34,326 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getListaBiglietti(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1c33b55 2007-07-24 07:20:34,327 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.insertDettaglioAuto(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@6c5ac4 2007-07-24 07:20:34,328 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getListaHotel(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1bb0662 2007-07-24 07:20:34,330 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getBigliettiAutorizzati(java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1a04643 2007-07-24 07:20:34,331 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getTestataById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@164f01b 2007-07-24 07:20:34,332 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.deleteHotelById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1cfb8d3 2007-07-24 07:20:34,333 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.insertDettaglioBiglietto(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@6f403e 2007-07-24 07:20:34,334 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.deleteAutoById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1e2d3cd 2007-07-24 07:20:34,335 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.insertDettaglioHotel(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@bf711e 2007-07-24 07:20:34,336 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.insertDettaglioAnticipo(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@9b7336 2007-07-24 07:20:34,338 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getListaAnticipi(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1a8f100 2007-07-24 07:20:34,339 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.deleteBigliettoById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@6664fc 2007-07-24 07:20:34,340 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.deleteAnticipoById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@700edc 2007-07-24 07:20:34,341 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getListaTrasferte(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@dfa65c 2007-07-24 07:20:34,343 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.chiudiTrasfertaById(java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@122e89e 2007-07-24 07:20:34,344 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.insertTestataTrasferta(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@d5f53f 2007-07-24 07:20:34,345 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.updateDettaglioBiglietto(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@d809e3 2007-07-24 07:20:34,348 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.deleteTestataById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@17127f4 2007-07-24 07:20:34,349 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.updateTestataTrasferta(java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1f60f2b 2007-07-24 07:20:34,350 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.updateDettaglioAnticipo(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@15decc0 2007-07-24 07:20:34,351 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Created jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TrasferteBean,service=EJB3 2007-07-24 07:20:34,351 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TrasferteBean,service=EJB3 dependents are: [] 2007-07-24 07:20:34,351 DEBUG [org.jboss.system.ServiceController] starting service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TrasferteBean,service=EJB3 2007-07-24 07:20:34,352 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Starting jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TrasferteBean,service=EJB3 2007-07-24 07:20:34,353 DEBUG [org.jboss.ejb3.tx.UserTransactionImpl] new UserTx: org.jboss.ejb3.tx.UserTransactionImpl at 1627086 2007-07-24 07:20:34,361 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getListaAuto(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1c9982e 2007-07-24 07:20:34,362 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getAutoAutorizzati(java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@262730 2007-07-24 07:20:34,364 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getHotelAutorizzati(java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@d6e551 2007-07-24 07:20:34,368 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.updateDettaglioAuto(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@694a18 2007-07-24 07:20:34,369 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.calcolaNumeroProtocollo(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@7f9d0e 2007-07-24 07:20:34,370 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.updateDettaglioHotel(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@200470 2007-07-24 07:20:34,371 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getListaBiglietti(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@3813c 2007-07-24 07:20:34,373 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.insertDettaglioAuto(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@19b32e 2007-07-24 07:20:34,374 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getListaHotel(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1429c57 2007-07-24 07:20:34,375 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getBigliettiAutorizzati(java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@264dd8 2007-07-24 07:20:34,376 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getTestataById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@c0c6f6 2007-07-24 07:20:34,378 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.deleteHotelById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@46752d 2007-07-24 07:20:34,379 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.insertDettaglioBiglietto(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1b71c12 2007-07-24 07:20:34,380 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.deleteAutoById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@93f61c 2007-07-24 07:20:34,381 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.insertDettaglioHotel(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@2dce0 2007-07-24 07:20:34,382 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.insertDettaglioAnticipo(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1f335bb 2007-07-24 07:20:34,383 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getListaAnticipi(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@4c9860 2007-07-24 07:20:34,385 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.deleteBigliettoById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@a7d316 2007-07-24 07:20:34,386 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.deleteAnticipoById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1370ab 2007-07-24 07:20:34,386 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.getListaTrasferte(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@49f9fa 2007-07-24 07:20:34,389 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.chiudiTrasfertaById(java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@ba936a 2007-07-24 07:20:34,390 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.insertTestataTrasferta(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@12421db 2007-07-24 07:20:34,391 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.updateDettaglioBiglietto(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@12ad974 2007-07-24 07:20:34,393 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.deleteTestataById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@2a7640 2007-07-24 07:20:34,394 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.TrasferteBean.updateTestataTrasferta(java.lang.String,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1b9808e 2007-07-24 07:20:34,395 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.TrasferteBean.updateDettaglioAnticipo(java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1a721e2 2007-07-24 07:20:34,400 INFO [org.jboss.ejb3.EJBContainer] STARTED EJB: com.infocert.xapn.ejb.business.TrasferteBean ejbName: TrasferteBean 2007-07-24 07:20:34,413 DEBUG [org.jboss.ejb3.stateless.BaseStatelessProxyFactory] Binding proxy for TrasferteBean in JNDI at xapt/TrasferteBean/remote 2007-07-24 07:20:34,424 DEBUG [org.jboss.ejb.txtimer.EJBTimerServiceImpl] createTimerService: org.jboss.ejb.txtimer.TimerServiceImpl at 94dd46 2007-07-24 07:20:34,432 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Started jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TrasferteBean,service=EJB3 2007-07-24 07:20:34,432 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TrasferteBean,service=EJB3 dependent components: [] 2007-07-24 07:20:34,432 DEBUG [org.jboss.ejb3.Ejb3Deployment] Bound ejb3 container jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=TrasferteBean,service=EJB3 2007-07-24 07:20:34,432 INFO [org.jboss.ejb3.JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer 2007-07-24 07:20:34,432 INFO [org.jboss.ejb3.JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=UtilitySipertBean,service=EJB3 with dependencies: 2007-07-24 07:20:34,436 DEBUG [org.jboss.system.ServiceController] Creating service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=UtilitySipertBean,service=EJB3 2007-07-24 07:20:34,436 DEBUG [org.jboss.system.ServiceController] adding depends in ServiceController.register: [] 2007-07-24 07:20:34,437 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Creating jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=UtilitySipertBean,service=EJB3 2007-07-24 07:20:34,446 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.getListaDipendenti(java.lang.Integer,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@14a4639 2007-07-24 07:20:34,449 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.ricavaCentroDiCostoDipendente(java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1487e30 2007-07-24 07:20:34,451 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.ricavaCentriDiCostoAzienda(java.lang.Integer,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@548719 2007-07-24 07:20:34,452 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.ricavaAziendeAssociate(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1719d5b 2007-07-24 07:20:34,452 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.ricavaServer(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@11c635 2007-07-24 07:20:34,454 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.ricavaSchema(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@ebc2a2 2007-07-24 07:20:34,455 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.getCognomeNomeDipend(java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@374956 2007-07-24 07:20:34,457 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Created jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=UtilitySipertBean,service=EJB3 2007-07-24 07:20:34,457 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=UtilitySipertBean,service=EJB3 dependents are: [] 2007-07-24 07:20:34,457 DEBUG [org.jboss.system.ServiceController] starting service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=UtilitySipertBean,service=EJB3 2007-07-24 07:20:34,458 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Starting jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=UtilitySipertBean,service=EJB3 2007-07-24 07:20:34,459 DEBUG [org.jboss.ejb3.tx.UserTransactionImpl] new UserTx: org.jboss.ejb3.tx.UserTransactionImpl at 1afebc9 2007-07-24 07:20:34,464 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.getListaDipendenti(java.lang.Integer,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@a0fbd6 2007-07-24 07:20:34,465 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.ricavaCentroDiCostoDipendente(java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@f5c8fb 2007-07-24 07:20:34,466 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.ricavaCentriDiCostoAzienda(java.lang.Integer,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@5dfb22 2007-07-24 07:20:34,467 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.ricavaAziendeAssociate(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@128f03 2007-07-24 07:20:34,468 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.ricavaServer(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@6b2ab7 2007-07-24 07:20:34,469 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.ricavaSchema(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1c17a8c 2007-07-24 07:20:34,470 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public java.lang.String com.infocert.xapn.ejb.business.UtilitySipertBean.getCognomeNomeDipend(java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@1549f0e 2007-07-24 07:20:34,473 INFO [org.jboss.ejb3.EJBContainer] STARTED EJB: com.infocert.xapn.ejb.business.UtilitySipertBean ejbName: UtilitySipertBean 2007-07-24 07:20:34,479 DEBUG [org.jboss.ejb3.stateless.BaseStatelessProxyFactory] Binding proxy for UtilitySipertBean in JNDI at xapt/UtilitySipertBean/remote 2007-07-24 07:20:34,530 DEBUG [org.jboss.ejb.txtimer.EJBTimerServiceImpl] createTimerService: org.jboss.ejb.txtimer.TimerServiceImpl at 1776d65 2007-07-24 07:20:34,542 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Started jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=UtilitySipertBean,service=EJB3 2007-07-24 07:20:34,542 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=UtilitySipertBean,service=EJB3 dependent components: [] 2007-07-24 07:20:34,542 DEBUG [org.jboss.ejb3.Ejb3Deployment] Bound ejb3 container jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=UtilitySipertBean,service=EJB3 2007-07-24 07:20:34,542 INFO [org.jboss.ejb3.JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer 2007-07-24 07:20:34,543 INFO [org.jboss.ejb3.JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=XapnDBBean,service=EJB3 with dependencies: 2007-07-24 07:20:34,548 DEBUG [org.jboss.system.ServiceController] Creating service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=XapnDBBean,service=EJB3 2007-07-24 07:20:34,548 DEBUG [org.jboss.system.ServiceController] adding depends in ServiceController.register: [] 2007-07-24 07:20:34,549 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Creating jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=XapnDBBean,service=EJB3 2007-07-24 07:20:34,562 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.XapnDBBean.setDataSourceORA2(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@faaa93 2007-07-24 07:20:34,564 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.XapnDBBean.setDataSourcePG2(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@d4b411 2007-07-24 07:20:34,565 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.XapnDBBean.setDataSourceORA(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@79e32f 2007-07-24 07:20:34,566 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.XapnDBBean.setDataSourcePG(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@326074 2007-07-24 07:20:34,569 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Created jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=XapnDBBean,service=EJB3 2007-07-24 07:20:34,570 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=XapnDBBean,service=EJB3 dependents are: [] 2007-07-24 07:20:34,570 DEBUG [org.jboss.system.ServiceController] starting service jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=XapnDBBean,service=EJB3 2007-07-24 07:20:34,571 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Starting jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=XapnDBBean,service=EJB3 2007-07-24 07:20:34,573 DEBUG [org.jboss.ejb3.tx.UserTransactionImpl] new UserTx: org.jboss.ejb3.tx.UserTransactionImpl at 15a64e6 2007-07-24 07:20:34,580 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.XapnDBBean.setDataSourceORA2(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@196722d 2007-07-24 07:20:34,582 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.XapnDBBean.setDataSourcePG2(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@221c75 2007-07-24 07:20:34,584 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.XapnDBBean.setDataSourceORA(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@17a82f1 2007-07-24 07:20:34,585 DEBUG [org.jboss.ejb3.interceptor.EJB3InterceptorsFactory] Bound interceptors for joinpoint: public void com.infocert.xapn.ejb.business.XapnDBBean.setDataSourcePG(java.lang.String) - [Lorg.jboss.ejb3.interceptor.InterceptorInfo;@2aa00c 2007-07-24 07:20:34,589 INFO [org.jboss.ejb3.EJBContainer] STARTED EJB: com.infocert.xapn.ejb.business.XapnDBBean ejbName: XapnDBBean 2007-07-24 07:20:34,59 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067435#4067435 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067435 From do-not-reply at jboss.com Wed Jul 25 11:06:08 2007 From: do-not-reply at jboss.com (deadrow) Date: Wed, 25 Jul 2007 11:06:08 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WARN [EndpointMetaData] Loading SEI after eager initiali Message-ID: <14412578.1185375968342.JavaMail.jboss@colo-br-02.atl.jboss.com> DEBUG [org.jboss.ejb3.stateless.BaseStatelessProxyFactory] Binding proxy for XapnDBBean in JNDI at xapt/XapnDBBean/remote 2007-07-24 07:20:34,614 DEBUG [org.jboss.ejb.txtimer.EJBTimerServiceImpl] createTimerService: org.jboss.ejb.txtimer.TimerServiceImpl at 1ac0292 2007-07-24 07:20:34,626 DEBUG [org.jboss.ejb3.stateless.StatelessDelegateWrapper] Started jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=XapnDBBean,service=EJB3 2007-07-24 07:20:34,627 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=XapnDBBean,service=EJB3 dependent components: [] 2007-07-24 07:20:34,627 DEBUG [org.jboss.ejb3.Ejb3Deployment] Bound ejb3 container jboss.j2ee:ear=xapt.ear,jar=xapnEJB.jar,name=XapnDBBean,service=EJB3 2007-07-24 07:20:34,628 DEBUG [org.jboss.ejb3.Ejb3Module] Started jboss.j2ee:service=EJB3,module=xapnEJB.jar 2007-07-24 07:20:34,628 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:service=EJB3,module=xapnEJB.jar dependent components: [] 2007-07-24 07:20:34,628 INFO [org.jboss.ejb3.EJB3Deployer] Deployed: file:/var/opt/jboss/icsol/apps/xapt.ear/xapnEJB.jar/ 2007-07-24 07:20:34,629 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EndpointNameDeployer:Create 2007-07-24 07:20:34,631 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EndpointHandlerDeployer:Create 2007-07-24 07:20:34,770 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] PublishContractDeployer:Create 2007-07-24 07:20:34,780 DEBUG [org.jboss.wsf.stack.jbws.WSDLFilePublisher] Publish WSDL file: file:/var/opt/jboss/icsol/tmp/jbossws/AmministrazioneBeanService22218.wsdl 2007-07-24 07:20:34,835 INFO [org.jboss.wsf.stack.jbws.WSDLFilePublisher] WSDL published to: file:/var/opt/jboss/icsol/data/wsdl/xapt.ear/xapnEJB.jar/AmministrazioneBeanService22218.wsdl 2007-07-24 07:20:34,839 DEBUG [org.jboss.wsf.stack.jbws.WSDLFilePublisher] Publish WSDL file: file:/var/opt/jboss/icsol/tmp/jbossws/AnagraficaBeanService22219.wsdl 2007-07-24 07:20:34,849 INFO [org.jboss.wsf.stack.jbws.WSDLFilePublisher] WSDL published to: file:/var/opt/jboss/icsol/data/wsdl/xapt.ear/xapnEJB.jar/AnagraficaBeanService22219.wsdl 2007-07-24 07:20:34,853 DEBUG [org.jboss.wsf.stack.jbws.WSDLFilePublisher] Publish WSDL file: file:/var/opt/jboss/icsol/tmp/jbossws/AutorizzazioniBeanService22220.wsdl 2007-07-24 07:20:34,859 INFO [org.jboss.wsf.stack.jbws.WSDLFilePublisher] WSDL published to: file:/var/opt/jboss/icsol/data/wsdl/xapt.ear/xapnEJB.jar/AutorizzazioniBeanService22220.wsdl 2007-07-24 07:20:34,861 DEBUG [org.jboss.wsf.stack.jbws.WSDLFilePublisher] Publish WSDL file: file:/var/opt/jboss/icsol/tmp/jbossws/NotespeseBeanService22221.wsdl 2007-07-24 07:20:34,868 INFO [org.jboss.wsf.stack.jbws.WSDLFilePublisher] WSDL published to: file:/var/opt/jboss/icsol/data/wsdl/xapt.ear/xapnEJB.jar/NotespeseBeanService22221.wsdl 2007-07-24 07:20:34,871 DEBUG [org.jboss.wsf.stack.jbws.WSDLFilePublisher] Publish WSDL file: file:/var/opt/jboss/icsol/tmp/jbossws/TabelleAggiuntiveBeanService22222.wsdl 2007-07-24 07:20:34,881 INFO [org.jboss.wsf.stack.jbws.WSDLFilePublisher] WSDL published to: file:/var/opt/jboss/icsol/data/wsdl/xapt.ear/xapnEJB.jar/TabelleAggiuntiveBeanService22222.wsdl 2007-07-24 07:20:34,884 DEBUG [org.jboss.wsf.stack.jbws.WSDLFilePublisher] Publish WSDL file: file:/var/opt/jboss/icsol/tmp/jbossws/TrasferteBeanService22223.wsdl 2007-07-24 07:20:34,931 INFO [org.jboss.wsf.stack.jbws.WSDLFilePublisher] WSDL published to: file:/var/opt/jboss/icsol/data/wsdl/xapt.ear/xapnEJB.jar/TrasferteBeanService22223.wsdl 2007-07-24 07:20:34,949 DEBUG [org.jboss.wsf.stack.jbws.WSDLFilePublisher] Publish WSDL file: file:/var/opt/jboss/icsol/tmp/jbossws/UtilitySipertBeanService22224.wsdl 2007-07-24 07:20:34,961 INFO [org.jboss.wsf.stack.jbws.WSDLFilePublisher] WSDL published to: file:/var/opt/jboss/icsol/data/wsdl/xapt.ear/xapnEJB.jar/UtilitySipertBeanService22224.wsdl 2007-07-24 07:20:34,966 DEBUG [org.jboss.wsf.stack.jbws.WSDLFilePublisher] Publish WSDL file: file:/var/opt/jboss/icsol/tmp/jbossws/XapnDBBeanService22225.wsdl 2007-07-24 07:20:34,975 INFO [org.jboss.wsf.stack.jbws.WSDLFilePublisher] WSDL published to: file:/var/opt/jboss/icsol/data/wsdl/xapt.ear/xapnEJB.jar/XapnDBBeanService22225.wsdl 2007-07-24 07:20:34,978 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] ClassLoaderInjectionDeployer:Create 2007-07-24 07:20:34,978 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] ServiceEndpointInvokerDeployer:Create 2007-07-24 07:20:35,200 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Configure SOAPBinding 2007-07-24 07:20:35,212 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Configure SOAPBinding 2007-07-24 07:20:35,212 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Configure SOAPBinding 2007-07-24 07:20:35,212 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Configure SOAPBinding 2007-07-24 07:20:35,212 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Configure SOAPBinding 2007-07-24 07:20:35,212 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Configure SOAPBinding 2007-07-24 07:20:35,213 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Configure SOAPBinding 2007-07-24 07:20:35,213 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Configure SOAPBinding 2007-07-24 07:20:35,213 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EagerInitializeDeployer:Create 2007-07-24 07:20:35,213 DEBUG [org.jboss.ws.metadata.umdm.UnifiedMetaData] Eagerly initialize the meta data model 2007-07-24 07:20:35,222 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.AmministrazioneRemote.getListaAutorizzatori(java.lang.String) 2007-07-24 07:20:35,223 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.AmministrazioneRemote.getListaAutorizzatiConPreselezionati(java.lang.String,java.lang.String,java.lang.String) 2007-07-24 07:20:35,223 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.AmministrazioneRemote.getListaAutorizzati(java.lang.String) 2007-07-24 07:20:35,223 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.AmministrazioneRemote.modificaAutorizzati(java.lang.String,java.lang.String,java.lang.String,java.lang.String) 2007-07-24 07:20:35,223 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.AmministrazioneRemote.ricavaSchema(java.lang.String) 2007-07-24 07:20:35,224 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.AmministrazioneRemote.ricavaServer(java.lang.String) 2007-07-24 07:20:35,224 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.AmministrazioneRemote.cancellaAutorizzatori(java.lang.String,java.lang.String,java.lang.String) 2007-07-24 07:20:35,228 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.AnagraficaRemote.getAnagrafeCasseByAzienda(java.lang.String,java.lang.Integer) 2007-07-24 07:20:35,228 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.AnagraficaRemote.getAnagrafeVociAnticipoByAzienda(java.lang.String,java.lang.Integer) 2007-07-24 07:20:35,229 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.AnagraficaRemote.getAnagraficaDestinazioniContabili(java.lang.String,java.lang.Integer) 2007-07-24 07:20:35,229 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.AnagraficaRemote.getAnagraficaUfficioViaggi(java.lang.String,java.lang.Integer) 2007-07-24 07:20:35,229 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.AnagraficaRemote.getDescrizioneUfficioViaggiById(java.lang.String,java.lang.Integer,java.lang.String) 2007-07-24 07:20:35,229 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.AnagraficaRemote.getAnagraficaAggDip(java.lang.String,java.lang.Integer,java.lang.Integer) 2007-07-24 07:20:35,230 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.AutorizzazioniRemote.getAutorizzatoriDiUnDipendente(java.lang.String,java.lang.Integer,java.lang.Integer) 2007-07-24 07:20:35,230 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.NotespeseRemote.getListaNotespese(java.lang.String) 2007-07-24 07:20:35,231 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.NotespeseRemote.insertTestataNotespese(java.lang.String,java.lang.String) 2007-07-24 07:20:35,231 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TabelleAggiuntiveRemote.getTipiMissione(java.lang.String,java.lang.Integer) 2007-07-24 07:20:35,231 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TabelleAggiuntiveRemote.getAutoNoleggi(java.lang.String,java.lang.Integer) 2007-07-24 07:20:35,232 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TabelleAggiuntiveRemote.getDescrizioneAutonoleggioById(java.lang.String,java.lang.Integer,java.lang.String) 2007-07-24 07:20:35,232 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TrasferteRemote.getListaTrasferte(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) 2007-07-24 07:20:35,233 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TrasferteRemote.insertTestataTrasferta(java.lang.String,java.lang.String) 2007-07-24 07:20:35,233 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TrasferteRemote.getTestataById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) 2007-07-24 07:20:35,233 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TrasferteRemote.updateTestataTrasferta(java.lang.String,java.lang.String,java.lang.String) 2007-07-24 07:20:35,233 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.deleteTestataById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) 2007-07-24 07:20:35,234 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.insertDettaglioAnticipo(java.lang.String,java.lang.String) 2007-07-24 07:20:35,234 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TrasferteRemote.getListaAnticipi(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) 2007-07-24 07:20:35,234 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.deleteAnticipoById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) 2007-07-24 07:20:35,234 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.updateDettaglioAnticipo(java.lang.String,java.lang.String) 2007-07-24 07:20:35,235 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.insertDettaglioHotel(java.lang.String,java.lang.String) 2007-07-24 07:20:35,235 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.deleteHotelById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) 2007-07-24 07:20:35,235 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TrasferteRemote.getListaHotel(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) 2007-07-24 07:20:35,235 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.updateDettaglioHotel(java.lang.String,java.lang.String) 2007-07-24 07:20:35,236 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.deleteBigliettoById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) 2007-07-24 07:20:35,236 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TrasferteRemote.getListaBiglietti(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) 2007-07-24 07:20:35,236 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.insertDettaglioBiglietto(java.lang.String,java.lang.String) 2007-07-24 07:20:35,236 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.updateDettaglioBiglietto(java.lang.String,java.lang.String) 2007-07-24 07:20:35,237 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.deleteAutoById(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) 2007-07-24 07:20:35,237 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TrasferteRemote.getListaAuto(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) 2007-07-24 07:20:35,238 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.insertDettaglioAuto(java.lang.String,java.lang.String) 2007-07-24 07:20:35,238 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.updateDettaglioAuto(java.lang.String,java.lang.String) 2007-07-24 07:20:35,238 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.TrasferteRemote.chiudiTrasfertaById(java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String) 2007-07-24 07:20:35,238 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TrasferteRemote.getHotelAutorizzati(java.lang.String,java.lang.String,java.lang.String) 2007-07-24 07:20:35,238 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TrasferteRemote.getBigliettiAutorizzati(java.lang.String,java.lang.String,java.lang.String) 2007-07-24 07:20:35,239 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TrasferteRemote.getAutoAutorizzati(java.lang.String,java.lang.String,java.lang.String) 2007-07-24 07:20:35,239 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.TrasferteRemote.calcolaNumeroProtocollo(java.lang.String) 2007-07-24 07:20:35,240 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.UtilitySipertRemote.getListaDipendenti(java.lang.Integer,java.lang.String,java.lang.String) 2007-07-24 07:20:35,240 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.UtilitySipertRemote.ricavaSchema(java.lang.String) 2007-07-24 07:20:35,240 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.UtilitySipertRemote.ricavaServer(java.lang.String) 2007-07-24 07:20:35,240 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.UtilitySipertRemote.ricavaAziendeAssociate(java.lang.String) 2007-07-24 07:20:35,240 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.UtilitySipertRemote.ricavaCentroDiCostoDipendente(java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String) 2007-07-24 07:20:35,240 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.UtilitySipertRemote.ricavaCentriDiCostoAzienda(java.lang.Integer,java.lang.String,java.lang.String) 2007-07-24 07:20:35,241 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract java.lang.String com.infocert.xapn.ejb.business.UtilitySipertRemote.getCognomeNomeDipend(java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String) 2007-07-24 07:20:35,241 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.XapnDBRemote.setDataSourcePG(java.lang.String) 2007-07-24 07:20:35,241 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.XapnDBRemote.setDataSourceORA(java.lang.String) 2007-07-24 07:20:35,242 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.XapnDBRemote.setDataSourcePG2(java.lang.String) 2007-07-24 07:20:35,242 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.XapnDBRemote.setDataSourceORA2(java.lang.String) 2007-07-24 07:20:35,242 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EventingDeployer:Create 2007-07-24 07:20:35,242 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EndpointMetricsDeployer:Create 2007-07-24 07:20:35,243 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EndpointRegistryDeployer:Create 2007-07-24 07:20:35,246 INFO [org.jboss.wsf.spi.management.BasicEndpointRegistry] register: jboss.ws:context=xapt-xapnEJB,endpoint=AmministrazioneBean 2007-07-24 07:20:35,255 INFO [org.jboss.wsf.spi.management.BasicEndpointRegistry] register: jboss.ws:context=xapt-xapnEJB,endpoint=AnagraficaBean 2007-07-24 07:20:35,259 INFO [org.jboss.wsf.spi.management.BasicEndpointRegistry] register: jboss.ws:context=xapt-xapnEJB,endpoint=AutorizzazioniBean 2007-07-24 07:20:35,261 INFO [org.jboss.wsf.spi.management.BasicEndpointRegistry] register: jboss.ws:context=xapt-xapnEJB,endpoint=NotespeseBean 2007-07-24 07:20:35,264 INFO [org.jboss.wsf.spi.management.BasicEndpointRegistry] register: jboss.ws:context=xapt-xapnEJB,endpoint=TabelleAggiuntiveBean 2007-07-24 07:20:35,267 INFO [org.jboss.wsf.spi.management.BasicEndpointRegistry] register: jboss.ws:context=xapt-xapnEJB,endpoint=TrasferteBean 2007-07-24 07:20:35,270 INFO [org.jboss.wsf.spi.management.BasicEndpointRegistry] register: jboss.ws:context=xapt-xapnEJB,endpoint=UtilitySipertBean 2007-07-24 07:20:35,273 INFO [org.jboss.wsf.spi.management.BasicEndpointRegistry] register: jboss.ws:context=xapt-xapnEJB,endpoint=XapnDBBean 2007-07-24 07:20:35,276 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EndpointLifecycleDeployer:Create 2007-07-24 07:20:35,276 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Create: jboss.ws:context=xapt-xapnEJB,endpoint=AmministrazioneBean 2007-07-24 07:20:35,276 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Create: jboss.ws:context=xapt-xapnEJB,endpoint=AmministrazioneBean 2007-07-24 07:20:35,277 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Create: jboss.ws:context=xapt-xapnEJB,endpoint=AnagraficaBean 2007-07-24 07:20:35,277 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Create: jboss.ws:context=xapt-xapnEJB,endpoint=AnagraficaBean 2007-07-24 07:20:35,277 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Create: jboss.ws:context=xapt-xapnEJB,endpoint=AutorizzazioniBean 2007-07-24 07:20:35,278 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Create: jboss.ws:context=xapt-xapnEJB,endpoint=AutorizzazioniBean 2007-07-24 07:20:35,278 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Create: jboss.ws:context=xapt-xapnEJB,endpoint=NotespeseBean 2007-07-24 07:20:35,278 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Create: jboss.ws:context=xapt-xapnEJB,endpoint=NotespeseBean 2007-07-24 07:20:35,278 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Create: jboss.ws:context=xapt-xapnEJB,endpoint=TabelleAggiuntiveBean 2007-07-24 07:20:35,278 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Create: jboss.ws:context=xapt-xapnEJB,endpoint=TabelleAggiuntiveBean 2007-07-24 07:20:35,278 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Create: jboss.ws:context=xapt-xapnEJB,endpoint=TrasferteBean 2007-07-24 07:20:35,278 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Create: jboss.ws:context=xapt-xapnEJB,endpoint=TrasferteBean 2007-07-24 07:20:35,278 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Create: jboss.ws:context=xapt-xapnEJB,endpoint=UtilitySipertBean 2007-07-24 07:20:35,278 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Create: jboss.ws:context=xapt-xapnEJB,endpoint=UtilitySipertBean 2007-07-24 07:20:35,278 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Create: jboss.ws:context=xapt-xapnEJB,endpoint=XapnDBBean 2007-07-24 07:20:35,278 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Create: jboss.ws:context=xapt-xapnEJB,endpoint=XapnDBBean 2007-07-24 07:20:35,279 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EndpointNameDeployer:Start 2007-07-24 07:20:35,279 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EndpointHandlerDeployer:Start 2007-07-24 07:20:35,279 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] PublishContractDeployer:Start 2007-07-24 07:20:35,279 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] ClassLoaderInjectionDeployer:Start 2007-07-24 07:20:35,279 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] ServiceEndpointInvokerDeployer:Start 2007-07-24 07:20:35,279 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EagerInitializeDeployer:Start 2007-07-24 07:20:35,279 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EventingDeployer:Start 2007-07-24 07:20:35,279 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EndpointMetricsDeployer:Start 2007-07-24 07:20:35,279 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EndpointRegistryDeployer:Start 2007-07-24 07:20:35,279 DEBUG [org.jboss.wsf.spi.deployment.BasicDeployerManager] EndpointLifecycleDeployer:Start 2007-07-24 07:20:35,279 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Start: jboss.ws:context=xapt-xapnEJB,endpoint=AmministrazioneBean 2007-07-24 07:20:35,279 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Start: jboss.ws:context=xapt-xapnEJB,endpoint=AmministrazioneBean 2007-07-24 07:20:35,280 INFO [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] WebService started: http://jbossws.undefined.host:80/xapt-xapnEJB/AmministrazioneBean 2007-07-24 07:20:35,280 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Start: jboss.ws:context=xapt-xapnEJB,endpoint=AnagraficaBean 2007-07-24 07:20:35,280 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Start: jboss.ws:context=xapt-xapnEJB,endpoint=AnagraficaBean 2007-07-24 07:20:35,280 INFO [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] WebService started: http://jbossws.undefined.host:80/xapt-xapnEJB/AnagraficaBean 2007-07-24 07:20:35,280 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Start: jboss.ws:context=xapt-xapnEJB,endpoint=AutorizzazioniBean 2007-07-24 07:20:35,280 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Start: jboss.ws:context=xapt-xapnEJB,endpoint=AutorizzazioniBean 2007-07-24 07:20:35,280 INFO [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] WebService started: http://jbossws.undefined.host:80/xapt-xapnEJB/AutorizzazioniBean 2007-07-24 07:20:35,280 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Start: jboss.ws:context=xapt-xapnEJB,endpoint=NotespeseBean 2007-07-24 07:20:35,280 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Start: jboss.ws:context=xapt-xapnEJB,endpoint=NotespeseBean 2007-07-24 07:20:35,280 INFO [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] WebService started: http://jbossws.undefined.host:80/xapt-xapnEJB/NotespeseBean 2007-07-24 07:20:35,280 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Start: jboss.ws:context=xapt-xapnEJB,endpoint=TabelleAggiuntiveBean 2007-07-24 07:20:35,280 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Start: jboss.ws:context=xapt-xapnEJB,endpoint=TabelleAggiuntiveBean 2007-07-24 07:20:35,280 INFO [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] WebService started: http://jbossws.undefined.host:80/xapt-xapnEJB/TabelleAggiuntiveBean 2007-07-24 07:20:35,281 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Start: jboss.ws:context=xapt-xapnEJB,endpoint=TrasferteBean 2007-07-24 07:20:35,281 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Start: jboss.ws:context=xapt-xapnEJB,endpoint=TrasferteBean 2007-07-24 07:20:35,281 INFO [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] WebService started: http://jbossws.undefined.host:80/xapt-xapnEJB/TrasferteBean 2007-07-24 07:20:35,281 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Start: jboss.ws:context=xapt-xapnEJB,endpoint=UtilitySipertBean 2007-07-24 07:20:35,281 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Start: jboss.ws:context=xapt-xapnEJB,endpoint=UtilitySipertBean 2007-07-24 07:20:35,281 INFO [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] WebService started: http://jbossws.undefined.host:80/xapt-xapnEJB/UtilitySipertBean 2007-07-24 07:20:35,281 DEBUG [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] Start: jboss.ws:context=xapt-xapnEJB,endpoint=XapnDBBean 2007-07-24 07:20:35,281 DEBUG [org.jboss.wsf.spi.invocation.AbstractInvocationHandler] Start: jboss.ws:context=xapt-xapnEJB,endpoint=XapnDBBean 2007-07-24 07:20:35,281 INFO [org.jboss.wsf.stack.jbws.LifecycleHandlerImpl] WebService started: http://jbossws.undefined.host:80/xapt-xapnEJB/XapnDBBean 2007-07-24 07:20:35,282 DEBUG [org.jboss.deployment.MainDeployer] End deployment start on package: xapnEJB.jar 2007-07-24 07:20:35,282 DEBUG [org.jboss.deployment.MainDeployer] Begin deployment start file:/var/opt/jboss/icsol/apps/xapt.ear/xapn.war/ 2007-07-24 07:20:35,282 DEBUG [org.jboss.system.ServiceController] starting service jboss.web.deployment:war=xapn.war,id=-1452989816 2007-07-24 07:20:35,283 DEBUG [org.jboss.web.WebModule] Starting jboss.web.deployment:war=xapn.war,id=-1452989816 2007-07-24 07:20:35,283 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] webContext: /xapt 2007-07-24 07:20:35,283 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] warURL: file:/var/opt/jboss/icsol/apps/xapt.ear/xapn.war/ 2007-07-24 07:20:35,283 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] webAppParser: org.jboss.web.AbstractWebDeployer$DescriptorParser at 1d75e80 2007-07-24 07:20:35,284 DEBUG [org.jboss.web.WebPermissionMapping] Qualified url patterns: {/=PatternInfo[pattern=/,type=3,isOverriden=false,qualifiers=[]]} 2007-07-24 07:20:35,292 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/xapt, warUrl=.../apps/xapt.ear/xapn.war/ 2007-07-24 07:20:35,292 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] AbstractWebContainer.parseWebAppDescriptors, Begin 2007-07-24 07:20:35,301 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] Creating ENC using ClassLoader: java.net.FactoryURLClassLoader at 7d30b3 2007-07-24 07:20:35,302 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] ..org.jboss.mx.loading.UnifiedClassLoader3 at e00321{ url=file:/var/opt/jboss/icsol/apps/xapt.ear/ ,addedOrder=53} 2007-07-24 07:20:35,302 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] ..org.jboss.mx.loading.HeirarchicalLoaderRepository3$NoParentClassLoader at 1087070 2007-07-24 07:20:35,302 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] ..org.jboss.system.server.NoAnnotationURLClassLoader at 1abab88 2007-07-24 07:20:35,302 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] ..sun.misc.Launcher$AppClassLoader at 47858e 2007-07-24 07:20:35,302 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] ..sun.misc.Launcher$ExtClassLoader at 19134f4 2007-07-24 07:20:35,304 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] Bound java:comp/ORB 2007-07-24 07:20:35,304 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] Linked java:comp/UserTransaction to JNDI name: UserTransaction 2007-07-24 07:20:35,304 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] addEnvEntries 2007-07-24 07:20:35,304 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] linkResourceEnvRefs 2007-07-24 07:20:35,304 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] linkResourceRefs 2007-07-24 07:20:35,304 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] linkMessageDestinationRefs 2007-07-24 07:20:35,305 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] linkEjbRefs 2007-07-24 07:20:35,305 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] linkEjbLocalRefs 2007-07-24 07:20:35,305 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] linkServiceRefs 2007-07-24 07:20:35,305 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] linkSecurityDomain 2007-07-24 07:20:35,305 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] No security-domain given, using default: java:/jaas/other 2007-07-24 07:20:35,305 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] Linking security/securityMgr to JNDI name: java:/jaas/other 2007-07-24 07:20:35,306 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] AbstractWebContainer.parseWebAppDescriptors, End 2007-07-24 07:20:35,390 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] Using session cookies default setting 2007-07-24 07:20:35,458 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 47fc71{ url=null ,addedOrder=0} 2007-07-24 07:20:36,368 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1aba308{ url=null ,addedOrder=0} 2007-07-24 07:20:36,394 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1a7553{ url=null ,addedOrder=0} 2007-07-24 07:20:36,421 DEBUG [org.jboss.web.tomcat.filters.ReplyHeaderFilter] Adding header name: X-Powered-By='Servlet 2.4; JBoss-4.2.1.GA (build: SVNTag=JBoss_4_2_1_GA date=200707070210)/Tomcat-5.5' 2007-07-24 07:20:36,422 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 10ca25a{ url=null ,addedOrder=0} 2007-07-24 07:20:36,423 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 76d19c{ url=null ,addedOrder=0} 2007-07-24 07:20:36,438 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at bb6d85{ url=null ,addedOrder=0} 2007-07-24 07:20:36,468 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at a3aaf5{ url=null ,addedOrder=0} 2007-07-24 07:20:36,471 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 12cc66f{ url=null ,addedOrder=0} 2007-07-24 07:20:36,473 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 97cc12{ url=null ,addedOrder=0} 2007-07-24 07:20:36,474 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1d6c275{ url=null ,addedOrder=0} 2007-07-24 07:20:36,495 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 146b158{ url=null ,addedOrder=0} 2007-07-24 07:20:38,280 DEBUG [org.jboss.web.tomcat.service.TomcatDeployer] Initialized: {WebApplication: /var/opt/jboss/icsol/apps/xapt.ear/xapn.war/, URL: file:/var/opt/jboss/icsol/apps/xapt.ear/xapn.war/, classLoader: java.net.FactoryURLClassLoader at 7d30b3:8204467} jboss.web:j2eeType=WebModule,name=//localhost/xapt,J2EEApplication=none,J2EEServer=none 2007-07-24 07:20:38,280 DEBUG [org.jboss.web.WebModule] Started jboss.web.deployment:war=xapn.war,id=-1452989816 2007-07-24 07:20:38,281 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.web.deployment:war=xapn.war,id=-1452989816 dependent components: [] 2007-07-24 07:20:38,313 DEBUG [org.jboss.deployment.MainDeployer] End deployment start on package: xapn.war 2007-07-24 07:20:38,325 DEBUG [org.jboss.system.ServiceController] starting service jboss.j2ee:service=EARDeployment,url='xapt.ear' 2007-07-24 07:20:38,325 DEBUG [org.jboss.deployment.EARDeployment] Starting jboss.j2ee:service=EARDeployment,url='xapt.ear' 2007-07-24 07:20:38,325 DEBUG [org.jboss.deployment.EARDeployment] Started jboss.j2ee:service=EARDeployment,url='xapt.ear' 2007-07-24 07:20:38,325 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.j2ee:service=EARDeployment,url='xapt.ear' dependent components: [] 2007-07-24 07:20:38,325 INFO [org.jboss.deployment.EARDeployer] Started J2EE application: file:/var/opt/jboss/icsol/apps/xapt.ear/ 2007-07-24 07:20:38,326 DEBUG [org.jboss.deployment.MainDeployer] End deployment start on package: xapt.ear 2007-07-24 07:20:38,326 DEBUG [org.jboss.deployment.MainDeployer] Deployed package: file:/var/opt/jboss/icsol/apps/xapt.ear/ And this is when the webservice is invoked: 2007-07-24 14:45:28,457 DEBUG [org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder] START buildMetaData: [service={http://business.ejb.xapn.infocert.com/}XapnDBBeanService] 2007-07-24 14:45:28,460 DEBUG [org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory] parse: http://xaptsv.intra.infocamere.it/xapt-xapnEJB/XapnDBBean?wsdl 2007-07-24 14:45:28,681 DEBUG [org.jboss.wsf.stack.jbws.RequestHandlerImpl] handleWSDLRequest: jboss.ws:context=xapt-xapnEJB,endpoint=XapnDBBean 2007-07-24 14:45:28,682 DEBUG [org.jboss.wsf.stack.jbws.RequestHandlerImpl] WSDL request, using host: http://xaptsv.intra.infocamere.it 2007-07-24 14:45:28,741 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at c85a33{ url=null ,addedOrder=0} 2007-07-24 14:45:28,743 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 199ef99{ url=null ,addedOrder=0} 2007-07-24 14:45:28,884 DEBUG [org.jboss.wsf.stack.jbws.RequestHandlerImpl] handleWSDLRequest: jboss.ws:context=xapt-xapnEJB,endpoint=XapnDBBean 2007-07-24 14:45:28,884 DEBUG [org.jboss.wsf.stack.jbws.RequestHandlerImpl] WSDL request, using host: http://xaptsv.intra.infocamere.it 2007-07-24 14:45:29,001 DEBUG [org.jboss.ws.metadata.umdm.UnifiedMetaData] Eagerly initialize the meta data model 2007-07-24 14:45:29,006 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Create new config [name=Standard Client,file=META-INF/standard-jaxrpc-client-config.xml] 2007-07-24 14:45:29,007 DEBUG [org.jboss.ws.metadata.config.JBossWSConfigFactory] getConfig: [name=Standard Client,url=META-INF/standard-jaxrpc-client-config.xml] 2007-07-24 14:45:29,046 DEBUG [org.jboss.ws.metadata.config.JBossWSConfigFactory] parse: file:/var/opt/jboss/icsol/deploy/jbossws.sar/META-INF/standard-jaxrpc-client-config.xml 2007-07-24 14:45:29,525 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Configure EndpointMetaData 2007-07-24 14:45:29,525 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Added 0 PRE handlers 2007-07-24 14:45:29,525 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Added 0 ENDPOINT handlers 2007-07-24 14:45:29,525 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Added 0 POST handlers 2007-07-24 14:45:29,538 DEBUG [org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder] END buildMetaData: UnifiedMetaData: implementation: jbossws-native-2.0.0.GA (build=200707051029) deploymentName: null securityDomain: null ServiceMetaData: qname={http://business.ejb.xapn.infocert.com/}XapnDBBeanService refName=null wsdName=null wsdlFile=null wsdlLocation=http://xaptsv.intra.infocamere.it/xapt-xapnEJB/XapnDBBean?wsdl jaxrpcMapping=null publishLocation=null securityConfig=null properties=null TypesMetaData: ClientEndpointMetaData: type=JAXRPC qname={http://business.ejb.xapn.infocert.com/}XapnDBBeanPort address=http://xaptsv.intra.infocamere.it:80/xapt-xapnEJB/XapnDBBean binding=http://schemas.xmlsoap.org/wsdl/soap/http seiName=null configFile=META-INF/standard-jaxrpc-client-config.xml configName=Standard Client authMethod=null properties={} OperationMetaData: qname={http://business.ejb.xapn.infocert.com/}setDataSourceORA javaName=setDataSourceORA style=rpc/literal oneWay=false soapAction= ParameterMetaData: xmlName=arg0 partName=arg0 xmlType={http://www.w3.org/2001/XMLSchema}string javaType=java.lang.String mode=IN inHeader=false index=0 OperationMetaData: qname={http://business.ejb.xapn.infocert.com/}setDataSourceORA2 javaName=setDataSourceORA2 style=rpc/literal oneWay=false soapAction= ParameterMetaData: xmlName=arg0 partName=arg0 xmlType={http://www.w3.org/2001/XMLSchema}string javaType=java.lang.String mode=IN inHeader=false index=0 OperationMetaData: qname={http://business.ejb.xapn.infocert.com/}setDataSourcePG javaName=setDataSourcePG style=rpc/literal oneWay=false soapAction= ParameterMetaData: xmlName=arg0 partName=arg0 xmlType={http://www.w3.org/2001/XMLSchema}string javaType=java.lang.String mode=IN inHeader=false index=0 OperationMetaData: qname={http://business.ejb.xapn.infocert.com/}setDataSourcePG2 javaName=setDataSourcePG2 style=rpc/literal oneWay=false soapAction= ParameterMetaData: xmlName=arg0 partName=arg0 xmlType={http://www.w3.org/2001/XMLSchema}string javaType=java.lang.String mode=IN inHeader=false index=0 2007-07-24 14:45:29,550 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at ce4dda{ url=null ,addedOrder=0} 2007-07-24 14:45:29,551 WARN [org.jboss.ws.metadata.umdm.EndpointMetaData] Loading SEI after eager initialization 2007-07-24 14:45:29,572 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.XapnDBRemote.setDataSourceORA(java.lang.String) 2007-07-24 14:45:29,572 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.XapnDBRemote.setDataSourceORA2(java.lang.String) 2007-07-24 14:45:29,573 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.XapnDBRemote.setDataSourcePG(java.lang.String) 2007-07-24 14:45:29,573 DEBUG [org.jboss.ws.metadata.umdm.OperationMetaData] Found best matching java method: public abstract void com.infocert.xapn.ejb.business.XapnDBRemote.setDataSourcePG2(java.lang.String) 2007-07-24 14:45:29,664 DEBUG [org.jboss.ws.metadata.umdm.EndpointMetaData] Configure SOAPBinding 2007-07-24 14:45:29,677 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1d6c8b9{ url=null ,addedOrder=0} 2007-07-24 14:45:29,680 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 1aac78d{ url=null ,addedOrder=0} 2007-07-24 14:45:29,705 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 19c5ce6{ url=null ,addedOrder=0} 2007-07-24 14:45:29,708 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3 at aa168c, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader at 971e9d{ url=null ,addedOrder=0} 2007-07-24 14:45:29,748 DEBUG [org.jboss.ws.core.soap.MessageContextAssociation] pushMessageContext: org.jboss.ws.core.jaxrpc.handler.SOAPMessageContextJAXRPC at 1b5d53a (Thread ajp-1.5.29.74-8009-1) 2007-07-24 14:45:29,781 DEBUG [org.jboss.ws.core.EndpointInvocation] setRequestParamValue: [name=arg0,value=java.lang.String] 2007-07-24 14:45:29,782 DEBUG [org.jboss.ws.core.jaxrpc.SOAP11BindingJAXRPC] bindRequestMessage: {http://business.ejb.xapn.infocert.com/}setDataSourcePG 2007-07-24 14:45:29,969 DEBUG [org.jboss.ws.core.jaxrpc.SOAP11BindingJAXRPC] Create RPC body element: {http://business.ejb.xapn.infocert.com/}setDataSourcePG 2007-07-24 14:45:29,975 DEBUG [org.jboss.ws.core.EndpointInvocation] getRequestParamValue: arg0 2007-07-24 14:45:29,975 DEBUG [org.jboss.ws.core.EndpointInvocation] transformPayloadValue: java.lang.String -> java.lang.String 2007-07-24 14:45:30,048 DEBUG [org.jboss.ws.core.client.RemotingConnectionImpl] Get locator for: [addr=http://xaptsv.intra.infocamere.it:80/xapt-xapnEJB/XapnDBBean,props={javax.xml.rpc.service.endpoint.address=http://xaptsv.intra.infocamere.it:80/xapt-xapnEJB/XapnDBBean}] 2007-07-24 14:45:30,169 DEBUG [org.jboss.remoting.MicroRemoteClientInvoker] org.jboss.remoting.transport.http.HTTPClientInvoker at 1710c15 connecting 2007-07-24 14:45:30,170 DEBUG [org.jboss.remoting.MicroRemoteClientInvoker] org.jboss.remoting.transport.http.HTTPClientInvoker at 1710c15 connected 2007-07-24 14:45:30,171 DEBUG [org.jboss.ws.core.client.RemotingConnectionImpl] Remoting metadata: {HEADER={SOAPAction="", Content-Type=text/xml; charset=UTF-8}, NoThrowOnError=true} 2007-07-24 14:45:30,181 DEBUG [org.jboss.remoting.transport.http.HTTPClientInvoker] Setting request header with SOAPAction : "" 2007-07-24 14:45:30,182 DEBUG [org.jboss.remoting.transport.http.HTTPClientInvoker] Setting request header with Content-Type : text/xml; charset=UTF-8 2007-07-24 14:45:30,207 DEBUG [org.jboss.ws.core.soap.SOAPContentElement] ----------------------------------- 2007-07-24 14:45:30,207 DEBUG [org.jboss.ws.core.soap.SOAPContentElement] Transitioning from OBJECT_VALID to XML_VALID 2007-07-24 14:45:30,208 DEBUG [org.jboss.ws.core.soap.ObjectContent] getXMLFragment from Object [xmlType={http://www.w3.org/2001/XMLSchema}string,javaType=class java.lang.String] 2007-07-24 14:45:30,209 DEBUG [org.jboss.ws.core.jaxrpc.binding.SimpleSerializer] serialize: [xmlName=arg0,xmlType={http://www.w3.org/2001/XMLSchema}string] 2007-07-24 14:45:30,222 DEBUG [org.jboss.ws.core.soap.ObjectContent] xmlFragment: [source=java:PostgresXAPNDS] 2007-07-24 14:45:30,225 DEBUG [org.jboss.ws.core.soap.SOAPContentElement] ----------------------------------- 2007-07-24 14:45:30,244 DEBUG [org.jboss.wsf.stack.jbws.RequestHandlerImpl] doPost: /xapt-xapnEJB/XapnDBBean View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067438#4067438 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067438 From do-not-reply at jboss.com Wed Jul 25 11:32:33 2007 From: do-not-reply at jboss.com (andycooper) Date: Wed, 25 Jul 2007 11:32:33 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - WS-Security header encryption? Message-ID: <31560145.1185377553911.JavaMail.jboss@colo-br-02.atl.jboss.com> After experimenting, reading source code, and much hair-pulling, I still can't find any way to encrypt SOAP headers using JBossWS. In particular, the UsernameToken header remains unencrypted and doesn't seem to support nonce's. Speaking of this, the documentation for the WS-Security implementation is "somewhat" lacking. Using BindingProvider.USERNAME_PROPERTY (as shown in your tests) doesn't work because its constant is different from Stub.USERNAME_PROPERTY, which is what WSSecurityDispatcher.java uses to determine whether or not to include the header. Similarly for PASSWORD_PROPERTY. So, the question of the day is: how do you encrypt or secure a username/pasword combination sent via the WS-Security UsernameToken header that is included by means of something like ((BindingProvider)port).getRequestContext().put(Stub.USERNAME_PROPERTY, "foo); ((BindingProvider)port).getRequestContext().put(Stub.PASSWORD_PROPERTY, "foo); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067456#4067456 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067456 From do-not-reply at jboss.com Wed Jul 25 13:10:42 2007 From: do-not-reply at jboss.com (PeterJ) Date: Wed, 25 Jul 2007 13:10:42 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <32026629.1185383442669.JavaMail.jboss@colo-br-02.atl.jboss.com> I must say that your WSDL file looks very strange. It appears that for some reason that the method names are being treated as types. More on that in a second. The first thing I noticed was that JBossWS did not like List as a return type. When i deployed the web service I got this error: Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of | IllegalAnnotationExceptions | java.util.List is an interface, and JAXB can't handle interfaces. | this problem is related to the following location: | at java.util.List When I changed the return types to ArrayList, the error went away and the web service deployed just fine. Looking at my WSDL, one of the methods is defined by: | | | | | while for you it is defined as: | | | - | | This explains the error you are getting: anonymous wrote : Exception in thread "main" org.jboss.ws.WSException: Cannot obtain java type mapping for: {http://session.address.cmmgroup.com/}getAddressByPostCode because there is no such type, hence no type mapping. Unfortunately, I don't know what to tell you to do to correct this. As I said, your WSDL looks way different from mine. And other than changing the return types to ArrayList, the only other thing I did differently was I did not code up the entity bean (I hard-coded the return of a ArrayList containing two strings). Also, I did not try the client. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067515#4067515 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067515 From do-not-reply at jboss.com Wed Jul 25 15:10:32 2007 From: do-not-reply at jboss.com (chui) Date: Wed, 25 Jul 2007 15:10:32 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Problems with Web Services on JBoss 4.2.1 Message-ID: <6846133.1185390632168.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi there! I'm trying to run my application with JBoss AS 4.2.1, but I found some strange differences between 4.2.1 and 4.0.5 (which I was using before). It seems like JBoss 4.2.1 uses default values or default manners of naming everything!! Examples: 1-) With 4.0.5 I was using the namespace http://endpoints/jaws/ and everything was ok. But with 4.2.1, the operations' namespace comes from the package where the classes are. If I put my endpoint interfaces in a package "endpoints.jaws", I just can't call the service's methods because the operations' namespace becomes "http://jaws.endpoints". I avoided this error by changing my namespace to a simple "http://endpoints/" and putting the interfaces in the package "endpoints"... (But I'd like to know if it's possible to keep using http://endpoints/jaws, or JBoss 4.0.5 won't allow the deployment of these services anymore... =/) 2-) Well, when I changed the namespace, the webservices were available on JBossWS... and I got stuck. This is the error I receive: 2007-07-25 15:29:25,046 ERROR [org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS] SOAP request exception | org.jboss.ws.WSException: Cannot find child element: arg0 | at org.jboss.ws.core.CommonSOAPBinding.getParameterFromMessage(CommonSOAPBinding.java:866) | at org.jboss.ws.core.CommonSOAPBinding.unbindRequestMessage(CommonSOAPBinding.java:325) | at org.jboss.ws.core.server.AbstractServiceEndpointInvoker.invoke(AbstractServiceEndpointInvoker.java:187) | at org.jboss.ws.core.server.ServiceEndpoint.processRequest(ServiceEndpoint.java:212) | at org.jboss.ws.core.server.ServiceEndpointManager.processRequest(ServiceEndpointManager.java:448) | at org.jboss.ws.core.server.AbstractServiceEndpointServlet.doPost(AbstractServiceEndpointServlet.java:114) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:710) | at org.jboss.ws.core.server.AbstractServiceEndpointServlet.service(AbstractServiceEndpointServlet.java:75) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:803) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) | at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230) | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175) | at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179) | at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84) | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104) | at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157) | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241) | at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844) | at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:580) | at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) | at java.lang.Thread.run(Thread.java:595) As you can see, my WSDL file doesn't have this part name "arg0": | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Even if I replace the String_1 occurences by arg0 I get the error above. I don't know what to do, could anyone help me please??? Why does JBoss use this values instead of the WSDL values?! Thanks... Chui View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067567#4067567 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067567 From do-not-reply at jboss.com Wed Jul 25 15:36:02 2007 From: do-not-reply at jboss.com (chui) Date: Wed, 25 Jul 2007 15:36:02 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problems with Web Services on JBoss 4.2.1 Message-ID: <18454122.1185392162526.JavaMail.jboss@colo-br-02.atl.jboss.com> Oh, I don't know if this could help, but I'm using EJB3 Stateless Session Beans exposed as services and I set everything with annotations (instead of using deployment descriptors, webservices.xml, etc). At least this used to run with 4.0.5. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067575#4067575 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067575 From do-not-reply at jboss.com Wed Jul 25 15:52:33 2007 From: do-not-reply at jboss.com (andycooper) Date: Wed, 25 Jul 2007 15:52:33 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS-Security header encryption? Message-ID: <16540752.1185393153991.JavaMail.jboss@colo-br-02.atl.jboss.com> Well it appears that this is http://jira.jboss.org/jira/browse/JBWS-1296 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067579#4067579 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067579 From do-not-reply at jboss.com Wed Jul 25 21:41:07 2007 From: do-not-reply at jboss.com (chui) Date: Wed, 25 Jul 2007 21:41:07 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problems with Web Services on JBoss 4.2.1 Message-ID: <3694889.1185414067235.JavaMail.jboss@colo-br-02.atl.jboss.com> Phew! So sorry... but I solved the problem!!! The replacement wasn't functioning because, for some reason, I had to shutdown JBoss AS! When I runned the server again, the arg0 was found... Well... but it's so strange, do I really need to replace everything?!? I'll do this, but if anyone knows how to use the names generated by wstools, please tell me! ^^ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067646#4067646 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067646 From do-not-reply at jboss.com Wed Jul 25 21:58:34 2007 From: do-not-reply at jboss.com (chui) Date: Wed, 25 Jul 2007 21:58:34 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: how to get wstools working in jboss 4.2 Message-ID: <17560167.1185415114777.JavaMail.jboss@colo-br-02.atl.jboss.com> Hey, here I had to add this: set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/wsdl4j.jar | set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jboss-jaxrpc.jar | set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jboss-jaxws.jar | set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jboss-saaj.jar | set WSTOOLS_CLASSPATH=%WSTOOLS_CLASSPATH%;%JBOSS_HOME%/client/jbossws-client.jar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067649#4067649 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067649 From do-not-reply at jboss.com Thu Jul 26 09:25:35 2007 From: do-not-reply at jboss.com (dammog) Date: Thu, 26 Jul 2007 09:25:35 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: charset encoding problem with the jsr181pojo sample : ec Message-ID: <1309403.1185456335159.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, We have the same problem, we try to change the jvm parameter :-Dfile.encoding=UTF-8, to add the patch in jira and to change the web configuration (server.xml of jboss-web.deployer) It works with the french character as "?" but we still have problems with chinese char. Anyone has an idea? The platform is a Solaris 10 with jboss-4.2.0.GA (jbossws-1.2.1.GA) Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067807#4067807 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067807 From do-not-reply at jboss.com Thu Jul 26 10:39:55 2007 From: do-not-reply at jboss.com (chui) Date: Thu, 26 Jul 2007 10:39:55 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - ServiceFactoryImpl: deprecated? Message-ID: <7290929.1185460795589.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm using JAX-RPC and I have a DII client. When I added some jars from JBoss AS 4.2.1 to my application classpath, I received a warning about ServiceFactoryImpl being deprecated... Everything works fine, but I'd like to know if the AS 4.2.1 brings something to replace this factory. Can you help me, please?? O.o I searched but couldn't find the answer... However I can remove the warning if I use the jars from JBoss AS 4.0.5. Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067836#4067836 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067836 From do-not-reply at jboss.com Thu Jul 26 10:48:44 2007 From: do-not-reply at jboss.com (chui) Date: Thu, 26 Jul 2007 10:48:44 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Cannot obtain java type mapping Message-ID: <22161032.1185461324522.JavaMail.jboss@colo-br-02.atl.jboss.com> Maybe you need to use a mapping.xml file... If so, you shouldn't use ServiceFactory because it doesn't support invoking with the mapping file url (or at least it didn't). Mapping, however, is possible with ServiceFactoryImpl, which comes with JBoss AS. I'm new to 4.2.1 and I've never invoked that service, but I hope this answer can help you ^^ Cya! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067844#4067844 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067844 From do-not-reply at jboss.com Thu Jul 26 10:49:53 2007 From: do-not-reply at jboss.com (larryboymi) Date: Thu, 26 Jul 2007 10:49:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Message-ID: <21150855.1185461393099.JavaMail.jboss@colo-br-02.atl.jboss.com> Has anyone found a solution to this? I am experiencing the same problem. Considering storing the posted WSDL from the webservice and using it to compile my client. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067845#4067845 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067845 From do-not-reply at jboss.com Thu Jul 26 20:42:53 2007 From: do-not-reply at jboss.com (chris05atm) Date: Thu, 26 Jul 2007 20:42:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Message-ID: <7507022.1185496973013.JavaMail.jboss@colo-br-02.atl.jboss.com> I guess the problem is that a this is a totally valid error if the wsdl and message are incorrect. In my case I believe it was a Jboss issue just because it worked when I reinstalled with the same files... Hard to say without more information from you guys. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068059#4068059 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068059 From do-not-reply at jboss.com Fri Jul 27 03:49:05 2007 From: do-not-reply at jboss.com (ike) Date: Fri, 27 Jul 2007 03:49:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - User authorization in Web Service Message-ID: <27388608.1185522545313.JavaMail.jboss@colo-br-02.atl.jboss.com> How to setup user authentication in a web service? I have something like: @Stateless @WebService(endpointInterface="com.m1.sample.core.IRoleMgrWebService") @SecurityDomain("mydomain") public class RoleMgrEjbWeb implements IRoleMgrWebService { ... @AllowedRoles("role") public void doSomething() {...} } The client is like that: URL url = new URL("http://127.0.0.1:8080/RoleMgrEjbWebService/RoleMgrEjbWeb?wsdl"); QName qname = new QName("http://core.sample.m1.com/", "RoleMgrEjbWebService"); ServiceFactory factory = ServiceFactory.newInstance(); Service service = factory.createService(url, qname); IRoleMgrWebService ws = (IRoleMgrWebService) service.getPort(IRoleMgrWebService.class); ws.doSomething(); What should I write to pass user's credentials? I tried something like: URL url = Thread.currentThread().getContextClassLoader().getResource("auth.conf"); System.setProperty("java.security.auth.login.config", url.toString()); javax.security.auth.login.LoginContext lh = new javax.security.auth.login.LoginContext("aloe", new AloeLoginHandler("ike", "1")); lh.login(); But that works only if I call EJB's not service. Btw, is there any documentation about authentication and authorization in jboss web services? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068118#4068118 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068118 From do-not-reply at jboss.com Fri Jul 27 07:17:31 2007 From: do-not-reply at jboss.com (jhalliday) Date: Fri, 27 Jul 2007 07:17:31 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - jbossws 2.0 wsconsume problem Message-ID: <11417620.1185535051592.JavaMail.jboss@colo-br-02.atl.jboss.com> Trying to run wsconsume from 2.0.0.GA I got javax.xml.stream.FactoryConfigurationError: Provider com.ctc.wstx.stax.WstxInputFactory not found so I went and downloaded wstx-lgpl-3.1.2.jar, put in on the classpath and tried again. This time I got: $ wsconsume.sh -v -k wsctx.wsdl JBossWS-Native stack deployed parsing WSDL... Failed to parse the WSDL. Failed to invoke WsImport java.lang.IllegalStateException: WsImport invocation failed. Try the verbose switch for more information at org.jboss.ws.tools.jaxws.impl.SunRIConsumerImpl.consume(SunRIConsumerImpl.java:190) at org.jboss.wsf.spi.tools.cmd.WSConsume.importServices(WSConsume.java:216) at org.jboss.wsf.spi.tools.cmd.WSConsume.main(WSConsume.java:79) The verbose switch from the command line does not seem to get passed down to the SunRI code, so I'm stuck. Any ideas? The wsdl is from http://docs.oasis-open.org/ws-caf/ws-context/v1.0/OS/wsctx.wsdl if you want to try it yourself. Thanks Jonathan. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068162#4068162 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068162 From do-not-reply at jboss.com Fri Jul 27 07:41:01 2007 From: do-not-reply at jboss.com (rodgerca) Date: Fri, 27 Jul 2007 07:41:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <3687675.1185536461983.JavaMail.jboss@colo-br-02.atl.jboss.com> Thanks Peter, I'll have a play to see if I can work around this, I'll fill you in when I figure it out. I'm on a hibernate course next week so won't be looking at it for a few days. Clare View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068166#4068166 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068166 From do-not-reply at jboss.com Fri Jul 27 10:06:51 2007 From: do-not-reply at jboss.com (andycooper) Date: Fri, 27 Jul 2007 10:06:51 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: User authorization in Web Service Message-ID: <26555758.1185545211103.JavaMail.jboss@colo-br-02.atl.jboss.com> Try something like the following in your client: ((BindingProvider)port).getRequestContext().put(Stub.USERNAME_PROPERTY, "joe"); ((BindingProvider)port).getRequestContext().put(Stub.PASSWORD_PROPERTY, "dweeb"); I can't recall if this only works with WS-Security ... No, the documentation is not particularly good :-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068215#4068215 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068215 From do-not-reply at jboss.com Fri Jul 27 10:21:17 2007 From: do-not-reply at jboss.com (andycooper) Date: Fri, 27 Jul 2007 10:21:17 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: ServiceFactoryImpl: deprecated? Message-ID: <29786688.1185546077130.JavaMail.jboss@colo-br-02.atl.jboss.com> JAX-WS is the new direction. I don't know if they're planning on deprecating JAX-RPC support, but if I were you'd I'd move to using JAX-WS instead. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068222#4068222 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068222 From do-not-reply at jboss.com Fri Jul 27 15:47:48 2007 From: do-not-reply at jboss.com (ssuyamboo) Date: Fri, 27 Jul 2007 15:47:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Problem in running webservices client program Message-ID: <18390586.1185565668126.JavaMail.jboss@colo-br-02.atl.jboss.com> My webservices client program runs perfectly when the server was local PC. Then I deployed the webservice in different box and changed the wsdl as required. This time I was thrown with org.jboss.axis.AxisFault: Unexpected Error; nested exception is: java.lang.NoClassDefFoundError at org.jboss.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:303). Webservice I am using is using EJB end point interface. Here is my code snippet, String urlstr = "http://devbox:8080/orderprocessor/OrderRetriever?wsdl"; System.out.println( "Contacting webservice at " + urlstr ); URL url = new URL(urlstr); QName qname = new QName("http://something/", "OrderRetrieverService"); ServiceFactory factory = ServiceFactory.newInstance(); Service service = factory.createService( url, qname ); OrderRetriever order = ( OrderRetriever ) service.getPort( OrderRetriever.class ); for (int i = 0 ; i < argument.length ; i ++){ String doc = readDoc(argument); System.out.println("<>" + "doc is read" + "<>"); order.postOrder(doc); } The wsdl is accessible when I checked using URL http://devbox:8080/ws4ee/services. My local box is running with jboss 4.0.3 on windows and the other box where I am testing now is jboss 4.0.3 on linux. Any idea? Thanks Sundar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068358#4068358 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068358 From do-not-reply at jboss.com Fri Jul 27 16:02:07 2007 From: do-not-reply at jboss.com (dunks80) Date: Fri, 27 Jul 2007 16:02:07 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Change port in generated wsdl Message-ID: <27102510.1185566527623.JavaMail.jboss@colo-br-02.atl.jboss.com> Is there a way to generate a soap:address location with a different port value than the default? I'm using EJB3 SLSBs with javax.jws.* and org.jboss.ws.annotation.* annotations for my services. The generated wsdl file locates the services at http://mymachine:8180/myserviceurl/myservice I run the server behind an apache proxy using ajp with ProxyPass /myserviceurl ajp://localhost:8109/myserviceurl. So really i want the wsdl file to look like this ... ... Is there some annotation attribute i can set to change the way the wsdl generate the port? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068363#4068363 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068363 From do-not-reply at jboss.com Sat Jul 28 12:24:01 2007 From: do-not-reply at jboss.com (hubaghdadi) Date: Sat, 28 Jul 2007 12:24:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Generating WS artifacts Message-ID: <7343309.1185639841576.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi. I'm trying to create a web service using JEE1.4 servlets approach. How to generate the WSDL file and the other WS artifacts using JBoss AS tools? Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068459#4068459 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068459 From do-not-reply at jboss.com Sun Jul 29 12:22:00 2007 From: do-not-reply at jboss.com (wpfeiffe) Date: Sun, 29 Jul 2007 12:22:00 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: If I deploy more than one webservice I get Message-ID: <20923281.1185726120101.JavaMail.jboss@colo-br-02.atl.jboss.com> Can anyone provide the EJB 2.1 equivalent to: @WebContext(contextRoot="/beans") I've seen in the FAQ this bit of text: anonymous wrote : Use the explicit context root from webservices/context-root | | Can be set in jboss.xml and is only relevant for EJB endpoints. Can anyone clarify which file the webservices/context-root is referring to and the exact syntax? Any help would be appreciated. Thanks, Bill Pfeiffer View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068546#4068546 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068546 From do-not-reply at jboss.com Sun Jul 29 12:27:48 2007 From: do-not-reply at jboss.com (ike) Date: Sun, 29 Jul 2007 12:27:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: User authorization in Web Service Message-ID: <4188282.1185726468800.JavaMail.jboss@colo-br-02.atl.jboss.com> It causes ClassCastException (cannot cast port to BindingProvider). Actually, I've found another recommendation: ((Stub)port)._setProperty(Stub.USERNAME_PROPERTY, "joe"); ((Stub)port)._setProperty(Stub.PASSWORD_PROPERTY, "joe"); But it doesn't work too: javax.ejb.EJBAccessException: Authentication failure at org.jboss.ejb3.security.Ejb3AuthenticationInterceptor.handleGeneralSecurityException(Ejb3AuthenticationInterceptor.java:68) at org.jboss.aspects.security.AuthenticationInterceptor.invoke(AuthenticationInterceptor.java:70) at org.jboss.ejb3.security.Ejb3AuthenticationInterceptor.invoke(Ejb3AuthenticationInterceptor.java:106) at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) at org.jboss.ejb3.ENCPropagationInterceptor.invoke(ENCPropagationInterceptor.java:46) at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) at org.jboss.ejb3.asynchronous.AsynchronousInterceptor.invoke(AsynchronousInterceptor.java:106) at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101) at org.jboss.ejb3.stateless.StatelessContainer.localInvoke(StatelessContainer.java:214) at org.jboss.ejb3.stateless.StatelessContainer.localInvoke(StatelessContainer.java:184) at org.jboss.ejb3.stateless.StatelessContainer.localInvoke(StatelessContainer.java:174) at org.jboss.ws.integration.jboss42.ServiceEndpointInvokerEJB3.invokeServiceEndpointInstance(ServiceEndpointInvokerEJB3.java:114) at org.jboss.ws.core.server.AbstractServiceEndpointInvoker.invoke(AbstractServiceEndpointInvoker.java:207) at org.jboss.ws.core.server.ServiceEndpoint.processRequest(ServiceEndpoint.java:212) at org.jboss.ws.core.server.ServiceEndpointManager.processRequest(ServiceEndpointManager.java:448) at org.jboss.ws.core.server.AbstractServiceEndpointServlet.doPost(AbstractServiceEndpointServlet.java:114) at javax.servlet.http.HttpServlet.service(HttpServlet.java:710) at org.jboss.ws.core.server.AbstractServiceEndpointServlet.service(AbstractServiceEndpointServlet.java:75) at javax.servlet.http.HttpServlet.service(HttpServlet.java:803) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175) at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179) at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104) at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:580) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:595) When I debug UserPasswordLoginModule I see that both login and password are nulls :( Are @SecurityDomain and @RolesAllowed intended to web servicess too, not only for EJB's? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068547#4068547 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068547 From do-not-reply at jboss.com Sun Jul 29 20:56:30 2007 From: do-not-reply at jboss.com (lowecg2004) Date: Sun, 29 Jul 2007 20:56:30 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBOSS-WS Client not sending COOKIE after 2 calls Message-ID: <10114843.1185756990955.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello, I'm using 2.0.0 web services in a similar way to the author but I'm getting some slightly different problems with sessions. I call a web service method that creates a HttpSession and saves some state to that session using httpSession.setAttribute("userId", userId). At the client, I get JSESSIONID back from a HTTP cookie which I pass on to a subsequent call to a servlet that is part of the same JEE context. In the servlet I verify that httpSession.getId() matches the session ID created in the web service, however a call to httpSession.getAttribute("userId") is null. Could this be part of the same problem? The web service is declared under Seam 2.0.0b1, so is it possible that this could also be part of the problem? To try and see if I could work around the issue, I thought I would experiment and create a jsession in a separate servlet call and then make the web service call participate in the existing session (rather than rely on the web service creating the session). Now I cannot even get a cookie (or any other HTTP header value for that matter) to pass to the server. After reading the following: https://jax-ws.dev.java.net/guide/HTTP_compression.html I thought that this code would work: final DevelopmentService_Service service = new DevelopmentService_Service(); | final DevelopmentService proxy = service.getDevelopmentServicePort(); | ((BindingProvider)proxy).getRequestContext().put(BindingProvider.SESSION_MAINTAIN_PROPERTY, true); | | final HttpCookie jSessionId = getJSessionId(); | ((BindingProvider)proxy).getRequestContext().put(MessageContext.HTTP_REQUEST_HEADERS, | Collections.singletonMap("Cookie",Collections.singletonList(jSessionId.toString()))); But no joy. Incidentally, the HTTP compression example given at the URL above doesn't work either. Should I be able to pass HTTP parameters from the client to the server in this way? Cheers, Chris. Clients were generated using wsconsume JBossWS 2.0.0.GA JBossAS 4.2.0.GA JBoss Seam 2.0.0.b1 Java 1.6.0_02 client and server View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068575#4068575 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068575 From do-not-reply at jboss.com Mon Jul 30 04:47:44 2007 From: do-not-reply at jboss.com (lowecg2004) Date: Mon, 30 Jul 2007 04:47:44 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: setHeader and setServerURL, using javax.xml.ws.Service? Message-ID: <6066507.1185785264135.JavaMail.jboss@colo-br-02.atl.jboss.com> Eric, Did you ever find a solution to setting the sessionId and setHeaders? Regards, Chris. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068633#4068633 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068633 From do-not-reply at jboss.com Mon Jul 30 08:16:01 2007 From: do-not-reply at jboss.com (dunks80) Date: Mon, 30 Jul 2007 08:16:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Change port in generated wsdl Message-ID: <7547800.1185797761230.JavaMail.jboss@colo-br-02.atl.jboss.com> Looks like all you have to do is comment out the jboss.bind.address in the jboss-beans.xml file and the address will automatically be rewritten View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068695#4068695 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068695 From do-not-reply at jboss.com Mon Jul 30 09:59:37 2007 From: do-not-reply at jboss.com (sneha_munnangi) Date: Mon, 30 Jul 2007 09:59:37 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - org.jboss.xb.binding.JBossXBRuntimeException: Neither getter Message-ID: <29022277.1185803977265.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi , Iam developing webservice using Jbossws. I have a problem acessing webservice methods. All the methods return a type of string or void. These methods when invoked gives me the following exception : 17:48:21,080 ERROR [SOAPFaultExceptionHelper] SOAP request exception javax.xml.rpc.JAXRPCException: Cannot create or send response message at org.jboss.ws.server.ServiceEndpoint.postProcessResponse(ServiceEndpoint.java:311) at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.java:236) at org.jboss.ws.server.ServiceEndpointServlet.doPost(ServiceEndpointServlet.java:120) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at javax.servlet.http.HttpServlet.service(HttpServlet.java:810) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:524) at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869) at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112) at java.lang.Thread.run(Thread.java:534) Caused by: org.jboss.xb.binding.JBossXBRuntimeException: Neither getter nor field where found for defaultAssertionStatus in class java.lang.ClassL at org.jboss.xb.binding.MappingObjectModelProvider$FieldToElementMapping.(MappingObjectModelProvider.java:368) at org.jboss.xb.binding.MappingObjectModelProvider.mapFieldToElement(MappingObjectModelProvider.java:71) at org.jboss.ws.jaxb.JAXBMarshallerImpl.marshal(JAXBMarshallerImpl.java:149) at org.jboss.ws.jaxrpc.encoding.JAXBSerializer.serialize(JAXBSerializer.java:100) at org.jboss.ws.soap.SOAPContentElement.getXMLFragment(SOAPContentElement.java:172) at org.jboss.ws.soap.SOAPContentElement.expandToDOM(SOAPContentElement.java:844) at org.jboss.ws.soap.SOAPContentElement.getChildNodes(SOAPContentElement.java:761) at org.jboss.util.xml.DOMWriter.printInternal(DOMWriter.java:211) at org.jboss.util.xml.DOMWriter.printInternal(DOMWriter.java:270) at org.jboss.util.xml.DOMWriter.printInternal(DOMWriter.java:270) at org.jboss.util.xml.DOMWriter.print(DOMWriter.java:186) at org.jboss.util.xml.DOMWriter.printNode(DOMWriter.java:135) at org.jboss.ws.server.ServiceEndpoint.postProcessResponse(ServiceEndpoint.java:305) Any help on this would be really helpful and highly appreciated. Thanks in advance --sneha View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068732#4068732 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068732 From do-not-reply at jboss.com Mon Jul 30 11:02:03 2007 From: do-not-reply at jboss.com (jkemp101) Date: Mon, 30 Jul 2007 11:02:03 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - .Net parameter interoperabilty Message-ID: <8578772.1185807723148.JavaMail.jboss@colo-br-02.atl.jboss.com> We have been trying to fix this problem for .Net clients. The java2wsdl generated file has the parameters as a element that references a complex type. Unfortunately the proxy classes .Net creates interprets this as a separate object that needs to be passed into the method. .Net seems to want the element tag to wrap the type definition. Otherwise it sticks in this extra object as the parameter. Is there a easy way to control the way java2wsdl creates the wsdl file? I have examples below of both formats. java2wsdl format: Desired .Net friendly format: Our WebSphere servers are creating the ".Net Friendly" format but they are probably built on an earlier version of axis. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068768#4068768 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068768 From do-not-reply at jboss.com Mon Jul 30 11:05:47 2007 From: do-not-reply at jboss.com (jkemp101) Date: Mon, 30 Jul 2007 11:05:47 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: .Net parameter interoperabilty Message-ID: <33345077.1185807947868.JavaMail.jboss@colo-br-02.atl.jboss.com> The XML did not stick java2wsdl format: | | | | | | | | | Desired .Net friendly format: | | | | | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068769#4068769 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068769 From do-not-reply at jboss.com Mon Jul 30 15:59:47 2007 From: do-not-reply at jboss.com (stattit) Date: Mon, 30 Jul 2007 15:59:47 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Unable to get the service operation name in Handler, was wor Message-ID: <22978954.1185825587585.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, We have a utility method in our parent handler viz. getOperationName() that retrieves the service operation name using the following code construct msgContext.getOperationMetaData().getJavaName(); We started out with JBossWS 1.2.0 on JBoss 4.0.5. However this method throws a NPE on all later versions of JBossWS (We have tried 1.2.1 GA and also 2.0.0 GA with JBoss versions 4.0.5 and 4.2) Is this call no longer valid? The parent handler extends from GenericHandler viz. public abstract class AbstractAspectHandler extends GenericHandler Any help in this matter is appreciated. Regards Sandesh View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068874#4068874 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068874 From do-not-reply at jboss.com Mon Jul 30 16:18:02 2007 From: do-not-reply at jboss.com (eric@attask.com) Date: Mon, 30 Jul 2007 16:18:02 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: setHeader and setServerURL, using javax.xml.ws.Service? Message-ID: <17458169.1185826682788.JavaMail.jboss@colo-br-02.atl.jboss.com> I wasn't able to find a solution, I'm currently using AXIS. I'd love to switch over - but no one knows how to do this. Not even the jboss team has responded to this thread. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068886#4068886 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068886 From do-not-reply at jboss.com Mon Jul 30 16:55:39 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 30 Jul 2007 16:55:39 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: setHeader and setServerURL, using javax.xml.ws.Service? Message-ID: <28255094.1185828939861.JavaMail.jboss@colo-br-02.atl.jboss.com> We have support to bound and unbound headers. | public void testUnboundInHeader() throws Exception | { | // Add a header to the stub | StubExt stub = (StubExt)port; | QName xmlName = new QName("http://otherns", "HeaderValue"); | stub.addUnboundHeader(xmlName, Constants.TYPE_LITERAL_STRING, String.class, ParameterMode.IN); | stub.setUnboundHeaderValue(xmlName, "Unbound IN header message"); | | port.testInHeader("Hello world!", "IN header message"); | | String unboundRet = (String)stub.getUnboundHeaderValue(xmlName); | assertEquals("Unbound OUT header message", unboundRet); | } | This should work for jaxrpc and jaxws View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068897#4068897 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068897 From do-not-reply at jboss.com Mon Jul 30 17:05:58 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 30 Jul 2007 17:05:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Message-ID: <8115392.1185829558752.JavaMail.jboss@colo-br-02.atl.jboss.com> Are you saying you have a wsdl that you feed into wsconsume. Then you implement an endpoint based on the generated SEI and it cannot be called. If that's the case, please create a JIRA issue and attach the wsdl to it. The issue should be linked to this forum thread View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068903#4068903 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068903 From do-not-reply at jboss.com Mon Jul 30 17:10:58 2007 From: do-not-reply at jboss.com (eric@attask.com) Date: Mon, 30 Jul 2007 17:10:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: setHeader and setServerURL, using javax.xml.ws.Service? Message-ID: <22009719.1185829858850.JavaMail.jboss@colo-br-02.atl.jboss.com> Yeah I too could do the simple "Hello World", but i don't know how to include a complex type, such as | | | QwWsHJyTPW.1pd0_jXlNKOSU | | as a header. Notice it wraps sessionId inside SessionHeader. I've tried a number of things including StubExt soapStub = (StubExt)soapBinding; | QName headerQ = new QName(service.getServiceName().getNamespaceURI(), "SessionHeader"); | QName sessionId = new QName(service.getServiceName().getNamespaceURI(), "SessionHeader", "sessionId"); | soapStub.addUnboundHeader(headerQ, Constants.TYPE_LITERAL_STRING, String.class, ParameterMode.IN); | soapStub.setUnboundHeaderValue(sessionId, "QwWsHJyTPW.1pd0_jXlNKOSU"); but that only managed to produce: | QwWsHJyTPW.1pd0_jXlNKOSU I've tried several other things bug I haven't had much luck. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068906#4068906 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068906 From do-not-reply at jboss.com Mon Jul 30 17:31:27 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 30 Jul 2007 17:31:27 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: setting up an ssl web service & client Message-ID: <22018726.1185831087067.JavaMail.jboss@colo-br-02.atl.jboss.com> Our test clients use this | | | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068916#4068916 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068916 From do-not-reply at jboss.com Mon Jul 30 17:40:41 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 30 Jul 2007 17:40:41 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Documentation on generated WSDLs Message-ID: <23679348.1185831641251.JavaMail.jboss@colo-br-02.atl.jboss.com> Schema generation is delegated to jaxb, so I guess there is not. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068920#4068920 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068920 From do-not-reply at jboss.com Mon Jul 30 19:51:29 2007 From: do-not-reply at jboss.com (chris05atm) Date: Mon, 30 Jul 2007 19:51:29 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Message-ID: <22947627.1185839489313.JavaMail.jboss@colo-br-02.atl.jboss.com> In the end it appeared to be something unrelated to either the wsdl, or generated java code. After a clean install of JBoss the same war file worked just fine. I believe there was some kind of cache/cleanup/whatever issue that prevented things from working properly. The order of events can be followed when viewing the entirety of the thread. I tried to isolate the differences but could not easily. No further deployments have caused issues or resulted in similar problems. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068950#4068950 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068950 From do-not-reply at jboss.com Tue Jul 31 08:20:01 2007 From: do-not-reply at jboss.com (lowecg2004) Date: Tue, 31 Jul 2007 08:20:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBOSS-WS Client not sending COOKIE after 2 calls Message-ID: <8982184.1185884401702.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello All, I really could use some help on this, I've exausted all my avenues of investigation and have become stuck. As I understand it, getting the client to pass on a JSESSIONID cookie to the server is the only way I can use the JBossWS clients with a Seam web service. I also believe it could offer a work around to the author's issue too. Kind Regards, Chris. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069138#4069138 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069138 From do-not-reply at jboss.com Tue Jul 31 08:55:22 2007 From: do-not-reply at jboss.com (subramaniam.venkat) Date: Tue, 31 Jul 2007 08:55:22 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Transaction Not Allowed Message-ID: <13484844.1185886522278.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello All, I have exposed an SLSB as an web-service. There is no transaction on this SLSB which i have implemented. But this SLSB makes calls to Springs Beans on which transaction has been implemented. I am getting the below error and i am not able to find a reason for this. I am using Jboss-4.0.3-SP1 and JDK142. Can someone give me some pointer. Thanks in advance, Subramaniam V | java.rmi.ServerException: EJBException:; nested exception is: | javax.ejb.EJBException: Transaction not allowed | at org.jboss.ejb.plugins.LogInterceptor.handleException(LogInterceptor.java:352) | at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:125) | at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:93) | at org.jboss.ejb.SessionContainer.internalInvokeHome(SessionContainer.java:613) | at org.jboss.ejb.Container.invoke(Container.java:894) | at sun.reflect.GeneratedMethodAccessor148.invoke(Unknown Source) | at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | at java.lang.reflect.Method.invoke(Method.java:324) | at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141) | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80) | at org.jboss.mx.server.Invocation.invoke(Invocation.java:72) | at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245) | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644) | at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:155) | at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:104) | at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:179) | at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:165) | at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46) | at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:55) | at org.jboss.proxy.ejb.HomeInterceptor.invoke(HomeInterceptor.java:169) | at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:86) | at $Proxy98.create(Unknown Source) | at sun.reflect.GeneratedMethodAccessor322.invoke(Unknown Source) | at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | at java.lang.reflect.Method.invoke(Method.java:324) | at org.jboss.net.axis.server.EJBProvider.makeNewServiceObject(EJBProvider.java:140) | at org.jboss.axis.providers.java.JavaProvider.getNewServiceObject(JavaProvider.java:280) | at org.jboss.axis.providers.java.JavaProvider.getServiceObject(JavaProvider.java:131) | at org.jboss.axis.providers.java.JavaProvider.invoke(JavaProvider.java:335) | at org.jboss.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:73) | at org.jboss.axis.SimpleChain.doVisiting(SimpleChain.java:160) | at org.jboss.axis.SimpleChain.invoke(SimpleChain.java:123) | at org.jboss.axis.handlers.soap.SOAPService.invoke(SOAPService.java:560) | at org.jboss.axis.server.AxisServer.invoke(AxisServer.java:355) | at org.jboss.axis.transport.http.AxisServlet.doPost(AxisServlet.java:911) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) | at org.jboss.axis.transport.http.AxisServletBase.service(AxisServletBase.java:370) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) | at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) | at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39) | at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159) | at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) | at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59) | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) | at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856) | at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744) | at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) | at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80) | at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) | at java.lang.Thread.run(Thread.java:534) | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069148#4069148 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069148 From do-not-reply at jboss.com Tue Jul 31 10:49:27 2007 From: do-not-reply at jboss.com (fheldt) Date: Tue, 31 Jul 2007 10:49:27 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - BASIC Authentication with jbossws-2.0.0.GA Message-ID: <3786217.1185893367374.JavaMail.jboss@colo-br-02.atl.jboss.com> I had some time to spend and did a short test of jbossws-2.0.0.GA (under jboss-4.2.1.GA). Most Webservices worked like under jbossws-1.2.0, but then i found a big problem. A secured SLSB that worked without a problem with a .NET 2.0 Client stopped working :-( I always get "Authentification failed" under jbosss-2.0.0.GA. | @Stateless | @WebService | @SOAPBinding( | style=SOAPBinding.Style.RPC, | use=SOAPBinding.Use.LITERAL | ) | @SecurityDomain("myRealm") | @RolesAllowed({"Admin", "Operator", "User"}) | @WebContext(authMethod="BASIC", transportGuarantee="NONE", secureWSDLAccess=false) | public class WebServiceEJB implements WebServiceIf | { | ... | } | Any hints what has changed here? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069198#4069198 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069198 From do-not-reply at jboss.com Tue Jul 31 14:13:58 2007 From: do-not-reply at jboss.com (amalkovskiy) Date: Tue, 31 Jul 2007 14:13:58 -0400 (EDT) Subject: [jbossws-users] =?utf-8?q?=5BJBossWS=5D_-_Problem_with_encoding_?= =?utf-8?b?J8KnJyBjaGFyYWN0ZXIgKChjaGFyKTE2Nyk=?= Message-ID: <2999555.1185905638276.JavaMail.jboss@colo-br-02.atl.jboss.com> I have a simple DTO object: public class TestDTO { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } } and q simple web-service method: public String test(TestDTO t) { String string = "Hello " + t.getName() + " special char = " + (char)167; System.out.println(string); System.out.println(string.length()); return string; } When I use this method TestDTO t = new TestDTO(); t.setName("Test ?"); String str = entitySrv.test(t); System.out.println(str); I receive a string "Hello Test ?? special char = ?" instead "Hello Test ? special char = ?". I saw that 'B' before '?' is added by JAXB when this object is being marshalled to XML. But in a request to the server a message looks like: Test ???? Inside the web-service method the field name is "Test ??" instead of "Test ?". It looks like double encoding of '?' character. I use JBossWS 1.2.1.GA and JBoss 4.2.0GA. Regards, Alexey View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069307#4069307 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069307 From do-not-reply at jboss.com Tue Jul 31 14:25:59 2007 From: do-not-reply at jboss.com (marcelvanvelzen) Date: Tue, 31 Jul 2007 14:25:59 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jb0ss4.2.0, JAX-WS2.0 deployment exception Message-ID: <17351858.1185906359868.JavaMail.jboss@colo-br-02.atl.jboss.com> I encountered the same error when I had the same webmethod in two different classes with different parameters. Renaming the webmethod names solved this problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069313#4069313 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069313