Validating a document using WSDL?

2005-02-11 Thread Carsten Ziegeler
I'm searching for an easy way of validating an XML document against a WSDL file. This is in order to test if the document is a valid request for the service. Does Axis provide some classes/functionalitity I could use? Or is there something else I can do? I read somewhere that Axis currently

Newbie Doubts on Custom Types

2005-02-11 Thread babloosony
Hi All, I have few doubts on custom types transferring between java/.net using axis 1.2 rc2 document style web services. Say I have below structure of my classes class a { public boolean a1=true; } class b extends a { public boolean b1=false; } class c { public boolean

Need info on Axis and Custom (De)Serializers

2005-02-11 Thread babloosony
Hi, Are there any good tutorials,links,blogs etc. on writing custom (de)serializers with axis. Any information on at what phases of soap request/response cycle in axis, these (de)serializers will be called and with hands-on examples will be very helpful. Please suggest ? Thanks Regards,

Not able to access through anoncvs.

2005-02-11 Thread Sai
Hi ! I'm not able to access cvs.apache.org through username: anoncvs and password:anoncvs either through pserver (as i'm behind a firewall) nor through SSH connection. Please let me know if anybody has a solution or Is there a way i can have Non-Commit username and password for accessing??

Newbie doubts on XML Signature

2005-02-11 Thread babloosony
Hi All, There is a third party web service which exposed its wsdl to clients and I used AXIS 1.2 RC2 to create stubs and have written a web service client program to access the web service. However may the server is expecting a signed xml signature in the soap message to verify them I am not

Re: calling MessageService sample with .NET client

2005-02-11 Thread Praveen Peddi
Our requirement is to use raw XML. Its not like calling a method with arguments. We get SOAP request in a specific schema that cannot be mapped to wrapped style. For example, we get list of elements in the body where each element has some attributes. So I thought its easy to deal with raw xml.

RE: Newbie doubts on XML Signature

2005-02-11 Thread Anderson Jonathan
You are going to need to get in touch with the owners of that Web Service so that you can determine *exactly* what it is expecting. A) Exactly what type of XML Signature does it expect? OASIS WS-Security 2004? Microsoft WS-Security 2002? An enveloped signature inside the SOAP envelope (which

Observable observer pattern for Webservices

2005-02-11 Thread swetha Ranganathan
Hi Has anyone implemented Observable observer pattern between two web services ? Regards Swetha RegardsSwetha Yahoo! India Matrimony: Find your life partner online.

Threads under axis

2005-02-11 Thread Ian Wootten
Hi there, I was wondering if somebody could help me out with a simple thread problem I'm facing when my class is deployed. My class (a simple log4j app) logs the environment variables to one file and issues a memory monitoring thread in the background. I'm finding that the memory thread

RE: Axis workflow based services

2005-02-11 Thread Brown, Mike
The Delegate is a commonly used design pattern, see http://www.c2.com/cgi/wiki?BusinessDelegate Basically the delegate protects its clients from needing to know the semantics of how the functionality is provided (ejb, web-service, database, etc.). The reason I recommend using a delegate is to

RE: Threads under axis

2005-02-11 Thread Brown, Mike
This isn't an axis problem. The servlet spec does not support threads being spawned by code running in the container. It also does not support opening ports or several other no-nos. -Original Message- From: Ian Wootten [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 8:28 AM

RE: Threads under axis

2005-02-11 Thread Parley, Thunder Jon
H Ian, what I have done and works... 1. Create a ContextListener for your application (example, I use Tomcat 4.1.x). 2. In the public void contextInitialized(ServletContextEvent e) { method, initialize your Thread. 3. Still in this method, start your Thread (optional). 4. Now add the

WebService error calling JNI methods

2005-02-11 Thread Dave Hoffer
I get the following error when I call my web service methods: An unhandled exception of type 'System.Web.Services.Protocols.SoapException' occurred in system.web.services.dll Additional information: java.lang.reflect.InvocationTargetException I have 1 public method in my java code which calls

Re: [News] ANNOUNCEMENT : Axis C++ 1.5 alpha final Released

2005-02-11 Thread Toshiyuki Kimura
To: 皆様  木村です。  リリースノート部も日本語化して、サイトに掲載しました。 誤字脱字・誤訳などがあれば、ご連絡お願いします。 http://ws.apache.org/axis/ja/cpp/index.html 宜しくお願いします。 --- Toshi [EMAIL PROTECTED] On Thu, 10 Feb

How to automate the build process of writing web service clients

2005-02-11 Thread babloosony
Hi All, I have one interesting doubt! Say there are lot of WSDL's exposed by some third party web service providers. I am using Apache AXIS 1.2 RC2 on client side. Are there any tools out there that can write java client programs automatically that used stubs generated by AXIS 1.2 RC2. Since