RE: [axis2] Deployment of an axis2 and struts appplication

2007-06-20 Thread Raghu Upadhyayula
and struts appplication Raghu Yes I did, is there any other place the services.xml file sis supposed to be present. Thanks Anil On 6/19/07, Raghu Upadhyayula [EMAIL PROTECTED] wrote: Anil, Did you try putting your services.xml file in an aar file and put the aar file under WEB-INF

RE: [axis2] Deployment of an axis2 and struts appplication

2007-06-19 Thread Raghu Upadhyayula
the service, i tried both methods of deployment and all it says is that it is a faulty service. I need to show a working prototype before testing this application. Thank you Anil On 6/15/07, Raghu Upadhyayula [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi Anil, Your services.xml is in wrong

RE: Axis1.3 Vs Axis2 - code generation using WSDL2Java if method has xsd:anyType as a parameter type.

2007-06-18 Thread Raghu Upadhyayula
Hi, I'm having an issue with Axis2 Vs Axis1.3 code generation using WSDL2Java when using HashMap as a parameter to one of my methods. I've explained in detail what the problem I'm getting. Is there a solution to this issue. I'm will be using Axis2 for developing my services, I need some

Axis1.3 Vs Axis2 - code generation using WSDL2Java if method has xsd:anyType as a parameter type.

2007-06-15 Thread Raghu Upadhyayula
Hi, I'm having an issue with Axis2 Vs Axis1.3 code generation using WSDL2Java when using HashMap as a parameter to one of my methods. I've explained in detail what the problem I'm getting. Is there a solution to this issue. I'm will be using Axis2 for developing my services, I need some

RE: [axis2] Deployment of an axis2 and struts appplication

2007-06-15 Thread Raghu Upadhyayula
Hi Anil, Can you tell how your application structure looks like ... something like this ... Appname WEB-INF classes Thanks Raghu From: Anil Chukkapalli [mailto:[EMAIL PROTECTED] Sent: Friday, June

RE: [axis2] Deployment of an axis2 and struts appplication

2007-06-15 Thread Raghu Upadhyayula
WEB-INF services.xml META-INF SCRIPT com (class files containing compiled source) abccorp xyz Thanks Anil On 6/15/07, Raghu Upadhyayula [EMAIL PROTECTED] wrote: Hi Anil, Can you

RE: Deploying Web Services LOG4J WARN

2007-06-14 Thread Raghu Upadhyayula
Hi Simone, It looks like your log4j.properties file is not in the classpath. I got this error before, but when I put my log4j.properties in the classpath, it went away. Thanks Raghu -Original Message- From: Glen Mazza [mailto:[EMAIL PROTECTED] Sent: Thursday, June 14, 2007

RE: Need deply new web service in tomcat server.

2007-06-12 Thread Raghu Upadhyayula
Praveen, You can get the wsdl from the webservice URL. In your browser, type the webservices url followed by ?wsdl In your case, if the webservices URL is http://something.something.com/x/WebServiceName then type

[Axis2] WS-Security using Apache Rampart 1.2 (UsernameToken Vs Signature base authentication)

2007-06-08 Thread Raghu Upadhyayula
Hi, I have a question about WS-Security using Apache Rampart 1.2, specifically about using authentication based on UsernameToken or Signature (Certificate based). I know that I can use both these authentications for my web service by defining them in the service.xml file InflowSecurity

RE: wsdl2java crushes

2007-06-06 Thread Raghu Upadhyayula
Hi Dims Denis, I'm not sure about the abstract concrete wsdl, but one thing I observed in Denis's WSDL is that his wsdl is enclosed in wsdl:description tag, shouldn't it be enclosed in wsdl:definitions tag Thanks Raghu -Original Message- From: Davanum Srinivas [mailto:[EMAIL

RE: [AXIS2] Throwing exceptions with ADB

2007-06-05 Thread Raghu Upadhyayula
Dims, From the WSDL2Java documentation it says that -g option is only valid with the -ss (generate server side code) option. But in Fran's case, he is generating the client code and he is not seeing the MyFault class but he is seeing the MyFaultException class. Fran,

RE: AXIS 2 WSDL2Java Oddly Naming Exceptions

2007-06-05 Thread Raghu Upadhyayula
I'm not really sure whether this is a problem or not, because my webservice has 3 methods and all the 3 methods throw a UnexpectedException. And when I generated my client code using WSDL2Java, it generated only UnexpectedException class, but not method1_UnexpectedException etc. I'm using ADB.

RE: AXIS 2 WSDL2Java Oddly Naming Exceptions

2007-06-05 Thread Raghu Upadhyayula
, June 05, 2007 2:03 PM To: axis-user@ws.apache.org Subject: RE: AXIS 2 WSDL2Java Oddly Naming Exceptions Raghu Upadhyayula, Thank you for responding to my inquiry. It is good to hear that your client and web service are working. (There might be hope for ours yet!) Would it be possible to provide

Webservices SSL - Getting a javax.net.ssl.SSLHandshakeException - unable to find valid certification path to requested target

2007-06-04 Thread Raghu Upadhyayula
Hi, I'm trying to access my webservices via SSL using https. Below is my program. When I type my webservice URL with https in the browser I get the correct page, but when I'm trying to execute the below program, I'm getting the below exception. (I'm using Axis 1.3)

[Axis2] Apache Rampart 1.2

2007-06-04 Thread Raghu Upadhyayula
Hi, I just went through the Apache Rampart 1.2 samples and was able to execute the samples and see the results correctly. Question: Can Apache Rampart be used only from the client which uses Axis2 only (or Java only), or it can be used with

RE: Client connection options

2007-06-04 Thread Raghu Upadhyayula
%JAVA_HOME%\bin\keytool -import -file server.crt -keypass changeit Thanks Raghu -Original Message- From: Jon Horsman [mailto:[EMAIL PROTECTED] Sent: Monday, June 04, 2007 2:21 PM To: axis-user@ws.apache.org Subject: Re: Client connection options On 6/4/07, Raghu Upadhyayula [EMAIL

[Axis2] WS-Security with Apache Rampart

2007-06-04 Thread Raghu Upadhyayula
Hi, If I use WS-Security with Apache Rampart in Axis2, Is it possible that some of my clients use ws-security in their requests some of them don't, I mean whether it is optional or not. That is, if some clients don't want to use WS-Security for their

RE: Axis2 Web Service with Spring issue

2007-06-01 Thread Raghu Upadhyayula
Sandhu, Your exception clearly says Bean property 'service' is not writable or has an invalid setter method: Does the parameter type of the setter match the return type of the getter? Does your AccountServ class has a service variable, and do you have a setService getService

RE: Forcing the unpacking of aar files

2007-05-31 Thread Raghu Upadhyayula
Hi Desmond, You can just put the wsdl file services.xml in your aar file and put all the class files in your WEB-INF/classes directory. Thanks Raghu -Original Message- From: Desmond Whewell (CV/ETL) [mailto:[EMAIL PROTECTED] Sent: Thursday, May 31, 2007 5:57 AM To:

RE: Retrieving caller's port number from current message context

2007-05-31 Thread Raghu Upadhyayula
Instead of parsing the port number from the getRequestURL, the HttpServletRequest method has a getServerPort() method which returns the port number. Thanks Raghu -Original Message- From: Gul Onural [mailto:[EMAIL PROTECTED] Sent: Thursday, May 31, 2007 12:13 PM To: [EMAIL PROTECTED] Cc:

RE: Enumeration Support in Apache Axis 1.2.1

2007-05-30 Thread Raghu Upadhyayula
Hi Deepak, ADB is not supporting enum data type, but for the example you've given, it creates a class which uses TypeSafe enum pattern which is similar to enum data type, but not the enum data type itself. Thanks Raghu -Original Message- From: Davanum Srinivas [mailto:[EMAIL

[Axis2] How to change the webservices URL.

2007-05-29 Thread Raghu Upadhyayula
Hi, My webservice is deployed as part of the war file webservices.war, hence my webservice URL would be http://localhost/webservices/services/MyService http://localhost/webservices/services/MyService I want to remove the /services in the webservices URL

RE: Problem w/axis 1.4 and array

2007-05-25 Thread Raghu Upadhyayula
Hi Robert, Here is your updated wsdl which will generate a Record[] transid in the TestResponse. You have to define the Record element separately then include that as an array in your TestResponse. Specified in bold below. ?xml version=1.0?

RE: Creating a Client

2007-05-22 Thread Raghu Upadhyayula
Hi Doug, You just use the default constructor of the Login class to create a Login object. thanks Raghu -Original Message- From: Doug Schaible [mailto:[EMAIL PROTECTED] Sent: Mon 5/21/2007 7:03 PM To: axis-user@ws.apache.org Subject: Creating a Client Good Evening, I have created

Is Axis2 stable enough to use in Production

2007-05-18 Thread Raghu Upadhyayula
Hi, Is Axis2 stable enough to be used in Production environment? Thanks Raghu

RE: How to set timeout maintain session in Axis2 from a client.?

2007-05-18 Thread Raghu Upadhyayula
); Thanks Raghu From: Raghu Upadhyayula [mailto:[EMAIL PROTECTED] Sent: Thursday, May 17, 2007 5:11 PM To: axis-user@ws.apache.org Subject: How to set timeout maintain session in Axis2 from a client.? Hi, In Axis 1.x I used to set

[Axis2] How do I deploy my webservice in a separate war file other than axis2.war?

2007-05-17 Thread Raghu Upadhyayula
Hi, I've used Axis2 and developed a web service which depends on some other classes that are outside my webservice project at the startup of my webservice I want to instantiate some spring beans using the spring context xml files. And I don't want to deploy my webservice

RE: [Axis2] How do I deploy my webservice in a separate war file other than axis2.war?

2007-05-17 Thread Raghu Upadhyayula
application bundled up with it (an admin application to maintain a database), and it's using Spring and Hibernate (both for the web app and the web service), and so far it's working. Good luck, Michael -Original Message- From: Raghu Upadhyayula [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: [Axis2] How do I deploy my webservice in a separate war file other than axis2.war?

2007-05-17 Thread Raghu Upadhyayula
you get everything working. Regards, Ted From: Raghu Upadhyayula [mailto:[EMAIL PROTECTED] Sent: Thursday, May 17, 2007 3:23 PM To: axis-user@ws.apache.org Cc: [EMAIL PROTECTED] Subject: RE: [Axis2] How do I deploy my webservice in a separate war file

How to set timeout maintain session in Axis2 from a client.?

2007-05-17 Thread Raghu Upadhyayula
Hi, In Axis 1.x I used to set the timeout maintain session from the client code using the following code. stub.setMaintainSession(true) stub.setTimeout(timeOutInMilliSeconds) How do we set this in Axis2?. I don't see these

<    1   2