Number Format Exception on invoking webservice client on JSP

2007-12-03 Thread delapenajs
Hi, I'm encountering a java.lang.NumberFormatException: For input string: "" when i call the generated client on my jsp. the client works perfectly fine on the command prompt, calling it in public static void main. Am i missing something on my jsp? thanks, Joseph

Re: libraries and configuration files

2007-11-14 Thread delapenajs
[EMAIL PROTECTED] 11/13/2007 06:01 PM Please respond to axis-user@ws.apache.org To axis-user@ws.apache.org cc Subject Re: libraries and configuration files Charitha, Thank you for your swift response and for the references. This works well with libraries. How about for conf

Re: libraries and configuration files

2007-11-13 Thread delapenajs
Charitha, Thank you for your swift response and for the references. This works well with libraries. How about for configuration files? Lets say my webservice reads a text file named "System.properties" inside a " properties" or "conf" directory. Assuming that the web service needs t

libraries and configuration files

2007-11-13 Thread delapenajs
Hi, I have a set of libraries and configuration files stored on a "lib" and "properties" directories respectively. Where do i place these directories so that they would be available in my Web Service? Regards, Joseph

Re: Internal Server Error

2007-11-13 Thread delapenajs
Charintha, I changed to axis 1.3 and everything went well. Thank you very much for taking your time helping us out. Regards, Joseph Charitha Kankanamge <[EMAIL PROTECTED]> 11/13/2007 03:33 PM Please respond to axis-user@ws.apache.org To axis-user@ws.apache.org cc Subject Re:

Re: Internal Server Error

2007-11-12 Thread delapenajs
Hi Charitha, Thank you for your response. This is how i called my three functions: 1. http://localhost:8080/axis2/rest/SoundCheck/function1 RETURN: this is function #1 2. http://localhos

Internal Server Error

2007-11-12 Thread delapenajs
Hi, I'm having problems calling a method through REST. I have three methods in my Web Service. They are all methods in the same Class. I am able to call the first method successfully. For some reason, when i call the second and the third method, i encounter "Internal server erro

Re: method selection for service

2007-11-08 Thread delapenajs
Hi, I'm having problems calling a method through REST. I have three methods in my Web Service. They are all methods in the same Class. I am able to call the first method successfully. For some reason, when i call the second and the third method, i encounter "Internal server error

Internal Server Error

2007-11-07 Thread delapenajs
Hi, I'm getting an "Internal Server Error" whenever i try calling the proceeding available operations on my service. I call the operation through REST. Only the first operation goes well. All other available functions return "Internal Server Error". Does anyone know how to resolve

[Axis] Arrays not supported

2006-07-16 Thread delapenajs
Hi,         I am unable to expose a method which returns an array of objects. How do i go about? thanks, Joseph

Re: Fw: [Axis2] IWAB0399E Error in generating Java from WSDL

2006-07-13 Thread delapenajs
Hi Anne,         Thank you for the advise. I noticed that my existing codes were not following java bean convention. Also, i even used Singleton. After a few adjustments, this should work fine. Joseph "Anne Thomas Manes" <[EMAIL PROTECTED]> 07/13/2006 01:09 PM Please respond to axis-

Re: [Axis2] IWAB0399E Error in generating Java from WSDL

2006-07-12 Thread delapenajs
Hi,         Attached are screen shots on how i encountered the error + the .wsdl file.   This is how it came to be:                 1.    I created a new Dynamic Web Project,                 2.    copied my src folder from existing project,                 3.    chose the class i want to expos

[Axis2] How to restrict user access on exposed methods

2006-07-12 Thread delapenajs
Hi,         Currently, to control user access on exposed methods in my WebServices, I pass username/password together with the parameters of the exposed method.   Is there a better way to do this? Any advise would be helpful. thank you, Joseph

Re: [Axis2] how to call service through http

2006-07-11 Thread delapenajs
Kinichiro, thank you very much this helped a lot! Joseph Kinichiro Inoguchi <[EMAIL PROTECTED]> 07/11/2006 06:46 PM Please respond to axis-user@ws.apache.org To axis-user@ws.apache.org cc Subject Re: [Axis2] how to call service through http Hi, Joseph. Try, http://

[Axis2] IWAB0399E Error in generating Java from WSDL

2006-07-11 Thread delapenajs
Hi,         I've already done a webservice using Eclipse 3.2.   Used Dynamic Web Project then created Web Service from it.   It was ok and went smooth.   Now i'm trying to convert my existing codes to a webservice.   I got stuck n kept on encountering this error:                 IWAB0399E Error

RE: [Axis2] Eclipse plugin - Axis2 Service Archiver - generates faulty service

2006-07-11 Thread delapenajs
Crap... generating services.xml is the only reason why i would like to use the plugin. The rest is just placing the resources into appropriate folders and packaging it to an aar. thanks, Joseph "Harinath Mallepally" <[EMAIL PROTECTED]> 07/12/2006 11:54 AM Please respond to axis-user@

[Axis2] Eclipse plugin - Axis2 Service Archiver - generates faulty service

2006-07-11 Thread delapenajs
Hi,         I'm trying to use Axis2 Service Archiver plugin for eclipse to generate my Web Service. Unfortunately, it seems to be generating faulty service. I renamed back the .aar to .jar and extracted its contents. It has an empty services.xml. How do i resolve this problem? thank you, Josep

[Axis2] how to call service through http

2006-07-11 Thread delapenajs
Hi,         I am able to call my webservice in axis 1 using ex:   http://localhost:8080/axis/services/MyService?method=getSomething and it returns a soap response in the browser.    I was wondering how to do this in axis 2. I tried replacing axis with axis2 in the url, unfortunately, it didnt wor