[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/index.html?module=bb&op=posting&mode=reply&p=3922977


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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 reason and how could I better monitor what 
JBoss is doing besides my logs (that don't show anything out of the ordinary).

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3921549#3921549

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3921549


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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://localhost:8080/axis/services/Axis";
  | xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/";
  | xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/";
  | xmlns:xsd="http://www.w3.org/2001/XMLSchema";
  | xmlns:impl="http://localhost:8080/axis/services/Axis";
  | 
  | xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>
  | 
  | 
  | 
  | 
  |  
  |   
  |  http://localhost:8080/axis/services/Axis"/>
  |  
  |  
  |  
  |  http://localhost:8080/axis/servlet/AxisServlet
  |  
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3848360#3848360

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3848360


---
This SF.Net email is sponsored by: thawte's Crypto Challenge Vl
Crack the code and win a Sony DCRHC40 MiniDV Digital Handycam
Camcorder. More prizes in the weekly Lunch Hour Challenge.
Sign up NOW http://ad.doubleclick.net/clk;10740251;10262165;m
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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


---
This SF.Net email is sponsored by: thawte's Crypto Challenge Vl
Crack the code and win a Sony DCRHC40 MiniDV Digital Handycam
Camcorder. More prizes in the weekly Lunch Hour Challenge.
Sign up NOW http://ad.doubleclick.net/clk;10740251;10262165;m
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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");
  | port.setPassword("blahlast");
  | 
  | 

I don't use Jboss.net, instead I'm using Axis 1.1 with JBoss 3.2.5, is there a 
disadvantage to that?
Thanks a lot.

ah.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3847554#3847554

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3847554


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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 not using my stub class AxisSoapBindingStub that was 
generated.


  |  RequestManagerServiceLocator service = new   
RequestManagerServiceLocator();
  | 
  |   Person p = new Person();
  | p.setFamiliarName("blah");
  | p.setLast("blahlast");
  | 
  | //RequestManager extends java.rmi.Remote
  | RequestManager port = service.getAxis();
  | p = port.testPerson("good one.. and now to break it again.", p);
  | 
  | 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3847467#3847467

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3847467


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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?module=bb&op=viewtopic&p=3847232#3847232

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3847232


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=reply&p=3847200


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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:8080/axis/services/Axis"; 
  | xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>
  | 
  | 
  | 
  |  
  |  http://localhost:8080/axis/services/Axis"/>
  |  
  |  
  |  
  |  http://localhost:8080/axis/servlet/AxisServlet
  |  
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842277#3842277

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3842277


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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"/>
  |  
  |  
  |  
  |  simple.session.WebService
  |  
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3841818#3841818

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3841818


---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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/services/Axis"; 
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java>


 
 
 
 
 
 simple.session.WebService
 










View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3841817#3841817

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3841817


---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bb&op=viewtopic&p=3841292#3841292

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3841292


---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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 original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3841291#3841291

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3841291


---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user