From do-not-reply at jboss.com Wed Aug 1 04:24:49 2007 From: do-not-reply at jboss.com (FabBoco) Date: Wed, 1 Aug 2007 04:24:49 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - SSL & Authorization Message-ID: <21389985.1185956689505.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi guys, I really need some directions from you. I have a test ws: | @Stateless | @WebService(name = "wstest", serviceName = "wstest") | @WebContext(contextRoot = "/ma", transportGuarantee="NONE", secureWSDLAccess = false) | @Remote(WsTest.class) | @RemoteBinding | @SOAPBinding(style = SOAPBinding.Style.DOCUMENT) | public class WsTestBean implements WsTest | { | Logger log = Logger.getLogger(WsTestBean.class); | | @WebMethod | public String echo(String message) | { | return message; | } | } | deployed into Jboss 4.2.0 Using wsconsume I prepared the proxy and my client is able to call the ws: | public class WsTestClient | { | | public static void main(String[] args) | { | System.out.println("WsTest Client Start"); | | | Wstest_Service ws = new Wstest_Service(); | | Wstest wsTest = ws.getWstestPort(); | | System.out.println("Echo message: "+wsTest.echo("Ciao Ciao sono Fabrizio")); | | System.out.println("WsTest Client End"); | } | | } | What I have to do now (for a real application !) is: 1) use SSL 2) enforce authentication (only authorized user can call the ws) I have changed the servers as follows: | | @WebContext(contextRoot = "/ma", transportGuarantee="CONFIDENTIAL", secureWSDLAccess = false) | | and than the SSL should be ok. The ServiceEndpointAddress switch from http://.....?wsdl to https://.....?wsdl Then I have tried to regenerate the proxy using wsconsume and I get the following error: | failed to parse document at "https://fabocoxp2:8443/ma/WsTestBean?wsdl": javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target | at org.jboss.com.sun.tools.ws.processor.modeler.wsdl.WSDLModeler.buildModel(WSDLModeler.java:215) | at org.jboss.com.sun.tools.ws.processor.config.ModelInfo.buildModel(ModelInfo.java:88) | at org.jboss.com.sun.tools.ws.processor.Processor.runModeler(Processor.java:82) | at org.jboss.com.sun.tools.ws.wscompile.CompileTool.run(CompileTool.java:543) | at org.jboss.com.sun.tools.ws.util.ToolBase.run(ToolBase.java:57) | at org.jboss.ws.tools.jaxws.impl.WSContractConsumerImpl$1.run(WSContractConsumerImpl.java:163) | at org.jboss.ws.tools.jaxws.impl.WSContractConsumerImpl.consume(WSContractConsumerImpl.java:166) | at org.jboss.ws.tools.jaxws.command.wsconsume.importServices(wsconsume.java:193) | at org.jboss.ws.tools.jaxws.command.wsconsume.main(wsconsume.java:76) | Caused by: failed to parse document at "https://fabocoxp2:8443/ma/WsTestBean?wsdl": javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target | at org.jboss.com.sun.tools.ws.wsdl.parser.WSDLParser.buildDocumentFromWSDL(WSDLParser.java:318) | at org.jboss.com.sun.tools.ws.wsdl.parser.WSDLParser.parseDefinitions(WSDLParser.java:222) | at org.jboss.com.sun.tools.ws.wsdl.parser.WSDLParser.parse(WSDLParser.java:213) | at org.jboss.com.sun.tools.ws.processor.modeler.wsdl.WSDLModeler.buildModel(WSDLModeler.java:166) | ... 8 more | Caused by: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target | at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:150) | at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1518) | at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:174) | at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:168) | at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:848) | at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:106) | at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:495) | at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:433) | at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:818) | at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1030) | at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1057) | at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1041) | at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:402) | at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:170) | at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:938) | at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:234) | at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source) | at org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown Source) | at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) | at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) | at org.apache.xerces.parsers.XMLParser.parse(Unknown Source) | at org.apache.xerces.parsers.DOMParser.parse(Unknown Source) | at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source) | at org.jboss.com.sun.tools.ws.wsdl.parser.WSDLParser.buildDocumentFromWSDL(WSDLParser.java:276) | ... 11 more | Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target | at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:221) | at sun.security.validator.PKIXValidator.engineValidate(PKIXValidator.java:145) | at sun.security.validator.Validator.validate(Validator.java:203) | at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:172) | at com.sun.net.ssl.internal.ssl.JsseX509TrustManager.checkServerTrusted(SSLContextImpl.java:320) | at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:841) | ... 30 more | Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target | at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(SunCertPathBuilder.java:236) | at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:194) | at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:216) | ... 35 more | error: failed to parse document at "https://fabocoxp2:8443/ma/WsTestBean?wsdl": javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target | I think that I have to put a certificate somewhere ! Reading documentation I realized that I have to configure: boss-wsse-server.xml and jboss-wsse-client.xml but I can't find a step-by-step procedure. What about authorization ? Thank you in advance for any help. Regards Fabrizio View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069518#4069518 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069518 From do-not-reply at jboss.com Wed Aug 1 12:34:29 2007 From: do-not-reply at jboss.com (bglasco) Date: Wed, 1 Aug 2007 12:34:29 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Usefull example Message-ID: <20541718.1185986069475.JavaMail.jboss@colo-br-02.atl.jboss.com> Are there any usefull examples available? Something that returns something other than a string. Like a Map? This is alot of work to return String values. thx Barry View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069737#4069737 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069737 From do-not-reply at jboss.com Wed Aug 1 19:09:42 2007 From: do-not-reply at jboss.com (ragr) Date: Wed, 1 Aug 2007 19:09:42 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Availability of Jbossws-2.1.0 Message-ID: <1862917.1186009782281.JavaMail.jboss@colo-br-02.atl.jboss.com> Is there a beta or daily build of Jbossws-2.1.0 available for pre-release trials? When is the beta or GA date for Jbossws-2.1.0? Thank you. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069839#4069839 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069839 From do-not-reply at jboss.com Thu Aug 2 00:14:43 2007 From: do-not-reply at jboss.com (jyc5131) Date: Thu, 2 Aug 2007 00:14:43 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: asynchronous webservice posible with jboss ? Message-ID: <3273631.1186028084335.JavaMail.jboss@colo-br-02.atl.jboss.com> good question, i am finding it now too, any help is appreciated View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069882#4069882 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069882 From do-not-reply at jboss.com Thu Aug 2 02:42:01 2007 From: do-not-reply at jboss.com (FabBoco) Date: Thu, 2 Aug 2007 02:42:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: SSL & Authorization Message-ID: <9649606.1186036921061.JavaMail.jboss@colo-br-02.atl.jboss.com> Please gurus, can you provide to me some pointers to step-by-step documentation ? Thanks Fab. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069913#4069913 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069913 From do-not-reply at jboss.com Thu Aug 2 05:11:41 2007 From: do-not-reply at jboss.com (matt_law) Date: Thu, 2 Aug 2007 05:11:41 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: wstools error in wsdl2java Message-ID: <6480959.1186045901955.JavaMail.jboss@colo-br-02.atl.jboss.com> I have got this problem as well. From what I can find out it is caused by the types, possibly the request and response in John's wsdl. My wsdl is from a 3rd party application so I can't change it much, but I would like to know what I can do to fix it. I have included the WSDL & XSD docs below WSDL | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This operation is used to logon to ImageNow via the Message Agent. A logon object is returned and this data is used to set the context for the session that is used for every subsequent client-server communication. | | | | | | This operation is used to end a Message Agent session. | | | | | | This operation is used to see if a particular user name is a valid ImageNow user. | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | General Information | Perceptive Software's ImageNow(TM) product provides document imaging and management functionality including a document-centric workflow implementation. Perceptive Software's Message Agent exposes a subset of this functionality as web services. | This WSDL defines the basic access (authentication/authorization) web services available for use in Message Agent client programs. | | | XSD 1 | | | | Schema defines the access data types needed to access ImageNow via the Message Agent. | | | Begin document-literal-wrapped style types definition. Element names exactly match operation names in the corresponding WSDL and the element's complex type has no attributes. | | | | Defines parameters to begin a Message Agent client session using a user account in ImageNow. | | | | | | | | ImageNow password for the user. | | | | | | | | | | | Defines parameters to end a Message Agent session. | | | | | | | | | | Defines parameters to check if a particular user name is a valid ImageNow user. | | | | | | | User name. | | | | | | | Begin supporting data types. | | | | Contains authentication parameters for Message Agent. | | | | | | | | Expiration for the logon object. | | | | | | | | Port number for the Message Agent server. Default port numbers are 6070/6075 for HTTP/HTTPS. | | | | XSD 2 | | | Schema defines data types common to more than one ImageNow service as exposed by Message Agent. | | | | Common Message Agent exception object related to ImageNow web services. | | | | | | ID of the exception. | | | | | Unique error code for the exception. | | | | | Error message associated with the error code. | | | | | | | | | | | | | Represents the user's context that is passed back and forth between the Message Agent client and server for purposes of utilizing ImageNow functionality via web services. | | | | | | | | | | | Username, as defined in ImageNow, of the user coming through the bridge. Security permissions and auditing will be conducted on this username. | | | | | | | | Name of the user in ImageNow. | | | | | Name of the user in ImageNow. | | | | | | | | Name of a Drawer in ImageNow. | | | | | | | | Name of a Drawer in ImageNow. | | | | | Document keys used to uniquely index documents in ImageNow. | | | | Document keys used to uniquely index documents in ImageNow. | | | | | | Logical representation of a folder inside a drawer. | | | | | Logical representation of a tab inside a folder. | | | | | Additional field to further uniquely qualify a document. | | | | | Additional field to furhter uniquely qualify a document. | | | | | Additional field to further uniquely qualify a document. | | | | | | | | Limits the length of a document key to 39 characters. | | | | | | | | Unique identifier for a document in ImageNow. | | | | | Common type for unique ID fields. | | | | | | | | Holds key word values for a particular document in ImageNow. | | | | | | | | | | Logical represenation of the data comprising an ImageNow document. | | | | | | | Total number of pages in the document. | | | | | | ID of the scan user. | | | | | Name of the scan user. | | | | | | UserID for user making last modification to the document. | | | | | Name of last user to modify the document. | | | | | | ID of the last user to view a document. | ID of the last user to view a document. | | | | | User name of the last person to view a document. | | | | | Time the document was last viewed. | | | | | Free field. Can be used for keywords. | | | | | | | | | | ID of the current workflow queue. | | | | | | | | | | | Describes state of the document in relation to workflow such as "idle." | | | | | | ID of user working with document in workflow. | | | | | Name of the workflow user name. | | | | | | | | Selector to identify whether to use DOC_KEYS (KEYS) or DOC_ID (DOCID). | | | | | Selector to identify whether to use KEYS or DOCID when working with documents. | | | | | | | | | Name of an ImageNow workflow queue. | | | | | Name of an ImageNow workflow queue. | | | | | | | | Unique ID for a document in workflow. | | | | | Defines the state of a workflow item. Possible settings are: IDLE, WORKING, HOLDING, PENDING, FINISHED, COMPLETED, and ANY. | | | | | | | | | | | | | | | | | Date and time scan occurred. | | | | | Time the document was last modified. | | | | | Hostname of the Message Agent server. | | | | | An application specific context used primarily to identify that a "client" is acting as a bridge for other users and to identify whether the AUDIT_USER field should be evaluated. | | | | | Placeholder for internationalization or browser location value. | | | | | A session string representing the user's context | | | | | Uses an integer to represent success or failure. 0 implies a non-positive result which will likely spawn an exception and a value of 1 represents success. | | | | | Determines amount of time to wait for a response. Units in seconds. | | | | | This time is represented as seconds elapsed since midnight (00:00:00), January 1, 1970, coordinated universal time (UTC). A normative representation is 1093292609:279889 representing the seconds:microseconds since 1JAN70. | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069997#4069997 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069997 From do-not-reply at jboss.com Thu Aug 2 06:31:03 2007 From: do-not-reply at jboss.com (matt_law) Date: Thu, 2 Aug 2007 06:31:03 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Deployment exception with JbossWs 2.0.0 - Cannot find servic Message-ID: <6327202.1186050663168.JavaMail.jboss@colo-br-02.atl.jboss.com> I am deploying a set of EJB3 classes to JBoss 4.0.5 which has EJB3 rc9 & JBossWS 2.0.0 installed. Previously the ejbs have been deployed to jboss 4.0.4 with ejb3 rc9 & jbossws 1.2 with no errors. Now when I start jboss I get the following error | 11:21:49,965 ERROR [MainDeployer] Could not start deployment: file:/C:/Development/jboss/jboss-4.0.5.GA.TMP/server/default/deploy/GermanPatientHistoryEJB.jar | javax.xml.ws.WebServiceException: Cannot find service endpoint target: jboss.j2ee:name=AddressServiceBean,service=EJB3,jar=GermanPatientHistoryEJB.jar | at org.jboss.wsf.container.jboss40.InvocationHandlerEJB3.start(InvocationHandlerEJB3.java:70) | at org.jboss.wsf.spi.deployment.BasicLifecycleHandler.start(BasicLifecycleHandler.java:57) | at org.jboss.wsf.stack.jbws.LifecycleHandlerImpl.start(LifecycleHandlerImpl.java:40) | at org.jboss.wsf.spi.deployment.EndpointLifecycleDeployer.start(EndpointLifecycleDeployer.java:49) | at org.jboss.wsf.spi.deployment.BasicDeployerManager.deploy(BasicDeployerManager.java:81) | at org.jboss.wsf.container.jboss42.MainDeployerHook.deploy(MainDeployerHook.java:46) | at org.jboss.wsf.container.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:90) | at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188) | at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95) | 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.start(Unknown Source) | This is despite the fact that I can see the WSDL has been deployed and the endpoint registered - | 11:21:49,903 INFO [BasicEndpointRegistry] register: jboss.ws:context=GermanPatientHistoryEJB,endpoint=AddressServiceBean | I can even view the WSDL through the browser once JBoss completes startup. However, any attempt to invoke them fails. I have not changed any annotations in the beans as it all looks to be the same as per the User Guide. I do not understand where the deployer is looking for the endpoint, or what might cause this problem. Any help, suggestions would be great. Matt. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070039#4070039 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070039 From do-not-reply at jboss.com Thu Aug 2 10:53:22 2007 From: do-not-reply at jboss.com (kodham) Date: Thu, 2 Aug 2007 10:53:22 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS supports pluggable Web Service stacks Message-ID: <32402555.1186066403206.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi Thomas, When is the expected release date of JBossWS-2.1.0? I am hoping to solve the type substitiution issue in the jbossws 2.0.0 GA by upgrading to 2.1.0 Thank you! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070141#4070141 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070141 From do-not-reply at jboss.com Thu Aug 2 12:13:11 2007 From: do-not-reply at jboss.com (rashmi_yes) Date: Thu, 2 Aug 2007 12:13:11 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Can I call webservice in another server from my server? Message-ID: <23166687.1186071191099.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi friends, I have big issue with me. I am having a web service client. I have downloaded all the web service interfaces from the server(X) using the WSDL file. It works fine. But now i want to call the web service in the server(X) from my JBoss server(Y). Is it possible? I copied all the web service interface class files(made as Jar) from client to my server & tried to call the web service with same procedure as like the client call. It is not working. It it possible? Please help me on this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070173#4070173 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070173 From do-not-reply at jboss.com Thu Aug 2 12:49:37 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Thu, 2 Aug 2007 12:49:37 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: asynchronous webservice posible with jboss ? Message-ID: <26335988.1186073377848.JavaMail.jboss@colo-br-02.atl.jboss.com> Read about the JAX-WS client programming models. There is a difference between asynchronous and one-way invocations: http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_User_Guide#Web_Service_Clients View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070189#4070189 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070189 From do-not-reply at jboss.com Thu Aug 2 12:52:58 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Thu, 2 Aug 2007 12:52:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Availability of Jbossws-2.1.0 Message-ID: <27820706.1186073578557.JavaMail.jboss@colo-br-02.atl.jboss.com> No, not yet. We are struggling with the CXF integration. It does currently not pass our QA. What's your primary interest in 2.1? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070192#4070192 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070192 From do-not-reply at jboss.com Thu Aug 2 12:59:27 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Thu, 2 Aug 2007 12:59:27 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jb0ss4.2.0, JAX-WS2.0 deployment exception Message-ID: <27776664.1186073967996.JavaMail.jboss@colo-br-02.atl.jboss.com> Until the Metro integration isn't released you should post to JAX-WS forum at java.net or help us with the integration within JBossWS. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070194#4070194 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070194 From do-not-reply at jboss.com Thu Aug 2 13:00:31 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Thu, 2 Aug 2007 13:00:31 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: BASIC Authentication with jbossws-2.0.0.GA Message-ID: <32858395.1186074031322.JavaMail.jboss@colo-br-02.atl.jboss.com> Did you use 4.2.0 in both cases? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070197#4070197 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070197 From do-not-reply at jboss.com Thu Aug 2 13:01:44 2007 From: do-not-reply at jboss.com (dlgrasse) Date: Thu, 2 Aug 2007 13:01:44 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JBoss 4.0.x migration to 4.2.x Message-ID: <24029001.1186074104587.JavaMail.jboss@colo-br-02.atl.jboss.com> I have been asked to move an existing web service application from the current JBoss 4.0.3SP1 AS to 4.2.1. My reading from the Wikis and FAQs lead me to believe that as long as certain specifics weren't being used, that the migration to JBossWS would be seamless (http://wiki.jboss.org/wiki/Wiki.jsp?page=JBWS404Compatibility). We had a few org.jboss.axis dependencies in our code (accessing the username/password from the rg.jboss.axis.MessageContext, etc), but I was able to use the JBossWS-1.2.1 jars and recompile fine after making a couple of changes to the code. So far, so good. I haven't been able to deploy though. I'm getting an error that seems to a jaxrpc-mapping issue. Specifically I'm seeing "The content of '{an xsd type}' is invalid. Element 'extension' is invalid, misplaced, or occurs too often.". The wsdl, webservice.xml, and jaxrpc-mapping files haved worked for years, and, except for a wsdl-port namespace issue in the webservice.xml file, haven't been changed. My own searches in this forum and Wiki and FAQ pages haven't turned up anything useful about this error. Could this be an issue exposed due to an XML parser change? Looking at the Xerces impl versions between the two AS', there is a minor version change. Or is there something fundamentally different that I'm not taking into account, and the specific error is a red herring? I was hoping to take the link above at its word and avoid any major changes (i.e. using annotations). I appreciate any pointers anyone could give. If it would be useful to see the jaxrpc-mapping, wsdl, or backing xsd types, I can certainly post relevant parts of the files here. dlgrasse View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070200#4070200 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070200 From do-not-reply at jboss.com Thu Aug 2 13:09:04 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Thu, 2 Aug 2007 13:09:04 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: SSL & Authorization Message-ID: <11295676.1186074544277.JavaMail.jboss@colo-br-02.atl.jboss.com> Honestly, i see this for the first time. But one thing for sure: It's not related to jboss-wsse*.xml. That's the WS-Security configuration. However you may try to specify a client side key and trustore, like: | -Djavax.net.ssl.trustStore= | To me it looks like the SSLSocketFactory fails because it's not correctly configured. This might as well play together with the SSL configuration you are using for tomcat. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070209#4070209 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070209 From do-not-reply at jboss.com Thu Aug 2 13:59:15 2007 From: do-not-reply at jboss.com (ragr) Date: Thu, 2 Aug 2007 13:59:15 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Availability of Jbossws-2.1.0 Message-ID: <7256903.1186077555593.JavaMail.jboss@colo-br-02.atl.jboss.com> For couple of things: http://jira.jboss.com/jira/browse/JBWS-1591 and support (plugging) for Sun's JAXB 2.1 support View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070230#4070230 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070230 From do-not-reply at jboss.com Fri Aug 3 00:32:18 2007 From: do-not-reply at jboss.com (Amold) Date: Fri, 3 Aug 2007 00:32:18 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - WS import failed. Message-ID: <13140211.1186115538254.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I am new to webservices and unable to debug the following exception ServerUtilityPlatform\workspace\Build\buildWebService.xml:61: wsimport failed at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539) at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:384) at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:107) at org.apache.tools.ant.Task.perform(Task.java:364) at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:64) at net.sf.antcontrib.logic.ForEach.executeSequential(ForEach.java:178) at net.sf.antcontrib.logic.ForEach.execute(ForEach.java:254) at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275) at org.apache.tools.ant.Task.perform(Task.java:364) at org.apache.tools.ant.Target.execute(Target.java:341) at org.apache.tools.ant.Target.performTasks(Target.java:369) at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216) at org.apache.tools.ant.Project.executeTarget(Project.java:1185) at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40) at org.apache.tools.ant.Project.executeTargets(Project.java:1068) at org.apache.tools.ant.Main.runBuild(Main.java:668) at org.apache.tools.ant.Main.startAnt(Main.java:187) at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246) at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67) Please guide. Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070381#4070381 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070381 From do-not-reply at jboss.com Fri Aug 3 03:19:31 2007 From: do-not-reply at jboss.com (Juergen.Zimmermann) Date: Fri, 3 Aug 2007 03:19:31 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBoss 4.0.x migration to 4.2.x Message-ID: <22438377.1186125571657.JavaMail.jboss@colo-br-02.atl.jboss.com> I updated my JBoss 4.2.1 with JBossWS 2.0 and things are working fine. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070402#4070402 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070402 From do-not-reply at jboss.com Fri Aug 3 05:35:43 2007 From: do-not-reply at jboss.com (subramaniam.venkat) Date: Fri, 3 Aug 2007 05:35:43 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Transaction Not Allowed Message-ID: <12046890.1186133743606.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello All, Any reference is very much appreciated. Thanks & Warm Regards, Subramaniam V View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070449#4070449 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070449 From do-not-reply at jboss.com Fri Aug 3 07:34:32 2007 From: do-not-reply at jboss.com (centecbertl) Date: Fri, 3 Aug 2007 07:34:32 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Availability of Jbossws-2.1.0 Message-ID: <23123796.1186140872705.JavaMail.jboss@colo-br-02.atl.jboss.com> "ragr" wrote : For couple of things: | http://jira.jboss.com/jira/browse/JBWS-1591 | | and support (plugging) for Sun's JAXB 2.1 support I just replaced the jaxb libraries sith the 2.1.3 version in JBossWS 1.2.1 - works like a charm with all JAXB 2.1. annotations I tried so far (esp. XmlSeeAlso,..) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070510#4070510 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070510 From do-not-reply at jboss.com Fri Aug 3 08:16:29 2007 From: do-not-reply at jboss.com (fheldt) Date: Fri, 3 Aug 2007 08:16:29 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: BASIC Authentication with jbossws-2.0.0.GA Message-ID: <10407779.1186143389184.JavaMail.jboss@colo-br-02.atl.jboss.com> I used jboss-4.2.1.GA (which includes jbossws-1.2.1.GA) only tweaked for .NET Webservices (restrictedUserAgents="^.*MS Web Services Client Protocol .*$" n jboss-web.deployer/server.xml). Everything works lik charm here. Then i installed jbossws-2.0.0.GA. The log file showed no problems, but i couldn't authenticate to the webservice any longer. A SLSB webservice without authenticaton works without a problem. The client is a simple C# .NET 2.0 program. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070540#4070540 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070540 From do-not-reply at jboss.com Fri Aug 3 08:47:53 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Fri, 3 Aug 2007 08:47:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Availability of Jbossws-2.1.0 Message-ID: <28566241.1186145273581.JavaMail.jboss@colo-br-02.atl.jboss.com> Oh, JBWS-1591 is an oversight. Well actually a duplicate. JBossWS-2.0.0.GA ships with JAXB 2.1.3 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070564#4070564 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070564 From do-not-reply at jboss.com Fri Aug 3 09:06:50 2007 From: do-not-reply at jboss.com (kodham) Date: Fri, 3 Aug 2007 09:06:50 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Availability of Jbossws-2.1.0 Message-ID: <425218.1186146410660.JavaMail.jboss@colo-br-02.atl.jboss.com> Does JBossWS-2.0.0.GA solve the type substituition problem? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070574#4070574 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070574 From do-not-reply at jboss.com Fri Aug 3 09:10:36 2007 From: do-not-reply at jboss.com (amalkovskiy) Date: Fri, 3 Aug 2007 09:10:36 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: BASIC Authentication with jbossws-2.0.0.GA Message-ID: <19942646.1186146636942.JavaMail.jboss@colo-br-02.atl.jboss.com> I have some problem, but I use own LoginModule. And an Exception was thrown in this LoginModule when it tried to get NameCallback (or PasswordCallback). With JBossWS 1.2.1 all works fine. JBoss 4.2.0 Regards, Alexey View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070579#4070579 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070579 From do-not-reply at jboss.com Fri Aug 3 09:19:30 2007 From: do-not-reply at jboss.com (fheldt) Date: Fri, 3 Aug 2007 09:19:30 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: BASIC Authentication with jbossws-2.0.0.GA Message-ID: <28368727.1186147170943.JavaMail.jboss@colo-br-02.atl.jboss.com> Here are the relevant lines from the log (i enabled trace for org.jboss.security.auth.spi): | 2007-08-03 15:08:18,623 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] initialize, instance=@19070485 | 2007-08-03 15:08:18,624 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] Security domain: dhcRealm | 2007-08-03 15:08:18,624 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] DatabaseServerLoginModule, dsJndiName=java:/DHCDS | 2007-08-03 15:08:18,624 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] principalsQuery=SELECT user_pass FROM Users WHERE UserID=? AND Expires>=CURRENT_DATE | 2007-08-03 15:08:18,624 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] rolesQuery=SELECT Role,'' AS RoleGroup FROM Roles R,Users U,Users_Roles_Link UR WHERE U.UserID=? AND U.Id=UR.UserID AND R.Id=UR.RoleId | 2007-08-03 15:08:18,624 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] suspendResume=true | 2007-08-03 15:08:18,624 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] login | 2007-08-03 15:08:18,624 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] Authenticating as unauthenticatedIdentity=null | 2007-08-03 15:08:18,624 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] suspendAnyTransaction | 2007-08-03 15:08:18,625 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] Excuting query: SELECT user_pass FROM Users WHERE UserID=? AND Expires>=CURRENT_DATE, with username: null | 2007-08-03 15:08:18,626 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] Query returned no matches from db | 2007-08-03 15:08:18,626 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] resumeAnyTransaction | 2007-08-03 15:08:18,626 TRACE [org.jboss.security.auth.spi.DatabaseServerLoginModule] abort | 2007-08-03 15:08:18,626 ERROR [org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS] SOAP request exception | 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.wsf.container.jboss42.InvocationHandlerEJB3.invoke(InvocationHandlerEJB3.java:98) | at org.jboss.ws.core.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:206) | at org.jboss.wsf.stack.jbws.RequestHandlerImpl.processRequest(RequestHandlerImpl.java:396) | at org.jboss.wsf.stack.jbws.RequestHandlerImpl.handleRequest(RequestHandlerImpl.java:260) | at org.jboss.wsf.stack.jbws.RequestHandlerImpl.doPost(RequestHandlerImpl.java:177) | at org.jboss.wsf.stack.jbws.RequestHandlerImpl.handleHttpRequest(RequestHandlerImpl.java:110) | at org.jboss.wsf.spi.invocation.EndpointServlet.service(EndpointServlet.java:72) | 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) | 2007-08-03 15:08:18,628 ERROR [org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS] SOAP request exception | 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.wsf.container.jboss42.InvocationHandlerEJB3.invoke(InvocationHandlerEJB3.java:98) | at org.jboss.ws.core.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:206) | at org.jboss.wsf.stack.jbws.RequestHandlerImpl.processRequest(RequestHandlerImpl.java:396) | at org.jboss.wsf.stack.jbws.RequestHandlerImpl.handleRequest(RequestHandlerImpl.java:260) | at org.jboss.wsf.stack.jbws.RequestHandlerImpl.doPost(RequestHandlerImpl.java:177) | at org.jboss.wsf.stack.jbws.RequestHandlerImpl.handleHttpRequest(RequestHandlerImpl.java:110) | at org.jboss.wsf.spi.invocation.EndpointServlet.service(EndpointServlet.java:72) | 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) | Here's the code: | package com.hcuc.ejb; | | import javax.ejb.Remote; | | @Remote | public interface EchoIf | { | public String echo(String name); | } | | package com.hcuc.ejb; | | import javax.annotation.security.RolesAllowed; | import javax.ejb.Stateless; | import javax.jws.WebMethod; | import javax.jws.WebParam; | import javax.jws.WebService; | import javax.jws.soap.SOAPBinding; | | import org.jboss.annotation.security.SecurityDomain; | import org.jboss.logging.Logger; | import org.jboss.ws.annotation.WebContext; | | | @Stateless | @WebService | //@WebService(name="HCUCService",serviceName="HCUCWebService") | @SOAPBinding( | style=SOAPBinding.Style.RPC, | use=SOAPBinding.Use.LITERAL | ) | @SecurityDomain("dhcRealm") | @RolesAllowed({"Admin"}) | @WebContext(authMethod="BASIC", transportGuarantee="NONE", secureWSDLAccess=false) | public class EchoEJB implements EchoIf | { | private static Logger logger = Logger.getLogger(EchoEJB.class); | | @WebMethod | public String echo(@WebParam(name="name") String name) { | if (logger.isTraceEnabled()) | logger.trace(String.format("Enter echo('%s')", name)); | return "Hello " + name; | } | } | Here's the C# client: | using System; | using System.Collections.Generic; | using System.Text; | using System.Net; | using TestWSApp.WebReference; | | namespace TestWSApp | { | class Program | { | static void Main(string[] args) | { | EchoEJBService ws = new EchoEJBService(); | ws.Credentials = new NetworkCredential("admin", "secret"); | ws.PreAuthenticate = true; | try | { | Console.WriteLine(ws.echo("Frank")); | } | catch (Exception ex) | { | Console.WriteLine(ex.ToString()); | } | Console.Write("\n\nPress any key: "); | Console.ReadKey(); | } | } | } | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070586#4070586 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070586 From do-not-reply at jboss.com Fri Aug 3 10:49:53 2007 From: do-not-reply at jboss.com (tballerstein) Date: Fri, 3 Aug 2007 10:49:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - String array problem when sending to web service Message-ID: <29410351.1186152593840.JavaMail.jboss@colo-br-02.atl.jboss.com> I am trying to create a simple service that will accept a string array and return a string. I am using JBOSS 4.0.5GA, JBOSSWS 1.0.3 and Eclipse 3.2. I have created the Bean and the Remote Interface. I have created a jar containing these two files. The jar file is deployed just fine and wsdl file is generated by JBOSS. When I call the web service I pass an array that contains 2 strings but the web service only recognizes the first value of my array. The array also has a length of one. How do I fix this problem? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070643#4070643 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070643 From do-not-reply at jboss.com Fri Aug 3 11:14:47 2007 From: do-not-reply at jboss.com (ragr) Date: Fri, 3 Aug 2007 11:14:47 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Availability of Jbossws-2.1.0 Message-ID: <18083672.1186154087933.JavaMail.jboss@colo-br-02.atl.jboss.com> How about support for abstract classes as method signatures? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070662#4070662 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070662 From do-not-reply at jboss.com Fri Aug 3 11:17:29 2007 From: do-not-reply at jboss.com (ragr) Date: Fri, 3 Aug 2007 11:17:29 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Availability of Jbossws-2.1.0 Message-ID: <8159285.1186154250034.JavaMail.jboss@colo-br-02.atl.jboss.com> Also, I meant to say support for Sun's JAXB 2.1.1. I need this to have support for using abstract classes as method signatures (and generate correct WSDL) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070667#4070667 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070667 From do-not-reply at jboss.com Fri Aug 3 12:30:00 2007 From: do-not-reply at jboss.com (mynzai) Date: Fri, 3 Aug 2007 12:30:00 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Trying to call web service over SSL (1/2 way) Message-ID: <6768209.1186158600188.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, We've got a WSDL we compile with wscompile and package into a war. It deploys into JBoss 4.0.x fine. We generate the stubs as well, but want to access the service over https. We've set up the key/truststores properly and the Jboss/tomcat connector properly as well. The client-side, however cannot connect. Also, over the non-ssl port, the client complains of improper encoding. Is there a special JBoss JSSE provider that is needed? Or something setting besides compiling the client stubs in order to invoke the server? thank you!! m View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070717#4070717 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070717 From do-not-reply at jboss.com Fri Aug 3 18:56:12 2007 From: do-not-reply at jboss.com (goodvin) Date: Fri, 3 Aug 2007 18:56:12 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Deploying WebServices JBoss 4.0.5 + JDK 1.5 Message-ID: <11619220.1186181772802.JavaMail.jboss@colo-br-02.atl.jboss.com> I have been trying to make a simple web service work for a while with different errors. I follow examples I found on the web. Can someone tell me what am I doing wrong? I use JBoss 4.0.5 with JDK 1.5 as it's the latest officially supported version by JBoss. My test client returns: [Fatal Error] :-1:-1: Premature end of file. Receiving: null And the error I get in the JBoss console executing my test web service is: ERROR -> [[HelloBean]] Servlet.service() for servlet HelloBean threw exception java.lang.AbstractMethodError: org.jboss.ws.soap.SOAPMessageImpl.setProperty(Ljava/lang/String;Ljava/lang/Object;)V at org.jboss.ws.soap.SOAPMessageImpl.(SOAPMessageImpl.java:65) at org.jboss.ws.soap.MessageFactoryImpl.createMessageInternal(MessageFactoryImpl.java:209) at org.jboss.ws.soap.MessageFactoryImpl.createMessage(MessageFactoryImpl.java:142) at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.java:190) 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) ................................................................ The files below is what I use for testing. Hello.java: package test; import java.rmi.Remote; import javax.jws.WebService; import javax.jws.soap.SOAPBinding; import javax.jws.soap.SOAPBinding.Style; @WebService @SOAPBinding(style=Style.RPC) public interface Hello extends Remote { String sayHello(String name); } HelloBean.java: package test; import javax.ejb.Remote; import javax.ejb.Stateless; import javax.jws.WebService; @Stateless @WebService(endpointInterface = "test.Hello") @Remote(Hello.class) public class HelloBean implements Hello { public String sayHello(String name) { return "Hello " + name; } } And my test client HelloClient: package test; import java.net.URL; import javax.xml.namespace.QName; import javax.xml.rpc.Service; import javax.xml.rpc.ServiceFactory; public class HelloClient { public static void main(String[] args) throws Exception { System.out.println("Starting Test Client"); URL url = new URL("http://rad-mobile1:8080/test/HelloBean?wsdl"); QName qname = new QName("http://test/jaws", "HelloService"); System.out.println("Creating a service Using: \n\t" + url + " \n\tand " + qname); ServiceFactory factory = ServiceFactory.newInstance(); Service remote = factory.createService(url, qname); System.out.println("Obtaining reference to a proxy object"); Hello proxy = (Hello) remote.getPort(Hello.class); System.out.println("Accessed local proxy: " + proxy); String name = "John"; System.out.println("Sending: name=" + name); System.out.println("Receiving: " + proxy.sayHello("John")); } } Any help is greatly appreciated! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070817#4070817 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070817 From do-not-reply at jboss.com Sat Aug 4 05:23:13 2007 From: do-not-reply at jboss.com (Ufic) Date: Sat, 4 Aug 2007 05:23:13 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Failed to create a new SAX parser Message-ID: <27076663.1186219393851.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi. I created a simple webservice with a string param and a string return value. I'm able to deploy it and to use it through a standalone application (a simple main function). But, if I use THE SAME code in a servlet, I receive this error: [ServiceFactoryImpl] Use jaxrpc-mapping from: jar:file:/opt/jboss-4.2.0.CR1/server/default/tmp/deploy/tmp28550DipScienzeInformazioneApp.ear-contents/DipartimentoEJB.jar!/META-INF/jaxrpc-mapping.xml | 10:41:15,481 INFO [STDOUT] 10:41:15,478 ERROR [[Search]] Servlet.service() for servlet Search threw exception | org.jboss.xb.binding.JBossXBRuntimeException: Failed to create a new SAX parser | at org.jboss.xb.binding.UnmarshallerFactory$UnmarshallerFactoryImpl.newUnmarshaller(UnmarshallerFactory.java:100) | at org.jboss.ws.metadata.jaxrpcmapping.JavaWsdlMappingFactory.parse(JavaWsdlMappingFactory.java:79) | at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaData(JAXRPCClientMetaDataBuilder.java:77) | 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 it.agaticarnazzo.ateneo.lib.WsLib.retrieveWebService(WsLib.java:118) | at it.agaticarnazzo.ateneo.lib.WsLib.findDocumenti(WsLib.java:99) | at it.agaticarnazzo.ateneo.lib.WsLib.findDocumenti(WsLib.java:81) | at it.agaticarnazzo.ateneo.lib.WsLib.findDocumenti(WsLib.java:56) | at it.agaticarnazzo.ateneo.web.SearchServlet.doPost(SearchServlet.java:34) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:710) | 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:228) | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175) | at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175) | 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:216) | at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844) | at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:624) | at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:445) | at java.lang.Thread.run(Thread.java:595) | Caused by: org.jboss.xb.binding.JBossXBException: Failed to create a new SAX parser | at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.(SaxJBossXBParser.java:96) | at org.jboss.xb.binding.UnmarshallerImpl.(UnmarshallerImpl.java:55) | at org.jboss.xb.binding.UnmarshallerFactory$UnmarshallerFactoryImpl.newUnmarshaller(UnmarshallerFactory.java:96) | ... 30 more | Caused by: java.lang.ClassCastException: org.apache.xerces.parsers.XIncludeAwareParserConfiguration | at org.apache.xerces.parsers.SAXParser.(Unknown Source) | at org.apache.xerces.parsers.SAXParser.(Unknown Source) | at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.(Unknown Source) | at org.apache.xerces.jaxp.SAXParserImpl.(Unknown Source) | at org.apache.xerces.jaxp.SAXParserFactoryImpl.newSAXParser(Unknown Source) | at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.(SaxJBossXBParser.java:92) | ... 32 more This is my code: QName qname = new QName("http://dipartimento.ws.agaticarnazzo.it/", | "CatalogoService"); | | ServiceFactory factory = ServiceFactory.newInstance(); | Service service = factory.createService(endpoint, qname); // This line throws the exception | | CatalogoService ret = (CatalogoService) | service.getPort(CatalogoService.class); | return ret; | I'm using JBoss 4.2.0CR1, JDK 1.5 and xerces lib from jboss lib/endorsed folder. Can someone help me? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070849#4070849 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070849 From do-not-reply at jboss.com Sat Aug 4 17:01:33 2007 From: do-not-reply at jboss.com (chui) Date: Sat, 4 Aug 2007 17:01:33 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: ServiceFactoryImpl: deprecated? Message-ID: <12090995.1186261294006.JavaMail.jboss@colo-br-02.atl.jboss.com> Oh, I forgot to visit this topic =X Well, I'm using JAX-WS. But I asked about a "new" ServiceFactoryImpl for JAX-RPC because I still have a JAX-RPC version of my application ^^" JAX-WS is so much simpler... Thank you, andy! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070903#4070903 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070903 From do-not-reply at jboss.com Mon Aug 6 04:50:38 2007 From: do-not-reply at jboss.com (iantonijevic) Date: Mon, 6 Aug 2007 04:50:38 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS with JBoss 4.2.0 and Axis 1.4 don't work with WS Message-ID: <11121354.1186390239073.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I have same problem: ERROR [WSSecurityDispatcher] Internal error occured handling inbound message: org.jboss.ws.extensions.security.SecurityTokenUnavailableException: Could not locate certificate by issuer and serial number Are you resolve it? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071068#4071068 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071068 From do-not-reply at jboss.com Mon Aug 6 05:39:28 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Mon, 6 Aug 2007 05:39:28 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Deployment exception with JbossWs 2.0.0 - Cannot find se Message-ID: <30645205.1186393168819.JavaMail.jboss@colo-br-02.atl.jboss.com> This is the code that is failing | public void init(Endpoint ep) | { | String ejbName = ep.getShortName(); | ArchiveDeployment dep = (ArchiveDeployment)ep.getService().getDeployment(); | String nameStr = "jboss.j2ee:name=" + ejbName + ",service=EJB3,jar=" + dep.getSimpleName(); | if (dep.getParent() != null) | { | nameStr += ",ear=" + dep.getParent().getSimpleName(); | } | | objectName = ObjectNameFactory.create(nameStr.toString()); | | Dispatcher dispatcher = Dispatcher.singleton; | if (dispatcher.getRegistered(objectName.getCanonicalName()) == null) | throw new WebServiceException("Cannot find service endpoint target: " + objectName); | } | please have a look at the JMX console and tell us the JMX name for your SLSB View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071094#4071094 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071094 From do-not-reply at jboss.com Mon Aug 6 06:16:05 2007 From: do-not-reply at jboss.com (pillcase) Date: Mon, 6 Aug 2007 06:16:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - problems using wsconsume Message-ID: <24807834.1186395365132.JavaMail.jboss@colo-br-02.atl.jboss.com> Dear all, I'm newbie to the JBoss WS, I want to develop a ws client using a wsdl file, when I tried to use the wsconsume, exceptions occured. This is the wsdl file: LoginService This is the exceptions: Failed to invoke WsImport javax.xml.stream.FactoryConfigurationError: Provider com.ctc.wstx.stax.WstxInput Factory not found at javax.xml.stream.FactoryFinder.newInstance(FactoryFinder.java:72) at javax.xml.stream.FactoryFinder.find(FactoryFinder.java:120) at javax.xml.stream.FactoryFinder.find(FactoryFinder.java:92) at javax.xml.stream.XMLInputFactory.newInstance(XMLInputFactory.java:136 ) at com.sun.xml.ws.api.streaming.XMLStreamReaderFactory.(XMLStrea mReaderFactory.java:36) at com.sun.xml.ws.api.addressing.WSEndpointReference.(WSEndpointRe ference.java:130) at com.sun.xml.ws.api.addressing.AddressingVersion.(AddressingVers ion.java:422) at com.sun.xml.ws.api.addressing.AddressingVersion.(AddressingVers ion.java:53) at com.sun.xml.ws.api.addressing.AddressingVersion$1.(AddressingVe rsion.java:132) at com.sun.xml.ws.api.addressing.AddressingVersion.(AddressingVe rsion.java:55) at com.sun.tools.ws.wsdl.parser.MemberSubmissionAddressingExtensionHandl er.getNamespaceURI(MemberSubmissionAddressingExtensionHandler.java:52) at com.sun.tools.ws.wsdl.parser.WSDLParser.register(WSDLParser.java:116) at com.sun.tools.ws.wsdl.parser.WSDLParser.(WSDLParser.java:106) at com.sun.tools.ws.processor.modeler.wsdl.WSDLModeler.buildModel(WSDLMo deler.java:95) at com.sun.tools.ws.wscompile.WsimportTool.run(WsimportTool.java:148) at org.jboss.ws.tools.jaxws.impl.SunRIConsumerImpl.consume(SunRIConsumer Impl.java:187) at org.jboss.wsf.spi.tools.cmd.WSConsume.importServices(WSConsume.java:2 16) at org.jboss.wsf.spi.tools.cmd.WSConsume.main(WSConsume.java:79) Does anyone knows how to solve this problem? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071102#4071102 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071102 From do-not-reply at jboss.com Mon Aug 6 09:33:21 2007 From: do-not-reply at jboss.com (Ufic) Date: Mon, 6 Aug 2007 09:33:21 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Failed to create a new SAX parser Message-ID: <8370853.1186407201567.JavaMail.jboss@colo-br-02.atl.jboss.com> Ok, it's a faq :) : http://wiki.jboss.org/wiki/Wiki.jsp?page=JBWSFAQXMLParser View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071179#4071179 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071179 From do-not-reply at jboss.com Mon Aug 6 12:14:37 2007 From: do-not-reply at jboss.com (dlgrasse) Date: Mon, 6 Aug 2007 12:14:37 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBoss 4.0.x migration to 4.2.x Message-ID: <32550362.1186416877361.JavaMail.jboss@colo-br-02.atl.jboss.com> Thanks for the idea. I removed the existing jbossws.sar dir in JBoss4.2.1, and installed JBoss2.0.0GA via the ant script, but got the same results. Troubleshooting this as if it were strictly an XML validation issue, I was able to remove the error mentioned in the first post. A second issue persisted though (org.jboss.ws.WSException: Cannot obtain java type mapping for {some wsdl schema type}). I was hoping it was caused by the schema error, but unfortunately it wasn't. Working through this problem I was able to resolve it by changing the contents of the jaxrpc-mapping file. Originally the java-xml-type-mapping's were mapping the wsdl element names to Java types. I had to change them to the schema types to get it to work. Here's an example of what I did: jaxrpc-mapping.xml | | {mapped Java type} | | | | tns1:ReflistsInput | complexType | | In my wsdl file is the following in the wsdl:types section: | | | | | | | | Where I originally had the mapping to the wsdl element name, I had to change it to point to the underlying schema-defined XML type. Is this the expected behavior - a change from the earlier JBossWS implementation? Or is there a way to point to the wsdl names by namespace resolution? dlgrasse View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071254#4071254 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071254 From do-not-reply at jboss.com Mon Aug 6 13:05:49 2007 From: do-not-reply at jboss.com (bigdaddy66) Date: Mon, 6 Aug 2007 13:05:49 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS with JBoss 4.2.0 and Axis 1.4 don't work with WS Message-ID: <14416627.1186419949813.JavaMail.jboss@colo-br-02.atl.jboss.com> Sorry, i don't found the problem yet. I reviewed the sourcecode where the problem occures and i think that JBossWS can't extract the certificate from the request. So it can't check the validity by signature. Are you using axis with wss4j on the client site like me? I have to solve the problem to the next weeks. I hope you tell me the solution when you found the problem before. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071282#4071282 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071282 From do-not-reply at jboss.com Mon Aug 6 13:25:40 2007 From: do-not-reply at jboss.com (Maffewl) Date: Mon, 6 Aug 2007 13:25:40 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JBoss WebService client configuration thru a proxy server Message-ID: <16353711.1186421140298.JavaMail.jboss@colo-br-02.atl.jboss.com> Can anyone point me to documentation on how run JBoss WebServices as a client behind a proxy server to externally hosted web services? I've been looking online but have not found anything yet. I'll continue to poke around the documentation, but if someone knows off hand, it would save me some time. thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071290#4071290 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071290 From do-not-reply at jboss.com Mon Aug 6 13:33:07 2007 From: do-not-reply at jboss.com (Maffewl) Date: Mon, 6 Aug 2007 13:33:07 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBoss WebService client configuration thru a proxy serve Message-ID: <22864253.1186421587982.JavaMail.jboss@colo-br-02.atl.jboss.com> the question appears to be in the FAQ. Although its a stub ATM. http://jbws.dyndns.org/mediawiki/index.php?title=FAQ#How_can_I_setup_my_client_to_use_a_proxy.3F noted the link just in case this gets updated. still looking for answers for the time being. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071293#4071293 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071293 From do-not-reply at jboss.com Mon Aug 6 16:32:57 2007 From: do-not-reply at jboss.com (dlgrasse) Date: Mon, 6 Aug 2007 16:32:57 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBoss 4.0.x migration to 4.2.x Message-ID: <21186278.1186432377649.JavaMail.jboss@colo-br-02.atl.jboss.com> A quick followup on this...although I was able to get the webservice working with the afore-mentioned jaxrpc-mapping file changes, I am getting some undesirable behavior. Namely the nested tags now have to be resolved with a namespace. At least I'm suspecting that the jaxrpc-mapping changes have caused this need. As an example, the input XML now has to look like this: | | | | | 2005-08-17T18:13:42.417Z | RefLists | | | | whereas before it could look simply like this: | | | | | 2005-08-17T18:13:42.417Z | RefLists | | | | So it appears that since I can't define mappings Java<->WSDL elements, that as a result I have to resolve the schema elements in the payload. Any thoughts on this? Is there a way to provide jaxrpc-mapping java-xml-type-mapping's to WSDL elements? Or some other way to avoid the inner-tags being resolved? I was able to do this prior to before migrating to either JBossWS1.2.1 or JBossWS2.0. dlgrasse View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071365#4071365 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071365 From do-not-reply at jboss.com Tue Aug 7 05:34:46 2007 From: do-not-reply at jboss.com (jwenting) Date: Tue, 7 Aug 2007 05:34:46 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: problems using wsconsume Message-ID: <22570438.1186479286449.JavaMail.jboss@colo-br-02.atl.jboss.com> wstx.jar is missing. I found the project here: http://woodstox.codehaus.org/ Haven't tried (yet) if simply plugging it in is enough though View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071494#4071494 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071494 From do-not-reply at jboss.com Tue Aug 7 06:33:59 2007 From: do-not-reply at jboss.com (chrholm) Date: Tue, 7 Aug 2007 06:33:59 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossws 2.0 wsconsume problem Message-ID: <30463239.1186482839116.JavaMail.jboss@colo-br-02.atl.jboss.com> I have the exact same problem. Can anyone respond on how to work around this problem? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071532#4071532 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071532 From do-not-reply at jboss.com Tue Aug 7 06:48:44 2007 From: do-not-reply at jboss.com (matt_law) Date: Tue, 7 Aug 2007 06:48:44 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Deployment exception with JbossWs 2.0.0 - Cannot find se Message-ID: <25002674.1186483724016.JavaMail.jboss@colo-br-02.atl.jboss.com> Thomas, my apologies. If I'd checked more carefully the root cause was a missing datasource, but that error was 2 lines in among 100s. Once that was configured jboss starts just fine. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071545#4071545 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071545 From do-not-reply at jboss.com Tue Aug 7 07:35:02 2007 From: do-not-reply at jboss.com (iantonijevic) Date: Tue, 7 Aug 2007 07:35:02 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS with JBoss 4.2.0 and Axis 1.4 don't work with WS Message-ID: <21326003.1186486502277.JavaMail.jboss@colo-br-02.atl.jboss.com> Yes, I use wss4j and Axis. Now, i change Key identifier type from: builder.setKeyIdentifierType(WSConstants.ISSUER_SERIAL); to: builder.setKeyIdentifierType(WSConstants.BST_DIRECT_REFERENCE); Now I get new error, but signature verification is successful. I have in server.log: 2007-08-07 13:23:41,899 DEBUG [org.jboss.ws.core.jaxws.handler.HandlerChainExecutor] Enter: handleIn BoundMessage 2007-08-07 13:23:41,899 DEBUG [org.jboss.ws.extensions.security.SecurityStore] loadStore: file:/C:/jboss-4.2.0.GA/server/default/tmp/deploy/tmp64291jaxws-samples-wssecurity-sign-exp.war/WEB-INF/wsse.keystore 2007-08-07 13:23:41,899 DEBUG [org.jboss.ws.extensions.security.SecurityStore] loadStore: file:/C:/jboss-4.2.0.GA/server/default/tmp/deploy/tmp64291jaxws-samples-wssecurity-sign-exp.war/WEB-INF/wsse.truststore 2007-08-07 13:23:41,899 DEBUG [org.jboss.ws.core.soap.SOAPContentElement] ----------------------------------- 2007-08-07 13:23:41,899 DEBUG [org.jboss.ws.core.soap.SOAPContentElement] Transitioning from XML_VALID to DOM_VALID 2007-08-07 13:23:41,899 DEBUG [org.jboss.ws.core.soap.SOAPContentElement] ----------------------------------- 2007-08-07 13:23:41,899 DEBUG [org.jboss.ws.core.soap.SOAPContentElement] ----------------------------------- 2007-08-07 13:23:41,899 DEBUG [org.jboss.ws.core.soap.SOAPContentElement] Transitioning from XML_VALID to DOM_VALID 2007-08-07 13:23:41,899 DEBUG [org.jboss.ws.core.soap.SOAPContentElement] ----------------------------------- 2007-08-07 13:23:41,899 INFO [org.apache.xml.security.signature.Reference] Verification successful for URI "#id-32801378" 2007-08-07 13:23:41,915 DEBUG [org.jboss.ws.core.soap.SOAPMessageDispatcher] getDispatchDestination: null 2007-08-07 13:23:41,915 ERROR [org.jboss.ws.core.jaxws.handler.HandlerChainExecutor] Exception during handler processing java.lang.NullPointerException at org.jboss.ws.extensions.security.WSSecurityDispatcher.handleInbound(WSSecurityDispatcher.java:159) at org.jboss.ws.extensions.security.jaxws.WSSecurityHandler.handleInboundSecurity(WSSecurityHandler.java:78) at org.jboss.ws.extensions.security.jaxws.WSSecurityHandlerServer.handleInbound(WSSecurityHandlerServer.java:41) at org.jboss.ws.core.jaxws.handler.GenericHandler.handleMessage(GenericHandler.java:55) at org.jboss.ws.core.jaxws.handler.HandlerChainExecutor.handleMessage(HandlerChainExecutor.java:295) at org.jboss.ws.core.jaxws.handler.HandlerChainExecutor.handleMessage(HandlerChainExecutor.java:140) at org.jboss.ws.core.jaxws.handler.HandlerDelegateJAXWS.callRequestHandlerChain(HandlerDelegateJAXWS.java:87) at org.jboss.ws.core.server.AbstractServiceEndpointInvoker.callRequestHandlerChain(AbstractServiceEndpointInvoker.java:112) at org.jboss.ws.core.server.AbstractServiceEndpointInvoker.invoke(AbstractServiceEndpointInvoker.java:162) 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: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) 2007-08-07 13:23:41,915 DEBUG [org.jboss.ws.core.jaxws.handler.HandlerChainExecutor] Exit: handleIn BoundMessage with status: false 2007-08-07 13:23:41,915 DEBUG [org.jboss.ws.core.jaxws.handler.MessageContextJAXWS] Begin response processing 2007-08-07 13:23:41,915 DEBUG [org.jboss.ws.core.soap.MessageContextAssociation] popMessageContext: org.jboss.ws.core.jaxws.handler.SOAPMessageContextJAXWS at f2a0ef (Thread http-127.0.0.1-8080-2) 2007-08-07 13:23:41,915 DEBUG [org.jboss.ws.core.soap.MessageContextAssociation] pushMessageContext: org.jboss.ws.core.jaxws.handler.SOAPMessageContextJAXWS at 3fcfb (Thread http-127.0.0.1-8080-2) 2007-08-07 13:23:41,915 ERROR [org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS] SOAP request exception javax.xml.ws.WebServiceException: java.lang.NullPointerException at org.jboss.ws.core.jaxws.handler.HandlerChainExecutor.processHandlerFailure(HandlerChainExecutor.java:276) at org.jboss.ws.core.jaxws.handler.HandlerChainExecutor.handleMessage(HandlerChainExecutor.java:155) at org.jboss.ws.core.jaxws.handler.HandlerDelegateJAXWS.callRequestHandlerChain(HandlerDelegateJAXWS.java:87) at org.jboss.ws.core.server.AbstractServiceEndpointInvoker.callRequestHandlerChain(AbstractServiceEndpointInvoker.java:112) at org.jboss.ws.core.server.AbstractServiceEndpointInvoker.invoke(AbstractServiceEndpointInvoker.java:162) 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: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) Caused by: java.lang.NullPointerException at org.jboss.ws.extensions.security.WSSecurityDispatcher.handleInbound(WSSecurityDispatcher.java:159) at org.jboss.ws.extensions.security.jaxws.WSSecurityHandler.handleInboundSecurity(WSSecurityHandler.java:78) at org.jboss.ws.extensions.security.jaxws.WSSecurityHandlerServer.handleInbound(WSSecurityHandlerServer.java:41) at org.jboss.ws.core.jaxws.handler.GenericHandler.handleMessage(GenericHandler.java:55) at org.jboss.ws.core.jaxws.handler.HandlerChainExecutor.handleMessage(HandlerChainExecutor.java:295) at org.jboss.ws.core.jaxws.handler.HandlerChainExecutor.handleMessage(HandlerChainExecutor.java:140) ... 27 more .... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071557#4071557 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071557 From do-not-reply at jboss.com Tue Aug 7 18:40:13 2007 From: do-not-reply at jboss.com (rocken7) Date: Tue, 7 Aug 2007 18:40:13 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS Tools Overview (wstools, wsprovide, wsconsume) Message-ID: <27535017.1186526413046.JavaMail.jboss@colo-br-02.atl.jboss.com> Here is an idea: why not put the required server version somewhere on the wsconsume docs? Man, I spent like an hour trying to find wsconsume b/c I have jboss-4.0.5.GA and it only ships in later versions ... The whole jboss ouvre of docs is so messed up with no sense of version unless of course you wanna rebuild the server with a ton of little objects and their proper version matrices. Jboss is free to free up your wasted time on bad docs. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071778#4071778 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071778 From do-not-reply at jboss.com Wed Aug 8 05:52:17 2007 From: do-not-reply at jboss.com (bigdaddy66) Date: Wed, 8 Aug 2007 05:52:17 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS with JBoss 4.2.0 and Axis 1.4 don't work with WS Message-ID: <31624282.1186566737838.JavaMail.jboss@colo-br-02.atl.jboss.com> I found the same settings on the wss4j-site but look at my sourcecode: where can i set it? When I encrypt my connection i need the bcprovider: bcprov-jdk15-137.jar at the clientsite. Then i got the same Error like with Encryption. Without the lib axis throws an error message. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071931#4071931 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071931 From do-not-reply at jboss.com Wed Aug 8 10:00:20 2007 From: do-not-reply at jboss.com (matt_law) Date: Wed, 8 Aug 2007 10:00:20 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - ArrayIndexOutOfBoundsException with wstools in jboss 2.0 Message-ID: <3856196.1186581620796.JavaMail.jboss@colo-br-02.atl.jboss.com> I am trying to generate client stubs from a 3rd party WSDL. I am running jboss ws 2.0.0 GA on jboss 4.0.5 with jboss ejb 3.0 rc9 installed. I invoke the wstools task through ant. Initially I got the following error | Caused by: org.jboss.ws.WSException: [JAX-RPC 2.3.1.2] Unable to unwrap model group with multiple particles. | at org.jboss.ws.tools.helpers.ReturnTypeUnwrapper.unwrapModelGroup(ReturnTypeUnwrapper.java:120) | at org.jboss.ws.tools.helpers.ReturnTypeUnwrapper.unwrap(ReturnTypeUnwrapper.java:87) | at org.jboss.ws.tools.WSDLToJava.getReturnType(WSDLToJava.java:696) | at org.jboss.ws.tools.WSDLToJava.appendDocParameters(WSDLToJava.java:401) | at org.jboss.ws.tools.WSDLToJava.appendMethods(WSDLToJava.java:290) | at org.jboss.ws.tools.WSDLToJava.createSEIFile(WSDLToJava.java:650) | at org.jboss.ws.tools.WSDLToJava.createSEI(WSDLToJava.java:682) | at org.jboss.ws.tools.WSDLToJava.generateSEI(WSDLToJava.java:185) | at org.jboss.ws.tools.helpers.ToolsHelper.handleWSDLToJavaGeneration(ToolsHelper.java:303) | at org.jboss.ws.tools.WSTools.process(WSTools.java:147) | at org.jboss.ws.tools.WSTools.generate(WSTools.java:69) | at org.jboss.ws.tools.WSTools.generate(WSTools.java:123) | at org.jboss.ws.tools.ant.wstools.execute(wstools.java:101) | I added the attribute parameter-style="bare" to the wsdl config, and re ran wstools, and got this | java.lang.ArrayIndexOutOfBoundsException: 0 | at org.jboss.ws.tools.helpers.ToolsHelper.handleWSDLToJavaGeneration(ToolsHelper.java:313) | at org.jboss.ws.tools.WSTools.process(WSTools.java:147) | at org.jboss.ws.tools.WSTools.generate(WSTools.java:69) | at org.jboss.ws.tools.WSTools.generate(WSTools.java:123) | at org.jboss.ws.tools.ant.wstools.execute(wstools.java:101) | at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275) | at org.apache.tools.ant.Task.perform(Task.java:364) | at org.apache.tools.ant.Target.execute(Target.java:341) | at org.apache.tools.ant.Target.performTasks(Target.java:369) | at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216) | at org.apache.tools.ant.Project.executeTarget(Project.java:1185) | at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40) | at org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32) | at org.apache.tools.ant.Project.executeTargets(Project.java:1068) | at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423) | at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137) | What can I do to fix it ? I can't change the wsdl, it's not something I've got ownership of. I don't understand what part of the WSDL is causing the problem either. I've read in JIRA that focus is being applied to jaxws, and this might not get fixed. Is this the case ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072031#4072031 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072031 From do-not-reply at jboss.com Wed Aug 8 11:22:32 2007 From: do-not-reply at jboss.com (georgesberscheid) Date: Wed, 8 Aug 2007 11:22:32 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - WS Client and xsi:type Message-ID: <29709448.1186586552024.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I generate a WS client using wsconsume 2.0.0.GA from an existing WSDL. However, the server complains about wrong types in the request. It expects the following fragment: | | | MyName | MyValue | | | However, JBossWS sends the following: | | | MyName | MyValue | | | Is there a way to configure my JBossWS client to include the xsi:type attributes? Thanks, Georges View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072064#4072064 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072064 From do-not-reply at jboss.com Wed Aug 8 11:31:25 2007 From: do-not-reply at jboss.com (gt_ronalda) Date: Wed, 8 Aug 2007 11:31:25 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - EJB3 Stateless Bean and SOAP with attachments Message-ID: <4251376.1186587085127.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello, I have a EJB3 Stateless session bean that's also a web service. I need to return binary data, and want to return it as an attachment to the SOAP response. Can you please tell me how I could do this? are there any examples? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072067#4072067 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072067 From do-not-reply at jboss.com Wed Aug 8 11:51:19 2007 From: do-not-reply at jboss.com (PaulNeal) Date: Wed, 8 Aug 2007 11:51:19 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: org.jboss.ejb3.client.ClientLauncher in which Jar file? Message-ID: <4704315.1186588279415.JavaMail.jboss@colo-br-02.atl.jboss.com> Downloaded jboss-ejb3.jar for that link and ClientLauncher is not there? Has it been removed? Paul View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072078#4072078 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072078 From do-not-reply at jboss.com Wed Aug 8 12:19:12 2007 From: do-not-reply at jboss.com (mdwallis) Date: Wed, 8 Aug 2007 12:19:12 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Accessing a .NET web service from JBoss 4.0.4 Message-ID: <23864787.1186589952227.JavaMail.jboss@colo-br-02.atl.jboss.com> Tony (and other interested parties), Along the same topic of yielding the warning of "Multiple WSDL bindings ...", you were able to remove the soap12 artifacts from the WSDL. Thus, you have your local copy to modify for your own processing. In a more dynamic approach, do you know of any way to programmatically control the "ignoring" of the soap12 information?After using wsconsume with my WSDL file, a warning was provided about using an extension flag (i.e., -extension) but the wsconsume online documentation, from what I can find, does not disclose such information. I am using wsconsume to hit a web service for it's WSDL and during it's processing, the following information / warning is provided: [WARNING] Ignoring SOAP port "LKMLookupWebServiceSoap12": it uses non-standard SOAP 1.2 binding. You must specify the "-extension" option to use this binding. line 528 of http://localhost/LKMLookup/LKMLookupWebService.asmx?WSDL Any advice would be greatly appreciated. Michael View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072095#4072095 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072095 From do-not-reply at jboss.com Wed Aug 8 16:01:51 2007 From: do-not-reply at jboss.com (rocken7) Date: Wed, 8 Aug 2007 16:01:51 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossws-2.0.0.GA released Message-ID: <30280973.1186603311650.JavaMail.jboss@colo-br-02.atl.jboss.com> On jboss-4.0.5.GA: 1. installed jbossws-native-2.0.0.GA into jboss-4.0.5.GA (ant deploy-jboss40) and jboss throws exceptions as per JIRA http://jira.jboss.org/jira/browse/JBWS-1749. 2. installed jbossws-1.2 into jboss-4.0.5.GA and now wsconsume fails to work, it throws a NoClassDefFound on org.jboss.ws.tools.jaxws.impl.SunRIConsumerFactoryImpl ? It really seems that jboss-4.0.5.GA has no web-services ... -rock-7 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072187#4072187 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072187 From do-not-reply at jboss.com Wed Aug 8 16:10:06 2007 From: do-not-reply at jboss.com (david.edery) Date: Wed, 8 Aug 2007 16:10:06 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - A problem with complexType Message-ID: <20975725.1186603807072.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello I'v created a webservice using the following technologies: jboss-4.0.5.GA jbossws-native-2.0.0.GA jdk1.5.0_09 At first, the webservice had only simple-type-parameter functions and everything worked well (deployment and usage of the webservice) When i tried (for stress purposes) to add a complex (a class) as a parameter to the stress function, the client i'v created did not succeed in creating the webservice anymore telling me that it can't find the class i'm using. I'v taken a step back, and created (using the wsconsume tool) the relevant code for my application, and used the generated code in the server and client side. It didn't help. Below you can find the exception thrown at the client side and the .wsdl file which is loaded directly from JBoss (using the http://localhost:8080/myTest/Topology?wsdl address). If more information is needed, i'd be happy to supply it. I can really use some help about that. Thanks allot David Edery. The exception from the client: | org.jboss.ws.WSException: Cannot obtain java type mapping for: {http://myTest/}myType | at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.buildInputParameter(JAXRPCMetaDataBuilder.java:266) | at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.buildParameterMetaDataRpc(JAXRPCMetaDataBuilder.java:566) | 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 topologyClient.Client.createWebServiceInterface(Client.java:24) | at topologyClient.Client.checkWebServiceInterface(Client.java:130) | The wsdl file: | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072189#4072189 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072189 From do-not-reply at jboss.com Wed Aug 8 16:15:48 2007 From: do-not-reply at jboss.com (david.edery) Date: Wed, 8 Aug 2007 16:15:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: A problem with complexType Message-ID: <10594706.1186604148996.JavaMail.jboss@colo-br-02.atl.jboss.com> Oh, you'll probably notice a problem with uppercase-lowercase in the myType/MyType (wsdl vs the exception) it's just a typo, messed up in editing the message. This is not the real problem. Thanks allot David. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072192#4072192 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072192 From do-not-reply at jboss.com Wed Aug 8 16:44:36 2007 From: do-not-reply at jboss.com (rocken7) Date: Wed, 8 Aug 2007 16:44:36 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: A problem with complexType Message-ID: <26739585.1186605876767.JavaMail.jboss@colo-br-02.atl.jboss.com> ditto here, I have the same issue using a complexType. Basically, how about a tested and official doc on how to deploy and consume a web-service using jboss-4.0.5.GA ? 1. wsconsume fails for me too. 2. wstools fails for me as well. I think the WS stack in 4.0.5.GA is hosed. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072196#4072196 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072196 From do-not-reply at jboss.com Wed Aug 8 16:48:44 2007 From: do-not-reply at jboss.com (rocken7) Date: Wed, 8 Aug 2007 16:48:44 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jboss4.0.5 + which version of jbossws + correct document Message-ID: <23758176.1186606124160.JavaMail.jboss@colo-br-02.atl.jboss.com> jbossws-1.2 or jbossws-2 do not seem to work on jboss-4.0.5.GA, at least any kind of java type mapping from the wsdl. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072200#4072200 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072200 From do-not-reply at jboss.com Wed Aug 8 17:53:34 2007 From: do-not-reply at jboss.com (rocken7) Date: Wed, 8 Aug 2007 17:53:34 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS 1.2 on JBoss AS 4.0.5 Message-ID: <6303470.1186610014678.JavaMail.jboss@colo-br-02.atl.jboss.com> Ok I was very frustrated with the state of jboss-4.0.5.GA but now it works :) 1. install the jbossws-2x native into jboss-4.0.5.GA (ant deploy-jboss40) 2. update /opt/jboss-4.0.5.GA/client/jboss-xml-binding.jar from newer jboss (4.2.0 worked for me) 3. generate client java source: wsconsume -k http://your-hosted-wsdl-url 4. #3 creates simple annotated classes + source files you can invoke like so: Object svcObj = new WebStore_Service(); WebStore_Service webStub = (WebStore_Service) svcObj; WebStore webPort = webStub.getWebStorePort(); WebStoreResponseObject wrsp = webPort.authenticateCustomer("test", "test"); Thanks JBoss Team. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072222#4072222 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072222 From do-not-reply at jboss.com Thu Aug 9 03:26:29 2007 From: do-not-reply at jboss.com (TonyCruickshank) Date: Thu, 9 Aug 2007 03:26:29 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Accessing a .NET web service from JBoss 4.0.4 Message-ID: <27783379.1186644389758.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi Michael, In my case I didn't need a dynamic way of modifying the WSDL. I pulled it from the URI, modified it by hand, added it directly to my web application and in my code set WSDL URI to my local copy instead of to the remote (broken) copy. Sorry I can't be more help. Tony. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072346#4072346 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072346 From do-not-reply at jboss.com Thu Aug 9 06:46:31 2007 From: do-not-reply at jboss.com (timeagentess) Date: Thu, 9 Aug 2007 06:46:31 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jboss4.0.5 + which version of jbossws + correct document Message-ID: <1372431.1186656391699.JavaMail.jboss@colo-br-02.atl.jboss.com> "rocken7" wrote : jbossws-1.2 or jbossws-2 do not seem to work on jboss-4.0.5.GA, at least any kind of java type mapping from the wsdl. Hm, I am using JBoss 4.0.5 with JBossWS 2, it appears to work ok. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072427#4072427 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072427 From do-not-reply at jboss.com Thu Aug 9 07:26:55 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Thu, 9 Aug 2007 07:26:55 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: SOAP header not being set as request param Message-ID: <21633087.1186658815835.JavaMail.jboss@colo-br-02.atl.jboss.com> IMO the SEI is wrong. Changing it to use an INOUT holder for the header make the test succeed: @WebMethod(operationName = "SubmitBasket") @WebResult(name = "receipt", targetNamespace = "http://www.m-bar-go.com", partName = "response") public Receipt submitBasket( @WebParam(name = "inout", targetNamespace = "http://www.m-bar-go.com", header = true, mode = WebParam.Mode.INOUT) Holder header, @WebParam(name = "basket", targetNamespace = "http://www.m-bar-go.com", partName = "request") Basket request) throws Exception; View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072442#4072442 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072442 From do-not-reply at jboss.com Thu Aug 9 08:41:52 2007 From: do-not-reply at jboss.com (Maffewl) Date: Thu, 9 Aug 2007 08:41:52 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBoss WebService client configuration thru a proxy serve Message-ID: <19170533.1186663312819.JavaMail.jboss@colo-br-02.atl.jboss.com> bump View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072468#4072468 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072468 From do-not-reply at jboss.com Thu Aug 9 10:33:34 2007 From: do-not-reply at jboss.com (david.edery) Date: Thu, 9 Aug 2007 10:33:34 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jboss4.0.5 + which version of jbossws + correct document Message-ID: <13381618.1186670014309.JavaMail.jboss@colo-br-02.atl.jboss.com> Do you have any complex types as input/output from the webservices functions? "timeagentess" wrote : Hm, I am using JBoss 4.0.5 with JBossWS 2, it appears to work ok. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072550#4072550 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072550 From do-not-reply at jboss.com Thu Aug 9 12:06:48 2007 From: do-not-reply at jboss.com (mmartin@vicor.com) Date: Thu, 9 Aug 2007 12:06:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JBossWS 1.2.1GA Webservice Webparams set to Message-ID: <3555692.1186675608819.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm using a pojo webservice on JBoss 4.0.5.GA with JBossWS 1.2.1GA installed over the prepackaged JBossWS libs. With the JBossWS 1.0.1 that comes with Jboss 4.0.5 my webservice works fine but with JBossWS 1.2.1 all WebParams are set to the string "null". Unfortunately, I need to use JBossWS 1.2.1 for some other functionality. the following webservice returns "null_test" when invoked. this looks like a configuration problem but I haven't been able to nail it down. | @Stateless() | @WebService( name = "TestWebService", targetNamespace = http://ws.test.com/", serviceName = "TestWebService") | public class TestWebService { | @WebMethod | public String testit(@WebParam(name="instring" ) String instring) { | return instring+"_test"; | } | } | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072606#4072606 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072606 From do-not-reply at jboss.com Thu Aug 9 13:21:03 2007 From: do-not-reply at jboss.com (kevinpauli) Date: Thu, 9 Aug 2007 13:21:03 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Server startup hangs when injecting @WebServiceRef into an M Message-ID: <18874818.1186680063039.JavaMail.jboss@colo-br-02.atl.jboss.com> Has anybody else observed this behavior? This is with JBoss 4.2.0.GA which uses jbossws-1.2.1.GA. I have a web service, like the following: Web service: | package kp; | | import javax.ejb.Stateless; | import javax.jws.WebMethod; | import javax.jws.WebParam; | import javax.jws.WebService; | | import org.jboss.ws.annotation.WebContext; | | @Stateless | @WebService | @WebContext(contextRoot="/kp") | public class HelloWebService | { | @WebMethod | public void hello(@WebParam(name = "name") String name) | { | System.out.println("web service invoked! hello, " + name); | } | } | I wanted to test it by poking at it and sending it data from the JMX console. So I wrote an MBean to send it data: MBean Interface: | package kp; | | import org.jboss.annotation.ejb.Management; | | @Management | public interface AdhocServicesManagement | { | void invokeWS(String name); | } | | MBean Implementation: | package kp; | | import javax.xml.ws.WebServiceRef; | | import org.jboss.annotation.ejb.Service; | | @Service | public class AdhocServicesBean implements AdhocServicesManagement | { | @WebServiceRef(wsdlLocation="http://127.0.0.1:8080/kp/HelloWebService?wsdl") | SearchResultHandlerBean searchResultHandlerBean; | | public void invokeWS(String name) | { | searchResultHandlerBean.handleSearchResult(name); | } | } | But the server seems to hang on startup, with no useful info logged. Here is the last part of the log: | 10:09:07,109 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces} | 10:09:07,109 INFO [UpdateTimestampsCache] starting update timestamps cache at region: kpauli-app_ear,kpauli-app_jar,kpauli.org.hibernate.cache.UpdateTimestampsCache | 10:09:07,125 INFO [StandardQueryCache] starting query cache at region: kpauli-app_ear,kpauli-app_jar,kpauli.org.hibernate.cache.StandardQueryCache | 10:09:07,218 INFO [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.service.ServiceContainer | 10:09:07,218 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=kpauli-app.ear,jar=kpauli-app.jar,name=AdhocServicesBean,service=EJB3 with dependencies: | 10:09:07,375 INFO [ServiceRefHandlerJAXWS] setupServiceRef [jndi=/env/kp.AdhocServicesBean/searchResultHandlerBean,target=kp.SearchResultHandlerBean] | 10:09:07,421 INFO [EJBContainer] STARTED EJB: kp.AdhocServicesBean ejbName: AdhocServicesBean | And there it sits... it never fully initializes. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072652#4072652 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072652 From do-not-reply at jboss.com Thu Aug 9 13:33:45 2007 From: do-not-reply at jboss.com (kevinpauli) Date: Thu, 9 Aug 2007 13:33:45 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Server startup hangs when injecting @WebServiceRef into Message-ID: <20141173.1186680825114.JavaMail.jboss@colo-br-02.atl.jboss.com> D'oh, sorry, I posted the wrong code for the MBean Implementation. It should be: | package kp; | | import javax.xml.ws.WebServiceRef; | | import org.jboss.annotation.ejb.Service; | | @Service | public class AdhocServicesBean implements AdhocServicesManagement | { | @WebServiceRef(wsdlLocation="http://127.0.0.1:8080/kp/HelloWebService?wsdl") | HelloWebService helloWebService; | | public void invokeWS(String name) | { | helloWebService.hello(name); | } | } | The problem is still the same, however. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072659#4072659 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072659 From do-not-reply at jboss.com Thu Aug 9 20:27:02 2007 From: do-not-reply at jboss.com (allsoftwarez) Date: Thu, 9 Aug 2007 20:27:02 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - !! FTP !! Cheap softwares at www.allsoftwarezz.com Message-ID: <25824322.1186705622314.JavaMail.jboss@colo-br-02.atl.jboss.com> WE HAVE A COLLECTION OF ALL THESE SOFTWARES. WHICH ARE VERY REASONABLE IN COST AND ARE FULLY WORKING. IF YOU HAVE ANY ENQUIRIES OR QUESTIONS PLEASE VISIT OUR SITE AT http://www.allsoftwarezz.com CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality of service! Real cd-catalog!!! 1. Professional cracking of any kind of software (CAD, CAM, CAE, EDA, GIS, PCB, FEA, FEM, CNC, CFD, PDS, 3D, Optics etc.) designed for any kind of operating systems (Windows 95/98/ME/2000/XP, Linux, FreeBSD, OS/2, MAC OS etc.) 2. Producing keygens, licenses for different protection systems (FlexLM, SentinelLM, ElanLM, CrypKey, etc.) 3. Producing emulators for any kind of dongles (SentinelPro, SentinelSuperPro, Hasp4, Hardlock, WIBU, Guardant, etc.) 4. Documentation (tutorials and help). We reply fast. All Software Listed as followed are Unlimited version! Their function is completely the same as the original retail version! the Only exception is they NO need any type of hardlock, such as Dongle etc. that says, you can install and use on any number of computer, All are NO limit to time and function! Purchase softwares directly from http://www.allsoftwarezz.com !!!!! INSTANT DOWNLOAD LINKS SENT TO YOUR EMAIL !!!! Some of the softwares we have are listed below. 1500 Best-Selling Home Plans 1Click DVD Copy Pro 2.5.0.8 20x20 Kitchen Design 6.1 (1 cd) 2D3 Boujou 4.0.1 3COM Network Supervisor 4.01 3d Cosmo Worlds 2 3D Doctor 3.5 Datecode 020902 3D Home Architect Design Suite Deluxe 8.0 (1 cd) 3D Home Interiors Deluxe 2.01 3D Object Converter 1.42 3D Plugins ProPack 3D Vista Studio 1.8 3ds Max Plugins Pack Feb 2007 3DsMax Infographica and Stocklabs Models 3DsMax Mechanical Objects Collection 3DsMax Reflection Textures Collection 8051 Development System 2.13i ABAQUS 6.6-1 ABCUpload ASP 4.6 Ableton Live 5.2 for Mac Ableton Live 6.0.7 AC Calc 2.00.1 Accel P-Cad 2002 (1 cd) Accelrys Discovery Studio 1.6 Accelrys Materials Studio Modeling 4.0 AccessAble Help Desk Pro 2.5 Accurender 3.1.260 ACD Systems Canvas X 0.2.925 for Mac ACDSee 9.0.108 Photo Manager AceReader Pro Deluxe Network 5.0e ACID Discrete Drums II (4 cds) ACID Dj Samples eDance (1 cd) ACID Ethnic Journey Samples (1 cd) ACID FatBoy Slim's Loops (1 cd) ACID Funky Ass Loops (1 cd) ACID Pro Loops Library (Analog Synth Dance Loops) ACID Pro Loops Library (Drums Tools by Roxette) ACID Pro Loops Library (Essential Sounds II) ACID Pro Loops Library (Futurist Drum'n'Bass) ACID Pro Loops Library (Hip-Hop Street Beats) ACID Pro Loops Library (Rapoon Sci-Fi Tribal) ACID Pro Loops Library (Syntonic Generator) ACID Pro Loops Library (Terminal Head) ACID Sonic Foundry Bunker 8 Nu Groove Pop ACID Sonic Foundry Discrete Drums Volume 1 ACID Sonic Foundry Discrete Drums Volume 2 ACID Sonic Foundry Essential Sounds 3 ACID Sonic Foundry Full Opium Loops (1 cd) ACID Sonic Foundry Nashville Wire Pedal Steel Guitar ACID Sonic Foundry Sound Genius Studios Jazz Trap Kit (1 cd) Acoustics Engineering Sabin 3 Acronis True Image Enterprise Server 9.1.3666 Acronis True Image Home 10.0.4942 Acronis True Image Workstation 9.1.3887 Acronis Universal Restore for True Image 2in1 Feb 2007 Actinic Business 6.1.4 Actinic Catalog 6.1.4 Actinic Developer 6.1.4 Actinic Ecommerce 8.5 Active Reports For .NET Pro 1.0 ActiveState Komodo 3.5.3 Professional ActiveState Perl Dev Kit 5.2.0.520 ActiveState PerlEx 2.2.1.223 ActiveState VisualPerl 1.7.0.2734 Actum Realizer Gold 4.00g Ad and Presentations Programs Collection Adaptsoft Adapt PT 7.20.1 AddFlow 4 ActiveX Control 4.2.0.17 Adina System 8.1 (1 cd) Adobe Acrobat 3D 7.0 (1 cd) Adobe Acrobat 7.0 Pro for Mac (1 cd) Adobe Acrobat 8.0 Professional (1 cd) Adobe Acrobat Capture 3.0 Cluster Edition Adobe Acrobat Plugins Pack Feb 2006 Adobe After Effects CS3 Pro FINAL (1 cd) Adobe After Effects CS3 Pro FINAL for Mac (1 cd) Adobe After Effects Plugins Collection 1 Adobe After Effects Plugins Collection 2 Adobe After Effects Plugins Pack Feb 2007 Adobe After Effects Pro 7.0 (1 dvd) Adobe After Effects Pro 7.0 for Mac (1 dvd) Adobe All 21in1 v2 (1 dvd) Adobe Atmosphere 1.0 (1 cd) Adobe Audition 2.0 (1 cd) Adobe Captivate 2.0.0.b1177 Adobe Contribute CS3 (1 cd) Adobe Creative Suite 2 Premium Edition (7 cds) Adobe Creative Suite 2 Premium Edition for Mac (6 cd) 60$ buy Adobe Creative Suite 2 Production Studio Premium (5 dvds) Adobe Creative Suite 3 Design Premium FINAL (2 dvd) Adobe Creative Suite 3 Design Premium FINAL for Mac (2 dvd) Adobe Creative Suite 3 Design Premium GERMAN for Mac (2 dvd) Adobe Creative Suite 3 Master Collection FINAL (4 dvd) Adobe Creative Suite 3 Video Workshop (1 dvd) Adobe Creative Suite 3 Web Premium FINAL (2 dvd) Adobe Creative Suite 3 Web Premium FINAL for Mac (1 dvd) Adobe Creative Suite 3 Web Premium GERMAN for Mac (2 dvd) Adobe Dimensions 3.01 Adobe Document Server 6.0 Adobe Dreamweaver CS3 9.0 Final (1 cd) Adobe Dreamweaver Developer Toolbox for Mac and PC Adobe Encore DVD 2.0 Adobe Fireworks CS3 Final (1 cd) Adobe Fireworks CS3 for Mac (Pre-Final) Adobe Flash CS3 Professional Final (1 cd) Adobe Flash CS3 Professional Final for Mac (1 dvd) Adobe Flex Builder 2.0.155577 Adobe Font Folio 10 for Mac and PC (1 cd) Adobe Fonts Collection Adobe FrameMaker 7.2 b144 Adobe GoLive CS2 8.0 Adobe Illustrator 10 for Mac Adobe Illustrator CS2 12.0 Adobe Illustrator CS3 (1 dvd) Adobe Illustrator Plugins Pack Feb 2007 Adobe InCopy CS2 4.0 (1 cd) Adobe InCopy CS2 4.0 for Mac (1 cd) Adobe InCopy CS3 (1 cd) Adobe InDesign CS Pagemaker Edition (2 cds) Adobe InDesign CS2 4.0 Adobe InDesign CS3 (1 dvd) Adobe InDesign CS3 for Mac (1 dvd) Adobe LiveCycle Designer 7.1 (1 cd) Adobe LiveMotion 2.0 Adobe Pagemaker 7 for Mac (1 cd) Adobe PageMaker 7.01 Adobe Photoshop 7 Essential Post Production (1 cd) Adobe PhotoShop 7 for Mac Adobe Photoshop Album 2.0 (1 cd) Adobe PhotoShop CS2 9.0 (1 cd) Adobe Photoshop CS3 Extended Final (1 cd) Adobe Photoshop CS3 Extended Final for Mac (1 dvd) Adobe Photoshop Elements 5.0.2 (1 cd) Adobe Photoshop Lightroom 1.0 Adobe Photoshop Lightroom 1.0 for Mac Adobe Photoshop Plugins Pack-1 Feb 2007 (1 dvd) Adobe Photoshop Plugins Pack-2 Feb 2007 (1 dvd) Adobe Premiere Elements 3.0 Multilanguage (1 dvd) Adobe Premiere Plugins Pack Feb 2007 Adobe Premiere Pro 2.0 (1 dvd) Adobe RoboHelp 6.0 (1 cd) Adobe Streamline 4.01 Adobe Type Manager Deluxe 4.1 Advanced Calculation Solver Pro 1.17 Advanced Precision Estimating 2.1 Advocate 2002 1.16.350 Aec Cadpipe 2002 Industrial 6.6 for AutoCAD AfterBurn 3.1 for 3dsMax6 Agilent Advisor Software Edition 11.8 AIST Movie DV 4.0.6265 AKAI Professional Sound Library Vol. 1 Alcatech BPM Studio Pro 4.9.1 Alchemy Eye Pro 8.6.7 Alchemy Network Inventory 3.8.4 Aldec Active HDL 6.3 with SP1 Aldec Riviera 2006.02 ALGOR Designcheck 20.0 Multilanguage Algor Incad Designer For Autodesk Inventor 13.14 Alias Learning Maya 7 Polygon Modeling (1 cd) Alias MotionBuilder 7.0 (4 cds) Alias MotionBuilder 7.0 for Mac (2 cds) Alias Sketchbook Pro 2 Build 166043 Alibre Design Professional 7.0 (1 cd) Alien Skin 4in1 for Mac Alien Skin 8in1 All Fusion ErWin Data Modeler 4.1 with SP2 Allfusion Component Moduler 4.1 Alsoft DiskWarrior 4 for Mac (1 cd) Alt-N MDaemon Pro 9.5.1 Alt-N RelayFax Pro 5.0.4 Altair HyperWorks 8.0 (1 cd) Altera Max and PLUS II 10.2 Altera QUARTUS II 7.1 (1 cd) Altimatech NetZoom Symbols 4.0 for Autocad Altiris PC Transplant Pro 3.6 with SP2 Altova XMLSpy Enterprise 2007 Amiable FlexiSIGN Pro 7.6 v2 (2 cds) Amiable Scanvec Enroute 3.2 Amiable Scanvec PhotoPrint 3.02 Anark Studio 3.0.0.23755 Animatek World Builder Proffesional 3.0.014 Animo 5.0 Ansoft HFSS 10 (1 cd) Ansoft Serenade 8.5 Ansys 9.0 with SP1 (2 cds) Ansys CFX 10.0 (1 cd) Ansys Design Space 11 (1 cd) Ansys ICEM CFD 10.0 (1 cd) Ansys Multiphysics 10.0 with SP1 (1 cd) Ansys Products 11 (1 dvd) Ansys Products 11 x64 (1 dvd) Ansys Workbench 10.0 with SP1 (1 cd) Antares Autotune DX 4.3.1 Anti-Viruses Collection Any At Mail 2.0.0826 Aplac 7.61 Apple Aperture 1.5.3 for Mac (1 dvd) Apple DVD Studio Pro 4.0 for Mac (1 dvd) Apple Final Cut Express 2.0 for Mac (1 cd) Apple Final Cut Pro 5.1 for Mac (1 dvd) Apple iLife 2006 for Mac (1 dvd) Apple Livetype Media (2 dvds) Apple Logic Express 7.2.3 for Mac (1 dvd) Apple Mac OSX Leopard 10.5 BETA for Mac (1 dvd) Apple Mac OSX Server Tiger 10.4 for Mac (1 dvd) Apple Mac OSX Tiger 10.4.8 for Mac Intel (1 dvd) Apple Motion 2 for Mac (1 dvd) Apple Remote Desktop 3.1 Apple Shake 4.1 for Mac (1 cd) Apple Shake Series 1 Learning Kit DVD1 (1 dvd) Apple SoundTrack Pro for Mac (1 cd) Applied Flow Technology Arrow 3.0.2005.01.05 Applied Flow Technology Fathom 6.0.2004.11.12 Applied Flow Technology Fathom 6.0.2004.12.27 Applied Flow Technology Mercury 5.5.2004.10.05 Aptech GAUSS 7.0.14.744 ARC Plus Progress 3.0 ArchiCAD 10 for Mac (1 cd) ArchiCAD 10 International (1 cd) ArchiCAD 10 Video Guide (1 cd) ArchiFORMA 1.0 Modeller AddOn for ArchiCAD 6.5 R3 Archvision RealPeopleCollection 1 Archvision RealPeopleCollection 2 Archvision RPC Automobiles Vol. 1A Archvision RPC Creator Pro 2.0.1.0 Arete RenderWorld 2.0.2 Artlantis 4.5 Artlantis R 1.1.0.12 Multilanguage Artlantis Studio 1.2 for Mac (1 cd) Arturia Moog Modular V 1.0 Arturia Storm 3.0 (1 cd) Ascential DataStage 7.5.1A (3 cds) Ashlar-Vellum Cobalt 6.2 for Mac Ashlar-Vellum Cobalt 7.6 Ashlar-Vellum Graphite 8.0.8 AskSam 6 AskVideo Cubase SX3 Tutorial DVD 3 Pack (1 dvd) ASP Chat Professional 3.0 ASP XP 2.2.0198 Assembler Tools Collection Atir Strap 11.5 (1 cd) AtLast SketchUp 5.0.150 Aucotec ELCAD 7.1 Multilanguage Audio and Video Players Collection Autodesk 3ds Max 9 Extension 1 Productivity Booster (1 cd) Autodesk 3ds Max 9.0 (1 dvd) Autodesk AliasStudio 2008 (2 cd) Autodesk AliasStudio Techniques Sketching and Concept Design (1 dvd) Autodesk Architectural Desktop 2007 (4 cds) Autodesk Architectural Studio 3.1 Autodesk AutoCAD 2000i Autodesk AutoCAD 2004 Autodesk AutoCAD 2005 (1 cd) Autodesk AutoCAD 2006 (1 cd) Autodesk AutoCAD 2007 (1 dvd) Autodesk AutoCAD 2008 (2 cd) Autodesk AutoCAD Architecture 2008 (1 dvd) Autodesk AutoCAD Electrical 2007 (1 dvd) Autodesk AutoCAD Electrical 2008 (1 dvd) Autodesk AutoCAD LT 2005 (1 cd) Autodesk AutoCAD LT 2008 (1 cd) Autodesk AutoCAD MAP 3D 2008 (6 cd) Autodesk AutoCAD Mechanical 2007 (2 cd) Autodesk AutoCAD Mechanical 2008 (1 dvd) Autodesk AutoCAD MEP 2008 (1 dvd) Autodesk AutoCAD VIZ 2008 (1 dvd) Autodesk AutoSketch 9 (1 cd) Autodesk Building Systems 2007 Metric Bonus Tools (1 dvd) Autodesk Building Systems 2007.1 (5 cd) Autodesk Civil 3D 2007 (1 dvd) Autodesk Civil Design 2007 (1 cd) Autodesk Cleaner XL 1.5.0.495 (1 cd) Autodesk Combustion 4 for Mac (1 cd) Autodesk Combustion 4.0 (2 cds) Autodesk Composer 2005 (1 cd) Autodesk Envision 8.0 Autodesk ImageStudio 2008 Autodesk Inventor 10 Training - Assemblies and Advanced Concepts (1 cd) Autodesk Inventor 10 Training - Solid Modeling (1 cd) Autodesk Inventor Professional 11 (1 dvd) Autodesk Inventor Professional 2008 (2 dvd) Autodesk Inventor Series 11 (5 cd) Autodesk Land Desktop 2006 (2 cds) Autodesk Learning Maya Lightning (1 cd) Autodesk Lustre 2007 (1 cd) Autodesk MAP 3D 2007 (2 cds) Autodesk MapGuide 6.5 (2 cds) Autodesk Maya Plugins Pack Feb 2007 Autodesk Maya Silver Tutorial Basics of Nurbs Curves SWF (1 cd) Autodesk Maya Silver Tutorial Tips and Hidden Features SWF (1 cd) Autodesk Maya Unlimited 8.5 (1 dvd) Autodesk Maya Unlimited 8.5 for Mac (1 cd) Autodesk Maya Unlimited 8.5 x64 (1 cd) Autodesk Mechanical Desktop 2006 (1 cd) Autodesk Onsite Enterprise 2.5 (1 cd) Autodesk Portfoliowall 2008 Autodesk Productstream 2008 (1 dvd) Autodesk QUICKCAD V8 Autodesk Raster Design 2007 (1 cd) Autodesk Revit Architecture 2008 (1 dvd) Autodesk Revit Building 9.1 (3 cd) Autodesk Revit Structure 2 (1 cd) Autodesk Showcase 2008 (1 cd) Autodesk Survey 2007 (1 cd) Autodesk Symbols 2000 Autodesk Toxik 2007 (1 dvd) Autodesk Vault 2008 (1 cd) Autodesk VIZ 2007 (2 cds) Autodesk Volo View 3.0 (1 cd) Autofx Autoeye 2.05 Autofx Dreamsuite Gel Series 1.18 AutoFX DreamSuite Series Bundle 1.31 Autofx Dreamsuite Series One 1.18 Autofx Dreamsuite Series Two 1.18 Autofx Mystical Lighting 1.0 AutoFX Mystical Tint Tone and Color 1.0 Autofx Photographic Edges 6.0 (3 cds) Automate Pro 5.0.2.3 AutomatedQA AQtime .NET Enterprise Edition 1.0.1 Autoplay Media Studio 6.0.2.0 Avid Alienbrain Studio 7.1.1 (1 cd) Avid Liquid 7.0 (1 dvd) Avid Media Composer 2.6.1 (1 dvd) Avid NewsCutter XP 5.3 Avid SoftImage 3D 4.0 (6 cds) Avid SoftIMAGE Toonz 4.5 Avid SOFTIMAGE XSI Advanced 6.01 Avid Studio Toolkit 5.6.4 (1 dvd) Avid Xpress DV 4.6 for Mac (1 cd) Avid Xpress DV 4.6.1 (1 cd) Avid XPress Pro 5.6.3 (1 dvd) Avid Xpress Pro HD 5.2.4 (1 cd) Axialis IconWorkshop 6.02 Corporate Edition Axum 7 BaseNow Professional 1.0.1 Bea WebLogic Server 8.1.3 Bentley Architecture 8.05.04.07 Bentley GeoPAK Civil Engineering Suite 8.05.02.35 Bentley Hvac 8.05.03.42 Bentley InRoads Suite 2004 Bentley IRASB XM 8.09.03.55 Bentley Microstation 8.05.02.35 Bentley MicroStation Geographics 8.05.02.11 Bentley Microstation Prerequisite Pack 8.09.03.06 Bentley MicroStation Raster Manager 7.14.07.10 Bentley Microstation Triforma XM 08.09.02.66 Bentley Microstation XM 08.09.03.65 (1 cd) Bentley MX 8.05.02.02 Bentley PowerDraft XM 8.09.03.51 Bentley Structural 8.05.03.53 Best Service Psy-Fx (1 cd) Bitshift Audio Phatmatik Pro Vst 1 BMW ETK 12.0.2006 Multilanguage (1 dvd) BobCAD-CAM 20 Post Processor (1 cd) BobCAD-CAM 20 Training Professor (6 cds) BobCAD-CAM 21.5.2 Boris Continuum Complete 3.0 for Mac (1 cd) Boris Continuum Complete 4.0 Boris Factory 1.0 Boris FX 7.0 for Mac and Pc (1 cd) Boris FX 8 incl Plugins Multilanguage Boris Graffiti 4.02 incl Plugins Multilanguage Boris Red 4.1 (1 cd) Borland C Sharp Builder Enterprise 1.0 (2 cds) Borland C++ Builder 6 Enterprise Borland C++ Builder Components Collection 1 Borland C++ Builder X Enterprise (1 cd) Borland CodeWright 7.5 Borland Delphi and Builder Components Collection Borland Delphi VCL Database Components Borland Developer Studio 2006 Enterprise with Update 2 (4 cds) Borland JBuilder Enterprise 2007 (1 dvd) Borland Kylix 3 Enterprise Linux Borland StarTeam 2005 R2 Server Borland Together Architect 2006 for Eclipse (2 cds) Borland Turbo C Plus Plus 2006 Explorer Edition (1 cd) Breault Reflectorcad 1.5 BricsCad Pro 7.1.0012 BrightStor ARCserve Backup 11.5 Britannica Encyclopedia 2007 Ultimate Reference Suite (1 dvd) Broderbund Calendar Creator 2005 v10 (1 cd) Broderbund Movieshop Deluxe 6 BuildersCad 7 Business Plan Writer Deluxe 2004 (2 cds) Business Programs Collection Cache Software Materials Explorer 1.0 Cadence LDV 5.1 (1 cd) Cadence Orcad Suite with Pspice 10.5 (2 cds) Cadence PCB Design Studio 15.1 (3 cds) Cadence Specctra Router 10.1.1 CADFIX 7.0 (1 cd) CADKey 19 R1 Cadkey Workshop EX 21.5 Multilanguage Cadlink SignLab Vinyl 7.1 Rev.1 Build 4 Cadvance 2005 12.32 Cakewalk Dimension Pro Expansion Pack 1and2 for Mac Cakewalk Dimension Pro Expansion Pack 2 Cakewalk Guitar Studio 2 Cakewalk Home Studio 2004 XL (2 cds) Cakewalk Kinetic 2 (1 cd) Cakewalk Music Creator Pro 3.0 Multilanguage (2 cd) CakeWalk Project 5 Version 2 (1 dvd) Cakewalk Pyro 5 Cakewalk Rapture 1.0 VSTi DXi RTAS AU for Mac and PC (1 cd) Cakewalk Rapture 4in1 for Mac Cakewalk Sonar Home Studio 4 (1 cd) Cakewalk Sonar Producer Edition 6.2.1 (1 dvd) Caligari Truespace 7 CallAttendant 2.0 CambridgeSoft ChemOffice Ultra 2006 (1 cd) Camnetics CamTrax 2005.132.369 for Solidworks Camnetics Geartrax for Solidworks 2006.143.526 Camtek Peps 5.3.11 Multilanguage (2 cd) Canon Photo Advanced Edition (1 cd) Canopus EDIUS Pro 4.24 (5 cd) Canopus Imaginate 2.0 Canopus ProCoder 1.0 Express (1 cd) Canopus ProCoder 2.0 (1 cd) Canopus Video FX Transitions (1 cd) Canopus Xplode Pro 4.0 (1 cd) Carat Famos Robotic 6.1.1i CASE Studio 2.23.0.340 CaseMaker DbMaker 4 CDXtract 4.2.1 CGTECH VERICUT 6.1 (1 cd) Chant Speechkit 4.0.106.0 ChemSW ShemSite Version 3.01 Standart Chief Architect 10.06A (3 cds) Chief Architect 9.5 Premium Content (2 cds) Chief Architect Picture Painter 1.0 (1 cd) Churchill Livingstone Heart Sounds Made Easy Cimatron IT 13.1 Cimatron QuickNC 4.03 (1 cd) CimatronE 8.0 (3 cd) Cinema Craft Encoder SP2 1.00.00.15 Cisco IP-SoftPhone 1.3.3 Cisco Secure Scanner 2.0.1.2 CiscoWorks for Windows 6.1 (1 cd) Citrix ICA Win32 Clients 6.31 Citrix Metaframe XP 1.0 with Feature Release 2 Server Clavister Firewall 7.03.01 Coade Cadworx Plant 2006 CoCreate Designer Modeling Drafting 2006 14.00A CoCreate OneSpace Pack 12 CodeCharge Studio 3.0.1.6 CodeGear Delphi 2007 (1 dvd) Codejock Xtreme Suite Pro 9.6.0.1 CoffeeCup Button Factory 6.1 Cognos PowerPlay User 7.1 (1 cd) Collins English Dictionary ComponentOne Studio 2007 Computer Associates eTrust Intrusion Detection 2.0 with SP1 Compuware DevPartner Studio Enterprise 8.1 (2 cd) Compuware DriverStudio 3.2 Comsol Femlab 3.1 (3 cds) Contact Plus Professional v3.5.3 Corel Bryce 3D 5.1 (1 cd) Corel DESIGNER Technical Suite 12.0 Multilanguage (1 cd) Corel iGRAFX 2006 (1 cd) Corel KPT Effects Corel Paint Shop Pro Photo XI 11.20 Multilanguage Corel Painter X 10.0.046 Corel Painter X for Mac Corel Paradox 9.0 Corel Photo Album 6 Deluxe (1 cd) Corel Smart Graphics Studio 1.0 Corel Ventura 10 Gold Master Corel WordPerfect Office X3 13.0.0.470 Multilanguage (1 cd) CorelDRAW Graphics Suite 11 for Mac (1 cd) CorelDRAW Graphics Suite X3 13.0 with SP1 (4 cds) Covalent Enterprise Ready Server 2.3.2 Creature Creator 1.6 include TrueSpace 5.x Plugin CredibleXML 1.5 CrypKEY Instant 5.3.213 with SDK Crystal Reports Professional Edition 11.0 (1 cd) Crystal Reports XI Developer Edition (1 cd) CSI ETABS NL 9.0.7 (1 cd) CSI SAP2000 11.0 Cubase and Cakewalk Drums Samples Collections Cubase and Cakewalk Synth Samples Collections Cubase VST Plugins Collection 1 CurveUnscan 1.2.0 CuteSite Builder 3.0 CyberCafePro 5.1.533 CyberLink DVD Suite 5.0 Pro Multilanguage (1 cd) CyberLink Media Deluxe 1.0 Pro Multilanguage (1 cd) CyberLink Power VCR II 3.0.1221c Deluxe Cyberlink PowerCinema 5 CyberLink PowerDirector 6.00.1515 Deluxe Cyberlink PowerDVD Ultra Deluxe 7.3.2911 Multilingual CyberLink PowerProducer 4.0 (1 cd) Cyberlink Streamauthor 3.0 (1 cd) Dameware NT Utilities 3.46 Dassault Systemes Catia 5R17 Documentation (4 cd) Dassault Systemes Catia P3 5R17 with SP5 (3 cd) Data Becker Complete HomeDesigner 5.0 (1 cd) Data Junction Enterprise 7.51.36 Database Commander 1.3 DataCAD 11.08.01 DataViz Conversions Plus Suite 6.05 Daz Bryce 6.1 Daz Bryce 6.1 for Mac DAZ3D MegaPack for Poser (1 dvd) Dbase Plus 2.01 DBExplorer 2.0.0 Delcam Artcam Insignia 4.019 (1 cd) Delcam Artcam Pro 9.021 (1 cd) Delcam CopyCad 6.0 (1 cd) Delcam Featurecam 2007 13.2.0.12 Delcam Powermill Pro 7006.CB1084540 with SP6 Multilanguage (1 dvd) Delcam Powershape 7.0.80 with SP5 Deltagraph 5.6.2 Derive 5.05 Design Data SDS2 6.336 DesignCad 3D Max 15 (1 cd) DesignWorkshop Pro 1.8 Developer Studio for PalmOS 2.6.1.0 Digidesign Protools 6.7 M-Powered (1 cd) Digidesign ProTools 6.7 TDM (1 cd) Digidesign Protools 6.7 TDM for Mac (1 cd) Digidesign ProTools LE 7.3 Digidesign ProTools LE 7.3.1 for Mac Digital Fotoalbums Collection Digital Photo Solutions Collection 1 Diskeeper Pro Premier 2007 11.0.703 DocuXplorer Enterprise 4.0.7.261 Dosch 3D Engineered Structures (2 cds) DOSCH 3D Utility Vehicles (1 dvd) Download Accelerator Plus 7.0.1.3 DP Technology Esprit 2007 Dragon NaturallySpeaking 9 Professional (2 cd) Dragon NaturallySpeaking 9.51 Preferred (1 dvd) DVD Region CSS Free 5.9.3.2 DVD Ripper 4.0 for Mac DVD X Studios CloneDVD 4.1.0.2 DVDFab Platinum 3.1.1.2 DVDX Platinum 2.1.0.43 Multilingual DVMpeg 5.09 E-Z Audit 6.5.1008 Easy DVD Clone 3.0.13 EdgeCAM 11.5 (1 cd) Edirol HyperCanvas 1.0 Edirol SuperQuartet 1.0 EDS Imageware NX 12.1 (1 cd) eJay Music Director Electric Rain Swift 3D 4.5.473 Electronics Workbench Ultiboard 9.0.155 Elibrium My Deluxe Invoices and Estimates 5 Emagic Logic Audio Platinum 5.5.1 (1 cd) Emagic SoundDiver 3.0.5.4 Embarcadero Change Manager 3.0.5.628 Embarcadero DBArtisan 8.1.3.3311 Embarcadero ERStudio 7.1.1.4658 Embarcadero Performance Center 2.0 Embarcadero Rapid SQL 7.4.1.3288 Embarcadero Sql Tuner 2.0.1 EMS MySQL Manager Pro 3.2.0.1 Multilingual EMS SQL Manager 6in1 Feb 2007 Enfocus Instant PDF 2.02 for Adobe Acrobat Enfocus Pitstop Professional 6.0 Eon Software Vue Esprit 5.01 (2 cds) Eon Software Vue Infinite 6.05 (2 cd) Eon Software Vue xStream 6 (3 cd) EON Studio 5.2 Eovia Amapi 7.5 (1 cd) Eovia Carrara Pro 5.1 (2 cd) ESRI ArcGIS Desktop 9.2 (1 dvd) Esri Arcims 3.1 ESRI ArcPad 7.0.1 ESRI MapObjects 2.2 ETF Acoustic 5.701 Evidence Eliminator 5.058 build 6 Extensis Portfolio 7.0.4.21 Extensis Portfolio 8.1.0.0 Multilingual Extensis pxl SmartScale 1.0.3 Extensis Suitcase 9.2.2 Eyematic FaceStation 2.0 (1 cd) Eyeon Fusion 5.1.100 EZ-Cam Turn Mill Pro 13.2.5 F-Secure VPN Plus 5.60.186 Fabri Win 7.0 Farpoint Spread 6.0.18 Farstone VirtualDrive 9.0 FastTrack Schedule 7.03 Faxes Collection File Replication Pro 2.0 FileMaker Mobile 8 Multilanguage FileMaker Pro 8.5 Advanced for Mac (1 cd) FileMaker Pro 8.5 R3 (1 cd) FileMaker Pro 8.5 R3 for Mac (1 cd) FileMaker Pro 8.5v1 Advanced Multilanguage Final Draft 7.1.1.19 Final Draft 7.1.3 for Mac FlashJester Creator Pro 1.3 Fluent 6.2 (1 cd) Fluke Network Inspector 5.0.87d Fluke Networks LAN MapShot 1.5 Fmjsoft Awave Studio 8 Fontlab Studio 5.0.0 FormZ RadioZity 5.5 (1 cd) FotoStation Pro 5.1.30 Multilanguage FPGA Advantage for HDL Design 5.0 FPGA Compiler II 3.7.1 Freeway 4.3.2 Pro for Mac FruityLoops Studio XXL 7.0.0 with Update 2 Gatech GT StruDL 27 GEAR Pro 7.02 RC3 Mastering Edition Geomagic Studio 9 (1 cd) Geometryworks 3D 2.01 for Solidworks 2001 GeoSoft 3.0 Program Suite GerbTool 12 GFI FAXmaker for Networks SMTP 12.0.20070131 GFI LANGuard Network Security Scanner 6.0.20050531 GFI MailEssentials for Exchange SMTP 12.0.20070112 GFI MailSecurity for Exchange SMTP 10.0.20060721 Ghost Installer Studio 2.2 Professional GibbsCAM 2006 8.5.2 GIGA Guitars Bits of Expressive (1 cd) GIGA Real Mega Drums (1000 DrumSamples) GIGA Sympnhonic Adventures Samples (1 cd) GIGA Yellow Tools Pure Guitars Exs24 (1 cd) GigaStudio Original Samples CD Gnomon Introduction to Maya Interface and Workflow (1 dvd) Gnomon Maya Dynamics Underwater Environments (1 dvd) GoXml DB 3.0 Graphical Analysis 3.1 Greenworks Xfrog 4.3 for Cinema 4D GTXScanClean Suite 3.0 Hash Animation Master 2004 11.1A Hash Animation Master 2005 11.1H Hit List Commerce Pro 4 Hotdog Pro 7.01.3 HTML WebEditors Collection Hummingbird Fulcrum Knowledgebase Server 4.1 HyperChem 7.52 HyperText Studio Enterprise 4.06 IAR Embedded Workbench Collection Feb 2007 (1 cd) IAR visualSTATE 5.4 Ibm DB2 Application Development Client 8.1 IBM DB2 Warehouse Manager Enterprise 8.1 IBM Lotus Domino Server 7.0.2 (1 cd) IBM Rational Software Architect 6.0 (4 cds) Ibm Rational Suite 2003.06.00 Multilanguage (3 cds) Ibm Tivoli Netview 7.1.3 IBM VisualAge for Java Enterprise Edition 4.0 Ibm WebSphere Application Server 5.1 (1 cd) IBM WebSphere Studio Device Developer 5.7 (1 cd) Ibm Websphere Studio Site Developer Express 5.0 Iconshock 4in1 (1 dvd) Iconshock 4in1 Part2 (1 dvd) Iconshock 4in1 Part3 (1 dvd) Ideal Administration 4.2 Ideal ScanDEX Pro 2.5.13 Igor Engraver 1.5 iGrafx FlowCharter 2003 IK Multimedia Miroslav Philharmonik 1.1 for Mac and PC (2 dvd) Illuminatus Opus Presenter 2.81 Illuminatus Opus Pro 2.6 (1 cd) Image Line FL Studio 6.0.4 Producer Edition ImageGlue 5.2 for ASP ImageGlue NET 5.1 IMagic Restaurant Reservation 2.6 Imagineer Systems Mokey 4.1 Imagineer Systems Mokey 4.1 for Mac Import Studio 2.02 IMSI FloorPlan 3D Design Suite 11.0.32 IMSI TurboCAD Deluxe 14.0 IMSI TurboCAD Professional 11.2 In-Sync Blade 2.2 IndigoRose Setup Factory 6.0.1.0 IndigoRose Visual Patch 1.0.0.2 Informatix Piranesi 5 (1 dvd) Infragistics NetAdvantage 2005-2006 8in1 Pack (1 cd) Inscriber TitleMotion 5.1 Pro for Edius Inside Logic Pro 7.1 (1 dvd) Insightful S-PLUS 7.0.6 Professional Install Construct 4.0.1 InstallAnywhere Enterprise 8.0.3063 InstallAware Studio Admin 6.32 InstallShield 12 Premier Edition with SP2 InstallShield DevStudio 9.01 (1 cd) Instantiations CodePro Studio JBuilder Edition 1.1 Intel C Plus Plus Compiler 9.1.025 Intel Visual Fortran Compiler Pro 9.1.034 IntelliJ IDEA 6.0.5 Intellisys Project Desktop 1.13 InterActive Physiology 7 System Suite 2.0 Intergraph Geomedia Professional 5.1 Internet Security And Acceleration Server 2000 Ent InterVideo DVD Copy Platinum 5.5.0.04 Intervideo WinDVD Creator Platinum 3.0 InterVideo WinDVD Platinum 8.0.6.111 Intuit Learning QuickBooks 2006 (2 cds) Intuit Quickbooks Customer Manager 2.0 (1 cd) Intuit TaxCalc Pro 2004 Intuit TurboTax Business 2006 (1 cd) Intuit TurboTax Deluxe 2006 (1 cd) Intuit TurboTax Deluxe 2006 for Mac (1 cd) Intuit TurboTax Premier Investments 2006 (1 cd) InvestmentHelper 2.7.1.1 Iolo System Mechanic Professional 6.0s IPSentry Network Monitoring Suite 4.7.0 IPSwitch iMail Server Pro 8.10 Ipswitch WhatsUp Gold Premium 11a Ipswitch WS_FTP Pro 2007 Ipswitch WS_FTP Server 5.05 IQ Biometrix Faces 3.0 IRIS Readiris Pro 11.0 for Mac (1 cd) Iron Speed Designer Enterprise 4.2.0 IronCAD 9.0 iSIGHT 8.0 (1 cd) ISS BlackICE PC Protection 3.6 ISS BlackICE Server Protection 3.6 Java Aplets Collection 1 Jaws PDF Creator 3.0 Jetico BestCrypt 7.09.1 Jive Forums Professional 2.6.0a JProbe Suite 6.0.2 JSBuilder Enterprise Edition 1.15 JShop Pro 3.4 Jungo Windriver 6.23 Kerio MailServer 6.2.2.1801 Kerio WinRoute Firewall 6.3.0.2683 Knoll Light Factory 2.5 Labview Addons ProPack LanScan Network Monitor 2 LanScan Professional 2.01d S7 LapLink Remote Network Accelerator 3.0 Leap Software RC Pier 6.00 Lenticular Construction Kit 2.5 Lindows OS SPX 1.1.1 (1 cd) LinkCAD 4.4.16 LinoType Library GoldEdition 1.7 (2 cds) Lotus Notes Client Domino Designer and Admin 6.5.2 Lotus SmartSuite Millenium Edition 9.8 Luxology Modo 203 Luxology Modo 203 for Mac Luxology Texture Library Bundle for Mac and PC (1 dvd) Lynda.com 3ds Max 9 Essential Training (1 dvd) Lynda.com Acrobat 8 Professional Beyond the Basics (1 dvd) Lynda.com Acrobat 8 Professional Essential Training (1 dvd) Lynda.com After Effects 7 and Flash 8 Integration (1 cd) Lynda.com After Effects 7 Animation Techniques (2 cd) Lynda.com After Effects 7 Essential Training (4 cd) Lynda.com After Effects 7 New Features (1 cd) Lynda.com After Effects 7 Title Design Techniques (2 cd) Lynda.com CINEMA 4D R10 Essential Training (1 dvd) Lynda.com Contribute 3 Essential Training (1 cd) Lynda.com CorelDRAW Graphics Suite X3 Essential Training (1 cd) Lynda.com Dreamweaver 8 Essential Training (2 cds) Lynda.com Dreamweaver 8 Hands On Training (1 cd) Lynda.com Dreamweaver 8 New Features (1 cd) Lynda.com Dreamweaver CS3 Essential Training (1 dvd) Lynda.com Excel 2007 Essential Training (1 cd) Lynda.com Expression Web Essential Training (1 cd) Lynda.com FileMaker 3in1 (3 cd) Lynda.com Filemaker Pro 8 Essential Training (2 cd) Lynda.com Final Cut Pro 5 Beyond the Basics (3 dvd) Lynda.com Final Cut Pro 5 Essential Editing (3 cd) Lynda.com Final Cut Studio Integration (1 cd) Lynda.com Fireworks 8 Essential Training (2 cds) Lynda.com Fireworks CS3 Essential Training (1 cd) Lynda.com Flash CS3 Professional Essential Training (1 dvd) Lynda.com Flash Professional 8 Building Data-Driven Applications (1 cd) Lynda.com Flash Professional 8 Essential Training (2 cds) Lynda.com Flash Professional 8 New Features (1 cd) Lynda.com Getting Started with Corel Paintshop Pro XI (1 cd) Lynda.com Getting Started with CorelDRAW Graphics Suite X3 (1 cd) Lynda.com Illustrator CS2 and Flash 8 Integration (1 cd) Lynda.com Illustrator CS2 Essential Training (4 cd) Lynda.com Illustrator CS3 Essential Training (1 dvd) Lynda.com Illustrator CS3 One-on-One The Essentials (1 dvd) Lynda.com InCopy CS3 plus InDesign CS3 Integration (1 dvd) Lynda.com InDesign CS3 Essential Training (1 dvd) Lynda.com LiveType 2 Essential Training (1 cd) Lynda.com Outlook 2007 Essential Training (1 cd) Lynda.com Photoshop CS2 Essential Training (3 cd) Lynda.com Photoshop CS2 FAQs (1 cd) Lynda.com Photoshop CS3 Extended for 3D plus Video (1 dvd) Lynda.com Photoshop CS3 One-on-One Advanced Techniques (1 dvd) Lynda.com Photoshop CS3 One-on-One Beyond the Basics (1 dvd) Lynda.com Photoshop CS3 One-on-One The Essentials (1 dvd) Lynda.com Photoshop Elements 5 Essential Training (1 dvd) Lynda.com Photoshop Lightroom Essential Training (1 cd) Lynda.com Poser 7 Essential Training (1 dvd) Lynda.com PowerPoint 2007 Essential Training (1 cd) Lynda.com Premiere Pro 2 Essential Training (2 cds) Lynda.com QuarkXPress 7 New Features (2 cds) Lynda.com Visio 2007 Essential Training (1 dvd) Lynda.com Word 2007 Essential Training (1 cd) M2-Edit Pro 5 Mackichan Scientific Notebook 5.5.2953 Mackichan Scientific Word 5.5.2953 Mackichan Scientific Workplace 5.5.2953 Macromedia Authorware 7.01 Macromedia Breeze 5.1 with SP2 Multilanguage (1 cd) Macromedia ColdFusion MX 7.0.2 Enterprise Ed Macromedia Contribute 3.11 for Mac Macromedia Contribute 4 (1 cd) Macromedia Contribute Publishing Services build 2284 (1 cd) Macromedia Director MX 2004 v10.1 Macromedia Director MX 9.0 for Mac (1 cd) Macromedia Dreamweaver 8.0 Macromedia Dreamweaver 8.0 for Mac Macromedia Dreamweaver UltraDev 4.0 Macromedia EHelp RoboHelp for FrameMaker 4.20.340 Macromedia Fireworks 8.0 for Mac Macromedia Fireworks 8.0 Multilingual Macromedia Flash Communication Server MX Pro 1.6 r105 Macromedia Flash Media Server Edge Edition 2.0.2 MultiOS Macromedia Flash MX ActionScript Bible Macromedia Flash Professional 8.0 Macromedia Flash Professional 8.0 for Mac Macromedia Flash Remoting MX 1.0 Macromedia Flash Video Kit v1.0 Macromedia FlashPaper 2.01 Macromedia Fontographer 4.1 Macromedia Freehand MX 11.0.1 Macromedia Freehand MX 2004 for Mac Macromedia HomeSite 5.1 Macromedia JRun 4.0 Macromedia Studio 8.0 (2 cds) Macromedia Studio 8.0 for Mac (2 cds) MagicDraw Teamwork Server 11.6 AllOS MagicDraw UML Enterprise 11.6 AllOS MAGIX Audio Cleaning Lab 11 e-verison 7.03 Magix Movie Edit Pro 12 e-version 6.5.4.2 Magix Music Maker 2006 11.0.1.3 E Magix Music Studio Deluxe 2005 (1 cd) Magix Samplitude Professional 8.01 MainConcept H.264 Encoder 2.1.0 MainConcept MPEG Pro HD 2.0.0 MakeMusic Finale 2007 (1 dvd) MakeMusic Finale 2007 for Mac (1 dvd) Manga Studio 3.0 EX (3 cd) Manga Studio 3.0 EX Professional for Mac (3 cd) Mapinfo MapMaker 6.4 MapInfo Professional 8.0 MapleSoft Maple 11.0 MapleSoft Maple 11.0 Professional for Mac (1 cd) Mastercam X2 (1 cd) Mathematica 6 for Mac (1 cd) Mathematica 6.0 (1 cd) MathType 5.2a Mathworks Matlab R2006b Student for Mac Mathworks Matlab R2007a (1 dvd) Maximizer 9.0 (1 cd) Maxon 3D Models Collection 4 in 1 Maxon Cinema 4D R10 Studio Bandle for Mac (1 dvd) Maxon Cinema 4D R10 Studio Bundle Multilanguage (1 dvd) Maxwell Render 1.1 Maxwell Render 1.1 for Mac McAfee AntiSpyware 2.1.112 McAfee AntiSpyware Enterprise 8.5sa McAfee Internet Security Suite 8.0.113.3 McAfee Personal Firewall Plus 7.1.113 McAfee Spamkiller 7.0.21 McAfee Total Protection 2007 (1 cd) McAfee VirusScan Enterprise 8.5.0i with patch 1 McAfee VirusScan Plus 2007 (1 cd) McAfee Wireless Home Network Security 1.0.124.1 McAfee Wireless Security 4.1 Mechsoft for SolidEdge 15 (1 cd) MechSoft Standard Part Libs for Inventor Series R3 MediaChance DVDLab Pro 2.25 MediSoft Network Professional 7.02 Merant PVCS Version Manager 7.5.1 Mercury InterActive Astra LoadTest 5.4.3.4 for LoadRunner Mercury InterActive LoadRunner 7.6 (1 cd) Mercury QuickTest Professional 9.0.0.0.2462 Mercury WinRunner 8.2 (1 cd) Metacreations Ray Dream Studio 3D 5.0 Metrowerks CodeWarrior Development Studio 9.3 Metrowerks CodeWarrior PRO 8.0 (2 cds) Mgi Photovista 3D Objects 1.02 MGI Photovista Virtual Tour 1.01 Micrografx Designer 9 (1 cd) Micrografx Picture Publisher 10 Pro (3 cds) Microsoft Autoroute Europe 2007 (1 dvd) Microsoft BizTalk Server 2006 R2 EDI (1 cd) Microsoft Business Portal 3.0 for Dynamics SL 6.5 (1 cd) Microsoft Business Portal 3.0 for Microsoft Dynamics GP 9.0 (1 cd) Microsoft Class Server 3.0 (1 cd) Microsoft Commerce Server 2007 Enterprise Edition (1 cd) Microsoft Content Management Server 2002 Microsoft CRM 1.2 Server (1 cd) Microsoft Digital Image Suite 2006 Anniersary Edition (2 cd) Microsoft Dynamics CRM 3.0 Professional and Small Business Edition (2 cds) Microsoft Dynamics SL 6.5 (2 cds) Microsoft Encarta Premium 2006 (1 dvd) Microsoft Encarta Reference Library Premium 2005 (1 dvd) Microsoft Ent Learning Library Win2k Server 2.1 Microsoft Exchange Server 2000 (1 cd) Microsoft Exchange Server 2003 Enterprise Microsoft Exchange Server 2007 Enterprise Edition x64 (1 dvd) Microsoft Expression Web 2007 Microsoft FRx 6.7 with SP5 (1 cd) Microsoft Great Plains 8.0 (2 cds) Microsoft Internet Explorer 7 Final (1 cd) Microsoft ISA Server 2006 Enterprise Edition (1 cd) Microsoft Live Communications Server 2005 Ent. with SP1 (1 cd) Microsoft MapPoint 2006 Europe (1 dvd) Microsoft MapPoint 2006 North America Edition (2 cds) Microsoft Money 2006 Small Business (1 cd) Microsoft Money 2007 Deluxe (1 cd) Microsoft MSDN Library for Visual Studio 2005 (1 dvd) Microsoft MSDN Library September 2006 (3 cd) Microsoft Office 2003 Multilingual User Interface Pack-1 (2 cds) Microsoft Office 2003 Multilingual User Interface Pack-2 (2 cds) Microsoft Office 2003 Professional with SP2 (5 cds) Microsoft Office 2004 Standard with SP2 for Mac (1 cd) Microsoft Office 2007 Enterprise (1 cd) Microsoft Office 2007 Language Pack Arabic Korean Hebrew (1 cd) Microsoft Office 2007 Language Pack Dutch (1 cd) Microsoft Office 2007 Language Pack French (1 cd) Microsoft Office 2007 Language Pack German (1 cd) Microsoft Office 2007 Language Pack Italian (1 cd) Microsoft Office 2007 Language Pack Japanese (1 cd) Microsoft Office 2007 Language Pack Polish (1 cd) Microsoft Office 2007 Language Pack Portuguese Brazil (1 cd) Microsoft Office 2007 Language Pack Russian (1 cd) Microsoft Office 2007 Language Pack Spanish (1 cd) Microsoft Office 2007 Language Pack Swedish (1 cd) Microsoft Office 2007 Suite (1 dvd) Microsoft Office Business Contact Manager 2007 (1 cd) Microsoft Office Business Contact Manager for Outlook 2007 (1 cd) Microsoft Office Forms Server 2007 (1 cd) Microsoft Office Publisher 2003 (1 cd) Microsoft Office SharePoint Server 2007 Enterprise (1 cd) Microsoft Office SharePoint Server 2007 Enterprise x64 (1 cd) Microsoft Office Small Business Edition 2003 (2 cds) Microsoft Office Visio 2007 Pro (1 cd) Microsoft One Note 2003 (1 cd) Microsoft Operations Manager 2005 with SP1 (1 cd) Microsoft Picture It Photo Premium 10 (1 cd) Microsoft Project 2007 Professional (1 cd) Microsoft Project 2007 Server (1 cd) Microsoft Proofing Tools 2003 (1 cd) Microsoft Small Business Accounting 2006 (1 cd) Microsoft Small Business Financials 9.0 (1 cd) Microsoft Small Business Manager 7.5 Microsoft Small Business Server 2003 R2 Premium Edition (5 cd) Microsoft Small Business Server 2003 R2 Premium Technologies (2 cd) Microsoft SQL Server 2005 Developer Edition (1 dvd) Microsoft SQL Server 2005 Enterprise Edition (1 dvd) Microsoft SQL Server 2005 Enterprise Edition 64-bit Extended (1 dvd) Microsoft SQL Server 2005 Standard Edition (1 dvd) Microsoft SQL Server 2005 Standard Edition 64-Bit (1 dvd) Microsoft SQL Server 2006 Special Edition Microsoft Streets And Trips 2007 (1 dvd) Microsoft Student with Encarta Premium 2007 (1 dvd) Microsoft Systems Management Server 2003 R2 (1 cd) Microsoft Technet March 2007 (2 cd) Microsoft Virtual PC 2007 Microsoft Virtual PC 2007 x64 Microsoft Virtual PC 7.0 for Mac (2 cds) Microsoft Virtual Server 2005 R2 Enterprise (1 cd) Microsoft Virtual Server 2005 R2 Enterprise x64 (1 cd) Microsoft Visio 2003 for Visual Studio 2005 Enterprise Architects (1 cd) Microsoft Visio Enterprise Network Tools 2002 Microsoft Visio for Enterprise Architects 2003 Microsoft Visual Basic 2005 Express (1 cd) Microsoft Visual C Sharp 2005 Express (1 cd) Microsoft Visual Cplusplus 2005 Express (1 dvd) Microsoft Visual FoxPro Pro 9.0 (1 cd) Microsoft Visual SourceSafe 2005 (1 cd) Microsoft Visual Studio .NET 2003 Enterprise Architect (8 cds) Microsoft Visual Studio 2005 AllInOne April 2007 (3 dvd) Microsoft Visual Studio 2005 Professional Edition (1 dvd) Microsoft Visual Studio 2005 Standard Edition (1 dvd) Microsoft Visual Studio 2005 Team Edition for Database Pro (1 dvd) Microsoft Visual Studio 2005 Team Edition for Software Developers (1 dvd) Microsoft Visual Studio 2005 Team Foundation Server Workgroup Ed. (1 cd) Microsoft Visual Studio 2005 Team Suite (1 dvd) Microsoft Visual Studio 2005 Team System VPC (1 dvd) Microsoft Visual Studio 2005 Tools for the Microsoft Office System (1 cd) Microsoft Visual Web Developer 2005 Express Edition (1 cd) Microsoft Windows 2000 3 in 1 Corporate Edition with SP4 Microsoft Windows 2000 Advanced Server with SP4 RU1-V2 (1 cd) Microsoft Windows 2000 Professional with SP4 RU1-V2 (1 cd) Microsoft Windows 2000 Server with SP4 RU1-V2 (1 cd) 60$ buy Microsoft Windows 2000 with SP4 5in1 (1 cd) Microsoft Windows 2003 R2 Server Datacenter Edition with SP2 (2 cd) Microsoft Windows 2003 R2 Server Enterprise with SP2 (2 cd) Microsoft Windows 2003 R2 Server Multilingual User Interface (5 cds) Microsoft Windows 2003 R2 Server Standard with SP2 (2 cd) Microsoft Windows 2003 R2 Server x64 Enterprise with SP2 (2 cd) Microsoft Windows 2003 R2 Server x64 Multilingual User Interface (3 cds) Microsoft Windows 2003 R2 Server x64 Standard with SP2 (2 cd) Microsoft Windows 2003 Server Enterprise with SP2 (1 cd) Microsoft Windows 2003 Server Enterprise with SP2 x64 (1 cd) Microsoft Windows 2003 Server Standard with SP2 (1 cd) Microsoft Windows 2003 Server Web with SP2 (1 cd) Microsoft Windows 2003 Server with SP1 8in1 (1 dvd) Microsoft Windows 2003 Server x64 MUI Pack (1 cd) Microsoft Windows 2003 Small Business Server with SP1 (5 cds) Microsoft Windows Compute Cluster Server 2003 with SP1 (2 cd) Microsoft Windows Fundamentals for Legacy PCs 2006 with SP2 (1 cd) Microsoft Windows Fundamentals for Legacy PCs 2006 with SP2 MUI PACK1 (1 cd) Microsoft Windows Home Server (1 dvd) Microsoft Windows Longhorn Server build 5757 (1 dvd) Microsoft Windows Longhorn Server build 6001 x64 (1 dvd) Microsoft Windows Small Business Server 2003 Technologies Premium Edition (1 cd) Microsoft Windows Vista 5in1 for x64 (1 dvd) Microsoft Windows Vista 8in1 Multilanguage (1 dvd) Microsoft Windows Vista Business Enterprise (1 dvd) Microsoft Windows Vista Enterprise Final x64 (1 dvd) Microsoft Windows Vista MUI x64 (1 dvd) Microsoft Windows Vista Ultimate (1 dvd) Microsoft Windows Vista Ultimate UPGRADE (1 dvd) Microsoft Windows x64 6in1 (1 dvd) Microsoft Windows XP Embedded SP2 (3 cds) Microsoft Windows XP Media Center Edition 2005 with SP2 (2 cd) Microsoft Windows XP Multilingual User Interface Pack (1 dvd) Microsoft Windows XP Pro with SP2 April 2007 (1 cd) Microsoft Windows XP Tablet PC Edition 2005 with SP2 Feb 2007 (2 cd) Microsoft Windows XP with SP2 11in1 (1 dvd) Microsoft Windows XP with SP2 Upgrade Corporate (1 cd) Microsoft Windows XP x64 Corporate with SP2 March 2007 (1 cd) Microsoft Windows XP x64 MUI Pack (4 cds) Microsoft Works 8.5 Multilanguage (1 dvd) Microsoft Works and Entertainment Suite 2006 (1 dvd) Microwave Office 2002 5.52 with VSS Midisoft Worship Studio 2002 XP 6.0 Mindjet MindManager Pro 6.1.894 MindMapper Pro 5.0.6060 Minitab 14.100 (1 cd) MKS Toolkit for Developers 8.5 Model ChemLab 2.4 Moldflow Products 2007 (1 cd) Motu Digital Performer 5.1 for Mac Mpeg2Vcr 3.12 MSC ADAMS 2005 R2 (1 cd) MSC Dynamic Designer Motion Pro with SP1 for Solid Edge 2003 Msc Dytran 2005 (1 cd) MSC Enterprise MVision 2004 (1 cd) MSC Fatigue 2005 R2 for Patran (1 cd) MSC Marc 2005 R2 Full (1 cd) MSC Nastran 2005 R3 (1 cd) MSC Patran 2006 R1 (1 dvd) Msc Visualnastran Desktop 2003 SP1 MultiActive ecBuilder Developer Edition 6.1 Multigen Paradigm Creator 3.0 (1 cd) Multilizer 6.2.18 Multisim 9.0.155 Music Programs Collection Musicmatch Jukebox Plus 10.00.4033 Musition 2 NA Sniffer Ethernet and Gigabit and WAN Console 4. NA Sniffer Pro 4.7 Namo WebEditor 2006 Suite National Instruments Circuit Design Suite Educational 10.0 (1 cd) National Instruments Circuit Design Suite Pro 10.0 (1 cd) National Instruments Diadem 10.1 with SP1 (1 cd) National Instruments LabView 8.2 Modules Pack Feb-2007 (1 dvd) National Instruments LabView with Embedded Support 8.2.1 (1 cd) National Instruments Motion 7.5 (1 cd) National Instruments Pack 6in1 (1 dvd) National Instruments Vision 3in1 (3 cd) Native Instruments ABSynth 4 for Mac (1 cd) Native Instruments ABSynth 4.01 (1 cd) Native Instruments Bandstand for Mac and PC (1 dvd) Native Instruments Battery 3.0.1 for Mac and PC (2 dvd) Native Instruments Collection Native Instruments GuitarRig 2 for Mac (1 cd) Native Instruments GuitarRig 2.2.0.007 (1 cd) Native Instruments Komplete 3 for Mac and PC (4 dvd) Native Instruments Komplete 4 - dvd_1 for Mac (1 dvd) Native Instruments Komplete 4 - dvd_1 for PC (1 dvd) Native Instruments Komplete 4 - dvd_2_3 for Mac and PC (2 dvd) Native Instruments Komplete 4 - dvd_4_5 for Mac and PC (2 dvd) Native Instruments Komplete 4 - dvd_6_7_8 for Mac and PC (3 dvd) Native Instruments Kontakt 2.0 for Mac and PC (1 cd) Native Instruments Kontakt Experience (1 dvd) for Mac and PC Native Instruments Kontakt Gold Sibelius Edition (1 cd) Native Instruments Pro-53 3.0.2 Native Instruments Reaktor 5.1.0 R2 for Mac (1 cd) Native Instruments Reaktor 5.1.1 (1 cd) Native Instruments Traktor 3.2.2 Native Instruments Traktor DJ Studio 3.2.1.030 for Mac Native Instruments Vokator 1.2.0.012 for Mac Navigon MobileNavigator 6 for PDA Navigon MobileNavigator North America Maps for PDA (1 dvd) Navigon MobileNavigator North Eastern Europe Maps for PDA (1 dvd) Navigon MobileNavigator Small Maps for PDA (1 dvd) Navigon MobileNavigator Southern Europe Maps for PDA (1 dvd) Navigon MobileNavigator Western Europe Maps for PDA (1 dvd) Navigon MobileNavigator Whole Europe Maps for PDA (1 dvd) Nemetscheck VectorWorks 11.5.0 (1 cd) Nemetscheck VectorWorks 12 Video Training for Mac (8 cd) Nemetscheck VectorWorks 12.0.1 for Mac (1 dvd) Nemetschek Allplan 2006.2 Multilanguage (1 cd) Nero 7 Essential CD Suite 2 Multilanguage (1 cd) Nero 7.8.5.0 Premium NetIQ Chariot 5.4 NetIQ Vivinet Assessor 2.1 NetIQ Webtrends Enterprise 7.5b NetObjects Fusion 10.00.0000.5005 NetSupport PC-Duo 6.10 Network Inventory Manager 3.0E Network Monitors Collection 1 NewTek Aura VideoPaint 2.5b Newtek LightWave 3D 8.5 (4 cds) Newtek LightWave 3D 9.0 (1 cd) Newtek LightWave 3D 9.0.0 for Mac Newtek LightWave 3D 9.2 Newtek SpeedEDIT (2 dvd) NIST ACerS Phase Equilibria Diagrams Database 2.1 Norton 2005 (1 cd) Norton 360 All-In-One Security (1 cd) Norton Antivirus 10 for Mac (1 cd) Norton AntiVirus 2007 (1 cd) Norton Confidential 2007 (1 cd) Norton Ghost 12.0 Norton Internet Security 2007 10.2 (1 cd) Norton PartitionMagic 8.05 Norton Save and Restore 2007 (1 cd) Norton SystemWorks 2007 Premier (2 cd) Norton SystemWorks 3.0 for Mac (1 cd) Norton Utilities 8.0.2 for Mac (1 cd) NovaBACKUP 8.0.3.0 3in1 Novastor NovaNet 9.00.SP2C Novell Netware 6 NTI Backup NOW! Deluxe 3.0.54 NTI CD DVD Maker Titanium Suite 7.0 (1 cd) NTI DriveBackup Deluxe 4.0.20.0 Nuendo Dolby Digital Encoder 1.01 Numega SoftICE Driver Suite 2.6 Ochre SourceStyler 1.1 Office Recovery Pro 3.0 OmniForm Premium 5 (1 cd) OmniFormat 8.03 onOne Intellihance Pro 4.2 for Adobe Photoshop onOne Mask Pro 4.1 onOne Mask Pro 4.1 for Mac onOne PhotoFrame Pro 3.0 (1 dvd) onOne PhotoFrame Pro 3.1 for Mac (1 dvd) OnTrack Data Advisor 5.0 OnTrack DataEraser Ontrack DiskManager 5.06 Ontrack EasyRecovery DataRecovery 6.03.04 OnTrack Fix-It Utilities 4.0 Ontrack PowerControls 2.10 Business Edition OnTrack PowerDesk Pro 5.0.1.2 OnTrack System Suite 4.0 50$ buy Oracle 9i Database Enterprise Edition (3 cds) OriginLab OriginPro 7.5 Orion Studios Direct DVD 5.2 PaloAlto Business Plan Pro 2007 Premier Edition 9.06.0006 Paragon 7tools Partition Manager 2005 Paragon Drive Backup 8.5.1681 Enterprise Server Paragon Hard Disk Manager 8.5.1681 Server Edition Paragon Partition Manager Professional 8.5 Parallels Desktop build 3188 for Mac Parasoft 2in1 (1 cd) ParticleIllusions 3.0 (1 cd) Passware Password Recovery Kit Enterprise 6.1 PC Install 7.0 PC Tests Collection PDF Seps2Comp for Adobe Acrobat 1.7.1 Peachtree First Accounting 2005 (1 cd) Peachtree Premium Accounting 2006 Peachtree Pro Accounting 2007 (1 cd) Pegasus ImagXpress Photo 8.0 Pegasus SmartScan Xpress Barcode 4.0.20.0 Pegasus SmartScan Xpress ICR OCR OMR 4.0.87.0 PeopleSoft eProcurement 2.0.711 with SP1 Perl Builder 2.0d Pro Perl Studio 3.01 PGP Enterprise 8.0 for Windows Phase One Capture One Pro 3.6 Photomatix Pro 2.4.1 Photomatix Pro 2.4.1 for Mac Photomodeler Professional 5.2.3 PHP Flash Turbine 5.0.324 Pinnacle Hollywood FX Pro 5.2 (1 cd) Pinnacle Impression DVD Pro 2.2 (1 cd) Pinnacle Instant CD DVD 8.3 Multilanguage (1 cd) Pinnacle Smartsound Sentimental (1 cd) Pinnacle Studio Hollywood FX Vol. 1 and 2 (2 cds) Pinnacle Studio MediaSuite 10.6 Multilanguage (1 cd) Pinnacle Studio Plus 11 (1 dvd) Pinnacle Studio Plus 11 Bonus DVD Multilanguage (1 dvd) Pinnacle Studio Premium Pack Vol1 Multilanguage (1 dvd) Pinnacle Studio Premium Pack Vol2 Multilanguage (1 dvd) Pixar RenderMan Pro Server 12.5.1 Pixologic ZBrush 3.0 PL-SQL Developer 5.0.2 PMG Messiah Animate 3.3b Poser 7.0 for Mac (1 dvd) Poser 7.0 with SR1 (1 dvd) Poser Figure Artist 1.0 (1 cd) PowerQuest BootMagic 7.0 PowerQuest Drive Image 7.01 (1 cd) PowerQuest DriveCopy 4.0 PowerQuest PowerExpert SRM 5 PowerQuest V2I Protector 2.03.402 Server Edition (1 cd) PowerQuest Volume Manager 2.05 PQSystems GAGEpack 5.5.5 50$ buy Pramati Server 3.0 with SP3 Enterprise Pramati Studio 3.0 with SP2 Primavera 5.0 (1 cd) Primavera Expedition 10.1 (2 cd) Pro Mechanica 2001 Propellerheads Reason 3.0 (3 cds) Propellerheads Reason 3.0 for Mac (3 cds) Propellerheads ReCycle 2.1 for Mac and Pc (1 cd) Protection Plus 4.109 Protel Altium DXP 7.0 PTC Expert Moldbase Extension 5.0 M010 (2 cd) PTC ICEM Surf 4.5 (2 cds) PTC IntraLINK 3.4 M011 (1 cd) PTC Mathcad 14.0 (1 cd) PTC Pro Engineer Wildfire 3.0 M070 (1 dvd) PTC Pro Engineer Wildfire 3.0 M070 x64 (1 dvd) PTC Pro Engineer Wildfire Graphics Library 3.0 (1 cd) PureMotion EditStudio Pro 5.0.0 QuarkXPress 7.0.2 Passport for Mac (1 cd) QuarkXPress 7.2 Passport (1 cd) QuarkXPress Fonts Collection QuarkXPress Plugins Pack Feb 2007 Quest Toad for Oracle Suite 9.0 QuickBooks 2003 12.0 5 in 1 Edition Quickbooks 2004 Premier Accountant Edition 2004 (1 cd) QuickBooks 2007 Premier Edition (1 cd) QuickBooks Enterprise Solutions 2005 (1 cd) QuickBooks Point of Sale 4.0 Pro (1 cd) QuickBooks Pro 2006 (1 cd) QuickBooks Pro 2007 for Mac Quicken 2007 for Mac Quicken 2007 R1 Deluxe Quicken Home and Business 2007 (1 cd) Quicken Legal Business Pro 2004 Quicken WillMaker Plus 2007 Quicken XG 2007 R1 Canadian Edition Quicktax 2003 (1 cd) Rad XML Persistent Tools 3.0 Realviz ImageModeler 4.02 (1 cd) Realviz Matchmover Pro 4.0 (1 cd) Realviz Retimer HD 1.1 for AE and C2 Realviz SceneWeaver 1.0.1 Realviz Stitcher 3.5.1 for Mac Realviz Stitcher Unlimited 5.5.1 Report Miner 1.4 Research Systems Noesys 2.4 Retina Network Security Scanner 5.09.1067 RGC Audio Pentagon 1.1 VST RhinoCAM Pro 1.0 for Rhino 4.0 Rhinoceros 4.0 Multilanguage (2 cd) Right Hemisphere Deep Exploration 2.1.10.1214 Right HemiSpheres Deep Paint 3D 2.0 Robot Millenium 17.0 (1 cd) Roxio DigitalMedia Studio Deluxe Suite 7.0 (1 cd) Roxio Easy DVD COPY 2 Premier (1 cd) Roxio Easy Media Creator Deluxe Suite 9.06 Multilanguage (2 dvd) Roxio MyDVD 8.0 Premier Edition (1 cd) Roxio PhotoSuite 8.0 (1 cd) Roxio Popcorn 2 for Mac (1 cd) Roxio RecordNow Premier 8.0 Multilanguage (1 cd) Roxio Toast 8.0.112 Titanium for Mac (1 cd) RSI CAMCAD Pro 4.4.024 Runtimes DiskExplorer for FAT and NTFS 2.06 Runtimes GetDataBack for FAT and NTFS 2.06 Sage Accounts 3in1 Salon Styler Pro 5.2.1 (1 cd) SampleTank 2.2.2 XL ScanSoft OmniPage 15.2 Professional Multilingual (1 cd) Scansoft Omnipage Pro X for Mac Scansoft Paperport Pro Office 9 (1 cd) ScanSoft PaperPort Professional 11.0 Multilanguage (1 cd) ScanSoft PDF Converter Professional 4.0 SCO Linux Server 4.0 (3 cds) Search Engine Builder Pro 1.23 Secure Programs Collection SecurStar DriveCrypt 2in1 Serif WebPlus 10.0 (2 cd) Serious Magic DV Rack 2.1.1571 SD Serious Magic Ovation 1.0.1472 Serious Magic Ultra 2.0.2269.5 Serv-U FTP Server Corporate Edition 6.4.0.4 Sescoi WorkNC 16.21 (1 cd) Shade 8.5 Pro for Mac (1 cd) Shade 8.5.1 Shop Master 3.0.9 Developer-Merchant-Express Shopping Cart Professional 6.03 Sibelius 3.1.1 for Mac (1 cd) Sibelius 4.1.5 (1 cd) SideFX Houdini Master 8.2.13 Sierra Complete 3D Home Architect 4 Sierra Complete 3D Land Designer v7.0 Simply Accounting Pro 2004 (1 cd) Sirid 1.11 for Windows Skymatter Mudbox Pro 1.0.4 SlySoft AnyDVD HD 6.1.4.3 SlySoft CloneDVD 2.9.0.6 SlySoft CloneDVD Mobile 1.1.3.0 Small Business Inventory Control Pro v5.02 Smallwanders Enterprise Security Reporter 1.89 SmartDraw 2007 SmartSound Sonicfire Pro 3.2.2.0 SNMPc Network Manager 5.1.6c Enterprise Edition SolarWinds Engineers Edition Toolset 7.1 SolarWinds Engineers Edition Toolset 8.2 SolarWinds Orion Network Performance Monitor SLX 7.8 SolidCAM 2007 R11 SP0 for SolidWorks Solidprofessor Solidworks Advanced Concepts Solidprofessor Solidworks Core Concepts 2005 Solidprofessor Solidworks Update Training 2006 Solidworks 2006 Office Premium (4 cds) Solidworks 2007 with SP3.0 Office Premium (1 dvd) Sonic DVD Audio Creator 3.0.05 Sonic Dvd Fusion 3.01 Sonic DVD Producer 5.0 (1 cd) Sonic Foundry Soft Encode 1.0 Dolby Digital 5.1 Sonic MyDVD Studio Deluxe Suite 6.1 Multilanguage (1 cd) Sonic Solutions Scenarist 3.1 Sonidomedia SoundFont Toolbox Sony ACID Pro 6.0d Sony CD Architect 5.2b 197 Sony DVD Architect 4.0b 166 Sony Sound Forge 9.0 Sony Vegas 7.0e Sophos Antivirus 4.14 Enterprise Multilanguage for Mac and PC (1 cd) Sorenson Squeeze Compression Suite 4.3.302.4 Sound Forge and Wavelab Filters and Plugins Pack SourceOffSite Collaborative Edition 1.1.1 SourcePublisher CPP 1.4.186 for Linux Sparx Systems Enterprise Architect 6.1.789 Speed Ferret 4 Spice-it 1.8 Spruce DVDMaestro v2.9 SPSS 15.0 (1 cd) Spss SigmaPlot 8 Spss SigmaStat 3.0 SpyWorks Pro 6.3 Sql Navigator 3.2d11 for Oracle SRAC Cosmos DesignStar 4.0 SRAC Cosmos FloWorks 2005 SRAC Cosmos M 2006 with SP2 SRAC Cosmos Motion 2005 SRAC COSMOSWorks 2007 (1 cd) STAAD Beam 2.0 STAAD Pro 2006 build 1002 Bilingual (1 cd) Stardock 21in1 Feb 2007 StatIT Pro QC 5.2.8 Statsoft Statistica 6 SR Steganos Security Suite 2006 8.0.4 Steinberg Clean Plus 5.01.23 (1 cd) Steinberg Cubase SE 1.0.7 for Mac and PC (1 cd) Steinberg Cubase SX 3.1.1.944 (1 dvd) Steinberg DVD Movie Copy Suite 6.5 Steinberg Groove Agent 2 (1 cd) Steinberg Halion 3.0 (1 dvd) Steinberg Hypersonic 2 (1 dvd) Steinberg Hypersonic Modules XXL (1 cd) Steinberg Masternig Edition 1.5 Steinberg My MP3 Pro 5.0 Steinberg Nuendo 3.0 (1 dvd) Steinberg The Grand 2 (1 dvd) Steinberg Virtual Bassist (1 cd) Steinberg VOB Instant CD DVD 6.5 Steinberg WaveLab 5.01b Stoik Imaging Product Suite Strata 3DPro RME 3.7 StuffIt Deluxe 11.0.2 for Mac Sun ONE Identity Server 6.0 Sun One Studio 4 Linux-Win SurCode DVD Pro DTS Encoder 1.0.21 Surfware Surfcam 2005 with SP1 (1 cd) Surfware Surfcam Velocity 2005 with SP1 (1 cd) SuSE Linux Enterprise Desktop 10 x64 Multilanguage (1 dvd) SuSE Linux Enterprise Server 10 x86 Multilanguage (1 dvd) Sybase PowerBuilder Enterprise 10.0 Sybase PowerDesigner 12.1 Sybase SQL Anywhere Studio 8 Symantec ACT 2005 7.0 (1 cd) Symantec AntiVirus Corporate 10.1.6.6000 (1 cd) Symantec Backup Exec 11d (1 cd) Symantec Backup Exec System Recovery Server 6.5 (1 cd) Symantec Client Security Corporate Edition 3.1.4.4000 (1 cd) Symantec Enterprise Security Manager 6.5 (3 cds) Symantec Ghost Solution Suite 2.0 (1 cd) Symantec LiveState Recovery Advanced Server 3.0 (1 cd) Symantec Norton GoBack 4 (1 cd) Symantec PCAnywhere 12 (1 cd) Symantec Storage Exec 5.5 Synapse Audio Orion Platinum 7.11 Synplicity Synplify Pro 8.1 Systran 6 Premium Translator (1 dvd) Syware Visual CE Enterprise Edition 6.1 T-REX Seldom Samples Library (1 cd) TapeWare 6.3 SP1A Universal Tascam GigaStudio 3.10.0.2270 Techsmith Camtasia Studio 4.0.0 Tekla Xsteel 12 (1 cd) Template Monster Vol 1 - 2005 (1 dvd) Template Monster Vol 2 - 2005 (1 dvd) Template Monster Vol 3 - 2006 (1 cd) Template Monster Vol 4 - 2006 (1 cd) Template Monster Vol 5 - 2007 (1 dvd) TerraModel 10.13 Territory Mapper US 2.0 Texture Maker 2.5 TGS Open Inventor 3.7 The McGraw-Hill Electronic Structural Detail THINK3 ThinkDesign 2006.1 (1 cd) Together WebSphere Studio Edition 6.0.0.588.2 TomTom Navigator 6.0 Australia Maps Only Multilanguage TomTom Navigator 6.0 Europe Maps Only Multilanguage (1 cd) TomTom Navigator 6.0 with North America Maps for WM03 WM05 TomTom Navigator 6.010 for PalmOS TomTom Navigator 6.010 for WM2003 WM05 Toon Boom Studio 3.0 Toontrack dfh EZdrummer 1.0.4 for Mac and PC (1 dvd) Total Training for Adobe Acrobat 8 Professional (2 dvd) Total Training for Adobe After Effects 7 Pro Essentials (3 dvd) Total Training for Adobe After Effects 7 Pro Professional Features (3 dvd) Total Training for Adobe Flash CS3 Professional Essentials (2 dvd) Total Training for Adobe Flex 2 Rich Internet Applications (1 dvd) Total Training for Adobe Illustrator CS2 (2 dvd) Total Training for Adobe InDesign CS2 (2 dvd) Total Training for Adobe Photoshop CS2 (3 dvd) Total Training for Adobe Premiere Pro 2 (5 dvd) Total Training for Adv. Adobe After Effects 7 Pro Broadcast Design Secrets (2 dvd) Total Training for Advanced Adobe Photoshop CS2 (1 dvd) Total Training for Advanced Microsoft Expression Web (1 dvd) Total Training for Final Cut Pro 5 The Essentials (3 dvd) Total Training for Macromedia Flash Professional 8 (3 dvd) TradingSolutions 4.0.070123 UGS Cast for NX5 (1 cd) UGS Femap 9.0.1 (1 cd) UGS NX Nastran 5.0 UGS NX2D 4.0.1 (1 cd) UGS NX5 (2 dvd) UGS Solid Edge 19.0 with Update 5 (1 dvd) Ulead CD and DVD PictureShow 4.0 Ulead Cool 3D Production Studio 1.0.1 Ulead DVD MovieFactory 6.0 Plus (2 cd) Ulead DVD Workshop 2.0 (1 cd) Ulead GIF Animator 5.05 Ulead Java Applet Suite 1.0 Ulead MediaStudio Pro 8.0 (2 cds) Ulead Photo Explorer 8.6 Multilanguage Ulead PhotoImpact 12 SE 12.00.0508 Multilanguage (1 cd) Ulead VideoStudio Plus 11.0.0157.0 Ultimatte Advantedge 1.6.1 Un-Scan-It 5.0 VariCAD 2007 1.07 Veritas Backup Exec 10.0 (1 cd) Veritas Net Backup Datacenter 4.5 MP6 Veritas NetBackUp Enterprise 6.0 (1 cd) Veritas Premio Dvd 2 VersaCheck 2004 Platinum (1 cd) Versacheck Web Commerce 2001 Vertus Fluid Mask 2.03 for Photoshop Virage VideoLogger 5.0 VirSyn Software Synthesizer 1.10 Virtual CD 7.1.0.0 Network Edition Visible Analyst Database Engineer Edition v7.5.4 Visual Fortran 6.5 Visual Studio ActiveX Components Pack 1 Visual Studio ActiveX Components Pack 2 Visual UML Plus Developer Edition 3.22 Vitec DVD Tools 2.0 VMware ACE Manager 1.0.1.14996 VMware ESX Server 2.5.3 (1 cd) VMWare GSX Server 3.2.0.14497 for Linux VMWare GSX Server 3.2.0.14497 for Windows VMware Infrastructure 3.0 (1 cd) VMware P2V Assistant 2.1.2.31118 VMware P2V BootCD 2.1.0 (1 cd) VMware VirtualCenter 2.0.27704 (1 cd) VMware Workstation 6.0.0.45731 VTC FileMaker Pro 7 Tutorials (1 cd) VTC Macromedia Dreamweaver 8 Advanced Tutorials (1 cd) VTC Microsoft Windows Vista Tutorials (1 cd) Wave Arts Power Suite 5.21 for Mac and PC Waves Diamond Bundle 5.2 Waves Musicians Bundle 5.0 Waves Plugins Pack WebGain 4.5.2 Studio (1 cd) Wilcox PC-DMIS 4.1 (1 cd) WinBatch 2003j Windows Font Tools Collection Windows Utilites Collection 1 Windows Utilites Collection 2 Winfax PRO 10.03 WinGate Pro 6.2.0.1121 WinRAR 3.51 WinRescue WinALL 2.08.33 Winternals Administrators Pak 5.0 (1 cd) Winternals Defrag Manager 3.0 Winternals Disk Commander 1.1.0 Winternals ERD Commander 2003 4.0 Winternals TCPView Professional 1.03 WinZip Professional 11.1.7466 Wise for Windows Installer 6.10.0.450 Enterprise Edition Wise Installation System Professional 9.02 Wise Package Studio 7.0 with SP2 Working Model 2D 2004 SP1 7.0 Xara Xtreme Pro 3.0.1.748 Yummy FTP 1.5.3 for Mac Zaxwerks ProAnimator 4.1.0 for Mac Zend Studio 5.5.0a for Mac Zend Studio Enterprise Edition 5.5.0.270 ZoneLabs ZoneAlarm Pro 4in1 7.0.302.000 Zoom 3D Modeler 5.6 visit our site at http://www.allsoftwarezz.com View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072796#4072796 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072796 From do-not-reply at jboss.com Fri Aug 10 05:08:03 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 10 Aug 2007 05:08:03 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Can I deploy ws4ee endpoint to a separated TomCat? Message-ID: <17789588.1186736883414.JavaMail.jboss@colo-br-02.atl.jboss.com> Currently we only support Tomcat embeded in JBossAS View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072918#4072918 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072918 From do-not-reply at jboss.com Fri Aug 10 06:21:13 2007 From: do-not-reply at jboss.com (richard_opalka) Date: Fri, 10 Aug 2007 06:21:13 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBOSS-WS Client not sending COOKIE after 2 calls Message-ID: <23661933.1186741273723.JavaMail.jboss@colo-br-02.atl.jboss.com> The issue was fixed and fix will be available in next release of JBossWS View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072956#4072956 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072956 From do-not-reply at jboss.com Fri Aug 10 10:02:08 2007 From: do-not-reply at jboss.com (Maffewl) Date: Fri, 10 Aug 2007 10:02:08 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBoss WebService client configuration thru a proxy serve Message-ID: <15996765.1186754528270.JavaMail.jboss@colo-br-02.atl.jboss.com> this topic is still relevant to my interests View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073049#4073049 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073049 From do-not-reply at jboss.com Fri Aug 10 10:21:58 2007 From: do-not-reply at jboss.com (M_schumpa) Date: Fri, 10 Aug 2007 10:21:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Type Substitution doesn't work with Schema2Java Client appro Message-ID: <30425727.1186755718388.JavaMail.jboss@colo-br-02.atl.jboss.com> Dear Community, I have written a simple Web Service which uses Type Substitution (uses the @XmlSeeAlso annotation) Everything works fine if I use the classes, that are used by by the service, in the Client. But when I try to use the from WSDL generated classes in the Client, only the Super Classes are passed to the Web Service. So no Type Substitution at all. I have used the wsconsume -t 2.1 switch, so the @XmlSeeAlso annotations are present in the generated classes. I tried the same with GlassFish and there this proplem doesn't exist. I compared the generated classes and I found no differences with the annotations. Only some version comments were slightly different (JAX-WS RI 2.1.2 <-> JAX-WS RI 2.1.1) I'm using the JBoss 4.2.1GA release where I updated the JBossWS modul to version 2.0.0GA. Anybody here who has a clue on how to fix this problem? Thanks in advance. Greetings m_schumpa View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073063#4073063 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073063 From do-not-reply at jboss.com Sat Aug 11 02:09:15 2007 From: do-not-reply at jboss.com (hhs4401) Date: Sat, 11 Aug 2007 02:09:15 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JBOSSWS Message-ID: <12915627.1186812555722.JavaMail.jboss@colo-br-02.atl.jboss.com> Caused by: org.xml.sax.SAXException: cvc-complex-type.3.2.2: Attribute 'file' is not allowed to appe ar in element 'wsdl-java'. @ *unknown*[16,56] at org.jboss.xb.binding.parser.sax.SaxJBossXBParser$MetaDataErrorHandler.error(SaxJBossXBPar ser.java:348) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073253#4073253 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073253 From do-not-reply at jboss.com Sat Aug 11 13:48:30 2007 From: do-not-reply at jboss.com (dmitry.kudrenko) Date: Sat, 11 Aug 2007 13:48:30 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Error getting WebServiceContext/MessageContext informati Message-ID: <24973406.1186854510898.JavaMail.jboss@colo-br-02.atl.jboss.com> Sorry, I am a newby with jbossws. But I have NPE with jboss-2.0.0 when I try to get WebServiceContext using @Resource annotation. I found workaround here: http://jira.jboss.com/jira/browse/JBWS-1468 But I can't find lib where javax.ejb.EJBContext should be. Please, help me. Thank you. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073309#4073309 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073309 From do-not-reply at jboss.com Sun Aug 12 23:37:23 2007 From: do-not-reply at jboss.com (csupercowboy) Date: Sun, 12 Aug 2007 23:37:23 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - .NET client failed to invoke web service on JBoss Message-ID: <32764660.1186976243834.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I created a Hello World web service and deployed it on JBoss 4.0.1sp1. This web service only has one method which prints a Hello world message. I created Java clients and they succeeded to consume this service. But when I use a .NET client to try to invoke the method, it always failed. The Java client, .NET client and the JBoss server are on the same machine. The service was created following the JBoss AS documentation Chapter 12. When my .NET client tries to invoke the method, I always got a 500 error saying "The server encountered an internal error () that prevented it from fulfilling this request. " The exception stack starts with java.lang.NullPointerException org.apache.axis.encoding.DeserializationContextImpl.getTypeMapping..... org.apache.axis.encoding.DeserializationContextImpl.getDeserializer..... ..... Any help would be greatly appreciated. Thanks. Arthur View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073434#4073434 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073434 From do-not-reply at jboss.com Mon Aug 13 00:00:21 2007 From: do-not-reply at jboss.com (csupercowboy) Date: Mon, 13 Aug 2007 00:00:21 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: .NET client failed to invoke web service on JBoss Message-ID: <30440254.1186977621863.JavaMail.jboss@colo-br-02.atl.jboss.com> One more thing, the method of the web service takes a string as input argument. The .NET client sends a string to the web service method. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073435#4073435 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073435 From do-not-reply at jboss.com Mon Aug 13 03:52:34 2007 From: do-not-reply at jboss.com (richard_opalka) Date: Mon, 13 Aug 2007 03:52:34 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Error getting WebServiceContext/MessageContext informati Message-ID: <7342699.1186991554277.JavaMail.jboss@colo-br-02.atl.jboss.com> Your archive is jboss-j2ee.jar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073457#4073457 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073457 From do-not-reply at jboss.com Mon Aug 13 10:03:23 2007 From: do-not-reply at jboss.com (Maffewl) Date: Mon, 13 Aug 2007 10:03:23 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBoss WebService client configuration thru a proxy serve Message-ID: <11771654.1187013803621.JavaMail.jboss@colo-br-02.atl.jboss.com> While this solution is not ideal, setting the runtime parameters works: -DproxySet=true -Dhttp.proxyHost=foo.com -Dhttp.proxyPort=8080 -Dhttps.proxyHost=ssl.foo.com -Dhttps.proxyPort=8443 However, there has got to be a way tho to set up proxies at the webservice client level tho in jbossws... anyone? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073563#4073563 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073563 From do-not-reply at jboss.com Mon Aug 13 12:08:28 2007 From: do-not-reply at jboss.com (kimbaltrue) Date: Mon, 13 Aug 2007 12:08:28 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Is there a workaround for the UsernameToken security header? Message-ID: <31690925.1187021308311.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm using 4.2.0.GA with JSR-181 EJB webservices. My EBJ's are topped with the following annotations: @WebService(name = "InstitutionServices", targetNamespace = "http://tagus.ccf.org/", serviceName = "InstitutionServices") | @SOAPBinding(style = SOAPBinding.Style.DOCUMENT) | /* | * JBOSS specific security annotations | */ | @SecurityDomain("tagus-domain") | @WebContext(authMethod="BASIC", transportGuarantee="NONE", secureWSDLAccess=false) | | @Stateless(name = "InstitutionServices") | @Local(InstitutionServices.class) | @Remote(InstitutionServices.class) | /* | * JBOSS Specific | */ | @RemoteBinding(jndiBinding = "/ejb3/InstitutionServices") | | @Interceptors(ServiceMetrics.class) | @TransactionManagement(TransactionManagementType.BEAN) I'm using a Java 6.0 client to generate the request which looks like this: | | | | | 1234/kimbal | welch | aNzX50aOu5XC7UYDOXZd7/xh | 2007-08-13T14:54:11.937Z | | | | | | Hello World | | | Everything looks right, but I'm getting the following error: 11:22:13,593 ERROR [SOAPFaultHelperJAXWS] SOAP request exception | javax.xml.ws.soap.SOAPFaultException: Unprocessed 'mustUnderstand' header element: {http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}Security | at org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS.getSOAPFaultException(SOAPFaultHelperJAXWS.java:70) | at org.jboss.ws.core.jaxws.binding.SOAP11BindingJAXWS.throwFaultException(SOAP11BindingJAXWS.java:109) | at org.jboss.ws.core.CommonSOAP11Binding.verifyUnderstoodHeader(CommonSOAP11Binding.java:87) | at org.jboss.ws.core.CommonSOAPBinding.checkMustUnderstand(CommonSOAPBinding.java:911) | at org.jboss.ws.core.server.AbstractServiceEndpointInvoker.invoke(AbstractServiceEndpointInvoker.java:184) | 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.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:525) | 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) I've gone through all the topics on the JBossWS forum that refer to security or unprocessed mustUnderstand headers. I couldn't find a fix or a work around in any of them. After reading some it sounded like JBoss doesn't understand the current security header format. Is there a work around for this? What format is JBoss expecting? I'm willing the code a replacement header that will match what JBoss is expecting if that will work. However, at this point I'm not sure if JBoss is even looking for a security header at all. When using JSR-181 do I need an XML configuration file for a clear text password? At this stage I'm even willing to rip the security out if I didn't need the user identification during server processing. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073638#4073638 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073638 From do-not-reply at jboss.com Mon Aug 13 13:35:22 2007 From: do-not-reply at jboss.com (tschwarz) Date: Mon, 13 Aug 2007 13:35:22 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Invoking WS from EJB3 Message-ID: <13404674.1187026522855.JavaMail.jboss@colo-br-02.atl.jboss.com> Are there any examples how to invoke a web service from a EJB3? I want to use the @WebServiceRef annotation. I understand, that I need the service and the endpoint interface for using it. But where do I get these classes from. I cannot use wsconsume because it genetrates classes with annotations like @WebService, that makes it unpossible to deploy without error. So are there any examples, tutorials, or other documents that explain the invokation of web services from an EJB3? Thanks Thorsten View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073662#4073662 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073662 From do-not-reply at jboss.com Mon Aug 13 18:00:00 2007 From: do-not-reply at jboss.com (rcherchi) Date: Mon, 13 Aug 2007 18:00:00 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Issue with local soad:address generated Message-ID: <5784863.1187042400399.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi guys, I'm using JBossWS 1.2.0.SP1 and JBoss AS 4.0.5GA ( EJB3 install) I wrote some web services using EJB 3 and I would like to test if they work on the web. However, the generated soap address refers to my local machine name like : http://my-local-machine-name:8080/my-jar-name/MyService?wsdl Maybe if, I would have something like it would work : http://my-public-ip-address:8080/my-jar-name/MyService?wsdl What do you think ? Do you know how can I change that ? Thank you for helping me. Best regards. -- Romain View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073747#4073747 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073747 From do-not-reply at jboss.com Mon Aug 13 20:52:42 2007 From: do-not-reply at jboss.com (jemodurn) Date: Mon, 13 Aug 2007 20:52:42 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Accessing jaxws web service gives error complaining abou Message-ID: <31587214.1187052762874.JavaMail.jboss@colo-br-02.atl.jboss.com> I wrote a simple mbean that tries to call a WS. I hit the same issue. However, if call the same WS from a standalone java client. It works, and subsequent call using the mbean also works. I think the class somehow got loaded by the Universal Class Loader. Something is really strange here about the class loading. Does JbossWS support access from within an mbean? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073775#4073775 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073775 From do-not-reply at jboss.com Tue Aug 14 02:20:23 2007 From: do-not-reply at jboss.com (richard_opalka) Date: Tue, 14 Aug 2007 02:20:23 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Issue with local soad:address generated Message-ID: <23295589.1187072423689.JavaMail.jboss@colo-br-02.atl.jboss.com> Did you try to modify the file jboss-beans.xml, bean WSServerConfig and its property webServiceHost? Don't forget to ensure that property modifySOAPAddress is set to true View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073829#4073829 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073829 From do-not-reply at jboss.com Tue Aug 14 04:13:16 2007 From: do-not-reply at jboss.com (rcherchi) Date: Tue, 14 Aug 2007 04:13:16 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Issue with local soad:address generated Message-ID: <15920149.1187079196431.JavaMail.jboss@colo-br-02.atl.jboss.com> Thank you very much... It works nicely ;) Outstanding job ! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073865#4073865 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073865 From do-not-reply at jboss.com Tue Aug 14 04:44:30 2007 From: do-not-reply at jboss.com (koganty) Date: Tue, 14 Aug 2007 04:44:30 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - xs:anyType not being deserialized properly Message-ID: <16013420.1187081070598.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm using JBossWS 2.0.0 against JBoss 4.0.5 with JDK1.6. I have Map data structure that is returned as part of call. It is a map of String to Object...which translated to xs:string to xs:anyType in the wsdl. When I retrieve this object through a Web Service call... the data comes back fine and all the simple types are deserialized properly. The complex types just show up a ElementNSImpl objects. I see the SOAP message even comes back properly...with correct xsi:type. ipCtILDQ== Do I need to do anything specific/customizations for these objects to be deserialized into the right objects? In the case above, wsdl does contain a mapping for ipAddress but why is it not being converted to one when it is returned as part of this Map. Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073873#4073873 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073873 From do-not-reply at jboss.com Tue Aug 14 05:35:05 2007 From: do-not-reply at jboss.com (bossy) Date: Tue, 14 Aug 2007 05:35:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Unable to priint the content of SOAPBody Message-ID: <9507156.1187084105546.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I need to print the content of every request/response/fault that comes in or goes out from my JAX-RPC web service, that runs under JBoss 4.0.4. I created a hadler that extends javax.xml.rpc.handler.GenericHandler. I can intercept every request / response / fault but I can't get the content of the SOAPBody as a text in the xml format. This is what I've tried: | public class mywsLogHandler extends GenericHandler | { | | ........ | public boolean handleRequest(MessageContext ctx) | { | if (ctx instanceof SOAPMessageContext) | { | try | { | SOAPMessageContext context = (SOAPMessageContext)ctx; | SOAPEnvelope env = context.getMessage().getSOAPPart().getEnvelope(); | SOAPBody body = env.getBody(); | System.out.println(body.getTextContent()); | } | catch (SOAPException ex) | { } | } | } | | .................. | } | I was expecting to see something like : | | | | | this is a test | | | | being printen, but instead I get the following Rintime exception: | 10:16:48,908 WARN [HandlerWrapper] RuntimeException in handler method, transition to DOES_NOT_EXIST | 10:16:48,908 DEBUG [HandlerWrapper] destroy: com.mycom.myws.ws.handler.mywsLogHandler at 125e791 | 10:16:50,268 ERROR [HandlerChainBaseImpl] RuntimeException in request handler | org.jboss.util.NotImplementedException: getTextContent | at org.jboss.ws.soap.NodeImpl.getTextContent(NodeImpl.java:622) | at com.mycom.myws.ws.handler.mywsLogHandler.handleRequest(mywsLogHandler.java:72) | at org.jboss.ws.handler.HandlerWrapper.handleRequest(HandlerWrapper.java:121) | at org.jboss.ws.handler.HandlerChainBaseImpl.handleRequest(HandlerChainBaseImpl.java:254) | at org.jboss.ws.handler.ServerHandlerChain.handleRequest(ServerHandlerChain.java:47) | at org.jboss.ws.server.ServiceEndpointInvoker.callRequestHandlerChain(ServiceEndpointInvoker.java:211) | at org.jboss.ws.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:104) | at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.java:234) | 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(Unknown Source) | 10:16:50,268 DEBUG [HandlerChainBaseImpl] Exit: handleRequest with status: false | 10:16:50,283 DEBUG [SOAPFaultException] new SOAPFaultException [code={http://schemas.xmlsoap.org/soap/envelope/}Client,string=org.jboss.util.NotImplementedException: getTextContent,actor=null,detail=null] | 10:16:50,283 ERROR [SOAPFaultExceptionHelper] SOAP request exception | org.jboss.util.NotImplementedException: getTextContent | at org.jboss.ws.soap.NodeImpl.getTextContent(NodeImpl.java:622) | at com.mycom.myws.ws.handler.mywsLogHandler.handleRequest(mywsLogHandler.java:72) | at org.jboss.ws.handler.HandlerWrapper.handleRequest(HandlerWrapper.java:121) | at org.jboss.ws.handler.HandlerChainBaseImpl.handleRequest(HandlerChainBaseImpl.java:254) | at org.jboss.ws.handler.ServerHandlerChain.handleRequest(ServerHandlerChain.java:47) | at org.jboss.ws.server.ServiceEndpointInvoker.callRequestHandlerChain(ServiceEndpointInvoker.java:211) | at org.jboss.ws.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:104) | at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.java:234) | 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(Unknown Source) | 10:16:50,315 DEBUG [HandlerChainBaseImpl] Enter: handleFault | 10:16:50,315 DEBUG [HandlerChainBaseImpl] Handle fault: [state=DOES_NOT_EXIST,handler=com.mycom.myws.ws.handler.mywsLogHandler at 125e791] | 10:16:50,315 WARN [HandlerWrapper] Handler is in state DOES_NOT_EXIST, skipping Handler.handleFault for: com.mycom.myws.ws.handler.mywsLogHandler at 125e791 | 10:16:50,315 DEBUG [HandlerChainBaseImpl] Exit: handleFault with status: true | 10:16:50,315 DEBUG [ServiceEndpoint] Outgoing SOAPMessage | | | | | env:Client | org.jboss.util.NotImplementedException: getTextContent | | | | 10:16:50,315 DEBUG [ServiceEndpoint] END handleRequest: jboss.ws:di=myws.war,service=mywsService,port=mywsSOAP | 10:16:50,315 DEBUG [MessageContextAssociation] popMessageContext: org.jboss.ws.soap.SOAPMessageContextImpl at da2610 | Could anybody, please, tell me why this isn't working, could this possibly be a bug? Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073899#4073899 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4073899 From do-not-reply at jboss.com Wed Aug 15 08:32:53 2007 From: do-not-reply at jboss.com (kimbaltrue) Date: Wed, 15 Aug 2007 08:32:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Question on EndPointConfig vs. HandlerChain Message-ID: <20739547.1187181173898.JavaMail.jboss@colo-br-02.atl.jboss.com> When building JSR-181 webservices for JBOSS 4.2.x should we use the @EndPointConfig to setup security handlers or should we use the standard JEE @HandlerChain annotation? Is there an example for using @HandlerChain? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074409#4074409 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074409 From do-not-reply at jboss.com Wed Aug 15 10:32:10 2007 From: do-not-reply at jboss.com (M_schumpa) Date: Wed, 15 Aug 2007 10:32:10 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Type Substitution doesn't work with Schema2Java Client a Message-ID: <6004373.1187188330999.JavaMail.jboss@colo-br-02.atl.jboss.com> hi again, no one here who can help me with this issue? Maybe my description of the problem is hard to understand. so I'll try to make it more clear. First I have written a web service with a parameter and a return value. the method is something like: returnValue calculate (List carList){...} The parameter is something like: class car{...} class cheep extends car{...} class cabrio extends car{...} so I added the @XmlSeeAlso ({cheep.class, cabrio.class}) annotation to the Car class. I can now deploy the web service and the wsdl gets generated in a proper way. The first thing I did to test the service was writting a simple client which creates a cheep and a cabrio instance and adds these two instances to a list and passes it to the web service. For this I used the classes I coded. With this setup everything worked fine and the service was able to cast the list members to the proper type. So the type substitution worked well. But I need the test the Schema2Java approach, too. So I consumed the WSDL with wsconsume and the -t 2.1 switch. I addopted the client to use the generated classes. But here the type substitution doesn't work. Only a list of car instances gets passed to the service. Anybody here who has a clue on how to fix this problem? Thanks in advance. Greetings m_schumpa View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074455#4074455 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074455 From do-not-reply at jboss.com Wed Aug 15 13:30:48 2007 From: do-not-reply at jboss.com (cffranco) Date: Wed, 15 Aug 2007 13:30:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Forbidden AxisFault.. Message-ID: <13168272.1187199048172.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi guys, I have two machine with JBOSS in cluster and my server.log, i get the following issue: ERROR [ChatCorporativo.model.br.com.unimed.chatcorporativo.criarsalasautorizacao.model.C riarSalasAutorizacaoModel] Erro na invoca??o do web service Autorizador 2007-08-14 16:21:04,817 ERROR [ChatCorporativo.model.br.com.unimed.chatcorporativo.criarsalasautorizacao.model.C riarSalasAutorizacaoModel] (403)Forbidden AxisFault faultCode: {http://xml.apache.org/axis/}HTTP faultSubcode: faultString: (403)Forbidden faultActor: faultNode: faultDetail: {}:return code: 403 thanks Claudemir. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074530#4074530 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074530 From do-not-reply at jboss.com Wed Aug 15 16:31:24 2007 From: do-not-reply at jboss.com (sebastians) Date: Wed, 15 Aug 2007 16:31:24 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Unable to priint the content of SOAPBody Message-ID: <30947710.1187209885019.JavaMail.jboss@colo-br-02.atl.jboss.com> Use SOAPMessage.writeTo() instead. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074581#4074581 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074581 From do-not-reply at jboss.com Wed Aug 15 18:20:57 2007 From: do-not-reply at jboss.com (jemodurn) Date: Wed, 15 Aug 2007 18:20:57 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS Samples-Failed to authenticate principal=null Message-ID: <24392767.1187216457374.JavaMail.jboss@colo-br-02.atl.jboss.com> I enabled JMX-console security. Can't run test anymore. Anywhere can I set the user/passwd ?? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074601#4074601 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074601 From do-not-reply at jboss.com Wed Aug 15 19:07:53 2007 From: do-not-reply at jboss.com (PeterJ) Date: Wed, 15 Aug 2007 19:07:53 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS Samples-Failed to authenticate principal=null Message-ID: <12418478.1187219273789.JavaMail.jboss@colo-br-02.atl.jboss.com> jemodurn, please do not post unrelated questions in someone else's post, especially in really old posts. Please create a new post with your question (and in it state what test you are running). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074619#4074619 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074619 From do-not-reply at jboss.com Wed Aug 15 19:56:48 2007 From: do-not-reply at jboss.com (robb.greathouse@jboss.com) Date: Wed, 15 Aug 2007 19:56:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Object Array with multiple subclasses fails Message-ID: <23098293.1187222208051.JavaMail.jboss@colo-br-02.atl.jboss.com> When an array of objects is passed as a parameter webservices appears to check the first member and selects the correct subclass for instantiation. However, if a subsequent member is a different subclass an error results as it attempts to marshal into the same subclass. It then complains that there is a field that is not valid in that position. Apparently, it only checks once when processing a object array that is filled with multiple subclasses. There was a similar problem in pojo cache during replication last year and they were able to fix it over night. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074627#4074627 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074627 From do-not-reply at jboss.com Thu Aug 16 03:56:02 2007 From: do-not-reply at jboss.com (ollka) Date: Thu, 16 Aug 2007 03:56:02 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Web Services over JMS(MQ) Message-ID: <28202148.1187250962389.JavaMail.jboss@colo-br-02.atl.jboss.com> Is it possible to run WebServices over JMS (better MQSeries) on JBoss as it can be ran in WebSphere with WebSphere MQ Transport for SOAP (WMQS)? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074703#4074703 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074703 From do-not-reply at jboss.com Thu Aug 16 04:31:40 2007 From: do-not-reply at jboss.com (bossy) Date: Thu, 16 Aug 2007 04:31:40 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Unable to priint the content of SOAPBody Message-ID: <19333724.1187253100613.JavaMail.jboss@colo-br-02.atl.jboss.com> Fantastic! Thank you very much. That's exactly what I needed. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074722#4074722 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074722 From do-not-reply at jboss.com Thu Aug 16 04:34:10 2007 From: do-not-reply at jboss.com (ambika) Date: Thu, 16 Aug 2007 04:34:10 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Needed WS4EE jars missing in JBoss4.0.5.GA Message-ID: <13167389.1187253250053.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I am trying to run the medrec application in jboss application platform (4.2.0.GA). I have done all the steps mentioned in the http://wiki.jboss.org/wiki/Wiki.jsp?page=WS4EEDowngrade. But when i try to deploy , its giving following error. Caused by: java.lang.reflect.UndeclaredThrowableException at org.jboss.system.ServiceCreator.install(ServiceCreator.java:236) at org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:449) at org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:171) ... 81 more Caused by: java.lang.NoClassDefFoundError: org/jboss/webservice/WebServiceClientDeployment at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:620) ========= This is becuase this class in not at all there in this new version of the jboss and medrec code has reffered to this. And i have seen one more thing, there is no webservice package in this new version of the jboss? Please can any one help me regarding the same Regards, Ambika View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074727#4074727 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074727 From do-not-reply at jboss.com Thu Aug 16 06:48:57 2007 From: do-not-reply at jboss.com (mcolak) Date: Thu, 16 Aug 2007 06:48:57 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Develop web service using JBossIDE 2.0.0 Beta2 Message-ID: <15661752.1187261337437.JavaMail.jboss@colo-br-02.atl.jboss.com> http://www.tusc.com.au/tutorial/html/ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074786#4074786 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074786 From do-not-reply at jboss.com Thu Aug 16 12:46:06 2007 From: do-not-reply at jboss.com (jbride) Date: Thu, 16 Aug 2007 12:46:06 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Version of saaj-api in JBoss 4.2. Message-ID: <31783723.1187282766376.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, Looks like Enterprise App Server 4.2 ships with JBossWS 1.2.1 ... which includes among other libraries: jboss-saaj.jar . I'm wondering what exact version of the saaj-api is jboss-saaj.jar ?? thank you, jeff View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074916#4074916 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074916 From do-not-reply at jboss.com Thu Aug 16 13:57:52 2007 From: do-not-reply at jboss.com (rknechtel) Date: Thu, 16 Aug 2007 13:57:52 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: beginner needs help Message-ID: <24795659.1187287073049.JavaMail.jboss@colo-br-02.atl.jboss.com> I have used wscompile from command line under Linux but I just can't seem to get it to work under Winblows. So I decided to try and do it via the ant task. But Eclipse/ant complain with the all to persistant "taskdef class com.sun.xml.rpc.tools.ant.Wscompile cannot be found" error. I have a directory called jwsdplibs that I put all the jars from the jaxrpc, jwsdp-shared, saaj directories into. I'm using JWSDP 1.6 and I tried jwsdp 2.0, I'm using jdk1.5.0_11. Below is my build.xml code. | | My ant.properties has this: | jwsdp.home=/opt/jwsdplibs | ------- | | build.xml | ---------------- | | | | | | | | | | | | | | | | | | | | | | | I can't understand why it can't find the class. Here are the jars in my jwsdplibs directory: dom.jar sax.jar xalan.jar xercesImpl.jar activation.jar commons-beanutils.jar commons-collections.jar commons-digester.jar commons-logging.jar jaas.jar jax-qname.jar jaxp-api.jar jaxrpc-api.jar jaxrpc-impl.jar jaxrpc-spi.jar jta-spec1_0_1.jar mail.jar namespace.jar relaxngDatatype.jar saaj-api.jar saaj-impl.jar xmlsec.jar xsdlib.jar Does anyone have any idea what is going on? Have you had similar issues where it can't find the wscompile ant class? Thanks, View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074933#4074933 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074933 From do-not-reply at jboss.com Thu Aug 16 16:01:38 2007 From: do-not-reply at jboss.com (rknechtel) Date: Thu, 16 Aug 2007 16:01:38 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: beginner needs help Message-ID: <8023907.1187294498675.JavaMail.jboss@colo-br-02.atl.jboss.com> I figured it out. I changed: | | To: | | | | | | | | That seemed to take care of the problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074973#4074973 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074973 From do-not-reply at jboss.com Thu Aug 16 17:38:19 2007 From: do-not-reply at jboss.com (p0six) Date: Thu, 16 Aug 2007 17:38:19 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Wierd problem with result always being empty Message-ID: <23323556.1187300299367.JavaMail.jboss@colo-br-02.atl.jboss.com> I've been trying to get by this all day. I have a web server defined to return an Object of type Arrivalbooking. The Arrivalbooking class is generated using xjc from a predefined DTD. Whenever I execute the web service the method executes perfectly and returns a valid Arrivalbooking with data in it. However ,the result is always empty. Anyone have any ideas? Here's the basic source for the web service @WebService @SOAPBinding(style=SOAPBinding.Style.DOCUMENT, parameterStyle=SOAPBinding.ParameterStyle.WRAPPED) @ServiceMode(value=Service.Mode.PAYLOAD) //@SOAPBinding(style=SOAPBinding.Style.RPC) public class RecordGridJSE implements RecordGrid { @WebMethod @WebResult(name="arrivalsboard", partName="arrivalsboard") @SOAPBinding(style=SOAPBinding.Style.DOCUMENT, parameterStyle=SOAPBinding.ParameterStyle.WRAPPED) public Arrivalsboard getDefaultRecordGrid() throws RemoteException { return getRecordGrid(null, null, (SimpleDateFormat) null); } @WebMethod @WebResult(name="arrivalsboard", partName="arrivalsboard") @SOAPBinding(style=SOAPBinding.Style.DOCUMENT, parameterStyle=SOAPBinding.ParameterStyle.WRAPPED) public Arrivalsboard getRecordGrid(@WebParam(name="start") Date start, @WebParam(name="end") Date end, @WebParam(name="dateFormat") String dateFormat) throws RemoteException { Arrivalbooking arrivalbooking = new Arrivalbooking(); . . . return arrivalbooking; } } The source for Arrivalbooking, Event was also generated with xjc @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "event" }) @XmlRootElement(name = "arrivalsboard") public class Arrivalsboard { protected List event; /** * Gets the value of the event property. * * * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the event property. * * * For example, to add a new item, do as follows: * * getEvent().add(newItem); * * * * * Objects of the following type(s) are allowed in the list * {@link Event } * * */ public List getEvent() { if (event == null) { event = new ArrayList(); } return this.event; } } View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075014#4075014 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075014 From do-not-reply at jboss.com Fri Aug 17 08:36:40 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 17 Aug 2007 08:36:40 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Version of saaj-api in JBoss 4.2. Message-ID: <2058447.1187354201016.JavaMail.jboss@colo-br-02.atl.jboss.com> 1.2 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075185#4075185 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075185 From do-not-reply at jboss.com Fri Aug 17 08:39:06 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 17 Aug 2007 08:39:06 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Web Services over JMS(MQ) Message-ID: <31457919.1187354346727.JavaMail.jboss@colo-br-02.atl.jboss.com> We have a JMS sample in the distribution. The actual JMS implementation should be transparent to your MDB View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075187#4075187 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075187 From do-not-reply at jboss.com Fri Aug 17 08:40:08 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 17 Aug 2007 08:40:08 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Object Array with multiple subclasses fails Message-ID: <22590212.1187354408504.JavaMail.jboss@colo-br-02.atl.jboss.com> http://jira.jboss.org/jira/browse/JBWS-1789 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075189#4075189 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075189 From do-not-reply at jboss.com Fri Aug 17 08:42:24 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 17 Aug 2007 08:42:24 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS Samples-Failed to authenticate principal=null Message-ID: <7022248.1187354544037.JavaMail.jboss@colo-br-02.atl.jboss.com> jmx authentication is supported since jbossws-2.0.0 http://jira.jboss.org/jira/browse/JBWS-1624 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075190#4075190 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075190 From do-not-reply at jboss.com Fri Aug 17 08:47:59 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 17 Aug 2007 08:47:59 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Type Substitution doesn't work with Schema2Java Client a Message-ID: <12813083.1187354879982.JavaMail.jboss@colo-br-02.atl.jboss.com> What's the difference in hand coded vs. generated classes? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075193#4075193 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075193 From do-not-reply at jboss.com Fri Aug 17 08:49:10 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 17 Aug 2007 08:49:10 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Question on EndPointConfig vs. HandlerChain Message-ID: <28970175.1187354951030.JavaMail.jboss@colo-br-02.atl.jboss.com> Both would work as long as the handler processing the incoming message is the first in the chain View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075194#4075194 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075194 From do-not-reply at jboss.com Fri Aug 17 09:04:16 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 17 Aug 2007 09:04:16 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Invoking WS from EJB3 Message-ID: <18853209.1187355856086.JavaMail.jboss@colo-br-02.atl.jboss.com> @WebServiceRef is only supported in jboss-5.0 http://jbws.dyndns.org:8280/hudson/view/Integration%20Tests/job/Integration-Native-AS-5.0/lastBuild/testReport/ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075202#4075202 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075202 From do-not-reply at jboss.com Fri Aug 17 09:15:24 2007 From: do-not-reply at jboss.com (ollka) Date: Fri, 17 Aug 2007 09:15:24 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Web Services over JMS(MQ) Message-ID: <21786264.1187356524730.JavaMail.jboss@colo-br-02.atl.jboss.com> Thank you for your reply! Can you give me a little more information? Is it work without http? have you any tutorials? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075206#4075206 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075206 From do-not-reply at jboss.com Fri Aug 17 10:28:05 2007 From: do-not-reply at jboss.com (jbride) Date: Fri, 17 Aug 2007 10:28:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Version of saaj-api in JBoss 4.2. Message-ID: <4569829.1187360885733.JavaMail.jboss@colo-br-02.atl.jboss.com> Thank you Thomas! Is there a document anywhere that maps webservice spec versions with JBossWS releases ?? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075245#4075245 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075245 From do-not-reply at jboss.com Fri Aug 17 11:59:10 2007 From: do-not-reply at jboss.com (rodgerca) Date: Fri, 17 Aug 2007 11:59:10 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <20151493.1187366350782.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi - I'm back on this now. If you still have your wsdl please would you post the whole lot? I've changed things around a little bit, am using arraylists instead of lists, am using BARE instead of RPC, my class names have changed slightly, but I'm still getting strange wsdl:- - | - | - | | | - | - | - | | | | | - | - | - | | | | | - | | | | | - | | | - | | | - | - | | | | | - | | - | | - | | | - | | | | | - | - | | | | When I try to run this it generates the error "Cannot obtain java/xml type mapping for: {http://session.address.cmmgroup.com/}arrayList" View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075270#4075270 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075270 From do-not-reply at jboss.com Fri Aug 17 14:08:01 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 17 Aug 2007 14:08:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Web Services over JMS(MQ) Message-ID: <8393154.1187374082017.JavaMail.jboss@colo-br-02.atl.jboss.com> Its in the samples download, you can look at it there View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075317#4075317 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075317 From do-not-reply at jboss.com Fri Aug 17 14:09:52 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 17 Aug 2007 14:09:52 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Version of saaj-api in JBoss 4.2. Message-ID: <3172456.1187374192711.JavaMail.jboss@colo-br-02.atl.jboss.com> jbossws-1.2.x is J2EE-1.4 jbossws-2.0.x is JavaEE5 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075318#4075318 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075318 From do-not-reply at jboss.com Fri Aug 17 16:01:18 2007 From: do-not-reply at jboss.com (claudio_br) Date: Fri, 17 Aug 2007 16:01:18 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problem with charset UTF-8 in version 1.2.1GA Message-ID: <21826612.1187380878498.JavaMail.jboss@colo-br-02.atl.jboss.com> This problem was resolved in version JBossWS 2.0.1.GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075360#4075360 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075360 From do-not-reply at jboss.com Fri Aug 17 21:31:58 2007 From: do-not-reply at jboss.com (koganty) Date: Fri, 17 Aug 2007 21:31:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - NullPointerException with jbossws 2.0.1 Message-ID: <30850257.1187400718897.JavaMail.jboss@colo-br-02.atl.jboss.com> I was trying to use jbossws 2.0.1 relased t'day 'cos it fixed some inheritance problems on JBoss 4.0.5 with jdk1.6. I had a working web service with jbossws 2.0.0. When I upgraded to 2.0.1 there is an exception at the very beginning. The annotation on the SLSB look like : @WebService @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) @Stateless @RemoteBinding(jndiBinding=LookupConstants.CLIENT_MANAGER) @Depends({LookupConstants.CLIENT_SERVICE_OBJECT_NAME}) public class ClientManagerBean implements ClientManager And here is the exception : java.lang.NullPointerException at org.jboss.wsf.stack.jbws.WSDLFilePublisher.getPublishLocation(WSDLFilePublisher.java:303) at org.jboss.wsf.stack.jbws.WSDLFilePublisher.publishWsdlFiles(WSDLFilePublisher.java:103) at org.jboss.wsf.stack.jbws.PublishContractDeploymentAspect.create(PublishContractDeploymentAspect.java:52) at org.jboss.wsf.framework.deployment.DeploymentAspectManagerImpl.deploy(DeploymentAspectManagerImpl.java:115) at org.jboss.wsf.container.jboss40.ArchiveDeployerHook.deploy(ArchiveDeployerHook.java:97) at org.jboss.wsf.container.jboss40.DeployerInterceptor.start(DeployerInterceptor.java:90) at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188) at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95) 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 $Proxy29.start(Unknown Source) 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.GeneratedMethodAccessor20.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java: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: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:597) 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.GeneratedMethodAccessor10.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java: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:597) 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:490) at java.lang.Thread.run(Thread.java:619) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075412#4075412 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075412 From do-not-reply at jboss.com Sun Aug 19 22:26:56 2007 From: do-not-reply at jboss.com (thangamani_r) Date: Sun, 19 Aug 2007 22:26:56 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - SOAP version used in JBOSS 4.2.0 GA Message-ID: <33052254.1187576816112.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi , I would like to know the SOAP version used in JBOSS 4.2.0 GA . We are trying to invoke jboss web services from a Siebel system and it fails. Hence would like to the SOAP version / WSDL version that is being used in JBOSS 4.2.0 GA? Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075625#4075625 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075625 From do-not-reply at jboss.com Mon Aug 20 03:23:27 2007 From: do-not-reply at jboss.com (ronari2) Date: Mon, 20 Aug 2007 03:23:27 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Strange - Entry Point not receive WS Message data Message-ID: <21504401.1187594607685.JavaMail.jboss@colo-br-02.atl.jboss.com> All, I am using JBoss 4.2.1 with JBOSSWS 2.0.1 I have created a web service that uses a provided WSDL, when I send the WS request there are no errors on JBoss however my web service entry point does not receive in the IN parameter any data of the request (the object value is null), however, the data that I set for the response object does return in the return message. My WSDL is: My Web service Entry point is: package com.zoomix.asbl.ws.ep.login; import javax.jws.HandlerChain; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebService; import javax.xml.ws.Holder; import javax.xml.ws.RequestWrapper; import javax.xml.ws.ResponseWrapper; import com.zoomix.as.connector.Connector; import com.zoomix.as.context.imp.MasterContext; import com.zoomix.asbl.ws.ep.login.model.LoginSuccessType; import com.zoomix.asbl.ws.ep.login.model.RequestType; import com.zoomix.asbl.ws.ep.login.model.ResponseType; import com.zoomix.infra.log.ZLogger; /** * The Login web service Entry Point * */ @WebService(wsdlLocation = "WEB-INF/ws/login/LoginG.wsdl", name = "Login", targetNamespace = "http://model.login.ep.ws.asbl.zoomix.com/") public class LoginEP { @WebMethod @RequestWrapper(localName = "message", targetNamespace = "http://model.login.ep.ws.asbl.zoomix.com/", className = "com.zoomix.asbl.ws.ep.login.model.Message") @ResponseWrapper(localName = "message", targetNamespace = "http://model.login.ep.ws.asbl.zoomix.com/", className = "com.zoomix.asbl.ws.ep.login.model.Message") public void message ( @WebParam(name = "request", targetNamespace = "", mode = WebParam.Mode.INOUT) Holder request, @WebParam(name = "response", targetNamespace = "", mode = WebParam.Mode.INOUT) Holder response) { logger.debug("LoginEP::message() --> IN"); // THE request.value object I receive is null !!! // the data I set below DO return in the WS response ResponseType responseType = new ResponseType(); LoginSuccessType s = new LoginSuccessType(); s.setFirstName("FIRST"); s.setLastName("LAST"); s.setStatus(1); responseType.setData(s); response.value = responseType; } // logger private static ZLogger logger = ZLogger.getZLogger(LoginEP.class.getName()); } View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075659#4075659 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075659 From do-not-reply at jboss.com Mon Aug 20 03:33:55 2007 From: do-not-reply at jboss.com (ronari2) Date: Mon, 20 Aug 2007 03:33:55 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Fixed the post data - read this please Message-ID: <21031753.1187595235410.JavaMail.jboss@colo-br-02.atl.jboss.com> I am using JBoss 4.2.1 with JBOSSWS 2.0.1 I have created a web service that uses a provided WSDL, when I send the WS request there are no errors on JBoss however my web service entry point does not receive in the IN parameter any data of the request (the object value is null), however, the data that I set for the response object does return in the return message. The Web Service Entry Point: | package com.zoomix.asbl.ws.ep.login; | | import javax.jws.HandlerChain; | import javax.jws.WebMethod; | import javax.jws.WebParam; | import javax.jws.WebService; | import javax.xml.ws.Holder; | import javax.xml.ws.RequestWrapper; | import javax.xml.ws.ResponseWrapper; | | import com.zoomix.as.connector.Connector; | import com.zoomix.as.context.imp.MasterContext; | import com.zoomix.asbl.ws.ep.login.model.LoginSuccessType; | import com.zoomix.asbl.ws.ep.login.model.RequestType; | import com.zoomix.asbl.ws.ep.login.model.ResponseType; | import com.zoomix.infra.log.ZLogger; | | /** | * The Login web service Entry Point | * | */ | @WebService(wsdlLocation = "WEB-INF/ws/login/LoginG.wsdl", name = "Login", targetNamespace = "http://model.login.ep.ws.asbl.zoomix.com/") | public class LoginEP { | | @WebMethod | @RequestWrapper(localName = "message", targetNamespace = "http://model.login.ep.ws.asbl.zoomix.com/", className = "com.zoomix.asbl.ws.ep.login.model.Message") | @ResponseWrapper(localName = "message", targetNamespace = "http://model.login.ep.ws.asbl.zoomix.com/", className = "com.zoomix.asbl.ws.ep.login.model.Message") | public void message ( | @WebParam(name = "request", targetNamespace = "", mode = WebParam.Mode.INOUT) | Holder request, | @WebParam(name = "response", targetNamespace = "", mode = WebParam.Mode.INOUT) | Holder response) { | | logger.debug("LoginEP::message() --> IN"); | | // THE request.value object I receive is null !!! | | | // the data I set below DO return in the WS response | ResponseType responseType = new ResponseType(); | LoginSuccessType s = new LoginSuccessType(); | s.setFirstName("FIRST"); | s.setLastName("LAST"); | s.setStatus(1); | responseType.setData(s); | response.value = responseType; | | } | | // logger | private static ZLogger logger = ZLogger.getZLogger(LoginEP.class.getName()); | } | The WSDL: | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075666#4075666 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075666 From do-not-reply at jboss.com Mon Aug 20 05:17:06 2007 From: do-not-reply at jboss.com (ambika) Date: Mon, 20 Aug 2007 05:17:06 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - WS4EEDowngrade setup problem Message-ID: <23176489.1187601426353.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I am trying to run the medrec application in jboss application platform (4.2.0.GA). I have done all the steps mentioned in the http://wiki.jboss.org/wiki/Wiki.jsp?page=WS4EEDowngrade. But when i try to deploy , its giving following error. Caused by: java.lang.reflect.UndeclaredThrowableException at org.jboss.system.ServiceCreator.install(ServiceCreator.java:236) at org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:449) at org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:171) ... 81 more Caused by: java.lang.NoClassDefFoundError: org/jboss/webservice/WebServiceClientDeployment at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:620) ========= This is becuase this class in not at all there in this new version of the jboss and medrec code has reffered to this. And i have seen one more thing, there is no webservice package in this new version of the jboss? Please can any one help me regarding the same. Its urgent, please can anyone help me regarding this? Regards, Ambika View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075719#4075719 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075719 From do-not-reply at jboss.com Mon Aug 20 06:54:05 2007 From: do-not-reply at jboss.com (vishminiraji) Date: Mon, 20 Aug 2007 06:54:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Deploying JDeveloper/Oracle webservices on JBossWS Message-ID: <5912096.1187607245977.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi All, I've been trying to deploy a webservice created in JDeveloper on JBoss. I got the below error. Please let me know how, If you did. java.lang.ClassCastException: oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl cannot be cast to com.ibm.wsdl.xml.WSDLReaderImpl at org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:142) at org.jboss.ws.metadata.ServiceMetaData.getWsdlDefinitions(ServiceMetaData.java:273) at org.jboss.ws.deployment.JSR109ServerMetaDataBuilder.buildMetaData(JSR109ServerMetaDataBuilder.java:94) at org.jboss.ws.deployment.ServiceEndpointDeployer.create(ServiceEndpointDeployer.java:78) at org.jboss.ws.integration.jboss.DeployerInterceptor.create(DeployerInterceptor.java:80) at org.jboss.ws.integration.jboss.DeployerInterceptorJSE.create(DeployerInterceptorJSE.java:74) 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 $Proxy39.create(Unknown Source) at org.jboss.deployment.MainDeployer.create(MainDeployer.java:969) at org.jboss.deployment.MainDeployer.create(MainDeployer.java:959) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:818) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782) at sun.reflect.GeneratedMethodAccessor55.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java: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: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.GeneratedMethodAccessor2.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java: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:597) 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:597) 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:490) at java.lang.Thread.run(Thread.java:619) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075762#4075762 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075762 From do-not-reply at jboss.com Mon Aug 20 09:04:01 2007 From: do-not-reply at jboss.com (ejb3workshop) Date: Mon, 20 Aug 2007 09:04:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JAX-WS from Sessions Bean fails due to missing org/jboss/log Message-ID: <29914763.1187615041779.JavaMail.jboss@colo-br-02.atl.jboss.com> I have a standalone client jar which using JAX-WS in JDK1.6 is able to consume a webservice. I would like to invoke the webservice from a session bean, so I added the webservice client JAR to my ear file and updated the application.xml file. The problem is that when I try to invoce the client from within JBoss I get the following error. A search in the forums and the web makes suggestions to include the jboss-common-clients.jar in the classpath. I tried added this jar to the /server/default/lib folder as well as include it within the EAR / application.xml, of which neiter worked. If JAX-WS client is not supported what other libraries can I use to consume a web service from a Session Bean. anonymous wrote : | java.lang.NoClassDefFoundError: org/jboss/logging/Logger | at javax.xml.soap.FactoryLoader.(FactoryLoader.java:47) | at javax.xml.soap.SOAPFactory.newInstance(SOAPFactory.java:64) | at org.jboss.ws.core.soap.SOAPFactoryImpl.createElement(SOAPFactoryImpl.java:120) | at org.jboss.ws.core.soap.EnvelopeBuilderDOM.build(EnvelopeBuilderDOM.java:116) | at org.jboss.ws.core.soap.EnvelopeBuilderDOM.build(EnvelopeBuilderDOM.java:85) | at org.jboss.ws.core.soap.MessageFactoryImpl.createMessage(MessageFactoryImpl.java:254) | at org.jboss.ws.core.soap.SOAPMessageUnMarshaller.read(SOAPMessageUnMarshaller.java:75) | at org.jboss.remoting.transport.http.HTTPClientInvoker.readResponse(HTTPClientInvoker.java:472) | at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:304) | at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:135) | at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122) | at org.jboss.remoting.Client.invoke(Client.java:1550) | at org.jboss.remoting.Client.invoke(Client.java:530) | at org.jboss.ws.core.client.RemotingConnectionImpl.invoke(RemotingConnectionImpl.java:171) | at org.jboss.ws.core.client.SOAPRemotingConnection.invoke(SOAPRemotingConnection.java:77) | at org.jboss.ws.core.CommonClient.invoke(CommonClient.java:322) | at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:230) | at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:164) | at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:150) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075829#4075829 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075829 From do-not-reply at jboss.com Mon Aug 20 09:33:04 2007 From: do-not-reply at jboss.com (tschwarz) Date: Mon, 20 Aug 2007 09:33:04 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JAX-WS from Sessions Bean fails due to missing org/jboss Message-ID: <31565992.1187616784704.JavaMail.jboss@colo-br-02.atl.jboss.com> I had similar classpath problems, when I added the JBoss JAX-WS jars to the server. I guess that has something to do with mixing the JDK6 JAX-WS implementation with the JBoss JAX-WS implementation. But if you want to invoke a web service from a stateless session bean you don't need to do that. If you are using JBoss 4.2 and EJB3 you can do it like that: 1. Use the wsconsume tool (in JBoss/bin directory) to generate your web service class files from your wsdl file. 2. Add these files to your classpath. 3. Write a stateless session bean like that: @Stateless | public class WSInvoker | { | // Replace MyWebService with your generated web service class name here | @WebServiceRef | private static MyWebService service; | | public void invokeWS() | { | MyEndpoint entpoint = service.getEndpoint(MyEndpoint.class); | // invoke the endpoint's buisness methods | } | } I hope I could help you. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075848#4075848 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075848 From do-not-reply at jboss.com Mon Aug 20 10:28:12 2007 From: do-not-reply at jboss.com (M_schumpa) Date: Mon, 20 Aug 2007 10:28:12 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Type Substitution doesn't work with Schema2Java Client a Message-ID: <24144601.1187620092989.JavaMail.jboss@colo-br-02.atl.jboss.com> There are no big differences... The attributes are all named the same; in handcoded they're private, in generated they're protected. In the genareted classes there are the @XmlAccessorType, @XmlType and @XmlElement annotations, in handcoded not. In the handcoded classes I've added toString() methods (for logging), which aren't present in the generated classes The generated classes didn't have a setter method for lists, so I added them. That's all the differences I was able to find. But as I said before the problem only exists in JBoss, with Glassfish everything works fine, even if I use the classes generated with the JBoss wsconsume tool. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075865#4075865 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075865 From do-not-reply at jboss.com Tue Aug 21 04:26:05 2007 From: do-not-reply at jboss.com (shankha) Date: Tue, 21 Aug 2007 04:26:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Trying to install an already registered mbean: Message-ID: <15951744.1187684765914.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, When I start the jboss-4.2.1.GA version it throws the following exceptions. Can some body help me please?? 13:31:25,233 INFO [TomcatDeployer] deploy, ctxPath=/, warUrl=.../deploy/jboss-web.deployer/ROOT.war/ | 13:31:26,592 INFO [TomcatDeployer] deploy, ctxPath=/invoker, warUrl=.../deploy/http-invoker.sar/invoker.war/ | 13:31:27,857 INFO [TomcatDeployer] deploy, ctxPath=/jbossws, warUrl=.../tmp/deploy/tmp41603jbossws-context-exp.war/ | 13:31:28,529 INFO [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, warUrl=.../deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/ | 13:31:31,060 ERROR [MainDeployer] Could not create deployment: file:/C:/jboss-4.2.1.GA/jboss-4.2.1.GA/server/default/deploy/jms/jbossmq-destinations-service.xml | org.jboss.deployment.DeploymentException: Trying to install an already registered mbean: jboss.mq.destination:service=Topic,name=securedTopic | at org.jboss.system.ServiceCreator.install(ServiceCreator.java:103) | at org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:449) | at org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:171) | at org.jboss.system.ServiceController.install(ServiceController.java:226) | at sun.reflect.GeneratedMethodAccessor20.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.install(Unknown Source) | at org.jboss.deployment.SARDeployer.create(SARDeployer.java:249) | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:969) | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:818) | | --- | --- anonymous wrote : --- Incompletely deployed packages --- | org.jboss.deployment.DeploymentInfo at 30d210d9 { url=file:/C:/jboss-4.2.1.GA/jboss-4.2.1.GA/server/default/deploy/jms/jbossmq-destinations-service.xml } | deployer: org.jboss.deployment.SARDeployer at 125844f | status: Deployment FAILED reason: Trying to install an already registered mbean: jboss.mq.destination:service=Topic,name=securedTopic | state: FAILED | watch: file:/C:/jboss-4.2.1.GA/jboss-4.2.1.GA/server/default/deploy/jms/jbossmq-destinations-service.xml | altDD: null | lastDeployed: 1187683291045 | lastModified: 1187683291014 | mbeans: View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076134#4076134 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076134 From do-not-reply at jboss.com Tue Aug 21 06:11:05 2007 From: do-not-reply at jboss.com (myjbossid123) Date: Tue, 21 Aug 2007 06:11:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Problem with JAX-RPC client Message-ID: <4921999.1187691065839.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi I have a a service running in JBoss.While trying to call a it through a JAX RPC client I am getting following error... avax.xml.rpc.JAXRPCException: org.jboss.ws.binding.BindingException: org.jboss.ws.jaxb.UnmarshalException: Failed to parse source: Requested element name is not allowed in this position in the sequence. The next element should be address My Client code goes like this.......... /*..........Other Stuff........*/ ServiceFactory factory = new ServiceFactoryImpl(); Service service = factory.createService(url, qname); Call call = service.createCall(port, operation); call.invoke(new Object[] {loanapp}); /*..........End........*/ It is wworking fine with a String but with a POJO object I am getting this error.Any help to resolve this is appreciated... Thnks in advance. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076185#4076185 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076185 From do-not-reply at jboss.com Tue Aug 21 11:13:52 2007 From: do-not-reply at jboss.com (jboss2007) Date: Tue, 21 Aug 2007 11:13:52 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Jboww WS problem - plz help Message-ID: <764895.1187709232058.JavaMail.jboss@colo-br-02.atl.jboss.com> I have the following configuration: - JDK 1.5.0_12 - jboss-4.2.1.GA - jbossws-native-2.0.1.GA I followed the user guide: http://jbws.dyndns.org/mediawiki/index.php/JAX-WS_User_Guide#Tools I've successfully deployed the Echo web service. Howserver, when I run the ws client (consumer) I got this exception: 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 com.company.package.EchoService.(EchoService.java:40) | at EchoClient.main(EchoClient.java:10) | 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) | ... 4 more Any idea about this problem? any help will be much appreciated thanks in advance, View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076355#4076355 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076355 From do-not-reply at jboss.com Tue Aug 21 11:21:48 2007 From: do-not-reply at jboss.com (PeterJ) Date: Tue, 21 Aug 2007 11:21:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Trying to install an already registered mbean: Message-ID: <33531232.1187709708683.JavaMail.jboss@colo-br-02.atl.jboss.com> If you would have searched on the terms "Trying to install an already registered mbean" you would have found many other posts with people having this same problem. The typical solution was to reinstall. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076363#4076363 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076363 From do-not-reply at jboss.com Tue Aug 21 11:29:12 2007 From: do-not-reply at jboss.com (jboss2007) Date: Tue, 21 Aug 2007 11:29:12 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Jboww WS problem - plz help Message-ID: <29758070.1187710152283.JavaMail.jboss@colo-br-02.atl.jboss.com> got it... I've added set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/lib/jboss-common.jar to the wsrunclient.bat and it works now ! => Jboss WS team: think about this plz View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076370#4076370 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076370 From do-not-reply at jboss.com Tue Aug 21 14:40:27 2007 From: do-not-reply at jboss.com (sursha) Date: Tue, 21 Aug 2007 14:40:27 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - 2 ejb3s exposed as web services. Can't have same methods wit Message-ID: <15337615.1187721627382.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello, I've 2 ejb3s exposed as 2 separate web services. They are packaged in the same ear file. I use the WebContext annotation to keep the context root same for 2 services. I've a method, authenticate(String userName) in one ejb and authenticate(String userName, String password) in the other ejb. When I deploy the ear file, I get the error as follows: Looks like there is a name collision. It is complaining about the first ejb not having password as a parameter. Any one seen this issue? by: org.jboss.ws.WSException: password is not a valid property on class com.xxx.services.MyService1.v2.jaxws.Authenticate at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getElementPropertyAccessor(JAXBContextImpl.java:816) at org.jboss.ws.metadata.acessor.JAXBAccessor$1$1.create(JAXBAccessor.java:84) at org.jboss.ws.metadata.umdm.ParameterMetaData.eagerInitialize(ParameterMetaData.java:472) at org.jboss.ws.metadata.umdm.OperationMetaData.eagerInitialize(OperationMetaData.java:466) at org.jboss.ws.metadata.umdm.EndpointMetaData.eagerInitializeOperations(EndpointMetaData.java:516) at org.jboss.ws.metadata.umdm.EndpointMetaData.initializeInternal(EndpointMetaData.java:502) at org.jboss.ws.metadata.umdm.EndpointMetaData.eagerInitialize(EndpointMetaData.java:490) at org.jboss.ws.metadata.umdm.ServiceMetaData.eagerInitialize(ServiceMetaData.java:429) at org.jboss.ws.metadata.umdm.UnifiedMetaData.eagerInitialize(UnifiedMetaData.java:192) at org.jboss.ws.core.server.ServiceEndpoint.start(ServiceEndpoint.java:112) at org.jboss.ws.core.server.ServiceEndpointManager.startServiceEndpoint(ServiceEndpointManager.java:646) at org.jboss.ws.core.server.ServiceEndpointDeployer.start(ServiceEndpointDeployer.java:140) at org.jboss.ws.integration.jboss42.DeployerInterceptor.startServiceEndpoint(DeployerInterceptor.java:144) at org.jboss.ws.integration.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:96) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076450#4076450 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076450 From do-not-reply at jboss.com Wed Aug 22 05:34:44 2007 From: do-not-reply at jboss.com (rodgerca) Date: Wed, 22 Aug 2007 05:34:44 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: trying to access a webservice - not working from either Message-ID: <3603239.1187775284083.JavaMail.jboss@colo-br-02.atl.jboss.com> Well I have now managed to get my webservice running from within SOAPUI - I did this by changing my return arraylist to a simple array of objects. Don't think arrayLists are supported but frankly the documentation on the JBoss sites is pretty bad so I had to work that out for myself. I am still getting the error below when I run my webservice from a java client, but I'm not going to investigate further because the webservice is working and that's what matters. Unless anyone can tell me if there is anything obvious I am doing wrong.... Exception in thread "main" org.jboss.ws.WSException: Cannot obtain java/xml type mapping for: {http://com.cmmgroup/address}addressRequestArray | at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.processOutputDocElement(JAXRPCMetaDataBuilder.java:778) | at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.buildParameterMetaDataDoc(JAXRPCMetaDataBuilder.java:897) | at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCMetaDataBuilder.setupOperationsFromWSDL(JAXRPCMetaDataBuilder.java:214) | at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaDataInternal(JAXRPCClientMetaDataBuilder.java:216) | at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaData(JAXRPCClientMetaDataBuilder.java:133) | at org.jboss.ws.metadata.builder.jaxrpc.JAXRPCClientMetaDataBuilder.buildMetaData(JAXRPCClientMetaDataBuilder.java:85) | 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) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076699#4076699 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076699 From do-not-reply at jboss.com Wed Aug 22 08:09:12 2007 From: do-not-reply at jboss.com (hannes.koller) Date: Wed, 22 Aug 2007 08:09:12 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Type Substitution doesn't work with Schema2Java Client a Message-ID: <24575701.1187784552150.JavaMail.jboss@colo-br-02.atl.jboss.com> I think this might be related to this: http://www.jboss.org/index.html?module=bb&op=viewtopic&t=110260 As it seems this was a bug (http://jira.jboss.org/jira/browse/JBWS-1702) and hopefully should be fixed in JBossWS 2.0.0.GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076792#4076792 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076792 From do-not-reply at jboss.com Wed Aug 22 08:38:20 2007 From: do-not-reply at jboss.com (earniedyke) Date: Wed, 22 Aug 2007 08:38:20 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Applet invoking a web service Message-ID: <8660917.1187786301000.JavaMail.jboss@colo-br-02.atl.jboss.com> Greetings all!! I have a problem I am hoping someone can help me solve. I have the following code in an APPLET URL url = new URL(webRoot + "/" + JBPM_WEBSERVICE + "?WSDL"); | QName qname = new QName("http://webservice.jbpm.abc.org","JbpmBeanService"); | ServiceFactory factory = ServiceFactory.newInstance(); | Service remote = factory.createService(url,qname); | Jbpm proxy = (Jbpm)remote.getPort(Jbpm.class); | String[] xml = proxy.getWorkFlow(name); | When it is executed, I receive the following error in the Java Console: Exception in thread "AWT-EventQueue-2" java.security.AccessControlException: access denied (java.util.PropertyPermission javax.xml.rpc.ServiceFactory read) | at java.security.AccessControlContext.checkPermission(Unknown Source) | at java.security.AccessController.checkPermission(Unknown Source) | at java.lang.SecurityManager.checkPermission(Unknown Source) | at java.lang.SecurityManager.checkPropertyAccess(Unknown Source) | at java.lang.System.getProperty(Unknown Source) | at javax.xml.rpc.ServiceFactory$PropertyAccessAction.run(ServiceFactory.java:189) | at java.security.AccessController.doPrivileged(Native Method) | at javax.xml.rpc.ServiceFactory.newInstance(ServiceFactory.java:77) | at org.ebsinc.jbpm.applet.Diagrammer$DrawingCanvas.actionPerformed(Diagrammer.java:727) | at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) | at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source) | at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source) | at javax.swing.DefaultButtonModel.setPressed(Unknown Source) | at javax.swing.AbstractButton.doClick(Unknown Source) | at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source) | at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(Unknown Source) | at java.awt.Component.processMouseEvent(Unknown Source) | at javax.swing.JComponent.processMouseEvent(Unknown Source) | at java.awt.Component.processEvent(Unknown Source) | at java.awt.Container.processEvent(Unknown Source) | at java.awt.Component.dispatchEventImpl(Unknown Source) | at java.awt.Container.dispatchEventImpl(Unknown Source) | at java.awt.Component.dispatchEvent(Unknown Source) | at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source) | at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source) | at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) | at java.awt.Container.dispatchEventImpl(Unknown Source) | at java.awt.Component.dispatchEvent(Unknown Source) | at java.awt.EventQueue.dispatchEvent(Unknown Source) | at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source) | at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) | at java.awt.EventDispatchThread.pumpEvents(Unknown Source) | at java.awt.EventDispatchThread.pumpEvents(Unknown Source) | at java.awt.EventDispatchThread.run(Unknown Source) | My research leads me to believe the ServiceFactory in jboss-jaxrpc.jar is attempting to read a system property and this is causing the error. Anyone think of a way around this? Thanks in advance for any and all assistance!!! Earnie! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076819#4076819 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076819 From do-not-reply at jboss.com Wed Aug 22 10:15:06 2007 From: do-not-reply at jboss.com (earniedyke) Date: Wed, 22 Aug 2007 10:15:06 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Applet invoking a web service Message-ID: <23617604.1187792106394.JavaMail.jboss@colo-br-02.atl.jboss.com> As an update, I was able to get around this by adding: permission java.util.PropertyPermission "javax.xml.rpc.ServiceFactory", "read" to my java.ploicy file but I don't want to have to do that for every client. So I am still looking for a workable solution. Earnie! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076882#4076882 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076882 From do-not-reply at jboss.com Wed Aug 22 10:15:21 2007 From: do-not-reply at jboss.com (M_schumpa) Date: Wed, 22 Aug 2007 10:15:21 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Type Substitution doesn't work with Schema2Java Client a Message-ID: <6869188.1187792121491.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm already using the JBossWS 2.0.0.GA modul. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076883#4076883 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076883 From do-not-reply at jboss.com Wed Aug 22 12:59:33 2007 From: do-not-reply at jboss.com (deadrow) Date: Wed, 22 Aug 2007 12:59:33 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WARN [EndpointMetaData] Loading SEI after eager initiali Message-ID: <20899785.1187801973694.JavaMail.jboss@colo-br-02.atl.jboss.com> should I open an jira case on this? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076980#4076980 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076980 From do-not-reply at jboss.com Wed Aug 22 16:32:04 2007 From: do-not-reply at jboss.com (shrikantmulik) Date: Wed, 22 Aug 2007 16:32:04 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS Tools Overview (wstools, wsprovide, wsconsume) Message-ID: <25367196.1187814724759.JavaMail.jboss@colo-br-02.atl.jboss.com> I tried to use wsconsume from JBossWS Native 2.0.1 GA binary distribution. It gives following error: Exception in thread "main" java.lang.NoClassDefFoundError: org/jboss/wsf/spi/tools/cmd/WSConsume This could be due to classpath setting but is there a need to explicitly set the classpath for running this tool? Related details are as follows: OS: Windows XP SP2 JDK: 1.5.0_12 Folder: jbossws-native-2.0.1.GA\bin Hoping for a quick reply! Shrikant View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077050#4077050 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077050 From do-not-reply at jboss.com Thu Aug 23 04:05:16 2007 From: do-not-reply at jboss.com (alfred.rsa) Date: Thu, 23 Aug 2007 04:05:16 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - 2.0.1 Installation issue Message-ID: <1329494.1187856316412.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi guys The ws 2.0.1GA install fails when using the deploy-jboss42-endorsed target as it does not contain stacklibs="${lib.dir}" Regards Alfred View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077178#4077178 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077178 From do-not-reply at jboss.com Thu Aug 23 05:50:28 2007 From: do-not-reply at jboss.com (FabrizioLXXIII) Date: Thu, 23 Aug 2007 05:50:28 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - WS-Security with JAX-RPC Message-ID: <21042851.1187862628051.JavaMail.jboss@colo-br-02.atl.jboss.com> I've written a simple JAX-RPC Web Service to try WS-Security with JBossAS 4.2.1. In WAR module WEB-INF folder I've put jboss-wsse-server.xml and all necessary files (see http://www.driveway.com/lfpxe30590 please), but when I try to call Web Service with a client that don't support WS-Security, the Web Service respond without any error! How it's possible? Where is the error? I'm sorry for my bad English, and I hope that I've written is clear enough. Thanks a lot. Fabrizio[/url] View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077225#4077225 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077225 From do-not-reply at jboss.com Thu Aug 23 07:35:17 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 07:35:17 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS-Security with JAX-RPC Message-ID: <32509092.1187868917965.JavaMail.jboss@colo-br-02.atl.jboss.com> Did you enable the endpoint to use WSSE? http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_User_Guide#Server_side_configuration_.28jboss-wsse-server.xml.29 For JAXRPC you can set the config-name in jboss.xml or joss-web.xml View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077254#4077254 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077254 From do-not-reply at jboss.com Thu Aug 23 07:36:16 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 07:36:16 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: 2.0.1 Installation issue Message-ID: <13990450.1187868976764.JavaMail.jboss@colo-br-02.atl.jboss.com> Yes. http://jira.jboss.org/jira/browse/JBWS-1791 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077255#4077255 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077255 From do-not-reply at jboss.com Thu Aug 23 07:41:32 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 07:41:32 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Applet invoking a web service Message-ID: <12366808.1187869292883.JavaMail.jboss@colo-br-02.atl.jboss.com> You could do | new ServiceFactoryImpl() | which would bind your client to a proprietary API call that is subject to change. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077256#4077256 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077256 From do-not-reply at jboss.com Thu Aug 23 07:46:31 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 07:46:31 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: 2 ejb3s exposed as web services. Can't have same methods Message-ID: <28291721.1187869591093.JavaMail.jboss@colo-br-02.atl.jboss.com> Is this even related to 2 ejb3s? i.e. can you deploy a single endpoint that uses authenticate(String userName, String password) ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077258#4077258 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077258 From do-not-reply at jboss.com Thu Aug 23 08:16:11 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 08:16:11 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossWS Tools Overview (wstools, wsprovide, wsconsume) Message-ID: <9112044.1187871371050.JavaMail.jboss@colo-br-02.atl.jboss.com> http://jira.jboss.org/jira/browse/JBWS-1793 The missing class would be in jbossws-spi.jar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077269#4077269 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077269 From do-not-reply at jboss.com Thu Aug 23 08:17:23 2007 From: do-not-reply at jboss.com (FabrizioLXXIII) Date: Thu, 23 Aug 2007 08:17:23 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS-Security with JAX-RPC Message-ID: <21479205.1187871443476.JavaMail.jboss@colo-br-02.atl.jboss.com> Yes, I do by jboss-wsse-server.xml... is it correct? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077270#4077270 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077270 From do-not-reply at jboss.com Thu Aug 23 08:21:07 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 08:21:07 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Type Substitution doesn't work with Schema2Java Client a Message-ID: <8945606.1187871667367.JavaMail.jboss@colo-br-02.atl.jboss.com> Please create a jira issue for that and attach a test case that allows us to reproduce what you are seeing View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077274#4077274 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077274 From do-not-reply at jboss.com Thu Aug 23 08:21:18 2007 From: do-not-reply at jboss.com (earniedyke) Date: Thu, 23 Aug 2007 08:21:18 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Applet invoking a web service Message-ID: <3316517.1187871678940.JavaMail.jboss@colo-br-02.atl.jboss.com> Thanks for the info Tom. Because of the large number of dependent jars required, I decided to create a servlet as a proxy which calls my web service from the server. This makes for a smaller applet and now I can deploy my web service anywhere not just to the server where the applet resides. Earnie! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077275#4077275 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077275 From do-not-reply at jboss.com Thu Aug 23 08:21:45 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 08:21:45 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS-Security with JAX-RPC Message-ID: <30113515.1187871705975.JavaMail.jboss@colo-br-02.atl.jboss.com> Show me how you set the config-name View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077277#4077277 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077277 From do-not-reply at jboss.com Thu Aug 23 08:26:14 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 08:26:14 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Jboww WS problem - plz help Message-ID: <17392362.1187871974706.JavaMail.jboss@colo-br-02.atl.jboss.com> http://jira.jboss.org/jira/browse/JBWS-1793 Does this also work? | @echo off | | rem $Id: wsprovide.bat 2325 2007-02-09 22:14:15Z jason.greene at jboss.com $ | | @if not "%ECHO%" == "" echo %ECHO% | @if "%OS%" == "Windows_NT" setlocal | | set DIRNAME=.\ | if "%OS%" == "Windows_NT" set DIRNAME=%~dp0% | set PROGNAME=run.bat | if "%OS%" == "Windows_NT" set PROGNAME=%~nx0% | | | if not [%1] == [] goto start | echo %PROGNAME% is a command line tool that invokes a JBossWS JAX-WS Web Service client. | echo It builds the correct classpath and endorsed libs for you. Feel free to use | echo the code for this script to make your own shell scripts. It is open source | echo after all. | echo. | echo usage: %PROGNAME% [-classpath ^] ^ [arguments...] | goto EOF | :start | set ARGS= | :loop | if [%1] == [] goto endloop | if not %1 == -classpath goto argset | set WSRUNCLIENT_CLASSPATH=%2 | shift | shift | goto loop | :argset | set ARGS=%ARGS% %1 | shift | goto loop | :endloop | | set JAVA=%JAVA_HOME%\bin\java | set JBOSS_HOME=%DIRNAME%\.. | rem Setup the java endorsed dirs | | # Setup the java endorsed dirs | set JBOSS_ENDORSED_DIRS=%JBOSS_HOME%\lib\endorsed | | # Setup the client classpath | set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/log4j.jar | set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME%/client/jbossws-client.jar | | # JBossAS-5.0 subset of jbossall-client.jar | set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME/client/jboss-logging-spi.jar | set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME/client/jboss-common-core.jar | | # JBossAS-4.2 subset of jbossall-client.jar | set WSRUNCLIENT_CLASSPATH=%WSRUNCLIENT_CLASSPATH%;%JBOSS_HOME/client/jboss-common-client.jar | | rem Execute the JVM | "%JAVA%" %JAVA_OPTS% -Djava.endorsed.dirs="%JBOSS_ENDORSED_DIRS%" -Dlog4j.configuration=wstools-log4j.xml -classpath "%WSRUNCLIENT_CLASSPATH%" %ARGS% | :EOF | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077282#4077282 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077282 From do-not-reply at jboss.com Thu Aug 23 08:31:04 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 08:31:04 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JAX-WS from Sessions Bean fails due to missing org/jboss Message-ID: <5231798.1187872264148.JavaMail.jboss@colo-br-02.atl.jboss.com> You could study successful JDK6 test runs http://jbws.dyndns.org:8180/hudson/view/Core%20Tests/job/Core-Tests-AS-4.2-JDK6/ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077286#4077286 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077286 From do-not-reply at jboss.com Thu Aug 23 08:33:11 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 08:33:11 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS4EEDowngrade setup problem Message-ID: <28205042.1187872391692.JavaMail.jboss@colo-br-02.atl.jboss.com> What is medrec and why does it have a dependency on proprietary API? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077288#4077288 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077288 From do-not-reply at jboss.com Thu Aug 23 08:35:49 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 08:35:49 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: SOAP version used in JBOSS 4.2.0 GA Message-ID: <29284175.1187872549112.JavaMail.jboss@colo-br-02.atl.jboss.com> Duplicates http://www.jboss.org/index.html?module=bb&op=viewtopic&t=116485 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077291#4077291 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077291 From do-not-reply at jboss.com Thu Aug 23 08:43:27 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 08:43:27 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: NullPointerException with jbossws 2.0.1 Message-ID: <19616391.1187873011086.JavaMail.jboss@colo-br-02.atl.jboss.com> Please scan the logfile for ServerConfigFactory Is jbossws-framework.jar deployed? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077298#4077298 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077298 From do-not-reply at jboss.com Thu Aug 23 08:45:23 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 08:45:23 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Is there a workaround for the UsernameToken security hea Message-ID: <29111197.1187873123727.JavaMail.jboss@colo-br-02.atl.jboss.com> Is your endpoint WS-Security enabled? http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_User_Guide#WS-Security View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077299#4077299 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077299 From do-not-reply at jboss.com Thu Aug 23 08:49:16 2007 From: do-not-reply at jboss.com (ike) Date: Thu, 23 Aug 2007 08:49:16 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - InvalidClassException after re-deploying a web service Message-ID: <2200283.1187873356815.JavaMail.jboss@colo-br-02.atl.jboss.com> I have an EAR (har, ejb jar and web services). har contains some POJOs (hibernate entities of course) that used by EJBs and web services. Then, I change the entities with modifying their serialVersionUids, rebuild and redeploy everything. EJB's work fine, but web service throws an InvalidClassException about old serialVersionUid. I tried to clear all temporary files from tmp and work directories, but the only thing that helps - is to restart jboss. What is the "right way" to re-deploy web services? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077303#4077303 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077303 From do-not-reply at jboss.com Thu Aug 23 08:57:04 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 08:57:04 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBoss WebService client configuration thru a proxy serve Message-ID: <11508658.1187873824322.JavaMail.jboss@colo-br-02.atl.jboss.com> Can these properties not be set on the Stub? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077305#4077305 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077305 From do-not-reply at jboss.com Thu Aug 23 09:04:56 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 09:04:56 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Server startup hangs when injecting @WebServiceRef into Message-ID: <33133691.1187874296564.JavaMail.jboss@colo-br-02.atl.jboss.com> @WebServiceRef injection to MBeans is not supported. Pls use the JAXWS client API View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077314#4077314 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077314 From do-not-reply at jboss.com Thu Aug 23 09:08:05 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 09:08:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jboss4.0.5 + which version of jbossws + correct document Message-ID: <17500638.1187874485290.JavaMail.jboss@colo-br-02.atl.jboss.com> We don't release unless hudson says its all cool. We also pass the J2EE-1.4 and JavaEE5 CTS with every release http://jbws.dyndns.org:8280/hudson/ A good stating point is a working sample. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077316#4077316 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077316 From do-not-reply at jboss.com Thu Aug 23 09:25:26 2007 From: do-not-reply at jboss.com (lretief) Date: Thu, 23 Aug 2007 09:25:26 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Unable to create connection to jUDDI registry Message-ID: <23944274.1187875526431.JavaMail.jboss@colo-br-02.atl.jboss.com> I am trying to establish a connection to the JBossWS (2.0.0) jUDDI registry from a standalone JVM client. First I tried, as per the samples, doing a: ConnectionFactory factory = ConnectionFactory.newInstance(); to get the ConnectionFactory, but it told me that it could not create an instance of null. So, reading the docs for ConnectionFactory, it said I should rather do a JNDI lookup, which I now successfully do as follows: Context ctx = new InitialContext(jndiProps); ConnectionFactory factory = (ConnectionFactory) ctx.lookup("JAXR"); I then set up all the properties as per docs and code: String queryurl = System.getProperty("jaxr.query.url", "http://localhost:8080/juddi/inquiry"); String puburl = System.getProperty("jaxr.publish.url", "http://localhost:8080/juddi/publish"); Properties props = new Properties(); props.setProperty("javax.xml.registry.queryManagerURL", queryurl); props.setProperty("javax.xml.registry.lifeCycleManagerURL", puburl); String transportClass = System.getProperty("juddi.proxy.transportClass", "org.jboss.jaxr.juddi.transport.SaajTransport"); System.setProperty("juddi.proxy.transportClass", transportClass); factory.setProperties(props); That all works. And now, the line that breaks it all: Connection connection = factory.createConnection(); My exception: [junit] java.lang.NullPointerException [junit] at org.apache.juddi.proxy.RegistryProxy.getTransport(RegistryProxy.java:459) [junit] at org.apache.juddi.proxy.RegistryProxy.init(RegistryProxy.java:189) [junit] at org.apache.juddi.proxy.RegistryProxy.(RegistryProxy.java:125) [junit] at org.apache.ws.scout.registry.ConnectionImpl.(ConnectionImpl.java:59) [junit] at org.apache.ws.scout.registry.ConnectionFactoryImpl.createConnection(ConnectionFactoryImpl.java:86) Any help much appreciated. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077337#4077337 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077337 From do-not-reply at jboss.com Thu Aug 23 10:16:58 2007 From: do-not-reply at jboss.com (FabrizioLXXIII) Date: Thu, 23 Aug 2007 10:16:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS-Security with JAX-RPC Message-ID: <9778256.1187878618899.JavaMail.jboss@colo-br-02.atl.jboss.com> jboss-web.xml | | | ws_producer | Standard WSSecurity Endpoint | | jboss-wsse-server.xml | | WEB-INF/wsse.keystore | jbossws | WEB-INF/wsse.truststore | jbossws | | | | | | | | | web.xml | | JBoss Integration Test - WS-Security Test - WS Producer | JBoss Integration Test - WS-Security Test - WS Producer | | | WS Producer Servlet | WS Producer Servlet | WsProducerServlet | it.auriga.jbossintegrationtest.wssecurity.producer.ServiceImpl | | | | WsProducerServlet | /service | | application.xml | | | JBoss Integration Test - WS-Security Test - WS Producer | | | ws_producer.war | /ws_producer | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077364#4077364 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077364 From do-not-reply at jboss.com Thu Aug 23 11:34:14 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 11:34:14 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS-Security with JAX-RPC Message-ID: <2802525.1187883254292.JavaMail.jboss@colo-br-02.atl.jboss.com> That all looks good. Have a look at the logfile to see if the endpoint is really using that config (i.e. is it a secure endpoint?) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077404#4077404 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077404 From do-not-reply at jboss.com Thu Aug 23 11:35:41 2007 From: do-not-reply at jboss.com (hansOtto) Date: Thu, 23 Aug 2007 11:35:41 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Cannot find service endpoint target Message-ID: <10989571.1187883341319.JavaMail.jboss@colo-br-02.atl.jboss.com> I have deployed several Webservices as EJB endpoints successfully on the JBoss 4.2.1 with JBossWS 1.2.1. There are many SLSBs inside the Webservices, injected by the @EJB annotation and build as local deployment. Now, after upgrading from JBossWS 1.2.1 to JBossWS 2.0.0, I get the following error during the EAR deployment: 14:01:25,984 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/v1, warUrl=.../tmp/deploy/deploy.last-webservices.ear-webservices_ejb3.jar5109.war/ | 14:01:26,578 INFO [org.jboss.wsf.stack.jbws.WSDLFilePublisher] WSDL published to: file:/C:/jboss_4.2.1_WS/server/default/data/wsdl/deploy.last/webservices.ear/webservices_ejb3.jar/TestService5107.wsdl | 14:01:26,875 INFO [org.jboss.wsf.spi.management.BasicEndpointRegistry] register: jboss.ws:context=v1,endpoint=TestService | 14:03:09,734 ERROR [org.jboss.deployment.MainDeployer] Could not start deployment: file:/C:/jboss_4.2.1_WS/server/default/tmp/deploy/tmp5106webservices.ear-contents/webservices_ejb3.jar | javax.xml.ws.WebServiceException: Cannot find service endpoint target: jboss.j2ee:name=TestService,service=EJB3,jar=webservices_ejb3.jar,ear=webservices.ear | at org.jboss.wsf.container.jboss42.InvocationHandlerEJB3.start(InvocationHandlerEJB3.java:78) | at org.jboss.wsf.spi.deployment.BasicLifecycleHandler.start(BasicLifecycleHandler.java:57) | at org.jboss.wsf.stack.jbws.LifecycleHandlerImpl.start(LifecycleHandlerImpl.java:40) | at org.jboss.wsf.spi.deployment.EndpointLifecycleDeployer.start(EndpointLifecycleDeployer.java:49) | at org.jboss.wsf.spi.deployment.BasicDeployerManager.deploy(BasicDeployerManager.java:81) | at org.jboss.wsf.container.jboss42.MainDeployerHook.deploy(MainDeployerHook.java:46) | at org.jboss.wsf.container.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:90) | at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188) | at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95) | 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 $Proxy32.start(Unknown Source) | at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025) | at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1015) | 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.GeneratedMethodAccessor27.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: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) I tried to debug the deployment process and noticed that the error occurred in line 77 of the InvocationHandlerEJB3: if (dispatcher.getRegistered(objectName.getCanonicalName()) ==null) | throw new WebServiceException("Cannot find service endpoint target: " + objectName); | The problem is, that the dispatcher wants to invoke the webservice project before it is registered. At this point, the dispatcher has all deployed projects registered except the webservice project. If I remove all SLSB with the @EJB injections from the Webservices, the deployment runs successfully. Has anybody an idea? Harry View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077405#4077405 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077405 From do-not-reply at jboss.com Thu Aug 23 11:43:10 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 11:43:10 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Cannot find service endpoint target Message-ID: <20368160.1187883790397.JavaMail.jboss@colo-br-02.atl.jboss.com> Could you modify one of our EJB3 samples test cases to reproduce this issue. Ideally, you would create a jira issue and attach patch file against the testsuite. Does this occur with jbossws-2.0.1 as well? http://jbws.dyndns.org/mediawiki/index.php?title=Building_From_Source View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077410#4077410 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077410 From do-not-reply at jboss.com Thu Aug 23 11:45:00 2007 From: do-not-reply at jboss.com (genady_yadata) Date: Thu, 23 Aug 2007 11:45:00 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: .Net parameter interoperabilty Message-ID: <16437096.1187883900175.JavaMail.jboss@colo-br-02.atl.jboss.com> Using @XmlRootElement + @XmlType(name="") helps? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077411#4077411 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077411 From do-not-reply at jboss.com Thu Aug 23 11:45:34 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Thu, 23 Aug 2007 11:45:34 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - jbossws-2.0.1 released Message-ID: <20626504.1187883935370.JavaMail.jboss@colo-br-02.atl.jboss.com> As of this post I am happy to anounce that jbossws-2.0.1.GA is released. This is a fully certified JAXWS web services implemenation. It runs on jboss-5.0.x, jboss-4.2.x, 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=4077413#4077413 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077413 From do-not-reply at jboss.com Thu Aug 23 12:06:47 2007 From: do-not-reply at jboss.com (M_schumpa) Date: Thu, 23 Aug 2007 12:06:47 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Type Substitution doesn't work with Schema2Java Client a Message-ID: <3495538.1187885207040.JavaMail.jboss@colo-br-02.atl.jboss.com> I've added a jira issue and added a test case. Here's the link: http://jira.jboss.org/jira/browse/JBWS-1795 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077426#4077426 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077426 From do-not-reply at jboss.com Thu Aug 23 12:13:03 2007 From: do-not-reply at jboss.com (genady_yadata) Date: Thu, 23 Aug 2007 12:13:03 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Why are reference types no longer nillable? Message-ID: <15442637.1187885583341.JavaMail.jboss@colo-br-02.atl.jboss.com> Anybody? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077431#4077431 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077431 From do-not-reply at jboss.com Thu Aug 23 12:51:09 2007 From: do-not-reply at jboss.com (BossDenny) Date: Thu, 23 Aug 2007 12:51:09 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - JBossAS_4.0.5 does not clean up the temp files Message-ID: <22613408.1187887869131.JavaMail.jboss@colo-br-02.atl.jboss.com> In my JBossAs 4.0.5, the server does clean up the temp files and I'm forced to delete it's manually......I don't now because this....Please can help me????!!! grazie.... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077447#4077447 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077447 From do-not-reply at jboss.com Thu Aug 23 12:56:32 2007 From: do-not-reply at jboss.com (PeterJ) Date: Thu, 23 Aug 2007 12:56:32 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossAS_4.0.5 does not clean up the temp files Message-ID: <29745795.1187888192873.JavaMail.jboss@colo-br-02.atl.jboss.com> Why not simply add a command to delete the temp directory to the end of the run.bat or run.sh script? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077451#4077451 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077451 From do-not-reply at jboss.com Thu Aug 23 15:33:23 2007 From: do-not-reply at jboss.com (sursha) Date: Thu, 23 Aug 2007 15:33:23 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: 2 ejb3s exposed as web services. Can't have same methods Message-ID: <7099192.1187897603672.JavaMail.jboss@colo-br-02.atl.jboss.com> Thanks for looking into it. If I have authenticate(String userName, String password) only in one endpoint/1 ejb3, it works. If I have authenticate(String userName, String password) and authenticate(String userName) in one endpoint/1 ejb3, it did not work. I thought authenticate(String userName, String password) in 1 endpoint/1 ejb3 and authenticate(String userName) in different endpoint/ejb3 should work. But it did not work. Both ejb3s were packaged into the same ear file. Since both ejb3's have different name spaces, I thought it should work, but it did not !! Am I missing something? Your help will be appreciated. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077501#4077501 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077501 From do-not-reply at jboss.com Thu Aug 23 15:37:35 2007 From: do-not-reply at jboss.com (darran.lofthouse@jboss.com) Date: Thu, 23 Aug 2007 15:37:35 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: 2 ejb3s exposed as web services. Can't have same methods Message-ID: <7342558.1187897855482.JavaMail.jboss@colo-br-02.atl.jboss.com> You say your endpoints are in the same ear but are they also both in the same jar or in different jars? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077504#4077504 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077504 From do-not-reply at jboss.com Thu Aug 23 17:53:47 2007 From: do-not-reply at jboss.com (sursha) Date: Thu, 23 Aug 2007 17:53:47 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: 2 ejb3s exposed as web services. Can't have same methods Message-ID: <25520416.1187906027176.JavaMail.jboss@colo-br-02.atl.jboss.com> Both ejbs are in the same jar. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077557#4077557 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077557 From do-not-reply at jboss.com Thu Aug 23 18:57:54 2007 From: do-not-reply at jboss.com (koganty) Date: Thu, 23 Aug 2007 18:57:54 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: NullPointerException with jbossws 2.0.1 Message-ID: <18470379.1187909874804.JavaMail.jboss@colo-br-02.atl.jboss.com> jbossws-framework.jar is deployed under jboss/server//lib. This is how the ServerConfigFactory shows up in the log : 2007-08-23 13:34:29,019 DEBUG [main][DeploymentAspectManagerImpl]: WebAppGeneratorDeploymentAspect:Create 2007-08-23 13:34:29,191 DEBUG [main][DefaultSPIProvider]: provide SPI 'class org.jboss.wsf.spi.management.ServerConfigFactory' 2007-08-23 13:34:29,206 DEBUG [main][DefaultSPIProvider]: class org.jboss.wsf.spi.management.ServerConfigFactory Implementation: org.jboss.wsf.framework.management.ServerConfigFactoryImpl at 93727d 2007-08-23 13:34:29,222 ERROR [main][MainDeployer]: Could not start deployment: file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/epicenter.ear/epicenter.jar java.lang.NullPointerException at org.jboss.wsf.framework.deployment.WebAppGeneratorDeploymentAspect.generatWebDeployment(WebAppGeneratorDeploymentAspect.java:105) at org.jboss.wsf.framework.deployment.WebAppGeneratorDeploymentAspect.create(WebAppGeneratorDeploymentAspect.java:84) at org.jboss.wsf.framework.deployment.DeploymentAspectManagerImpl.deploy(DeploymentAspectManagerImpl.java:115) But the real problem is I think is the MANIFEST.MF in the jbossws.sar/META-INF directory. I see quite a few DeploymentExceptions during startup regards to unreachable jar files 'cos the MANIFEST.MF points to the wrong location. 2007-08-23 13:33:17,948 DEBUG [main][ClassLoaderUtils]: Multiple class loaders found for pkg: 2007-08-23 13:33:17,948 DEBUG [main][MainDeployer]: resolveLibraries: jbossws-spi.jar jbossws-common.jar jbossws-framework.jar jboss-jaxrpc.jar jboss-jaxws.jar jboss-saaj.jar activation.jar commons-logging.jar concurrent.jar javassist.jar jaxb-api.jar jaxb-impl.jar mail.jar jboss-remoting.jar jboss-xml-binding.jar policy.jar stax-api.jar wsdl4j.jar 2007-08-23 13:33:17,948 DEBUG [main][MainDeployer]: new manifest entry for sdi at jbossws.sar entry is jbossws-spi.jar 2007-08-23 13:33:17,948 DEBUG [main][MainDeployer]: The manifest entry in file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/jbossws.sar/ references URL file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/jbossws-spi.jar which could not be opened, entry ignored 2007-08-23 13:33:17,948 DEBUG [main][NestedThrowable]: org.jboss.util.NestedThrowable.parentTraceEnabled=true 2007-08-23 13:33:17,948 DEBUG [main][NestedThrowable]: org.jboss.util.NestedThrowable.nestedTraceEnabled=false 2007-08-23 13:33:17,948 DEBUG [main][NestedThrowable]: org.jboss.util.NestedThrowable.detectDuplicateNesting=true org.jboss.deployment.DeploymentException: url file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/jbossws-spi.jar could not be opened, does it exist? at org.jboss.deployment.DeploymentInfo.(DeploymentInfo.java:214) at org.jboss.deployment.MainDeployer.parseManifestLibraries(MainDeployer.java:1137) at org.jboss.deployment.MainDeployer.init(MainDeployer.java:884) 2007-08-23 13:33:17,964 DEBUG [main][MainDeployer]: new manifest entry for sdi at jbossws.sar entry is jbossws-common.jar 2007-08-23 13:33:17,964 DEBUG [main][MainDeployer]: The manifest entry in file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/jbossws.sar/ references URL file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/jbossws-common.jar which could not be opened, entry ignored org.jboss.deployment.DeploymentException: url file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/jbossws-common.jar could not be opened, does it exist? at org.jboss.deployment.DeploymentInfo.(DeploymentInfo.java:214) at org.jboss.deployment.MainDeployer.parseManifestLibraries(MainDeployer.java:1137) at org.jboss.deployment.MainDeployer.init(MainDeployer.java:884) 2007-08-23 13:33:17,964 DEBUG [main][MainDeployer]: new manifest entry for sdi at jbossws.sar entry is jbossws-framework.jar 2007-08-23 13:33:17,964 DEBUG [main][MainDeployer]: The manifest entry in file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/jbossws.sar/ references URL file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/jbossws-framework.jar which could not be opened, entry ignored org.jboss.deployment.DeploymentException: url file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/jbossws-framework.jar could not be opened, does it exist? at org.jboss.deployment.DeploymentInfo.(DeploymentInfo.java:214) at org.jboss.deployment.MainDeployer.parseManifestLibraries(MainDeployer.java:1137) at org.jboss.deployment.MainDeployer.init(MainDeployer.java:884) 2007-08-23 13:33:17,964 DEBUG [main][MainDeployer]: new manifest entry for sdi at jbossws.sar entry is jboss-jaxrpc.jar 2007-08-23 13:33:17,964 DEBUG [main][MainDeployer]: The manifest entry in file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/jbossws.sar/ references URL file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/jboss-jaxrpc.jar which could not be opened, entry ignored org.jboss.deployment.DeploymentException: url file:/C:/dev/sources/newport/jboss/server/epicenter/deploy/jboss-jaxrpc.jar could not be opened, does it exist? at org.jboss.deployment.DeploymentInfo.(DeploymentInfo.java:214) at org.jboss.deployment.MainDeployer.parseManifestLibraries(MainDeployer.java:1137) at org.jboss.deployment.MainDeployer.init(MainDeployer.java:884) There is more but I think this is the problem... Thank You. -Raju View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077573#4077573 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077573 From do-not-reply at jboss.com Fri Aug 24 01:00:22 2007 From: do-not-reply at jboss.com (vashistvishal) Date: Fri, 24 Aug 2007 01:00:22 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Wsconsume generated Stubs failing with JBoss-4.2.0 Message-ID: <28100894.1187931622349.JavaMail.jboss@colo-br-02.atl.jboss.com> I have a problem with generating Stubs from WSDL using Wsconsume, part of WS tools used in JBoss-4.2 This is the wsdl which i'm using.... | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ${jboss.bind.address} | true | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077660#4077660 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077660 From do-not-reply at jboss.com Fri Aug 24 04:43:26 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 24 Aug 2007 04:43:26 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Null pointer exception with jbossws 2.0.1 Message-ID: <20369968.1187945006656.JavaMail.jboss@colo-br-02.atl.jboss.com> duplicates http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077660#4077660 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077661#4077661 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077661 From do-not-reply at jboss.com Fri Aug 24 04:44:37 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 24 Aug 2007 04:44:37 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossAS_4.0.5 does not clean up the temp files Message-ID: <24070467.1187945077820.JavaMail.jboss@colo-br-02.atl.jboss.com> What temp files are not deleted? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077662#4077662 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077662 From do-not-reply at jboss.com Fri Aug 24 04:46:34 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 24 Aug 2007 04:46:34 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS-Security with JAX-RPC Message-ID: <18953340.1187945194016.JavaMail.jboss@colo-br-02.atl.jboss.com> looks good View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077663#4077663 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077663 From do-not-reply at jboss.com Fri Aug 24 04:48:51 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 24 Aug 2007 04:48:51 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Wsconsume generated Stubs failing with JBoss-4.2.0 Message-ID: <19992019.1187945331014.JavaMail.jboss@colo-br-02.atl.jboss.com> what jbossws is this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077664#4077664 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077664 From do-not-reply at jboss.com Fri Aug 24 04:52:19 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 24 Aug 2007 04:52:19 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Unable to create connection to jUDDI registry Message-ID: <9739551.1187945539891.JavaMail.jboss@colo-br-02.atl.jboss.com> Have a look at the sample jaxr tests http://jbws.dyndns.org:8180/hudson/job/Core-Tests-AS-4.2/lastBuild/testReport/org.jboss.test.ws.jaxws.samples.jaxr.scout.publish/ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077666#4077666 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077666 From do-not-reply at jboss.com Fri Aug 24 05:09:24 2007 From: do-not-reply at jboss.com (ambika) Date: Fri, 24 Aug 2007 05:09:24 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS4EEDowngrade setup problem Message-ID: <1398326.1187946564578.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, MedRec is a Avitek Medical Records (or MedRec) is a WebLogic Server sample application suite which we use for testing. This application is a WS4EE based axis application. As from jboss 4.0.5.GA onwards, WS4EE is replace with the JbossWS, so I have done the changes said in (http://wiki.jboss.org/wiki/Wiki.jsp?page=WS4EEDowngrade ) After following those steps its giving above mentioned error. As there is no webservice directory in the server, we are getting this problem. Please can anyone help me? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077674#4077674 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077674 From do-not-reply at jboss.com Fri Aug 24 05:24:41 2007 From: do-not-reply at jboss.com (BossDenny) Date: Fri, 24 Aug 2007 05:24:41 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: JBossAS_4.0.5 does not clean up the temp files Message-ID: <9998381.1187947481532.JavaMail.jboss@colo-br-02.atl.jboss.com> Yes, passivate file are not deleted by server!!!....and I have an exception when PostActivate metod occur on an ejb3 with PersistentContext(EXTENDED) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077683#4077683 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077683 From do-not-reply at jboss.com Fri Aug 24 05:33:39 2007 From: do-not-reply at jboss.com (mdaguete) Date: Fri, 24 Aug 2007 05:33:39 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: NullPointerException with jbossws 2.0.1 Message-ID: <2325970.1187948019994.JavaMail.jboss@colo-br-02.atl.jboss.com> "thomas.diesler at jboss.com" wrote : The manifest classpath is not the problem becasue the unified classloader can see/load the ServerConfigFactory | | The implementation of that factory however tries to load the ServerConfig from the microkernel with the bean name: WSServerConfig | | Is that bean there? | There are no WSServerConfig bean in the jmx-console. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077686#4077686 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077686 From do-not-reply at jboss.com Fri Aug 24 06:04:18 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 24 Aug 2007 06:04:18 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS4EEDowngrade setup problem Message-ID: <16844573.1187949858655.JavaMail.jboss@colo-br-02.atl.jboss.com> Please talk to http://www.jboss.com/services/index View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077700#4077700 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077700 From do-not-reply at jboss.com Fri Aug 24 06:40:00 2007 From: do-not-reply at jboss.com (ambika) Date: Fri, 24 Aug 2007 06:40:00 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS4EEDowngrade setup problem Message-ID: <24796029.1187952000435.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I wanted to know whether i can run MedRec application (which is built with to jboss ws4ee) in this New version of the apps server? Previously there was a disscusion about the same with jboss version 4.0.5.GA. http://www.jboss.com/index.html?module=bb&op=viewtopic&t=97276 Regards, Ambika View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077717#4077717 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077717 From do-not-reply at jboss.com Fri Aug 24 06:50:42 2007 From: do-not-reply at jboss.com (vashistvishal) Date: Fri, 24 Aug 2007 06:50:42 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Wsconsume generated Stubs failing with JBoss-4.2.0 Message-ID: <6481713.1187952642713.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi Thomas, Thanks for replying. I'm not sure what version JBossWS it is. I'm using JBoss-4.2.0.GA/ distribution, what version is shipped with it is not clear to me. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077720#4077720 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077720 From do-not-reply at jboss.com Fri Aug 24 08:45:49 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 24 Aug 2007 08:45:49 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Null pointer exception with jbossws 2.0.1 Message-ID: <27920731.1187959549858.JavaMail.jboss@colo-br-02.atl.jboss.com> test mail threading from forum posts View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077756#4077756 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077756 From do-not-reply at jboss.com Fri Aug 24 08:49:28 2007 From: do-not-reply at jboss.com (thomas.diesler@jboss.com) Date: Fri, 24 Aug 2007 08:49:28 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Wsconsume generated Stubs failing with JBoss-4.2.0 Message-ID: <18206596.1187959768167.JavaMail.jboss@colo-br-02.atl.jboss.com> please try jbossws-2.0.1 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077758#4077758 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077758 From do-not-reply at jboss.com Fri Aug 24 08:53:11 2007 From: do-not-reply at jboss.com (M_schumpa) Date: Fri, 24 Aug 2007 08:53:11 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Wsconsume generated Stubs failing with JBoss-4.2.0 Message-ID: <6332856.1187959991314.JavaMail.jboss@colo-br-02.atl.jboss.com> you can see which version of JBossWS is loaded at startup of JBoss. I should look something like this: INFO [ServiceEndpointManager] jbossws-1.2.1.GA (build=200704151756) That's the message from JBoss-4.2.0.GA/ distribution, so I think you are also using this one. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077760#4077760 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077760 From do-not-reply at jboss.com Fri Aug 24 09:55:03 2007 From: do-not-reply at jboss.com (kimbaltrue) Date: Fri, 24 Aug 2007 09:55:03 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Is there a workaround for the UsernameToken security hea Message-ID: <19329633.1187963703041.JavaMail.jboss@colo-br-02.atl.jboss.com> Thanks this helped though I did have to do a lot of snooping in the deploy directory. Apparently, all I had to do was add the following annotation: @EndpointConfig(configName="Standard WSSecurity Endpoint") The endpoint configuration file already exists in the webservices sar directory under deploy. Since the file and entry exist, all you need is the endpoint config statement with the name of the config. The next problem I have to solve has to do with this being JBoss specific rather than JEE 5. The JEE 5 has a @Handler annotation that should be used instead of the EndpointConfig annontation, but I haven't figured out how to work with that yet. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077795#4077795 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077795 From do-not-reply at jboss.com Fri Aug 24 12:03:28 2007 From: do-not-reply at jboss.com (john.franklin) Date: Fri, 24 Aug 2007 12:03:28 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Publishing my own wsdl which imports an xsd file. Message-ID: <3426639.1187971408031.JavaMail.jboss@colo-br-02.atl.jboss.com> I am using jboss 4.2.1 and jbossws 2.0.0 I am trying to publish the wsdl I have created by setting the wsdLocation correctly in the @WebService implementation file of the web service. The wsdl and the xsd files are located in the META-INF directory in the war file. It located the wsdl file, but cannot locate the xsd file which is in the same place. However JBoss throws an exception and fails to deploy. Is this a bug or am I doing something wrong? 2007-08-24 07:35:39,200 ERROR [ServiceEndpointDeployer] Cannot start service endpoint | org.jboss.ws.WSException: Cannot publish wsdl to: /opt/SYNAPPS100008/jboss-4.2.1.GA/server/default/data/wsdl/synappsccv1.war/Syna | ppsSessionService.wsdl | at org.jboss.ws.core.server.WSDLFilePublisher.publishWsdlFiles(WSDLFilePublisher.java:126) | at org.jboss.ws.core.server.ServiceEndpointDeployer.start(ServiceEndpointDeployer.java:134) | at org.jboss.ws.integration.jboss42.DeployerInterceptor.startServiceEndpoint(DeployerInterceptor.java:144) | at org.jboss.ws.integration.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:96) | at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188) | at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95) | 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 $Proxy47.start(Unknown Source) | 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 sun.reflect.GeneratedMethodAccessor19.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 $Proxy10.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) | Caused by: java.io.IOException: Cannot get URL for: WEB-INF/wsdl/SynappsSession.xsd | at org.jboss.ws.integration.ResourceLoaderAdapter.findChild(ResourceLoaderAdapter.java:105) | at org.jboss.ws.core.server.UnifiedDeploymentInfo.getMetaDataFileURL(UnifiedDeploymentInfo.java:106) | at org.jboss.ws.core.server.WSDLFilePublisher.publishSchemaImports(WSDLFilePublisher.java:202) | at org.jboss.ws.core.server.WSDLFilePublisher.publishSchemaImports(WSDLFilePublisher.java:222) | at org.jboss.ws.core.server.WSDLFilePublisher.publishSchemaImports(WSDLFilePublisher.java:222) | at org.jboss.ws.core.server.WSDLFilePublisher.publishWsdlFiles(WSDLFilePublisher.java:113) | ... 31 more | 2007-08-24 07:35:39,207 ERROR [MainDeployer] Could not start deployment: file:/opt/SYNAPPS100008/jboss-4.2.1.GA/server/default/de | ploy/synappsccv1.war | org.jboss.deployment.DeploymentException: Cannot start service endpoint; - nested throwable: (org.jboss.ws.WSException: Cannot pu | blish wsdl to: /opt/SYNAPPS100008/jboss-4.2.1.GA/server/default/data/wsdl/synappsccv1.war/SynappsSessionService.wsdl) | at org.jboss.deployment.DeploymentException.rethrowAsDeploymentException(DeploymentException.java:53) | at org.jboss.ws.integration.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:101) | at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188) | at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95) | 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 $Proxy47.start(Unknown Source) | 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 sun.reflect.GeneratedMethodAccessor19.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 $Proxy10.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) | Caused by: org.jboss.ws.WSException: Cannot publish wsdl to: /opt/SYNAPPS100008/jboss-4.2.1.GA/server/default/data/wsdl/synappscc | v1.war/SynappsSessionService.wsdl | at org.jboss.ws.core.server.WSDLFilePublisher.publishWsdlFiles(WSDLFilePublisher.java:126) | at org.jboss.ws.core.server.ServiceEndpointDeployer.start(ServiceEndpointDeployer.java:134) | at org.jboss.ws.integration.jboss42.DeployerInterceptor.startServiceEndpoint(DeployerInterceptor.java:144) | at org.jboss.ws.integration.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:96) | ... 28 more | Caused by: java.io.IOException: Cannot get URL for: WEB-INF/wsdl/SynappsSession.xsd | at org.jboss.ws.integration.ResourceLoaderAdapter.findChild(ResourceLoaderAdapter.java:105) | at org.jboss.ws.core.server.UnifiedDeploymentInfo.getMetaDataFileURL(UnifiedDeploymentInfo.java:106) | at org.jboss.ws.core.server.WSDLFilePublisher.publishSchemaImports(WSDLFilePublisher.java:202) | at org.jboss.ws.core.server.WSDLFilePublisher.publishSchemaImports(WSDLFilePublisher.java:222) | at org.jboss.ws.core.server.WSDLFilePublisher.publishSchemaImports(WSDLFilePublisher.java:222) | at org.jboss.ws.core.server.WSDLFilePublisher.publishWsdlFiles(WSDLFilePublisher.java:113) | ... 31 more | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077860#4077860 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077860 From do-not-reply at jboss.com Fri Aug 24 14:14:51 2007 From: do-not-reply at jboss.com (john.franklin) Date: Fri, 24 Aug 2007 14:14:51 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Publishing my own wsdl which imports an xsd file. Message-ID: <1155001.1187979291047.JavaMail.jboss@colo-br-02.atl.jboss.com> Got it. It is looking for the xsd files in WEB-INF thought the wsdl is in META-INF. Added it there and it works. Thanks, johnf View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077899#4077899 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077899 From do-not-reply at jboss.com Fri Aug 24 17:33:18 2007 From: do-not-reply at jboss.com (sandypm0) Date: Fri, 24 Aug 2007 17:33:18 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - NullPointerException with a WS request Message-ID: <32127592.1187991198563.JavaMail.jboss@colo-br-02.atl.jboss.com> I am using Jboss-4.0.5 and JbossWS-1.2.1. I get this error, and it occurs now and then. 80% of the time it works and 20% of the time it throws the following error. | 2007-08-24 17:09:41,540 ERROR [org.jboss.ws.jaxrpc.SOAPFaultExceptionHelper] Err | or creating SOAPFault message | java.lang.NullPointerException | at com.sun.org.apache.xerces.internal.dom.NodeImpl.toString(Unknown Sour | ce) | at org.jboss.ws.soap.NodeImpl.toString(NodeImpl.java:561) | at java.lang.String.valueOf(String.java:1475) | at org.jboss.lang.JBossStringBuilder.append(JBossStringBuilder.java:116) | at org.jboss.ws.soap.SOAPContentElement.appendChild(SOAPContentElement.j | ava:713) | at org.jboss.ws.soap.SOAPElementImpl.addChildElement(SOAPElementImpl.jav | a:221) | at org.jboss.ws.soap.SOAPContentElement.addChildElement(SOAPContentEleme | nt.java:441) | at org.jboss.ws.soap.SOAPFaultImpl.setFaultCode(SOAPFaultImpl.java:253) | at org.jboss.ws.soap.SOAPBodyImpl.addFault(SOAPBodyImpl.java:133) | at org.jboss.ws.jaxrpc.SOAPFaultExceptionHelper.toSOAPMessage(SOAPFaultE | xceptionHelper.java:214) | at org.jboss.ws.jaxrpc.SOAPFaultExceptionHelper.exceptionToFaultMessage( | SOAPFaultExceptionHelper.java:188) | at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.jav | a:223) | at org.jboss.ws.server.ServiceEndpointManager.processSOAPRequest(Service | EndpointManager.java:355) | at org.jboss.ws.server.StandardEndpointServlet.doPost(StandardEndpointSe | rvlet.java:115) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) | at org.jboss.ws.server.StandardEndpointServlet.service(StandardEndpointS | ervlet.java:76) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl | icationFilterChain.java:252) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF | ilterChain.java:173) | at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFi | lter.java:96) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl | icationFilterChain.java:202) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF | ilterChain.java:173) | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV | alve.java:213) | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV | alve.java:178) | at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(Securit | yAssociationValve.java:175) | at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authentica | torBase.java:524) | at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValv | e.java:74) | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j | ava:126) | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j | ava:105) | at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConne | ctionValve.java:156) | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal | ve.java:107) | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav | a:148) | at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java | :869) | at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.p | rocessConnection(Http11BaseProtocol.java:664) | at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpo | int.java:527) | at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWor | kerThread.java:112) | at java.lang.Thread.run(Thread.java:797) | 2007-08-24 17:09:41,541 ERROR [org.jboss.ws.server.StandardEndpointServlet] Erro | r processing web service request | Servlet.service | () for servlet AutoLendingServlet threw exception | javax.xml.rpc.JAXRPCException: Cannot create SOAPFault message for: javax.xml.rp | c.soap.SOAPFaultException: java.lang.NullPointerException | at org.jboss.ws.jaxrpc.SOAPFaultExceptionHelper.exceptionToFaultMessage( | SOAPFaultExceptionHelper.java:194) | at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.jav | a:223) | at org.jboss.ws.server.ServiceEndpointManager.processSOAPRequest(Service | EndpointManager.java:355) | at org.jboss.ws.server.StandardEndpointServlet.doPost(StandardEndpointSe | rvlet.java:115) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) | at org.jboss.ws.server.StandardEndpointServlet.service(StandardEndpointS | ervlet.java:76) | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl | icationFilterChain.java:252) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF | ilterChain.java:173) | at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFi | lter.java:96) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl | icationFilterChain.java:202) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF | ilterChain.java:173) | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV | alve.java:213) | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV | alve.java:178) | at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(Securit | yAssociationValve.java:175) | at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authentica | torBase.java:524) | at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValv | e.java:74) | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j | ava:126) | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j | ava:105) | at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConne | ctionValve.java:156) | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal | ve.java:107) | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav | a:148) | at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java | :869) | at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.p | rocessConnection(Http11BaseProtocol.java:664) | at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpo | int.java:527) | at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWor | kerThread.java:112) | at java.lang.Thread.run(Thread.java:797) | The Client side is registering the SOAP request which was sent down to the server, and everything looks OK. Is there any known issue regarding this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077941#4077941 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077941 From do-not-reply at jboss.com Sun Aug 26 03:10:59 2007 From: do-not-reply at jboss.com (vashistvishal) Date: Sun, 26 Aug 2007 03:10:59 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossws-2.0.1 released Message-ID: <3485636.1188112259055.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi Thomas, Links you have mentioned are not working, may be the site is down please check. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078100#4078100 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078100 From do-not-reply at jboss.com Sun Aug 26 09:50:54 2007 From: do-not-reply at jboss.com (bblasko) Date: Sun, 26 Aug 2007 09:50:54 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Setting .NET friendly Endpoint in web.xml Message-ID: <5078985.1188136254532.JavaMail.jboss@colo-br-02.atl.jboss.com> If I attempt to set the jbossws-config-name to ".NET friendly Endpoint", it is correctly picking up the config but the WSDL is not generated as it should. It appears it does not rewrite the WSDL based on this setting. If I set the config as an annotation in my class it works. Is there a way to set the .NET Endpoint without using an annotation. This works: @EndpointConfig(configName=".NET friendly Endpoint") This does not. | jbossws-config-name | .NET friendly Endpoint | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078132#4078132 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078132 From do-not-reply at jboss.com Sun Aug 26 10:00:27 2007 From: do-not-reply at jboss.com (bblasko) Date: Sun, 26 Aug 2007 10:00:27 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Using WS behing a reverse proxy Message-ID: <28998533.1188136828016.JavaMail.jboss@colo-br-02.atl.jboss.com> We host our web services behind a reverse proxy which serves as our security and HTTPS termination. Everything works OK with the exception of the dynamic WSDL generation. Since the URL used to access the WS service is not the same as the actual URL of the JBoss service, the WSDL soap:address is incorrect. Is there a way to override the webServiceHost and webServicePort at the application instance vs the entire container? Example https://proxyhost/webcxta/service1?wsdl maps to http://jbossserver:8080/webcxta/service1?wsdl https://proxyhost/webcxtb/service2?wsdl maps to http://jbossserver:8080/webcxtb/service2?wsdl View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078134#4078134 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078134 From do-not-reply at jboss.com Sun Aug 26 10:57:44 2007 From: do-not-reply at jboss.com (gbdt) Date: Sun, 26 Aug 2007 10:57:44 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Two webservice classes define method with same name (bug?) Message-ID: <6904252.1188140264762.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I have a test case in which I get wrong WSDLs: (Both classes are in the same package) File1: | package com.XXXX; | | import javax.ejb.Stateless; | import javax.jws.WebMethod; | import javax.jws.WebParam; | import javax.jws.WebService; | | @WebService | @Stateless | public class TestClass1 { | | @WebMethod | public ****Integer**** method(@WebParam(name="f")Float f) { | return null; | } | } | File2: | package com.XXXX; | | import javax.ejb.Stateless; | import javax.jws.WebMethod; | import javax.jws.WebParam; | import javax.jws.WebService; | | @WebService | @Stateless | public class TestClass2 { | | @WebMethod | public ****Double**** method(@WebParam(name="f")Float f) { | return 17.0; | } | } | The problem is that for both services the WSDL definition of the return type is xs:int, while for the second class it should be a double. For TestClass1: | | | | | | | | | | | | | | | | | And for TestClass2: | ... | | | | | | | | | | | | | | | | | ... | The second method definition, for a totally different service has an incorrect return type. Is is a bug or some kind of error on my side? Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078139#4078139 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078139 From do-not-reply at jboss.com Mon Aug 27 01:17:47 2007 From: do-not-reply at jboss.com (ambika) Date: Mon, 27 Aug 2007 01:17:47 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS4EEDowngrade setup problem Message-ID: <13518452.1188191867437.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, Is downgrade setup of WS4EE will work for jboss application server 4.2.0.GA? Regards, Ambika View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078208#4078208 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078208 From do-not-reply at jboss.com Mon Aug 27 04:26:13 2007 From: do-not-reply at jboss.com (richard_opalka) Date: Mon, 27 Aug 2007 04:26:13 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Using WS behing a reverse proxy Message-ID: <16912515.1188203173078.JavaMail.jboss@colo-br-02.atl.jboss.com> See http://www.jboss.com/index.html?module=bb&op=viewtopic&t=116005 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078245#4078245 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078245 From do-not-reply at jboss.com Mon Aug 27 05:40:55 2007 From: do-not-reply at jboss.com (richard_opalka) Date: Mon, 27 Aug 2007 05:40:55 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Two webservice classes define method with same name (bug Message-ID: <4278536.1188207655565.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, how did you get it? I tried your usecase and it works for me :-( Here's my experiment: //--------- // File TestClass1.java //--------- package com.XXXX; import javax.ejb.Stateless; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebService; @WebService @Stateless public interface TestClass1 extends java.rmi.Remote { @WebMethod public Integer method(@WebParam(name="f")Float f) throws java.rmi.RemoteException; } //--------- // File TestClass2.java //--------- package com.XXXX; import javax.ejb.Stateless; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebService; @WebService @Stateless public interface TestClass2 extends java.rmi.Remote { @WebMethod public Double method(@WebParam(name="f")Float f) throws java.rmi.RemoteException; } //--------- // File wstools-config1.xml //--------- //--------- // File wstools-config2.xml //--------- //--------- // File generatewsdl.sh //--------- #!/bin/sh ./wstools.sh -cp output -config wstools-config1.xml ./wstools.sh -cp output -config wstools-config2.xml //--------- In both cases it generates correct WSDLs for me. I also tried to change the style from "rpc" to "document" but again it worked very well for me. Can you describe me your problem and how did you get it more detailly? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078281#4078281 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078281 From do-not-reply at jboss.com Mon Aug 27 05:51:58 2007 From: do-not-reply at jboss.com (gbdt) Date: Mon, 27 Aug 2007 05:51:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Two webservice classes define method with same name (bug Message-ID: <29077615.1188208318205.JavaMail.jboss@colo-br-02.atl.jboss.com> I didn't use the wstools script and didn't have the configuration files. I did let JBossws to generate the wsdls "in-memory" (http://localhost:8080/..../TestClass1?wsdl) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078282#4078282 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078282 From do-not-reply at jboss.com Mon Aug 27 09:05:46 2007 From: do-not-reply at jboss.com (richard_opalka) Date: Mon, 27 Aug 2007 09:05:46 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Two webservice classes define method with same name (bug Message-ID: <31564326.1188219946678.JavaMail.jboss@colo-br-02.atl.jboss.com> OK, could you send me minimized application so I could reproduce your problem? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078340#4078340 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078340 From do-not-reply at jboss.com Mon Aug 27 09:15:33 2007 From: do-not-reply at jboss.com (bernhard_pauler) Date: Mon, 27 Aug 2007 09:15:33 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossws-2.0.1 released Message-ID: <28117228.1188220533519.JavaMail.jboss@colo-br-02.atl.jboss.com> I tried to deploy jbossws-native-2.0.1.GA on jboss-4.0.5.GA but failed: BUILD FAILED | C:\temp0\jbossws-native-2.0.1.GA\build\build-deploy.xml:79: The following error occurred while executing this line: | C:\temp0\jbossws-native-2.0.1.GA\build\macros-deploy-native.xml:298: Warning: Could not find file C:\jboss-4.0.5.GA\server\default\deploy\jbossws.sar\META-INF\jboss-service-no-ejb3.xml to copy. Deployment on jboss-4.2.1.GA was successful. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078345#4078345 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078345 From do-not-reply at jboss.com Mon Aug 27 09:25:36 2007 From: do-not-reply at jboss.com (gbdt) Date: Mon, 27 Aug 2007 09:25:36 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Two webservice classes define method with same name (bug Message-ID: <3463940.1188221136773.JavaMail.jboss@colo-br-02.atl.jboss.com> I've emailed the files directly to you. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078349#4078349 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078349 From do-not-reply at jboss.com Mon Aug 27 11:50:54 2007 From: do-not-reply at jboss.com (bblasko) Date: Mon, 27 Aug 2007 11:50:54 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Using WS behing a reverse proxy Message-ID: <17470324.1188229854582.JavaMail.jboss@colo-br-02.atl.jboss.com> If you set webServiceHost it applies to all web services hosted in the container. I need to be able to override the host for a specific web context within the container. In my example, I have two web context webcxta and webcxtb both are hosted on the same jboss container. What I need is to have the same fucntionality as provided by webServiceHost property but at the individual web app level. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078408#4078408 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078408 From do-not-reply at jboss.com Mon Aug 27 18:19:01 2007 From: do-not-reply at jboss.com (gumnaam) Date: Mon, 27 Aug 2007 18:19:01 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - jboss 4.0.5 and jbossws 2.0.1, Exception invoking a web serv Message-ID: <22744587.1188253141611.JavaMail.jboss@colo-br-02.atl.jboss.com> I have a very simple EJB3 SLSB EchoService, which has one method hello. Operation hello takes in a string and returns the same string. If I deploy this application, in jboss 4.0.5 stock which comes with jbossws 1.0.3, then I am able to successfully invoke the hello operation using soapui. Now If I install jbossws 2.0.1 in my jboss 4.0.5, the application starts up fine, the wsdl is also generated correctly, but upon invoking the hello method from soapui, I get the following error on the server. anonymous wrote : | 18:08:15,776 ERROR [SOAPFaultHelperJAXWS] SOAP request exception | org.jboss.ws.core.CommonSOAPFaultException: Endpoint {http://ejb.myproj.mycomp.com/}EchoServicePort does not contain operation meta data for: {http://ejb.myproj.mycomp.com/}hello | at org.jboss.ws.core.server.ServiceEndpointInvoker.getDispatchDestination(ServiceEndpointInvoker.java:457) | at org.jboss.ws.core.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:176) | at org.jboss.wsf.stack.jbws.RequestHandlerImpl.processRequest(RequestHandlerImpl.java:408) | at org.jboss.wsf.stack.jbws.RequestHandlerImpl.handleRequest(RequestHandlerImpl.java:272) | at org.jboss.wsf.stack.jbws.RequestHandlerImpl.doPost(RequestHandlerImpl.java:189) | at org.jboss.wsf.stack.jbws.RequestHandlerImpl.handleHttpRequest(RequestHandlerImpl.java:122) | at org.jboss.wsf.stack.jbws.EndpointServlet.service(EndpointServlet.java:84) | I need to upgrade to jbossws 2.0.1 as we will soon be migrating to jdk 1.6, and jbossws 1.0.3 does not work with jdk 1.6. Any pointers will he appriciated. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078520#4078520 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078520 From do-not-reply at jboss.com Mon Aug 27 21:54:31 2007 From: do-not-reply at jboss.com (vashistvishal) Date: Mon, 27 Aug 2007 21:54:31 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Wsconsume generated Stubs failing with JBoss-4.2.0 Message-ID: <5873035.1188266071247.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi Thomas, I have got the new Web services stack (jbossws-2.0.1.GA) and deployed it in Jboss 4.2.1.GA and wsconsume fails with it as well I have validated my WSDL file (using WTP in Eclipse 3.3) as well and doesnt complain at all. To me its a bug in stack, which is generating wrong input paramaeter for the interface. It generates the right response for return type but fails with input type. This is what i get when i use wsconsume. vsm at jm000606:resources$ ~/javadev/jboss-4.2.1.GA/bin/wsconsume.sh -p au.com.new201 -k getMemberInfo.wsdl JBossWS-Native stack deployed parsing WSDL... [WARNING] src-resolve: Cannot resolve the name 'edm:getMemberInfo' to a(n) 'element declaration' component. | line 52 of file:/C:/cygwin/home/vishal/download/source.new/common/resources/getMemberInfo.wsdl#types?schema2 | | generating code... | au\com\new201\EmploymentHistory.java | au\com\new201\GetMemberInfoRequest.java | au\com\new201\GetMemberInfoRequestType.java | au\com\new201\GetMemberInfoResponse.java | au\com\new201\GetMemberInfoResponseType.java | au\com\new201\InsuranceServicesGetmemberinfo.java | au\com\new201\InsuranceServicesGetmemberinfoService.java | au\com\new201\MemberPackages.java | au\com\new201\ObjectFactory.java | au\com\new201\package-info.java | vsm at jm000606:resources$ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078557#4078557 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078557 From do-not-reply at jboss.com Tue Aug 28 00:19:08 2007 From: do-not-reply at jboss.com (vashistvishal) Date: Tue, 28 Aug 2007 00:19:08 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - New Wiki site for JBossWS is down or not working since frida Message-ID: <32678811.1188274748170.JavaMail.jboss@colo-br-02.atl.jboss.com> New Wiki site for JBossWS is down since friday... I don't thisk it working. http://jbws.dyndns.org/mediawiki All the documentation (user guide,tutorial) for new release of JBossWS 2.0.1 is not accesible because of this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078571#4078571 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078571 From do-not-reply at jboss.com Tue Aug 28 07:20:10 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Tue, 28 Aug 2007 07:20:10 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - WIKI down Message-ID: <11617550.1188300010414.JavaMail.jboss@colo-br-02.atl.jboss.com> The WIKI is currently unvailable. However i put the documentation online that was compiled from WIKI contents. It can accessed here: http://labs.jboss.com/jbossws/docs/index.html Sorry, for the inconvinience. I'll keep you posted once the WIKI is back online. Please refer to the static contents in the meantime. Heiko View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078694#4078694 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078694 From do-not-reply at jboss.com Tue Aug 28 07:43:29 2007 From: do-not-reply at jboss.com (palin) Date: Tue, 28 Aug 2007 07:43:29 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: New Wiki site for JBossWS is down or not working since f Message-ID: <24841234.1188301409655.JavaMail.jboss@colo-br-02.atl.jboss.com> http://www.jboss.org/index.html?module=bb&op=viewtopic&t=117230 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078701#4078701 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078701 From do-not-reply at jboss.com Tue Aug 28 07:57:17 2007 From: do-not-reply at jboss.com (palin) Date: Tue, 28 Aug 2007 07:57:17 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossws-2.0.1 released Message-ID: <23545761.1188302237616.JavaMail.jboss@colo-br-02.atl.jboss.com> "bernhard_pauler" wrote : I tried to deploy jbossws-native-2.0.1.GA on jboss-4.0.5.GA but failed: | | BUILD FAILED | | C:\temp0\jbossws-native-2.0.1.GA\build\build-deploy.xml:79: The following error occurred while executing this line: | | C:\temp0\jbossws-native-2.0.1.GA\build\macros-deploy-native.xml:298: Warning: Could not find file C:\jboss-4.0.5.GA\server\default\deploy\jbossws.sar\META-INF\jboss-service-no-ejb3.xml to copy. | | Deployment on jboss-4.2.1.GA was successful. On jira you'll find an issue for this and a workaround to be used with jbws 2.0.1.GA. http://jira.jboss.com/jira/browse/JBWS-1796 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078710#4078710 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078710 From do-not-reply at jboss.com Tue Aug 28 10:06:02 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Tue, 28 Aug 2007 10:06:02 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jboss 4.0.5 and jbossws 2.0.1, Exception invoking a web Message-ID: <30773979.1188309962764.JavaMail.jboss@colo-br-02.atl.jboss.com> Did you try to recreate the SOAPUI stubs from the WSDL generated by 2.0.1? Does the same error occur? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078793#4078793 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078793 From do-not-reply at jboss.com Tue Aug 28 10:08:23 2007 From: do-not-reply at jboss.com (heiko.braun@jboss.com) Date: Tue, 28 Aug 2007 10:08:23 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Setting .NET friendly Endpoint in web.xml Message-ID: <316167.1188310103090.JavaMail.jboss@colo-br-02.atl.jboss.com> Thanks. This looks like a bug to me: http://jira.jboss.com/jira/browse/JBWS-1797 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078795#4078795 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078795 From do-not-reply at jboss.com Tue Aug 28 10:36:26 2007 From: do-not-reply at jboss.com (richard_opalka) Date: Tue, 28 Aug 2007 10:36:26 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Using WS behing a reverse proxy Message-ID: <10561540.1188311786328.JavaMail.jboss@colo-br-02.atl.jboss.com> Copy/Paste from the configuration file you were modifying: --- The WSDL, that is a required deployment artifact for an endpoint, has a | element which points to the location of the endpoint. JBoss supports rewriting of that SOAP address. | | If the content of is a valid URL, JBossWS will not rewrite it unless 'modifySOAPAddress' is true. | If the content of is not a valid URL, JBossWS will rewrite it using the attribute values given below. --- Did you try to set up manually in WSDL and set modifySOAPAddress to false? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078808#4078808 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078808 From do-not-reply at jboss.com Tue Aug 28 12:09:37 2007 From: do-not-reply at jboss.com (gumnaam) Date: Tue, 28 Aug 2007 12:09:37 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jboss 4.0.5 and jbossws 2.0.1, Exception invoking a web Message-ID: <32700156.1188317378015.JavaMail.jboss@colo-br-02.atl.jboss.com> Problem solved. Initially I had annotated my Interface, and my implementation, with the default values for the @WebService annotation. The interface and implementation, were in different packages, so they had different target namespaces. The problem went away when I specified the same targetNamespace for both the interface and implementation. This should be in the FAQ, if the interface and implementation are in differnet packages, then they must have same targetNamesapce explicitly specified. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078864#4078864 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078864 From do-not-reply at jboss.com Tue Aug 28 12:32:25 2007 From: do-not-reply at jboss.com (gumnaam) Date: Tue, 28 Aug 2007 12:32:25 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - context-root in jboss.xml Message-ID: <22417418.1188318745237.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I have a following EAR setup. myApp.ear | `META-INF/application.xml | `myWeb.war (ctx root set to /myWeb in application.xml of ear) | `myEjb.jar | `SLSB EJB3s (also exposed as WS). META-INF | `jboss.xml I want to override the default context root for my Web Services. So in my jboss.xml for (myEjb.jar) I have [QUOTE] /webservices [/QUOTE] inside the jboss->webservices node. But this doesn't seem to be working, the WSDLs are published at http://host/myApp-myEjb/ I don't want to use the @WebContext, I would rather specify the context-root in jboss.xml , but it is not working. Any clues ? Also can the context-root be any thing arbitrary , or does it need to have some connection, with the deployed web application's (in my case myWeb.war) context root ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078878#4078878 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078878 From do-not-reply at jboss.com Tue Aug 28 12:55:22 2007 From: do-not-reply at jboss.com (sgarelle) Date: Tue, 28 Aug 2007 12:55:22 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Secure Webservice Message-ID: <6082977.1188320122267.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I am facing exactly the same problem... So, what's the solution? I am using JBoss_4_2_1_GA. On client side, I also use the request context to set the user name and password: | CmiEndPoint proxy = (CmiEndPoint) service.getPort(CmiEndPoint.class); | BindingProvider bp = (BindingProvider) proxy; | Map reqCtxt = bp.getRequestContext(); | reqCtxt.put(BindingProvider.USERNAME_PROPERTY, user); | reqCtxt.put(BindingProvider.PASSWORD_PROPERTY, password); | proxy.execCmd("Do this command"); | On server side, the WebService is simply declared with the "@WebService" annotation. A security-domain is defined in jboss.xml. Users are defined. The command failed because of an authentification failure: javax.xml.ws.soap.SOAPFaultException: Authentication failure The same user/password used for a RMI client calling directly the underlying stateless session bean works. The same WS client with security disabled on server works. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078883#4078883 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078883 From do-not-reply at jboss.com Tue Aug 28 13:01:25 2007 From: do-not-reply at jboss.com (gumnaam) Date: Tue, 28 Aug 2007 13:01:25 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - jbossWS 2.0.1 and JDK 1.6 Message-ID: <15521651.1188320485672.JavaMail.jboss@colo-br-02.atl.jboss.com> The release notes of 2.0.1 say it was fixed to work with JDK 1.6. How ever I can't get it to work with JDK 1.6 under jboss 4.0.5. If I run against JDK 1.6, I get the error saying jaxb-api.jar ver. 2.0 is loaded from bootstrap classpath however the JAX RI requires ver 2.1. To override , use the endoresed mechanism. This is a deployment error, i.e. the application is not deployed. So I copied jaxb-api.jar and jaxws-api.jar to jboss/lib/endorsed directory, after this the application is deployed fine, but when I call the web service , I get anonymous wrote : | aused by: java.lang.UnsupportedOperationException: setProperty must be overridden by all subclasses of SOAPMessage | at javax.xml.soap.SOAPMessage.setProperty(SOAPMessage.java:424) | at org.jboss.ws.core.soap.SOAPMessageImpl.(SOAPMessageImpl.java:67) | at org.jboss.ws.core.soap.MessageFactoryImpl.createMessage(MessageFactoryImpl.java:161) | at org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS.toSOAPMessage(SOAPFaultHelperJAXWS.java:232) | at org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS.exceptionToFaultMessage(SOAPFaultHelperJAXWS.java:161) | at org.jboss.ws.core.jaxws.binding.SOAP11BindingJAXWS.createFaultMessageFromException(SOAP11BindingJAXWS.java:104) | What exactly needs to be done to make JDK 1.6 work with Jbossws 2.0.1 ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078886#4078886 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078886 From do-not-reply at jboss.com Tue Aug 28 13:07:13 2007 From: do-not-reply at jboss.com (bblasko) Date: Tue, 28 Aug 2007 13:07:13 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Using WS behing a reverse proxy Message-ID: <206656.1188320833233.JavaMail.jboss@colo-br-02.atl.jboss.com> Yes, that approach will work and is a potential workaround so long as you have static WSDL. I am using annotated POJO for the web services so having the WSDL dynamically generated on deployment is preferred. What I really need is the ability to specify the host override in the web.xml or webservices.xml. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078888#4078888 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078888 From do-not-reply at jboss.com Tue Aug 28 19:22:35 2007 From: do-not-reply at jboss.com (koganty) Date: Tue, 28 Aug 2007 19:22:35 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: NullPointerException with jbossws 2.0.1 Message-ID: <20176129.1188343355934.JavaMail.jboss@colo-br-02.atl.jboss.com> Thomas, Any updates on this? How do you suggest we proceed? Any other information we should be looking for? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078959#4078959 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4078959 From do-not-reply at jboss.com Wed Aug 29 04:21:20 2007 From: do-not-reply at jboss.com (M_schumpa) Date: Wed, 29 Aug 2007 04:21:20 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Type Substitution doesn't work with Schema2Java Client a Message-ID: <13618393.1188375680546.JavaMail.jboss@colo-br-02.atl.jboss.com> hi thomas, do you think there is a quick fix for this problem? I'm asking because I'm writing a diploma thesis about Web Services and the deadline is the end of september. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079027#4079027 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079027 From do-not-reply at jboss.com Wed Aug 29 04:34:12 2007 From: do-not-reply at jboss.com (oskar.carlstedt) Date: Wed, 29 Aug 2007 04:34:12 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - How to import relative schemas? Message-ID: <33549966.1188376452321.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi All! I cannot not manage to create a deployment in Boss-5.0.0.Beta2 where I import schemas by relative paths. Using "../"-paths are not allowed (getting an exception telling me that parent paths are not allowed). Parent paths are allowed in JBossWS 1.2.1.GA on JBoss 4.0.5.GA. What I'm actually doing is that I create my wsdl and schema files by hand, i.e. contract first development. Then I create an endpoint provider to handle incoming requests. In the endpoint I set the wsdl location to WEB-INF/wsdl/... This is working, JBoss finds my wsdl file but cannot resolve schema the relative path of imported schemas. Does anyone know how to solve this problem? Thanks Oskar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079033#4079033 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079033 From do-not-reply at jboss.com Wed Aug 29 04:41:47 2007 From: do-not-reply at jboss.com (oskar.carlstedt) Date: Wed, 29 Aug 2007 04:41:47 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: How to import relative schemas? Message-ID: <28594509.1188376907985.JavaMail.jboss@colo-br-02.atl.jboss.com> Some more info... The schemas I'm using are including other schemas too, that are also referenced by a relative schema location. So it's is i kind of nested schema imports in several schemas. All schemas are not directly located under WEB-INF/wsdl, instead they are located under their resp. http-path on another schema-server, e.g. WEB-INF/wsdl/a/a.xsd, WEB-INF/wsdl/b/b.xsd //Oskar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079035#4079035 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079035 From do-not-reply at jboss.com Wed Aug 29 06:54:05 2007 From: do-not-reply at jboss.com (gerry744) Date: Wed, 29 Aug 2007 06:54:05 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - jbossws with apache Message-ID: <33227191.1188384845425.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm using Jboss behind apache. '/jbossws/services' works fine, the wsdls's work fine, but the actual services don't work. They do work if I connect directly on port 8080, but not through apache. Everything else is working fine through apache. If I try connecting a browser to the actual service via apache, instead of seeing the service I just get "http GET not supported". Anyone know what I'm doing wrong ? I'm using jboss 4.2.1, jbossws 2.0.1, apache2 on another machine, jk 1.2, all on gentoo. Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079088#4079088 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079088 From do-not-reply at jboss.com Wed Aug 29 08:35:55 2007 From: do-not-reply at jboss.com (jmaasing) Date: Wed, 29 Aug 2007 08:35:55 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Cannot find child element - with namespace Message-ID: <27330836.1188390955523.JavaMail.jboss@colo-br-02.atl.jboss.com> We have a problem with an XFire generated client. The SOAP request generated from the XFire client When we try to access the JBoss 4.0.5GA-WS service we send the following SOAP request: | | | | 2006-02-28T14:41:13.860+01:00 | | | | | This request generates an error: | | | | env:Client | Cannot find child element: InvoiceRequest | | | If we open the WSDL in SoapUI it generates a request that looks like this: | | | | | ? | | | | Notice the missing jaws namespace on InvoiceRequest (exactly what the errormessage said :)). The question is if XFire is producing invalid SOAP Request based on the WSDL? Is there a problem on the JBoss-WS side? Or is there something amiss in the document encoding perhaps? WSDL. | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079120#4079120 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079120 From do-not-reply at jboss.com Wed Aug 29 08:45:02 2007 From: do-not-reply at jboss.com (omatzura) Date: Wed, 29 Aug 2007 08:45:02 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Cannot find child element - with namespace Message-ID: <10713965.1188391502309.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi! this looks like a problem with the xfire client; when using RPC-style operations, the different part elements must not have a namespace in accordance with the basic profile, which states; R2735 An ENVELOPE described with an rpc-literal binding MUST place the part accessor elements for parameters and return value in no namespace. Hope this helps! regards, /Ole eviware.com View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079124#4079124 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079124 From do-not-reply at jboss.com Wed Aug 29 09:12:58 2007 From: do-not-reply at jboss.com (jmaasing) Date: Wed, 29 Aug 2007 09:12:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Cannot find child element - with namespace Message-ID: <17748811.1188393178100.JavaMail.jboss@colo-br-02.atl.jboss.com> Thank you, since XFire seems to not support rpc/encoded this is most probably the problem. Thanks for the pointer. http://xfire.codehaus.org/Client+and+Server+Stub+Generation+from+WSDL View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079145#4079145 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079145 From do-not-reply at jboss.com Wed Aug 29 09:23:43 2007 From: do-not-reply at jboss.com (omatzura) Date: Wed, 29 Aug 2007 09:23:43 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Cannot find child element - with namespace Message-ID: <20082289.1188393823637.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi! actually no.. the WSDL Contract uses rpc/literal (not rpc/encoded) which should be supported by xfire.. strange.. regards, /Ole eviware.com View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079150#4079150 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079150 From do-not-reply at jboss.com Wed Aug 29 12:19:06 2007 From: do-not-reply at jboss.com (AnisBM) Date: Wed, 29 Aug 2007 12:19:06 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - New user needs help Message-ID: <27877818.1188404346660.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi all, I'm working on project already developped by someone else and i need some help. I have to test a web service in this project. I found the interface of the web service but not a class implementing it nor a wsdl file. Is this normal ??? I'm working with JBossWS 1.2.0 & JBoss IDE 2.0. Sorry for my broken english and for the question if it is too simple :-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079259#4079259 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079259 From do-not-reply at jboss.com Wed Aug 29 15:00:15 2007 From: do-not-reply at jboss.com (fgsouza) Date: Wed, 29 Aug 2007 15:00:15 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WIKI down Message-ID: <9458230.1188414015187.JavaMail.jboss@colo-br-02.atl.jboss.com> Any schedule to have the Wiki back online? Could you please mirror the JBossWS FAQ at the temporary address? (http://labs.jboss.com/jbossws/docs/index.html ) []s Fabiano G. Souza View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079305#4079305 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079305 From do-not-reply at jboss.com Wed Aug 29 16:21:16 2007 From: do-not-reply at jboss.com (gumnaam) Date: Wed, 29 Aug 2007 16:21:16 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: NullPointerException with jbossws 2.0.1 Message-ID: <10158029.1188418876719.JavaMail.jboss@colo-br-02.atl.jboss.com> By any chance do you set the following property in your run.{sh/conf/bat} file ? -Dcom.sun.management.jmxremote I was having the exact same problem, when I had the above string, in my run.conf. I had put it there to enable jmx local agent, so that I can use jconsole against jboss. But somehow , having this property, prevented, the NativeServerConfig MBean from being published. Once I removed the string from my run.conf , the problem went away. thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079327#4079327 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079327 From do-not-reply at jboss.com Thu Aug 30 03:46:04 2007 From: do-not-reply at jboss.com (palin) Date: Thu, 30 Aug 2007 03:46:04 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossws with apache Message-ID: <18603282.1188459964352.JavaMail.jboss@colo-br-02.atl.jboss.com> "gerry744" wrote : I'm using Jboss behind apache. | '/jbossws/services' works fine, the wsdls's work fine, but the actual services don't work. They do work if I connect directly on port 8080, but not through apache. Everything else is working fine through apache. | If I try connecting a browser to the actual service via apache, instead of seeing the service I just get "http GET not supported". | | Anyone know what I'm doing wrong ? | | I'm using jboss 4.2.1, jbossws 2.0.1, apache2 on another machine, jk 1.2, all on gentoo. | | Thanks! I would check what url apache is actually trying to connect to; I mean, it's ok that you get a "http GET not supported" if you access an endpoint using your browser. As a matter of fact, endpoints support POST, GET is supposed to work only for wsdl retrieval calls. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079450#4079450 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079450 From do-not-reply at jboss.com Thu Aug 30 04:54:07 2007 From: do-not-reply at jboss.com (AnisBM) Date: Thu, 30 Aug 2007 04:54:07 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Problem with publishing a web service Message-ID: <3099828.1188464047608.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi all, I have this message when I try to publish a class as a web service : Running JBossWS wstools for [jbossws-test1] directory: C:\FitNetManager\workspaces\workspaceFitNet\jbossws-test1 command: cmd.exe /C C:\FitNetManager\Jboss-4.0.5.GA\bin\wstools.bat -cp bin -config C:\DOCUME~1\Anis\LOCALS~1\Temp\wstools-config55960.xml -dest C:\FitNetManager\workspaces\workspaceFitNet\jbossws-test1\src\java =========================================================================" . WSTools Environment . JBOSS_HOME: C:\FitNetManager\Jboss-4.0.5.GA\bin\\.. . JAVA: C:\Program Files\Java\jdk1.5.0_05\bin\java . JAVA_OPTS: . =========================================================================" . Exception in thread "main" java.lang.NoClassDefFoundError: javax/jws/soap/SOAPBinding$ParameterStyle at org.jboss.ws.tools.helpers.ToolsHelper.handleJavaToWSDLGeneration(ToolsHelper.java:106) 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 don't understand what is the matter. I'm working on Eclipse 3.2 with JBoss 4.0.5GA, JBossWS 1.2.0SP1, jdk 1.5. Could someone help me ??? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079482#4079482 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079482 From do-not-reply at jboss.com Thu Aug 30 07:43:26 2007 From: do-not-reply at jboss.com (omatzura) Date: Thu, 30 Aug 2007 07:43:26 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problem with publishing a web service Message-ID: <11704325.1188474206619.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi! hmm.. the JBOSS_HOME variable looks a bit strange: "C:\FitNetManager\Jboss-4.0.5.GA\bin\\.." can you set it to "C:\FitNetManager\Jboss-4.0.5.GA" somehow? regards! /Ole eviware.com View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079562#4079562 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079562 From do-not-reply at jboss.com Thu Aug 30 08:20:37 2007 From: do-not-reply at jboss.com (letincho5) Date: Thu, 30 Aug 2007 08:20:37 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Deploying EJB Endpoint Web Services on Jboss-4.0.5.GA Message-ID: <24501036.1188476437402.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I'm in a very similar situacion than: http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060099#4060099 My web services runs on jboss 4.0.3_SP1 without problems. Unfortunatly on jboss 4.0.5.GA it doesn't work. I guess there is a deploy problem: 08:49:45,421 INFO [EARDeployer] Init J2EE application: file:/C:/Proyectos/Gauss/jboss-4.0.5.GA/jboss-4.0.5.GA/server/default/deploy/WsVmonEAR.ear/ 08:49:46,015 INFO [EjbModule] Deploying VideoServerEJB 08:49:46,625 WARN [PortComponentMetaData] element in webservices.xml not namespace qualified: VideoServerServicePort 08:49:47,281 ERROR [MainDeployer] Could not create deployment: file:/C:/Proyectos/Gauss/jboss-4.0.5.GA/jboss-4.0.5.GA/server/default/deploy/WsVmonEAR.ear/WsVmon.jar/ java.lang.NoSuchMethodError: com.ibm.wsdl.xml.WSDLReaderImpl.setEntityResolver(Lorg/xml/sax/EntityResolver;)V at org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:142) at org.jboss.ws.metadata.ServiceMetaData.getWsdlDefinitions(ServiceMetaData.java:273) at org.jboss.ws.deployment.JSR109ServerMetaDataBuilder.buildMetaData(JSR109ServerMetaDataBuilder.java:94) at org.jboss.ws.deployment.ServiceEndpointDeployer.create(ServiceEndpointDeployer.java:85) The wsdl and mapping files were generated by the SUN's JWSDP (http://java.sun.com/webservices/downloads/previous/index.jsp) This is the service endpoint | package com.gauss.vmon.ws.endpoint; | | import java.rmi.Remote; | import java.rmi.RemoteException; | | import com.gauss.vmon.ws.data.CameraData; | import com.gauss.vmon.ws.data.Credential; | | public interface VideoServerService extends Remote { | | | /** | * @param vsfId | * @return | */ | public CameraData getCameraData(String vsfId) throws RemoteException; | | /** | * @param vsfId | * @return | */ | public Credential getCredential(String vsfId) throws RemoteException;; | | } The JWSDP's config.xml file | | | | | | My webservices.xml: | | | | VideoServerService | | META-INF/wsdl/VideoServerService.wsdl | META-INF/mapping.xml | | VideoServerService | VideoServerServicePort | | com.gauss.vmon.ws.endpoint.VideoServerService | | | VideoServerEJB | | | | | And the wsdl and mapping files: wsdl | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mapping.xml | | | | com.gauss.vmon.ws | http://ws.vmon.gauss.com/types | | | com.gauss.vmon.ws | http://ws.vmon.gauss.com | | | com.gauss.vmon.ws.data.CameraData | typeNS:CameraData | complexType | | apiCode | apiCode | | | channel | channel | | | ip | ip | | | password | password | | | port | port | | | status | status | | | statusDescription | statusDescription | | | username | username | | | vsfId | vsfId | | | | com.gauss.vmon.ws.data.Credential | typeNS:Credential | complexType | | password | password | | | status | status | | | statusDescription | statusDescription | | | username | username | | | | com.gauss.vmon.ws.VideoServerService | serviceNS:VideoServerService | | VideoServerServicePort | VideoServerServicePort | | | | com.gauss.vmon.ws.endpoint.VideoServerService | portTypeNS:VideoServerService | bindingNS:VideoServerServiceBinding | | getCameraData | getCameraData | | 0 | java.lang.String | | wsdlMsgNS:VideoServerService_getCameraData | vsfId | IN | | | | com.gauss.vmon.ws.data.CameraData | wsdlMsgNS:VideoServerService_getCameraDataResponse | result | | | | getCredential | getCredential | | 0 | java.lang.String | | wsdlMsgNS:VideoServerService_getCredential | vsfId | IN | | | | com.gauss.vmon.ws.data.Credential | wsdlMsgNS:VideoServerService_getCredentialResponse | result | | | | | Thanks for your help Mart?n View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079585#4079585 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079585 From do-not-reply at jboss.com Thu Aug 30 08:42:02 2007 From: do-not-reply at jboss.com (FabrizioLXXIII) Date: Thu, 30 Aug 2007 08:42:02 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: WS-Security with JAX-RPC Message-ID: <24370152.1188477722713.JavaMail.jboss@colo-br-02.atl.jboss.com> It seems to work! Thanks a lot! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079592#4079592 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079592 From do-not-reply at jboss.com Thu Aug 30 08:57:19 2007 From: do-not-reply at jboss.com (AnisBM) Date: Thu, 30 Aug 2007 08:57:19 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problem with publishing a web service Message-ID: <8777411.1188478639336.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, The JBOSS_HOME has to be set on 'C:\FitNetManager\Jboss-4.0.5.GA\bin' to find the wtools.bat. However, I changed it but it still doesn't work... :-( View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079596#4079596 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079596 From do-not-reply at jboss.com Thu Aug 30 09:05:06 2007 From: do-not-reply at jboss.com (omatzura) Date: Thu, 30 Aug 2007 09:05:06 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problem with publishing a web service Message-ID: <31611493.1188479106663.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, you need to set JBOSS_HOME to C:\FitNetManager\Jboss-4.0.5.GA and set the jbossws-tools directory to C:\FitNetManager\Jboss-4.0.5.GA\bin if you do this.. what error do you get? regards! /Ole eviware.com View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079600#4079600 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079600 From do-not-reply at jboss.com Thu Aug 30 09:29:48 2007 From: do-not-reply at jboss.com (AnisBM) Date: Thu, 30 Aug 2007 09:29:48 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problem with publishing a web service Message-ID: <23064411.1188480588061.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I can only set the jbossws-tools dirctory to C:\FitNetManager\Jboss-4.0.5.GA\bin. It was already done. But JBOSS_HOME is automaticaly in batch wstools.bat (JBOSS_HOME=%DIRNAME%\..). So I can't change it !!! I don't know what to do... I think it may be a problem of library but I have no idea which one is concerned. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079608#4079608 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079608 From do-not-reply at jboss.com Thu Aug 30 18:18:09 2007 From: do-not-reply at jboss.com (mendaye) Date: Thu, 30 Aug 2007 18:18:09 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Problem Converting EJB2.1 to Web Services Message-ID: <25156735.1188512289878.JavaMail.jboss@colo-br-02.atl.jboss.com> We have existing Session EJB and trying to convert it to Web Services. I have created all the WS artifact using ant task and also modify ejb-jar.xml to include the service point. However, when I deploy as part of an ear file I am getting the following errors. We are using JBOSS 4.0.4. Based on JBOSS documenetaion, I don't need to include any exteranal jar for we services support. Our ear deployed on a different directory "pvng" but we copy all the files, and dir from default. As shown below in the server log commons-discovery.jar, saaj.jar, wsdl4j.jar, commons-logging.jar, jaxrpc.jar? Do I need to get all this JARs? I am not sure what is going on here? Do I need to include all jars into a lib directory inside ear file? Help... Pls look the error message I got in server log below. 2007-08-30 15:41:31,592 DEBUG [org.jboss.deployment.MainDeployer] The manifest entry in file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/de.danet.an.wfcore-ejbs.jar references URL file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/lib/commons-discovery.jar which could not be opened, entry ignored org.jboss.deployment.DeploymentException: url file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/lib/commons-discovery.jar could not be opened, does it exist? at org.jboss.deployment.DeploymentInfo.(DeploymentInfo.java:211) at org.jboss.deployment.MainDeployer.parseManifestLibraries(MainDeployer.java:1119) at org.jboss.deployment.MainDeployer.init(MainDeployer.java:873) at org.jboss.deployment.MainDeployer.init(MainDeployer.java:881) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:798) 2007-08-30 15:41:31,592 DEBUG [org.jboss.deployment.MainDeployer] new manifest entry for sdi at de.danet.an.wfcore-ejbs.jar entry is lib/saaj.jar 2007-08-30 15:41:31,592 DEBUG [org.jboss.deployment.MainDeployer] The manifest entry in file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/de.danet.an.wfcore-ejbs.jar references URL file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/lib/saaj.jar which could not be opened, entry ignored org.jboss.deployment.DeploymentException: url file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/lib/saaj.jar could not be opened, does it exist? at org.jboss.deployment.DeploymentInfo.(DeploymentInfo.java:211) at org.jboss.deployment.MainDeployer.parseManifestLibraries(MainDeployer.java:1119) at org.jboss.deployment.MainDeployer.init(MainDeployer.java:873) at org.jboss.deployment.MainDeployer.init(MainDeployer.java:881) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:798) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771) at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 2007-08-30 15:41:31,592 DEBUG [org.jboss.deployment.MainDeployer] The manifest entry in file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/de.danet.an.wfcore-ejbs.jar references URL file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/lib/wsdl4j.jar which could not be opened, entry ignored org.jboss.deployment.DeploymentException: url file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/lib/wsdl4j.jar could not be opened, does it exist? at org.jboss.deployment.DeploymentInfo.(DeploymentInfo.java:211) at org.jboss.deployment.MainDeployer.parseManifestLibraries(MainDeployer.java:1119) at org.jboss.deployment.MainDeployer.init(MainDeployer.java:873) at org.jboss.deployment.MainDeployer.init(MainDeployer.java:881) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:798) 2007-08-30 15:41:31,592 DEBUG [org.jboss.deployment.MainDeployer] new manifest entry for sdi at de.danet.an.wfcore-ejbs.jar entry is lib/commons-logging.jar 2007-08-30 15:41:31,592 DEBUG [org.jboss.deployment.MainDeployer] The manifest entry in file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/de.danet.an.wfcore-ejbs.jar references URL file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/lib/commons-logging.jar which could not be opened, entry ignored org.jboss.deployment.DeploymentException: url file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/lib/commons-logging.jar could not be opened, does it exist? at org.jboss.deployment.DeploymentInfo.(DeploymentInfo.java:211) 2007-08-30 15:41:31,592 DEBUG [org.jboss.deployment.MainDeployer] new manifest entry for sdi at de.danet.an.wfcore-ejbs.jar entry is lib/jaxrpc.jar 2007-08-30 15:41:31,592 DEBUG [org.jboss.deployment.MainDeployer] The manifest entry in file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/de.danet.an.wfcore-ejbs.jar references URL file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/lib/jaxrpc.jar which could not be opened, entry ignored org.jboss.deployment.DeploymentException: url file:/C:/DEV/JBoss/jboss-4.0.4.GA/server/pvng/tmp/deploy/tmp30558pvng.ear-contents/lib/jaxrpc.jar could not be opened, does it exist? at org.jboss.deployment.DeploymentInfo.(DeploymentInfo.java:211) at org.jboss.deployment.MainDeployer.parseManifestLibraries(MainDeployer.java:1119) at org.jboss.deployment.MainDeployer.init(MainDeployer.java:873) at org.jboss.deployment.MainDeployer.init(MainDeployer.java:881) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079794#4079794 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079794 From do-not-reply at jboss.com Thu Aug 30 18:29:52 2007 From: do-not-reply at jboss.com (mendaye) Date: Thu, 30 Aug 2007 18:29:52 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problem with publishing a web service Message-ID: <9803785.1188512992132.JavaMail.jboss@colo-br-02.atl.jboss.com> I would use ant task to do this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079795#4079795 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079795 From do-not-reply at jboss.com Fri Aug 31 02:15:58 2007 From: do-not-reply at jboss.com (nickarls) Date: Fri, 31 Aug 2007 02:15:58 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Dreaded Multiple context root Message-ID: <17760947.1188540958392.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi, I'm using Seam 2.0.0b1 and JBoss 4.2.1GA and have tried to follow the wiki on encrypted web services and the Seam manual and have come up with | @Remote | public interface FooBeanI { | ... | | @Stateless | @WebService(name="fooService", serviceName="fooService") | @WebContext(contextRoot="/foo") //added this after suggestion after reading the forum | @Name("fooService") | public class FooBean implements FooBeanI { | ... | and put the | jboss-wsse-client.xml | jboss-wsse-server.xml | wsse.keystore | wsse.truststore | under WEB-INF and standard-jaxws-endpoint-config.xml under the jar META-INF But I still get the | 09:12:52,498 ERROR [ServiceEndpointPublisher] Cannot obtain waURL for: OSTi.ear/ | OSTi.jar | 09:12:52,498 ERROR [MainDeployer] Could not create deployment: file:/C:/Java/jbo | ss-4.2.1.GA/server/default/deploy/OSTi.ear/OSTi.jar/ | org.jboss.deployment.DeploymentException: Cannot create service endpoint; - nest | ed throwable: (org.jboss.ws.WSException: Multiple context root not supported) | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079833#4079833 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079833 From do-not-reply at jboss.com Fri Aug 31 11:29:38 2007 From: do-not-reply at jboss.com (oskar.carlstedt) Date: Fri, 31 Aug 2007 11:29:38 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: How to import relative schemas? Message-ID: <412018.1188574178212.JavaMail.jboss@colo-br-02.atl.jboss.com> I posted i Jira issue about this [url]http://jira.jboss.org/jira/browse/JBWS-1798[url]. ******************************************* I deploy an ear file in JBoss5 that contains a war and a jar fil. The jar file contains a SLSB and the war file contains the web service (implemented as a Provider[SOAPMessage]). The war file has the following file structure in the the WEB-INF/wsdl folder: | WEB-INF/wsdl | my-service.wsdl | /imported | /my-service | /1.0-SNAPSHOT | my-service.xsd | /common | /1.0-SNAPSHOT | common.xsd | the wsdl file has a schema import like the my-service.xsd imports the common.xsd file with the following import statement Having this configuration will put JBoss into trouble. The error message sent is telling med that parent paths are not allowed, and pointing out to use getParent() instead. So I setting the schemaLocation attribute to getParent()/getParent()/.... will point out another path, but it is completely wrong. ******************************************* Best /Oskar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080051#4080051 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080051 From do-not-reply at jboss.com Fri Aug 31 11:30:49 2007 From: do-not-reply at jboss.com (sursha) Date: Fri, 31 Aug 2007 11:30:49 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: 2 ejb3s exposed as web services. Can't have same methods Message-ID: <16718594.1188574249279.JavaMail.jboss@colo-br-02.atl.jboss.com> Created JIRA issue JBWS-1799. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080053#4080053 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080053 From do-not-reply at jboss.com Fri Aug 31 11:37:18 2007 From: do-not-reply at jboss.com (tokrishnakumar) Date: Fri, 31 Aug 2007 11:37:18 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Strange - Entry Point not receive WS Message data Message-ID: <4912873.1188574638083.JavaMail.jboss@colo-br-02.atl.jboss.com> what is your input SOAP XML?Can you post it.. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080058#4080058 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080058 From do-not-reply at jboss.com Fri Aug 31 11:57:36 2007 From: do-not-reply at jboss.com (AnisBM) Date: Fri, 31 Aug 2007 11:57:36 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problem with publishing a web service Message-ID: <13640443.1188575856454.JavaMail.jboss@colo-br-02.atl.jboss.com> Hi all, I finally found it. I'm using a JBoss 4.0.5 server with the JBossWS 1.2.0 SP1 plugin. The jar file jbossws-client was uncomplete. So I replaced it by the one I found in the (eclipse) plugin soapui.jbosside.wstools lib directory. Now it works !!!!!!! :-))))) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080067#4080067 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080067 From do-not-reply at jboss.com Fri Aug 31 16:41:33 2007 From: do-not-reply at jboss.com (mendaye) Date: Fri, 31 Aug 2007 16:41:33 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Please Help WS Deployment Error... Message-ID: <10733358.1188592893688.JavaMail.jboss@colo-br-02.atl.jboss.com> Hello All: I have converted existing EJB to Web Services by adding service end point to ejb-jar.xml file, creating all the artifact using ant task. I put the WSDL and other XML files in the right place before I deploy it. However, I am getting the following error when I deploy it. I've already spent looking this issue several hours but I was not able to figure this out. Please please help me. Here is the error I am seeing... 2007-08-31 14:48:18,156 DEBUG [org.jboss.ejb.StatelessSessionContainer] Mapped Container method getPrimaryKey HASH -131865408 2007-08-31 14:48:18,156 DEBUG [org.jboss.ejb.StatelessSessionContainer] Mapped Container method isIdentical HASH 285457048 2007-08-31 14:48:18,156 DEBUG [org.jboss.ejb.StatelessSessionContainer] Mapped getLocationNameForDevice HASH -1630061606to public java.lang.String com.panduit.pvng.service.api.db.ejb.PVNGDeviceBean.getLocationNameForDevice(java.lang.String) throws com.panduit.pvng.service.exception.PVNGAPIException 2007-08-31 14:48:18,156 DEBUG [org.jboss.ejb.StatelessSessionContainer] Mapped getConnectivityStatus HASH -754342036to public boolean com.panduit.pvng.service.api.db.ejb.PVNGDeviceBean.getConnectivityStatus(java.lang.String,int) throws com.panduit.pvng.service.exception.PVNGAPIException 2007-08-31 14:48:18,156 DEBUG [org.jboss.ejb.StatelessSessionContainer] Mapped getLocationHierarchyForDevice HASH -275144890to public java.lang.String com.panduit.pvng.service.api.db.ejb.PVNGDeviceBean.getLocationHierarchyForDevice(java.lang.String) throws com.panduit.pvng.service.exception.PVNGAPIException 2007-08-31 14:48:18,156 DEBUG [org.jboss.ejb.StatelessSessionContainer] Initialization failed jboss.j2ee:jndiName=ejb/PVNGDevice,service=EJB java.lang.NoSuchMethodException: Not found in bean class: public abstract void javax.ejb.EJBObject.remove() throws java.rmi.RemoteException,javax.ejb.RemoveException at org.jboss.ejb.SessionContainer.setUpBeanMappingImpl(SessionContainer.java:213) at org.jboss.ejb.SessionContainer.setupBeanMapping(SessionContainer.java:264) at org.jboss.ejb.SessionContainer.createService(SessionContainer.java:166) at org.jboss.system.ServiceMBeanSupport.jbossInternalCreate(ServiceMBeanSupport.java:260) at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:243) 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.create(Unknown Source) at org.jboss.system.ServiceController.create(ServiceController.java:330) 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.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 $Proxy53.create(Unknown Source) at org.jboss.ejb.EjbModule.createService(EjbModule.java:379) at org.jboss.system.ServiceMBeanSupport.jbossInternalCreate(ServiceMBeanSupport.java:260) at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:243) 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.create(Unknown Source) at org.jboss.system.ServiceController.create(ServiceController.java:330) at org.jboss.system.ServiceController.create(ServiceController.java:273) at sun.reflect.GeneratedMethodAccessor4.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 $Proxy33.create(Unknown Source) at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:641) 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.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97) at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238) at org.jboss.ws.server.WebServiceDeployer.create(WebServiceDeployer.java:99) 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:953) at org.jboss.deployment.MainDeployer.create(MainDeployer.java:943) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:807) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771) at sun.reflect.GeneratedMethodAccessor8.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 $Proxy6.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.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.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.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.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:1007) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:755) 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:464) at java.lang.Thread.run(Thread.java:595) 2007-08-31 14:48:18,156 WARN [org.jboss.system.ServiceController] Problem creating service jboss.j2ee:jndiName=ejb/PVNGDevice,service=EJB java.lang.NoSuchMethodException: Not found in bean class: public abstract void javax.ejb.EJBObject.remove() throws java.rmi.RemoteException,javax.ejb.RemoveException at org.jboss.ejb.SessionContainer.setUpBeanMappingImpl(SessionContainer.java:213) at org.jboss.ejb.SessionContainer.setupBeanMapping(SessionContainer.java:264) at org.jboss.ejb.SessionContainer.createService(SessionContainer.java:166) at org.jboss.system.ServiceMBeanSupport.jbossInternalCreate(ServiceMBeanSupport.java:260) at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:243) 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.create(Unknown Source) at org.jboss.system.ServiceController.create(ServiceController.java:330) 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.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 $Proxy53.create(Unknown Source) at org.jboss.ejb.EjbModule.createService(EjbModule.java:379) at org.jboss.system.ServiceMBeanSupport.jbossInternalCreate(ServiceMBeanSupport.java:260) at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:243) 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.create(Unknown Source) at org.jboss.system.ServiceController.create(ServiceController.java:330) at org.jboss.system.ServiceController.create(ServiceController.java:273) at sun.reflect.GeneratedMethodAccessor4.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 $Proxy33.create(Unknown Source) at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:641) 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.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97) at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238) at org.jboss.ws.server.WebServiceDeployer.create(WebServiceDeployer.java:99) 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:953) at org.jboss.deployment.MainDeployer.create(MainDeployer.java:943) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:807) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771) at sun.reflect.GeneratedMethodAccessor8.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 $Proxy6.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.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.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.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.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:1007) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771) at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:755) 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:464) at java.lang.Thread.run(Thread.java:595) 2007-08-31 14:48:18,171 DEBUG [org.jboss.ejb.EjbModule] Bound jmxName=jboss.j2ee:jndiName=ejb/PVNGDevice,service=EJB, hash=1203048510into Registry 2007-08-31 14:48:18,171 DEBUG [org.jboss.system.ServiceController] Creating service jboss.j2ee:jndiName=ejb/PVNGDiscoveryAPI,service=EJB View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080159#4080159 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080159 From do-not-reply at jboss.com Fri Aug 31 17:49:41 2007 From: do-not-reply at jboss.com (koganty) Date: Fri, 31 Aug 2007 17:49:41 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: NullPointerException with jbossws 2.0.1 Message-ID: <6071324.1188596981921.JavaMail.jboss@colo-br-02.atl.jboss.com> Yes that was the problem. I think we'd need to file Bug for this. Having -Dcom.sun.management.jmxremote in the startup args prevents the jbossws from coming up properly. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080170#4080170 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080170 From do-not-reply at jboss.com Fri Aug 31 17:55:19 2007 From: do-not-reply at jboss.com (koganty) Date: Fri, 31 Aug 2007 17:55:19 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: NullPointerException with jbossws 2.0.1 Message-ID: <4867491.1188597319979.JavaMail.jboss@colo-br-02.atl.jboss.com> And here is the bug : http://jira.jboss.com/jira/browse/JBWS-1800 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080172#4080172 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080172 From do-not-reply at jboss.com Fri Aug 31 19:19:39 2007 From: do-not-reply at jboss.com (koganty) Date: Fri, 31 Aug 2007 19:19:39 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: Problem with inheritance and JBossWS Message-ID: <2010483.1188602379963.JavaMail.jboss@colo-br-02.atl.jboss.com> JBossWS 2.0.1 release notes say that JBWS-1702 is fixed which solves the inheritance problem, but looks like it is still not fixed. I'm usinf JBossWS 2.0.1 with JBoss 4.0.5. I've tried both jdk 1.5 anf jdk 1.6. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080179#4080179 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080179 From do-not-reply at jboss.com Fri Aug 31 19:24:09 2007 From: do-not-reply at jboss.com (koganty) Date: Fri, 31 Aug 2007 19:24:09 -0400 (EDT) Subject: [jbossws-users] [JBossWS] - Re: jbossWS 2.0.1 and JDK 1.6 Message-ID: <33112540.1188602649446.JavaMail.jboss@colo-br-02.atl.jboss.com> I'm using the endorsed lib mechanism as suggested and I have the following in the endorsed folder and it works .. jboss-ssaj.jar jboss-jaxws.jar jboss-jaxrpc.jar jaxb-impl.jar jaxb-api.jar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4080180#4080180 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4080180