RE: Enabling SSL for axis

2004-09-15 Thread Steve Webbo
This may or may not be the solution but thought I'd offer it up just in case... You're error message says no *trusted* certificate. Could it be that the cacerts file for your client does not have the CA of the server as a trusted CA. I had a similar problem whereby my web-service was running

Re: Axis and user defined Exceptions

2004-09-15 Thread thomas . bailey
Yep (axis 1.1) - have you tried the samples.faults package in the axis / samples ? /t > Has anyone written user defined Exceptions, extending the > java.lang.Exception class and successfully thrown them from the server > side > and caught them at the client side? Currently, whenever I try to thr

RE: SAAJ Example

2004-09-15 Thread Shahi, Ashutosh
Hi, You can go thru the tutorial provided at: http://java.sun.com/j2ee/1.4/docs/tutorial/doc/SAAJ3.html Regards, Ashutosh Shahi -Original Message- From: Sagar Pidaparthi [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 11:28 PM To: [EMAIL PROTECTED] Subject: RE: SAAJ Exampl

Re: AXIS with JDK 1.5

2004-09-15 Thread James Black
Pravir Ramtekkar wrote: Hi, We are using AXIS 1.1 and recently moved onto using JDK 1.5 (build 1.5.0-beta2-b51) When I compile my WSDL2Java generated code there are warnings about 'enum'. Axis has package org.apache.axis.enum which conflicts with 'enum' keyword. With strict checking this would n

List-Unsubscribe

2004-09-15 Thread Dave Z

AXIS with JDK 1.5

2004-09-15 Thread Pravir Ramtekkar
Hi, We are using AXIS 1.1 and recently moved onto using JDK 1.5 (build 1.5.0-beta2-b51) When I compile my WSDL2Java generated code there are warnings about 'enum'. Axis has package org.apache.axis.enum which conflicts with 'enum' keyword. With strict checking this would not compile. Are there a

Axis and user defined Exceptions

2004-09-15 Thread Bill Keicher
Has anyone written user defined Exceptions, extending the java.lang.Exception class and successfully thrown them from the server side and caught them at the client side? Currently, whenever I try to throw a user defined exception, I get this message on the client side, wrapped in a SOAPFaultExcept

RE: WS-Security

