Re: Web Services book

2003-03-12 Thread Mark Mueller
I have to admit, the Ant book is a pleasure to read. I didn't have a particular reason to learn ant -- I could get by for what I knew -- but there really is a lot more to the book. The philosophy on how to handle builds makes sense. Mark --- Michael Yuan <[EMAIL PROTECTED]> wrote: > > > I w

Re: Problem with a deployed service

2003-02-11 Thread Mark Mueller
Hi Luis, A similar service works fine for me running on Linux. The one thing I do differently from you is wait for the child process to complete. It might be worth a try. try { Process child = Runtime.getRuntime().exec( cmd ); child.waitFor(); int result = child.exitValue(); System.ou

Re: Executing files

2003-02-05 Thread Mark Mueller
Luis, I had a similar problem with a web service. The external executable turned out not to be able to open files. I used Java 1.4's policytool to grant file permissions and that solved the problem. Mark --- Luis Rodrigo <[EMAIL PROTECTED]> wrote: > Hi everyone out there!!! > >

Re: Fear of Attachments

2003-02-03 Thread Mark Mueller
Hi Steve, Thanks for the paper, it is helpful. I gather that it makes sense to support both MIME and DIME attachments in order to increase interoperability -- probably with two different operations in order to be able to specify the MIME-type of the MIME attachment in the WSDL binding. Your code

RE: Limit to deployed services

2003-01-31 Thread Mark Mueller
xcept for the > "And now, some > services") > > Jim > > > Jim Brain, [EMAIL PROTECTED] > "Researching tomorrow's decisions today." > (319) 369-2070 (work) > SYSTEMS ARCHITECT, ITS, AEGON FINANCIAL PARTNERS > > -Original Message- > F

Re: Limit to deployed services

2003-01-31 Thread Mark Mueller
Jim, This may not help, but I deployed a service with the same name as a .jws service that I had done as a test. The View page was blank. I removed the test class from the WEB-INF/jwsClasses directory, restarted Tomcat, and the View page suddenly worked again. Mark --- "Brain, Jim" <[EMAIL

Attachment files in client code -- best way to convert

2003-01-31 Thread Mark Mueller
Hi, I'm developing a service that returns an audio/x-wav file as an attachment. The simplest handling from the attachments sample uses a DataHandler return value type. I didn't like having: type="apachesoap:DataHandler" in my WSDL because I figured that non-Java clients would not necessarily k

Re: Interoperative attachments (MIME types)

2003-01-30 Thread Mark Mueller
wrote: > > - Original Message - > From: "Mark Mueller" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, January 30, 2003 17:19 > Subject: RE: Interoperative attachments (MIME types) > > > > I think I may have solved the proble

RE: Interoperative attachments (MIME types)

2003-01-30 Thread Mark Mueller
cation/octetstream" in my WSDL WSDL2Java works. The signature of the stub is: java.lang.Object echoAttachment( java.lang.Object ) That seems reasonable. Mark --- Mark Mueller <[EMAIL PROTECTED]> wrote: > Josh, > > Thanks! I took your WSDL and ran it through > WSDL2Jav

RE: Interoperative attachments (MIME types)

2003-01-30 Thread Mark Mueller
this point. > > So I think this answers your question... Axis does > handle the mime section. > But other platform implementations MAY not (im still > unsure) like Micro$uks > .CRAP Framework. > > -Original Message- > From: Mark Mueller [mailto:[EMAIL PROTEC

RE: Interoperative attachments

2003-01-28 Thread Mark Mueller
Original Message- > From: Steve Loughran [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, January 28, 2003 9:17 AM > To: [EMAIL PROTECTED] > Subject: Re: Interoperative attachments > > > > - Original Message - > From: "Mark Mueller" <[EMA

RE: Interoperative attachments

2003-01-28 Thread Mark Mueller
extract it from the > attachment parts. > > BTW... I am assuming you are attempting to make your > web service work with > multiple platforms? Are you attempting to use > non-Java clients with axis at > any point? > > -Original Message- > From: Mark Mu

RE: Interoperative attachments

2003-01-27 Thread Mark Mueller
the above in a handler, > a MessageContext object > will be passed through the invoke method (see sample > 4 in axis for handler > implementation). You can then simply call > msgContext.getCurrentMessage() > with this object to get the message and start adding > AttachmentPa

Interoperative attachments

2003-01-23 Thread Mark Mueller
I've been following this list for weeks now and concepts are slowly sinking in. I'm still a bit puzzled by attachments, though. I'm developing a service that returns a file to the client. In the server code I return a DataHandler object which Axis nicely turns into an attachment. My concern is t

Re: Bug/Wierdness in reading config file after class update

2003-01-20 Thread Mark Mueller
Any chance there are some unprintable characters in the WSDD file? > java.lang.Exception: Invalid > WSDD element 'deployment' (wanted 'deployment') would make me suspicious. --- Sean Leach <[EMAIL PROTECTED]> wrote: > Environment: Resin 2.1.5 on Linux w/ JDK 1.4 w/ Axis > 1.0 > > I am experien

Re: How to use tcpmon to monitor SOAP response from a remote server

2003-01-09 Thread Mark Mueller
ap/ISoapFindMP3";; Mark --- Mark Mueller <[EMAIL PROTECTED]> wrote: > I can't find any documentation on how to set up > tcpmon > to intercept a SOAP exchange with a remote server. > Here's what I tried. > > In the ServiceLocator file I changed:

How to use tcpmon to monitor SOAP response from a remote server

2003-01-09 Thread Mark Mueller
I can't find any documentation on how to set up tcpmon to intercept a SOAP exchange with a remote server. Here's what I tried. In the ServiceLocator file I changed: java.lang.String ISoapFindMP3Port_address = "http://www.agnisoft.com/cgi-bin/soapmp3search.exe/soap/ISoapFindMP3";; to: java.lang.St

Re: Can the client capture the raw SOAP response?

2003-01-09 Thread Mark Mueller
ef soapscope; I use that or > debugging stuff. > > - Original Message - > From: "Mark Mueller" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, January 09, 2003 08:20 > Subject: RE: Can the client capture the raw SOAP > response?

RE: Can the client capture the raw SOAP response?

2003-01-09 Thread Mark Mueller
ml and uncomming the > tags. > > Regards, > Shobha Rani J > > > > > -----Original Message- > > From: Mark Mueller [mailto:[EMAIL PROTECTED]] > > > Sent: Thursday, January 09, 2003 10:14 AM > > To: [EMAIL PROTECTED] > > Subject: Can the

Can the client capture the raw SOAP response?

2003-01-08 Thread Mark Mueller
I'm trying to learn SOAP and Axis and have spent a day trying to get a simple client to work. The service takes a search string and the number of responses to return, and returns an array of MP3 URLs in the form of TMP3Result objects. I kept getting this error: An Axis Fault occurred: org.xml.sax

Re: No deserializer defined for array type ?

2003-01-08 Thread Mark Mueller
I've been trying to answer the same question myself. Are we supposed to use: call.registerTypeMapping() to do this? Does anyone have an example of a client that deserializes an array of objects? Mark --- McCaslin Orion <[EMAIL PROTECTED]> wrote: > Hi, > > I am not having success get