document-centric with DOM

2003-08-17 Thread Mark Volkmann
I'd like to see an example of a simple web service and client that use DOM objects to pass and receive data. Is there a way to do that using Axis? All the examples I've seen use SOAPBodyElement objects instead of DOM Document or Node objects. I don't understand why the people that designed all the

NoSuchMethodError in HTTPSender!

2002-11-15 Thread Mark Volkmann
Title: RE: Interim drop of 11-13-2002 I'm hitting this problem too!  I've changed the subject because I think it's being overlooked since many people are not using the interim drops. This certainly needs to be fixed before the 1.01 version comes out! - Original Message - From:

Re: What actually happens when you deploy a service

2002-04-14 Thread Mark Volkmann
iginal Message - From: Mark Volkmann To: [EMAIL PROTECTED] ; Jonathan Sent: Sunday, April 14, 2002 11:10 AM Subject: Re: What actually happens when you deploy a service I could be wrong, but I think the only thing that happens is that server-config.w

Re: What actually happens when you deploy a service

2002-04-14 Thread Mark Volkmann
ns the server-config.wsdd XML), and when a deployment is undeployed all the components within it (I'm assuming you're talking about a WSDD here) are removed from both the internal and the persistent engine configuraitons.   --Glen -Original Message-From: Mark

Re: What actually happens when you deploy a service

2002-04-14 Thread Mark Volkmann
I could be wrong, but I think the only thing that happens is that server-config.wsdd in the bin directory of your server (such as Tomcat) is modified. If you are deploying a service for the first time, the server must be restarted to pickup those changes. After doing this, your service will

Re: axis and cryptography ?

2002-04-02 Thread Mark Volkmann
I see two options. 1) modify the generated stub to do this 2) use an Axis engine on the client-side with a request handler that encrypts and a response handler that decrypts (I've never used client-side handlers before, only read about them.) - Original Message - From: "Michael Schwarz" <

Re: How to Use Java2Wsdl to Generate All the WSDL Files

2002-04-02 Thread Mark Volkmann
Are you trying to use utilities in WSTK or Axis?   By default Java2WSDL in Axis generates a single WSDL file that descriptions the interface AND location of a web service. To generate two files, one describing the interface and one describing the implementation, you have to invoke it twice,

Re: constructor with arguments (not visible to clients)

2002-03-31 Thread Mark Volkmann
Correction ... make that xml-axis/java/wsdd. - Original Message - From: "Mark Volkmann" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, March 31, 2002 5:54 PM Subject: Re: constructor with arguments (not visible to clients) > Earlier I asked "W

Re: constructor with arguments (not visible to clients)

2002-03-31 Thread Mark Volkmann
Earlier I asked "Where can I find a DTD for WSDD?" I found them. You have to download the Axis source to get it. It is in xml-axis/java/wsdl along with an XML Schema for WSDD.

Re: Exceptions in Sending SOAP Attachments

2002-03-31 Thread Mark Volkmann
I don't have that book. I have "Building Web Services with Java" which was written by seven people, two of which are major contributors to Axis, Doug Davis and Glen Daniels. I really like this book!   I haven't tried to work with attachments yet, so I can't offer any help there. - Ori

Re: Where the Hell is the greetingService.log?

2002-03-30 Thread Mark Volkmann
If it works like LogHandler, you'll find the log file in the bin directory of your server. If you're using Tomcat, check in $TOMCAT_HOME/bin. It took me a while to figure that out too! - Original Message - From: Li Bing To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] ; Li B

beanMapping and typeMapping placement in WSDD

2002-03-30 Thread Mark Volkmann
Simple yes and no answers will do. I'm guessing the answer to both these questions is yes, but I want to make sure.   Are beanMapping and typeMapping elements allowed both inside and outside service elements?   When inside a service element, does that imply that they are only used for the con

Re: Don't Know How to Use Custom Deployment

2002-03-30 Thread Mark Volkmann
I stumbled across the same thing. You need to copy all .class files your web service will need to $TOMCAT_HOME/webapps/axis/WEB-INF/classes with the appropriate package hierarchy of directories below that and any .jar files needed to $TOMCAT_HOME/webapps/axis/WEB-INF/lib. The user's guide do

Re: Attachment sample not working in beta1?

2002-03-24 Thread Mark Volkmann
Is the name of the JAR you need from JavaMail mail.jar or is it mailapi.jar? - Original Message - From: "Jinghua Gu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, March 24, 2002 8:11 AM Subject: Re: Attachment sample not working in beta1? No, It is working. You need to add m

MD5AttachHandler

2002-02-02 Thread Mark Volkmann
Can someone give me a brief description of the purpose of the MD5AttachHandler class? Unfortunately most of the provided handler classes are lacking documentation.