Interop problem with Axis 1.2RC1 and MS SOAP Toolkit 3

2004-10-21 Thread Nicolás Lichtmaier
Hi, I'm new with both SOAP and Axis, and (of course) I'm having some troubles. I've published a simple service and I had some troubles when connecting from VB (SOAP toolkit). I've hand-editted the generated WSDL file and now it works. How can I make this work without manual tweaking? The edits I've

Attachments to/from MS SOAP Toolkit 3.0

2003-07-04 Thread Jacek Gebala
Hi, I try to send/receive an attachment using Microsoft SOAP Toolkit 3.0(client) and AXIS 1.1(server). I decided to use high-level API of Microsoft SOAP Toolkit 3.0. As an example I've used the EchoAttachmentsService from axis' samples. The problem is that I'm getting the error message on the cli

Re: attachments to/from "MS SOAP Toolkit 3.0" and "Web Services

2003-07-03 Thread Jacek Gebala
etDataHandler(); // Do what you will with dh! // Build up an AttachmentPart to send in the response. For this // sample, we'll just re-use the one we were sent. org.apache.axis.Message responseMessage = context.getResponseMessage(); responseMessage.addAttachmentPart(attachmentPart); } catch (javax.xml.soap.SOAPException e) { // Ignore } } } } -

FW: RE: attachments to/from "MS SOAP Toolkit 3.0" and "Web Services

2003-03-06 Thread Paul Knepper
BTW. I'm using Axis 1.1 RC1 and the samtest.vbs (from the original attachments to/from "MS SOAP Toolkit 3.0" and "Web Services" post) on the client side. -Paul -Original Message- From: Paul Knepper Sent: Thursday, March 06, 2003 3:00 PM To: '

RE: attachments to/from "MS SOAP Toolkit 3.0" and "Web Services

2003-03-06 Thread Paul Knepper
Got the echo attachments service working with MS SOAP Toolkit. Thanks for all the great documentation Sam. Now if I wanted to save the file on the server what changes would I need to make in EchoAttachmentsService.echo(DataHandler dh) ? TIA, Paul

attachments to/from "MS SOAP Toolkit 3.0" and "Web Services Enhancements 1.0"

2002-12-20 Thread Sam Brow
tachmentPart(attachmentPart); } catch (javax.xml.soap.SOAPException e) { // Ignore } } } } ------------ Now we'll move on to MS SOAP Toolkit 3.0. This to

Mapping a Java Hashtable to VB MS SOAP toolkit

2002-07-18 Thread Collin Goredema
Can someone please assist me with how to map a java Hashtable to some construct in the MS SOAP toolkit? We have a Java SOAP server with a VB client. The VB client needs to pass in an object to the Java server method which accepts a Hashtable. What construct in VB should we use?

MS Soap Toolkit (High Level API) -> Apache Axis

2002-04-10 Thread MacRae, Duncan
I am attempting to deploy Web Services with Java and consume them with Microsoft. Server Configuration: Axis Beta1 Weblogic 6.0sp1 EJB Provider Client Configuration: Microsoft SOAP Toolkit 2.0 (High Level API) Visual C++ 6.0 Since the type information is not being sent with request, I get an er

MS SOAP Toolkit.

2002-03-13 Thread Vemuri, Vijay
Hi, I am new to axis. Just wondering if I can use Axis to call web services via WSDLs created using Microsoft WSDL Generator ? The server is an IIS server (with ASPs and DLLs). Can I write a Java client using Axis to access these web services ? If so, what are the steps ? Thanks, Vijay.

RE: Little bug in the example "CalcClient.java", and comparison with MS Soap Toolkit

2002-03-12 Thread John Towell
Yes ... now it works for me too ... merci Yann! __ Do You Yahoo!? Try FREE Yahoo! Mail - the world's greatest free email! http://mail.yahoo.com/

Little bug in the example "CalcClient.java", and comparison with MS Soap Toolkit

2002-03-12 Thread Yann Deydier
call.addParameter( "op2", XMLType.XSD_INT, ParameterMode.PARAM_MODE_IN ); Then, it works. So I think there is a little error in your example. Secondly, I just would like to show you the minimal codes to call this web service, one using java-axis,