2004-09-15 Thread Greg Michalopoulos
Jim - I think you had the right idea...Thanks. -Original Message- From: Jim Murphy [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 2:56 PM To: [EMAIL PROTECTED] Subject: Re: WS-Security Is it in the servlet container's class path or the webapp classpath? I believe it must

Re: Calling different WS than specified in client

2004-09-15 Thread Mark Cassidy
If you are using a static client, you can do this FooPort port = service.getFooPort(); Stub stub = (Stub) port; stub._setProperty(Stub.ENDPOINT_ADDRESS_PROPERTY, "http://xxx.xxx.xxx.xxx/etc/etc";); - Mark --- [EMAIL PROTECTED] wrote: > I want to call a WS called for example M

Enabling SSL for axis

2004-09-15 Thread Gautham Mulakala
Hi, I am trying to enable SSL communication on axis and getting the following error. By reading the stack trace it is saying like it is not able to find the certificate which is already there. Any clue of what could be wrong. Thanks in advance Regards Sree AxisFault faultCode: {http://schema

RE: Slow deserialization in axis

2004-09-15 Thread Aravind . Sankaranarayan
Title: Message Its solaris...I will try with some profiler...   thanks   aravind -Original Message-From: THOMAS, JAI [AG-Contractor/1000] [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 2:39 PMTo: '[EMAIL PROTECTED]'Subject: RE: Slow deserialization in ax

RE: Slow deserialization in axis

2004-09-15 Thread THOMAS, JAI [AG-Contractor/1000]
Title: Message Aravind, One problem with your approach is that you still don't know for sure if time is actually spent executing the deserializer. Is it possible that the threads are waiting on something at that point? There are profiling tools out there that shows time spent on specific c

RE: Slow deserialization in axis

2004-09-15 Thread Sankaranarayan, Aravind
Title: Message Jai,       I m using a threaded program to get 50 concurrent requests to my webservice. I enabled the  axis logging and ran my program. The axisServlet was called concurrently(log time indicated that) . so I assumed that there is no network problem.Then onwards each thread star

RE: Slow deserialization in axis

2004-09-15 Thread THOMAS, JAI [AG-Contractor/1000]
Title: Message Aravind, Our server does both serializations (but more bean) and we haven't noticed any significant performance problems with heavy loads. Now, how are you determining deserialization is the problem? It can be caused by varous factors such as your network configuration, app s

Re: WS-Security

2004-09-15 Thread Jim Murphy
Is it in the servlet container's class path or the webapp classpath? I believe it must be reachable by the webapp classloader - which does not delegate to a "higher level" class loader. Jim Murphy Mindreef, Inc. Greg Michalopoulos wrote: Could be a real dumb question but... Using apache wss4j,

RE: Slow deserialization in axis

2004-09-15 Thread Aravind . Sankaranarayan
Title: Message Its bean serialization. I m using  default setup of axis without changing anything.   aravind -Original Message-From: THOMAS, JAI [AG-Contractor/1000] [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 1:45 PMTo: '[EMAIL PROTECTED]'Subject: RE:

RE: Slow deserialization in axis

2004-09-15 Thread THOMAS, JAI [AG-Contractor/1000]
Title: Slow deserialization in axis Are you using bean or custom serialization? Jai -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]Sent: Wednesday, September 15, 2004 12:53 PMTo: [EMAIL PROTECTED]Subject: Slow deserialization in axis Hi, I have

Slow deserialization in axis

2004-09-15 Thread Aravind . Sankaranarayan
Title: Slow deserialization in axis Hi, I have hosted a webservice using axis on tomcat 4.1.24. I m finding that as concurent load increases, there is a tremendous growth in the deserialization time taken. Any clues ?? Thanks aravind

Performance issue with axis deserialization

2004-09-15 Thread Aravind . Sankaranarayan
Title: Performance issue with axis deserialization Hi, I have hosted a webservice using axis on tomcat 4.1.24. I m finding that as concurent load increases, there is a tremendous growth in the deserialization time taken. Any clues ?? Thanks aravind

ant task for admin client?

2004-09-15 Thread Paul Tomsic
is there an ant task for org.apache.axis.client.AdminClient? I can't seem to find any other than than

RE: SAAJ Example

2004-09-15 Thread Sagar Pidaparthi
Hi, I am looking for a simple example that creates a soap message. It need not do any attatchment. Send the request and receive and deserialize the response. Thanks sagar Can anybody provide me a simple SAAJ example for axis 1.1? Thanks in advance. Regards Sagar

WS-Security

2004-09-15 Thread Greg Michalopoulos
Could be a real dumb question but... Using apache wss4j, and trying to use a custom password callback class. Thing is, if I don't add the custom password callback class to the wss4j jar file, I get a java.lang.NoClassDefFound exception - even if the custom class is in the class path of the servlet

SAAJ Example

2004-09-15 Thread Sagar Pidaparthi
Can anybody provide me a simple SAAJ example for axis 1.1? Thanks in advance. Regards Sagar

subscribe!!

2004-09-15 Thread Mirna Carelli / Projeto Ourgrid
I can't subscribe from this list.

Axis and Castor

2004-09-15 Thread Robert Bateman
Hello, I'm playing with Java Axis 1.2 Beta 3. I'm currently stuck with the error org.apache.axis.InternalException: org.apache.axis.ConfigurationException: org.apache.axis.deployment.wsdd.WSDDException: javax.xml.rpc.JAXRPCException: Null serializer factory specified. javax.xml.rpc.JAXRPCExcep

RE: Axis, Castor and BeanSerializerFactory

2004-09-15 Thread Marco Mistroni
Hello, I fyou use castor, those beanSerializerfactories shouldn't be anywherein ur WSDD... because you are replacing them with castor factories.. Regards marco -Original Message- From: Robert Bateman [mailto:[EMAIL PROTECTED] Sent: 15 September 2004 16:38 To: [EMAIL PROTE

Axis, Castor and BeanSerializerFactory

2004-09-15 Thread Robert Bateman
The Web Service I'm attempting to build will use Caster to handle a document thru Axis. I've read the wonderful documentation about Castor and Axis and "think" I have messed something up. In the doc over at IBM.com, it indicates that I have to replace the serializers in order to have Castor se

axis error when invoking webservices

2004-09-15 Thread Marco Mistroni
Hello all, I have written a webservice that uses Castor serializer,and when I am Invoking my webservice (via a client), on the clientside I got the following exception C:\Sw\axis-1_2beta>java -cp %CLASSPATH%;castor-0.9.5.3.jar;xml-apis-1.0.b2.jar;C ommons-1.0.jar;BudgetWS-1.0.jar;Backend-1