[JBoss-user] [JBoss Eclipse IDE (users)] - Can't debug JBoss on Eclipse

2006-02-10 Thread arielah
I have Eclipse 3.0.0 and JBoss 4.0.3 installed on my Windows 2000 machine. I can't step through my ejbs code when I set debug breakpoints. Please help View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922977#3922977 Reply to the post : http://www.jboss.com

[JBoss-user] [Performance Tuning] - CPU usage increases on Solaris

2006-02-03 Thread arielah
I have an application deployed on Solaris system. And I noticed that the CPU percentage always increases and doesn't come down even when I log out of the application. The application logs don't show anything. And I end up restaring JBoss every several days. My questions is what could be the rea

[JBoss-user] [JBoss.NET] - Re: Exception:: The AXIS engine could not find a target serv

2004-09-15 Thread arielah
I'm running Axis as a war file deployed on Jboss (not jboss-net). Here's some bits of my wsdd file: | | http://localhost:8080/axis/services/Axis"; | xmlns="http://xml.apache.org/axis/wsdd/"; | xmlns:apachesoap="http://xml.apache.org/xml-soap"; | xmlns:intf="http://localhos

[JBoss-user] [JBoss.NET] - Re: Exception:: The AXIS engine could not find a target serv

2004-09-15 Thread arielah
It looks like a problem in lyou wsdd file. Please post its contents. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3848352#3848352 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3848352

[JBoss-user] [JBoss.NET] - Re: Webservice authentication

2004-09-08 Thread arielah
I got it to work with authentication. From the locator I was getting my interface (which extends the Remote). Instead I casted it, per your suggestion, to the stub: AxisSoapBindingStub port = (AxisSoapBindingStub)service.getAxis(); | port.setUsername("blah"); |

[JBoss-user] [JBoss.NET] - Re: Webservice authentication

2004-09-07 Thread arielah
nehring, What is the getHello method? My locate doesn't have any access to my defined methods. In the client code I'm doing the following below. Where first I get the locate, then from it I get my EJB remote interface (that was generate from wsdl2java) where I can call my defined methods. I'm

[JBoss-user] [JBoss.NET] - How to undeploy a web service residing not on localhost

2004-09-03 Thread arielah
I have the following undeploy.wsdd but not sure about the syntax how to do the undeploy my web service that resides on the server, not on localhost. Thanks a lot. http://xml.apache.org/axis/wsdd/";> | | | | | | View the original post : http://www.jboss.org/index.html?modu

[JBoss-user] [JBoss.NET] - Re: How to Config WebService that return Custom Object???

2004-09-03 Thread arielah
Here's a site to get you started: http://www.csd.abdn.ac.uk/~bscharla/teaching/CS5302/practicals/practical9.shtml View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3847200#3847200 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=repl

[JBoss-user] [JBoss.NET & SOAP] - Can't deploy wsdd file to Axis on JBoss

2004-07-15 Thread arielah
I'm getting the following exception when I try to deploy my deploy.wsdd file: Processing file deploy.wsdd Exception:: Cannot invoke Call with null namespace URI for method deployment This is my file: Please help | http://xml.apache.org/axis/wsdd/"; | targetNamespace="http://localhost:80

[JBoss-user] [JBoss.NET & SOAP] - Re: Exception:: Cannot invoke Call with null namespace URI f

2004-07-12 Thread arielah
Sorry, this is the full file: | http://xml.apache.org/axis/wsdd/"; | targetNamespace="http://localhost:8080/axis/services/Axis"; | xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";> | | | | http://localhost:8080/axis/services/Axis"/> | | | |

[JBoss-user] [JBoss.NET & SOAP] - Exception:: Cannot invoke Call with null namespace URI for m

2004-07-12 Thread arielah
I'm getting this exception when I deploy my Session EJB to axis: Exception:: Cannot invoke Call with null namespace URI for method deployment This is deploy.wsdd file, could anyone tell me what am I missing? http://xml.apache.org/axis/wsdd/"; targetNamespace="http://localhost:8080/axis/

[JBoss-user] [JBoss.NET & SOAP] - Sample application to generate Webservice from a stateful EJ

2004-07-07 Thread arielah
Hi, I'm working with JBoss3.2.2 and Axis1.1 and would like to generate a webservice from a stateful EJB. Could anyone post a sample application tutorial or point me to a document listing the steps to do so? Thanks so much. A. View the original post : http://www.jboss.org/index.html?module=

[JBoss-user] [JBoss.NET & SOAP] - Re: Web Services over JMS?

2004-07-07 Thread arielah
The main similarity between JMS and webservice that I see, is that both can be implemented as asynchronous calls. The advantage of webservices it that you can easily inteoperate between different vendors. However, if that's not in your case I'd vote for JMS because it performs faster. View the