Re: Where are WSS4J Binaries?

2005-02-16 Thread Venkat Reddy
You can get the snapshot at http://cvs.apache.org/snapshots/ws-fx/ On Wed, 16 Feb 2005 11:06:58 -0800 (PST), Ry. [EMAIL PROTECTED] wrote: Hi, I am looking forward to using WSS4J in my project but I don't know where to find the binaries from http://ws.apache.org/ws-fx/wss4j/. Can someone

Re: axis 1.2, (/axis/servlet/AxisServlet) is not available.

2005-02-10 Thread Venkat Reddy
See http://ws.apache.org/axis/java/building-axis.html#BuildingWithServlets You need to keep servlet.jar in classpath while running ant to get AxisServlet class. No need of commenting stuff in web.xml. -- venkat On Thu, 10 Feb 2005 15:16:14 -0800 (PST), pushkar bhatia [EMAIL PROTECTED] wrote: Hi

Re: j2ee web service

2005-02-09 Thread Venkat Reddy
and create ejb or maintain life cycle of ejb. it seems that we are just doing the same things as we do with other normal java program. no need of container..just function like normal java program. is there any thing i misunderstood. On Tue, 2005-02-08 at 19:30, Venkat Reddy wrote: Try looking

Re: Newbie with EJB/web service problem

2005-02-09 Thread Venkat Reddy
Just to ensure that the environment is alright, did you try building and running the samples/ejb in axis? As you mentioned, the issue could be with code generation (java2wsdl, wsdl2java). What errors did you get when you ran WSDL2Java? Need to resolve issues with the EJB classes to run Java2WSDL

Re: j2ee web service

2005-02-08 Thread Venkat Reddy
Try looking into samples/ejb. On Tue, 08 Feb 2005 19:02:57 +0530, Pavan Kumar Choukhada [EMAIL PROTECTED] wrote: hi how to build web service for EJBs(J2EE component) using apache axis. can any body give me hint on this. thanking you With regards Pavan Kumar

Re: JRE 1.5 enum is a Reserved Word Does Axis Comply withthis rule?

2005-02-05 Thread Venkat Reddy
Feb 2005 18:51:52 +0100, Michael Schuerig [EMAIL PROTECTED] wrote: On Friday 04 February 2005 18:18, Venkat Reddy wrote: Is it not because you are passing an instance of super class while it expects an instance of a derived class? Yes, it is exactly because of that. I can't change the class

Re: JRE 1.5 enum is a Reserved Word Does Axis Comply withthis rule?

2005-02-04 Thread Venkat Reddy
Is it not because you are passing an instance of super class while it expects an instance of a derived class? -- venkat On Fri, 4 Feb 2005 17:28:45 +0100, Michael Schuerig [EMAIL PROTECTED] wrote: On Friday 04 February 2005 12:52, Davanum Srinivas wrote: On Fri, 4 Feb 2005 10:06:11 +0100,

Re: JRE 1.5 enum is a Reserved Word Does Axis Comply withthis rule?

2005-02-04 Thread Venkat Reddy
Is it not because you are passing an instance of a super class while it expects an instance of a derived class? - Venkat On Fri, 4 Feb 2005 17:28:45 +0100, Michael Schuerig [EMAIL PROTECTED] wrote: Try to compile this: package test; import org.apache.axis.constants.Style; public

Re: Https access to webservices

2005-01-10 Thread Venkat Reddy
Here are some links to earlier posts and pages where you can get info: FAQ at ws.apache.org - a bit old, but tells the basics. http://ws.apache.org/soap/docs/install/FAQ_Tomcat_SOAP_SSL.html A web page on the topic: http://www.pankaj-k.net/WSOverSSL/WSOverSSL-HOWTO.html Related posts in the

Re: wsdl issue

2004-11-17 Thread Venkat Reddy
hi Vinay, You can specify the wsdlFile attribute for service element inside the WSDD file. For more information, see the WSDD Schema at axis\wsdd\WSDD.xsd or the documentation at http://ws.apache.org/axis/java/reference.html Setting this attribute causes the call setWSDLFile() on JavaServiceDesc

Re: Performance of 1.2 vs 1.1

2004-10-14 Thread Venkat Reddy
I got the following numbers showing that the axis 1.2 RC (latest CVS) takes 1.35 times more time compared to Axis 1.1 Final. Axis 1.1 : 3891msecs Axis 1.2 : 5242 msec I have uploaded the test case at http://issues.apache.org/jira/browse/AXIS-1608 -- Venkat On Wed, 13 Oct 2004 17:36:19 -0400,

Re: SSL with Axis

2004-10-07 Thread Venkat Reddy
Here is roughly how you can make Axis talk to tomcat using SS (or atleast that's how i could make it work). 1. Setup a keystore for client 2. Setup a keystore for server 3. Export server's public key certificate to a file and import it into client's keystore. 4. Export client's public key

Re: custom deploying a webservice at a location other than standard /axis/services pattern

2004-10-05 Thread Venkat Reddy
May be you should change servlet-mapping/url-pattern inside the web.xml for your axis web application? -- Venkat On Tue, 5 Oct 2004 10:27:39 +0530, jayachandra [EMAIL PROTECTED] wrote: Hi all, can someone tell me how to deploy a web service at a location other than at /axis/services path say

Re: happyaxis

2004-09-22 Thread Venkat Reddy
It means that either the activation.jar is not found or it doesn't have the required classes. Try getting the jar from the URL given in the error message and drop it into /opt/tomcat/webapps/axis/WEB-INF/lib. Venkat On Wed, 22 Sep 2004 15:37:39 +0600, Din%$h [EMAIL PROTECTED] wrote: Hi all ,

Re: SAAJ Tester with Complex Object

2004-09-22 Thread Venkat Reddy
I think the multi-ref serialization happens during encoding, typically in case of rpc/encoded services. SAAJ Apis may be local in the sense that they can only act on specific SAAJ objects but not participate in an orchestrated multi-refing in global scope. Can someone correct me if I'm wrong?

Re: Strange format of RPC/encoded messages

2004-09-22 Thread Venkat Reddy
You could probably turn it off by setting a property in server-config.wsdd to false. deployment ... globalConfiguration . . parameter name=sendMultiRefs value=false/ BTW, Multirefing has some advantages such as reducing duplication of data, better modeling for message etc.

Re: OutOfMemoryException from my Axis client

2004-09-21 Thread Venkat Reddy
hi James, You can just post the test case to axis-user, if possible. If not you could just send it directly to me. Thanks Venkat On Tue, 21 Sep 2004 13:43:33 -0400 (EDT), James CE Johnson [EMAIL PROTECTED] wrote: Hi Venkat, I tried 1.4.2_05-b04 with the same results. Unfortunately, I can't

Re: Can't put JAX-RPC handler to work (Newbie question)

2004-09-09 Thread Venkat Reddy
You can probably try one of these things: 1. Instead of getting the chain by calling service.getHandlerRegistry().getHandlerChain(), you can just create a new ArrayList instance and add your handlerInfo to it and then set your handler chain with the new List. 2. Use client-deploy.wsdd to deploy