Axis web service send and receiving DIME attachments

2005-01-28 Thread Brammer, Steve
send and receive arrays of complex types with no problem. However now I need to extend the web services to allow sending and receiving of binary attachments (typically office documents). I have read that if you want to interop with .Net then DIME (not MIME) is the way to go. Can anyone point me

Re: Attachments - AXIS Server, .NET Client

2005-01-27 Thread Liu, Scott
have created a similar C# class for that portion.  The C# class has the ability to add attachments for a client, and to detach them.   As for a Java client, I have only created a method that solves half of the problem.  I think, though, after solving the first half, the second half should be a

Re: Handling attachments on client side?

2005-01-19 Thread Lucio Piccoli
not sure if there are any stub generated attachment interface. The only attachment that i have used is the call.addAttachmentPart. -lp >>> [EMAIL PROTECTED] 01/19/05 05:32pm >>> Hi. I don't know is it me, but I cannot find in user guide, or samples, some example on ho

Handling attachments on client side?

2005-01-18 Thread Vjeran Marcinko
Hi. I don't know is it me, but I cannot find in user guide, or samples, some example on how to handle attachments (client side)... And I don't want handling on low-level (Call instance etc..), but on stubs generated by wsdl2java. Let's say that I generated following SendMessag

RE: Extracting attachments from messaging service calls

2005-01-12 Thread Jason Judt
ROTECTED] > -Original Message- > From: Greg Cawthorn [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 12, 2005 9:03 AM > To: [EMAIL PROTECTED] > Subject: Extracting attachments from messaging service calls > > Hello, > > I am submitting a SOAP message with a

Extracting attachments from messaging service calls

2005-01-12 Thread Greg Cawthorn
Hello, I am submitting a SOAP message with an attachment to a web service using Axis 1.1. To implement a messaging service I have to use one of the following method signatures: public Element [] method(Element [] bodies); public SOAPBodyElement [] method (SOAPBodyElement [] bodies); public Docu

Re: Best way to send attachments

2005-01-08 Thread BLIS Webmaster (Patrick Houbaux)
Yes Andrew solution is more elegant but I'm not sure that what you send in a parameter of a ws method can be stream like the attachments are. Could somebody from the axis developpers confirm this? I need to test that in any case. In my example I'm not explicitly sending Attachmen

Re: Best way to send attachments

2005-01-07 Thread Praveen Peddi
y, January 07, 2005 6:13 PM Subject: Re: Best way to send attachments Andrew, Does it mean that you send the attachment as a part of a java bean you sent in your a ws method parameter? I did not think it was possible at all. Interesting I should try this out as well ;) Cheers, Patrick. ANDRE

Re: Best way to send attachments

2005-01-07 Thread BLIS Webmaster (Patrick Houbaux)
, the .NET side is a black box to me, so I don't have any code to share. This will take the code generated by WSDL2Java and pull out the attachments from the "content" field which is typed as an xsd:anyType: public static byte[] convertToBytes(NodeDocument doc) { O

Re: Best way to send attachments

2005-01-07 Thread BLIS Webmaster (Patrick Houbaux)
with java clients as well): On the server side I'm doing the following to accept attachments from the client side: // getting the request Message org.apache.axis.MessageContext msgContext = org.apache.axis.MessageContext.getCurrentContext(); org.apache.axis.Messa

Re: Best way to send attachments

2005-01-07 Thread Praveen Peddi
. Praveen - Original Message - From: "ANDREW MICONE" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 07, 2005 5:44 PM Subject: Re: Best way to send attachments Sure, the here's a Java code snippet. Unfortunately, the .NET side is a black box to m

Re: Best way to send attachments

2005-01-07 Thread ANDREW MICONE
Sure, the here's a Java code snippet. Unfortunately, the .NET side is a black box to me, so I don't have any code to share. This will take the code generated by WSDL2Java and pull out the attachments from the "content" field which is typed as an xsd:anyType:

Re: Best way to send attachments

2005-01-07 Thread Praveen Peddi
nt: Friday, January 07, 2005 5:22 PM Subject: RE: Best way to send attachments Right, it's passed in either directly or by reference as xsd:anyType and then the receiver has to type the anyType to determine whether its base64encoded, SwA, or DIME. -- Andy>>> [EMAIL PROTECTED] 01/07

RE: Best way to send attachments

2005-01-07 Thread ANDREW MICONE
ill be any MIME or DIME based attachments. Cheers Simon > -Original Message- > From: ANDREW MICONE [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 12:14 PM > To: [EMAIL PROTECTED] > Subject: RE: Best way to send attachments > > Here's an example o

RE: Best way to send attachments

2005-01-07 Thread Simon Fell
Nothing in that wsdl fragment indicates that there will be any MIME or DIME based attachments. Cheers Simon > -Original Message- > From: ANDREW MICONE [mailto:[EMAIL PROTECTED] > Sent: Friday, January 07, 2005 12:14 PM > To: [EMAIL PROTECTED] > Subject: RE: Best way to s

Re: Best way to send attachments

2005-01-07 Thread Praveen Peddi
not like I am getting the list of attachments and I save it randomly. I have to know what attachment is what (whether its a source content or thumb content). Also if the attachments' info is not part of the method, it will be really ahard and confusing for the user to use that method. We

RE: Best way to send attachments

2005-01-07 Thread ANDREW MICONE
Here's an example of a WSDL snippet that is consumed by both .NET and Axis that handles attachments and interoperates between the two. This is from a service in produ

RE: Best way to send attachments

2005-01-07 Thread Flores, Raul
The wsdl does not have any reference/indication that there is an attachment. My operations allow the client to dictate a mime or dime encoding (a string parameter in the requestMessage). Sorry for the confusion. Attachments are handled as per your description below. The wsdl for attachments in

RE: Best way to send attachments

2005-01-07 Thread ANDREW MICONE
ant to consider is also that some servers have a limit on the content-length of posted data: in ASP.NET it's 4Mb by default - not so much. HTH Patrick -Original Message- From: Tardif, Sebastien [mailto:[EMAIL PROTECTED] Sent: 07 January 2005 17:44 To: [EMAIL PROTECTED] Subject: RE:

Re: Best way to send attachments

2005-01-07 Thread BLIS Webmaster (Patrick Houbaux)
uld be set to Dime or Mime encoding (the service is Axis). Raul -Original Message- From: BLIS Webmaster (Patrick Houbaux) [mailto:[EMAIL PROTECTED] Sent: Friday, January 07, 2005 1:12 PM To: [EMAIL PROTECTED] Subject: Re: Best way to send attachments I have no problem sending attachemen

RE: Best way to send attachments

2005-01-07 Thread THOMAS, JAI [AG-Contractor/1000]
] Sent: Friday, January 07, 2005 1:27 PM To: [EMAIL PROTECTED] Subject: RE: Best way to send attachments I don't believe there is a way to define this in wsdl so that both .Net and Java(axis) can consume the wsdl. Someone please correct me if I am wrong. My clients just have to understand

RE: Best way to send attachments

2005-01-07 Thread Flores, Raul
r the attachment should be set to Dime or Mime encoding (the service is Axis). Raul -Original Message- From: BLIS Webmaster (Patrick Houbaux) [mailto:[EMAIL PROTECTED] Sent: Friday, January 07, 2005 1:12 PM To: [EMAIL PROTECTED] Subject: Re: Best way to send attachments I have no problem se

Re: Best way to send attachments

2005-01-07 Thread BLIS Webmaster (Patrick Houbaux)
I have no problem sending attachements to .NET client. I have a RPC web service (I guess it works for other web service style), and here is the methodologie: Let's assume you have a web service supposed to send some attachments, the idea is to add the attachment to the SOAP message befor

Re: Best way to send attachments

2005-01-07 Thread Henry Lu
makes a very clear question that how to send attachments using soap way that works with many environments. For example, Axis and .Net. To rephrase this, I would say how to create a Wsdl that works with both axis and .net. Currently, using the DataHandler in the wsdl (or generating the wsdl f

Re: Best way to send attachments

2005-01-07 Thread Vy Ho
All of the reples make no sense whatsover to me. The original poster makes a very clear question that how to send attachments using soap way that works with many environments. For example, Axis and .Net. To rephrase this, I would say how to create a Wsdl that works with both axis and .net

RE: Best way to send attachments

2005-01-07 Thread Patrick Martin
To: [EMAIL PROTECTED]Subject: RE: Best way to send attachments You have to differentiate between the representations made in a specific language of the attachment than the way the attachment is sent. By playing with some flag you can see an attachment in Java as a DataHandler, a byte[], o

RE: Best way to send attachments

2005-01-07 Thread Tardif, Sebastien
: [EMAIL PROTECTED] Subject: Best way to send attachments   Hi team, I did lot of research on Axis attachments but I am still not able to figure out the best way to send attachments. We currently use DataHandler which works fine with Java clients. But The requirement is to support non-java clients

Re: Best way to send attachments

2005-01-07 Thread Henry Lu
Just sending an object as parameter including contents of file(s). -Henry >>> [EMAIL PROTECTED] 1/7/2005 11:43:05 AM >>> Hi team, I did lot of research on Axis attachments but I am still not able to figure out the best way to send attachments. We currently use DataHandler whi

Best way to send attachments

2005-01-07 Thread Praveen Peddi
Hi team, I did lot of research on Axis attachments but I am still not able to figure out the best way to send attachments. We currently use DataHandler which works fine with Java clients. But The requirement is to support non-java clients also. And I read that DataHandler does nto work with

RE: DIME attachments ( 120 meg ) using sample

2004-12-24 Thread robert rowntree
. IF , the service in the example can be extended to Open Streams on the uploaded Array of attachments and to create files on the server side, then this is a good start for an upload and file exchange infrastructure to handle MPEG's and large bin files. That would be usefull... Anyone intere

RE: Axis Attachments & Delphi

2004-12-15 Thread Patrick Martin
This guy is very good: down the bottom he mentions attachments. Hope this helps Regards, Patrick http://www.agnisoft.com/white_papers/advancedws/ -Original Message- From: Mark Chaimungkalanont [mailto:[EMAIL PROTECTED] Sent: 14 December 2004 23:39 To: [EMAIL PROTECTED] Subject: Axis

Axis Attachments & Delphi

2004-12-14 Thread Mark Chaimungkalanont
Hi there, I've implemented a web service that deals with attachments as Steve Loughran suggested in "Fear of Attachments" and seemed to have been reiterated in this forum a few times. http://marc.theaimsgroup.com/?l=axis-user&m=104429890926603&w=2 Basically, attachments a

Attachments - JaxRpc and DataHandler for StreamSource

2004-12-12 Thread robert rowntree
im running Axis 1.2 and JDK1.4.2 and have a problem with an RPC WebService using Attachments where the input parm is an Array of DataHandlers. Originally, when all DataHandlers in the input parm's array were created from FileDataSource , it was OK. It was just like all the attachments sa

AxisFault with Attachments

2004-12-10 Thread ANDREW MICONE
An attempt to deserialize an attachment sent from either from Bea WebLogic Integration or .NET generates the following error in my Axis log. It seems to do this with any attachment. This is Axis 1.1, any ideas? Is there a bug fix in later versions?: - Could not convert org.apache.axis.attachmen

Reserialization of attachments on the client-side

2004-12-06 Thread Michael Schuerig
hmentCount() { try { mergeinAttachments(); // force a serialization of the message so that // any attachments will be added soapPart.saveChanges(); return orderedAttachments.size(); } catch (AxisFault e) {

Re: DIME attachments

2004-12-01 Thread Vy Ho
Why don't you get an example (like the attachment example, or numerous examples in this forum) and get it to work with DIME. Next, modify the client to work with your service. Another suggestion is to build an Axis server for your existing client. Then run, and use TCPMonitor to see what is

RE: DIME attachments

2004-11-30 Thread Waqar Sadiq
I guess that was part of the problem.  I increased the limit and now am getting a 400 – Bad Request error.  If I do not send the attachment then my method on the target service is called.  However, with the attachments, I get the Bad Request error before the method on the target web

RE: DIME attachments

2004-11-30 Thread Simon Fell
12:48 PMTo: [EMAIL PROTECTED]Subject: DIME attachments Hi All,   I have a .NET web service that receives large audio files and transcribes them.  This web service is written in C# and is of-course deployed in IIS.  The client is written in Axis and is sending the large audi

DIME attachments

2004-11-30 Thread Waqar Sadiq
Hi All,   I have a .NET web service that receives large audio files and transcribes them.  This web service is written in C# and is of-course deployed in IIS.  The client is written in Axis and is sending the large audio file (My sample is about 5M but they could be much bigger).  However

Re: Attachments - AXIS Server, .NET Client

2004-11-29 Thread Tony Opatha
Hi,   1) What level of support currently there is in AXIS 1.2 for message attachments. E.g., does it support both DIME and and SwA? 2) WS-I has SOAP attachment profile finalized in August 2004. Does AXIS support SOAP attachment profile: http://www.ws-i.org/Profiles/AttachmentsProfile-1.0-2004-08

Re: Attachments - AXIS Server, .NET Client

2004-11-26 Thread John Walker
Do you mean the .NET client side? I have created a similar C# class for that portion. The C# class has the ability to add attachments for a client, and to detach them. As for a Java client, I have only created a method that solves half of the problem. I think, though, after solving the first

RE: attachments

2004-11-25 Thread Mayur Shetye
If you want you can email Prof Madhusudhan Govindraju ([EMAIL PROTECTED]) can provide you with EXACT figures and memory profiles for using attachments . regards Mayur Shetye --- Rajal Shah <[EMAIL PROTECTED]> wrote: > I've done extensive load-testing with Attachments.. > and

Re: Attachments - AXIS Server, .NET Client

2004-11-24 Thread Rahul Tripathi
AXIS to send an attachment > to a requesting .NET client, and for .NET to send an attachment to a > listening AXIS server. With the help of the Steve Loughran article > "Fear of Attachments", and not a little of his code (thanks Steve!), I > was able to get .NET clients to ut

RE: attachments

2004-11-24 Thread Rajal Shah
>From our analysis, Attachments are the only way to do production ready Web Services where you have a moderate to a high payload (> 50K) and you expect a heavy load of simultaneous users.. The single biggest reason, being that the business doc payload is outside the SOAP envelope and th

RE: attachments

2004-11-24 Thread Rajal Shah
The load testing was done about a year ago.. I'm guessing it was release 1.1. -- Rajal -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 24, 2004 9:31 AM To: [EMAIL PROTECTED] Subject: Re: attachments Rajal, Which version are u

Re: attachments

2004-11-24 Thread Davanum Srinivas
Rajal, Which version are u using? thanks, dims On Wed, 24 Nov 2004 09:18:47 -0800, Rajal Shah <[EMAIL PROTECTED]> wrote: > I've done extensive load-testing with Attachments.. and it seems to work > beautifully! The best thing about the Attachments as regards performance is &

RE: attachments

2004-11-24 Thread Rajal Shah
I've done extensive load-testing with Attachments.. and it seems to work beautifully! The best thing about the Attachments as regards performance is that the message is entirely outside the SOAP envelope.. This allows the Axis engine to process the SOAP Headers without having to read in the e

Re: Attachments - AXIS Server, .NET Client

2004-11-24 Thread Eric Prickett
to work in your environment. It took me several painstaking hours to get AXIS to send an attachment to a requesting .NET client, and for .NET to send an attachment to a listening AXIS server. With the help of the Steve Loughran article "Fear of Attachments", and not a little of his co

attachments

2004-11-23 Thread Tim Dev
I am thinking of using attachments, but I have a few questions: 1) Given that the attachment sizes will be from 2KB to maybe 1GB or even more, can Axis deal with them in a performant way? 2) I have the option of retrieving/sending content via a plain HTTP servlet using GET/PUT and I could make

Attachments - AXIS Server, .NET Client

2004-11-23 Thread John Walker
painstaking hours to get AXIS to send an attachment to a requesting .NET client, and for .NET to send an attachment to a listening AXIS server. With the help of the Steve Loughran article "Fear of Attachments", and not a little of his code (thanks Steve!), I was able to get .NET clients to uti

Attachments - AXIS Server, .NET Client

2004-11-23 Thread John Walker
painstaking hours to get AXIS to send an attachment to a requesting .NET client, and for .NET to send an attachment to a listening AXIS server. With the help of the Steve Loughran article "Fear of Attachments", and not a little of his code (thanks Steve!), I was able to get .NET clients to uti

SOAP over JMS with Attachments - How do we specify the targetService?

2004-11-22 Thread Rajal Shah
How do I set the targetService when doing SOAP/JMS with Attachments? I’ve use the call.setTargetEndPointAddress(http://localhost..) – note the http even though I’m using the jms transport but it doesn’t seem to work..   faultString: The AXIS engine could not find a target service to

Attachments example

2004-11-22 Thread john smith
Hi All, I am a Axis Novice...Any help would be appreciated. I am looking for a simple client/server SOAP with Attachements example that returns a MIME file (and filename) from the server upon recieving a filename from the client. I use Axis 1.1 and Tomcat 5. I have looked at the Attachments

Re: having problems with SOAP attachments

2004-11-17 Thread Rafael Gomez
Hi, Sorry if I bother you. I try to use attachments with Axis. I have been reading about SwA, Basic Profile 1.1 etc etc..Then I found this conversation in axis news. I would like to ask you about that example message sent to the service: how did you manage to get such a message with multipart

Re: having problems with SOAP attachments

2004-10-22 Thread Jason Boehle
I figured out what it was. It turned out to have absolutely nothing to do with attachments. Dan's suggestion of checking the logs proved fruitful. >From my schema: And from the message being sent by the client: 27 unsignedInt and int don't match :) Now off to see if I can see t

Re: having problems with SOAP attachments

2004-10-22 Thread Dan Ciarniello
Jason Boehle wrote: You might want to take a look at http://www.mail-archive.com/[EMAIL PROTECTED]/msg08732.html The gist of the article is that you shouldn't bother trying to specify attachments in the WSDL. The client must be told to via some other mechanism than WSDL that attachment

Re: having problems with SOAP attachments

2004-10-22 Thread Jason Boehle
> You might want to take a look at > > http://www.mail-archive.com/[EMAIL PROTECTED]/msg08732.html > > The gist of the article is that you shouldn't bother trying to specify > attachments in the WSDL. The client must be told to via some other > mechanism than WSDL tha

Re: having problems with SOAP attachments

2004-10-22 Thread Dan Ciarniello
Jason Boehle wrote: Anyone? What do I need to add to my WSDL to make this work with Axis 1.1? -Jason You might want to take a look at http://www.mail-archive.com/[EMAIL PROTECTED]/msg08732.html The gist of the article is that you shouldn't bother trying to specify attachments in the

Re: having problems with SOAP attachments

2004-10-22 Thread Jason Boehle
Anyone? What do I need to add to my WSDL to make this work with Axis 1.1? -Jason On Thu, 21 Oct 2004 11:29:01 -0500, Jason Boehle <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm having some problems getting SOAP attachments working in my > webservice, and was wond

having problems with SOAP attachments

2004-10-21 Thread Jason Boehle
Hi all, I'm having some problems getting SOAP attachments working in my webservice, and was wondering Here are the relevant snippets from the WSDL: ~~~ http://schemas.xmlsoap.org/wsdl/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema&quo

RE: WS Attachment (DIME) error when receiving large attachments (The device is not ready)

2004-09-29 Thread Tami Wright
Hi Espen, In another thread I related that I have working Axis code that includes the service/client as used for returning DIME attachments from an Axis web service. This was generating a "substantial-in-size" PDF document that was being returned to the client. If you would like me

WS Attachment (DIME) error when receiving large attachments (The device is not ready)

2004-09-29 Thread Espen Westgaard
Hi, I've created a web service that has been running for some time now (using Axis 1.2beta), accepting attachments using both MIME and DIME as attachment types. However, I've encountered a problem with large attachments (larger than 20 KB). I can parse the SOAP body part of the me

Problem occurs in the attachments samples together with Axis 1.1

2004-09-29 Thread Jia Yiyu
Hi there, I downloaded the Axis1.1 and tried to deploy and test the sample under directory \samples\attachments. But I always get "null point" error message. Then I try to import the "EchoAttachment.java" into JBiulder X 10 and generated as Web service with Axis 1.1 as too

Help on attachments!!

2004-09-20 Thread Shahi, Ashutosh
Hi all, Some help needed on attachments.  I have an input stream which has a soap message along with attachments i.e., basically a MIME message.  How do i read this input stream into a Message (or SOAPMessage). I have seen many examples, where the attachments were created later on, once

Re[2]: Send binary attachments in Axis?

2004-09-01 Thread Daniel Sánchez Gómez
Hi Keith, It's just what i needed, thank you!!! -- Best Regards, Danielmailto:[EMAIL PROTECTED]

RE: Send binary attachments in Axis?

2004-09-01 Thread Keith Tingle
I was able to send binary attachments after reading the 'Fear of Attachments' document. http://www.iseran.com/Steve/papers/fear-of-attachments.pdf Payformance Corporation confidentiality statement *** Notice: T

Send binary attachments in Axis?

2004-09-01 Thread Daniel Sánchez Gómez
Hi, I'm looking for information about how send binary attachments in Axis 1.1 to my WS. I have only found a lot of examples about attachments in SOAP, but I don't if it could be useful to me. -- Thanks, Daniel mailto:[EMAIL PROTECTED]

Can´t set options in DIME-Attachments

2004-08-16 Thread Dorner Thomas
Hello all, I have send this email to axis-developerlist last week, but get no answer. I hope someone can give me a tip to solve this poroblem wiht setOptions in DIME-Attachments!? I have a problem when sending an attachment from AXIS 1.2 Beta 2 to gsoap 2.6.2. The DIME Message is specified

AW: Interoperability problem wit Attachments ?

2004-08-12 Thread Dorner Thomas
27;Betreff: Interoperability problem wit Attachments ? Hi all, hi Dhanush,   Thank you Dhanush for you reply.   After a few days of testing to send a attachment with DIME from AXIS-Service to gsoap-client, we are really down. SO I hope someone can give us a hint.   Fi

Interoperability problem wit Attachments ?

2004-08-12 Thread Dorner Thomas
responseMessage = context.getResponseMessage(); responseMessage.getAttachmentsImpl().addAttachmentPart(ap);   The difference is, that gsoap only know the pratice of sending the attachments by a Data-typ!? If you look at a gsoap SOAP-Trace, when sending a attachment, there is a href:cid:... as

Re: SOAP with Attachments ?

2004-08-10 Thread Dhanush Gopinath
PROTECTED]' Sent: Tuesday, August 10, 2004 8:36 PM Subject: SOAP with Attachments ? Hello all,I like to send an attachment from my Service to the client.So there are several possible ways to go:The first ist to place a attachment in the responseMessage:String fileName =

SOAP with Attachments ?

2004-08-10 Thread Dorner Thomas
Hello all, I like to send an attachment from my Service to the client. So there are several possible ways to go: The first ist to place a attachment in the responseMessage: String fileName = "C:\\WebService\\webapps\\PDMWebConnector\\arrow.gif"; //explicitly set format to DIME, default is MIME

Re: axis does not delete attachments

2004-08-04 Thread Mayur Shetye
I think that you have to write a cron job to do it else It does not delete attachments. mayur --- Praveen Peddi <[EMAIL PROTECTED]> wrote: > Hi all, > I am using Apache Axis 1.1 and I use > attachments.Directory=axis/attachments in > server-sonfig.wsdd file. But I noticed that

axis does not delete attachments

2004-08-04 Thread Praveen Peddi
Hi all, I am using Apache Axis 1.1 and I use attachments.Directory=axis/attachments in server-sonfig.wsdd file. But I noticed that axis is putting the attchments files in this directory and not deleting it. Is there any way to delete these files after the attachments are processed. Otherwise

RE: Is it possible to stream attachments straight to disk?

2004-07-28 Thread Parley, Thunder Jon
--Original Message- From: Courtney, Craig [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 7:13 AM To: [EMAIL PROTECTED] Subject: Is it possible to stream attachments straight to disk? We are looking into wrapping a legacy application with a web service. This application takes a file for

Is it possible to stream attachments straight to disk?

2004-07-28 Thread Courtney, Craig
We are looking into wrapping a legacy application with a web service. This application takes a file for input does transformation on file and creates a new output file. The files we are working on average 25kb to 100kb but can sometimes be as large as 20Mb - 60Mb. There can be several calls i

R: SOAP Response Message - Attachments?

2004-07-26 Thread Ivan Venuti
You can give a look at this tutorial: http://www.mail-archive.com/[EMAIL PROTECTED]/msg08732/Fear_of_Attach ments.pdf -- Ivan > -Messaggio originale- > Da: Keith Tingle [mailto:[EMAIL PROTECTED] > > Is it possible to attach a file to a SOAP response using Axis? >

Re: SOAP Response Message - Attachments?

2004-07-23 Thread Jim Murphy
Yes, checkout the attachments sample. Axis used SwA (SOAP with Attachments). Jim Murphy Mindreef, Inc. Keith Tingle wrote: Is it possible to attach a file to a SOAP response using Axis? *** Notice: This e-mail message

SOAP Response Message - Attachments?

2004-07-23 Thread Keith Tingle
Is it possible to attach a file to a SOAP response using Axis? *** Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged

Re: wsdl2java & attachments

2004-07-16 Thread Davanum Srinivas
Charles, Can you please review the axis cvs and look for wsdl's similar to yours? (start with a known working wsdl?) thanks, dims On Fri, 16 Jul 2004 17:24:16 +0100, Cordingley, Charles <[EMAIL PROTECTED]> wrote: > Hi, > > I am having problems generating the java from a ws

wsdl2java & attachments

2004-07-16 Thread Cordingley, Charles
Hi, I am having problems generating the java from a wsdl (with attachments) using wsdl2java. The details are below. If anyone has any working sample wsdl with attachments that works, I would appreciate seeing it. Alternatively any workarounds would be great too. We have to use soap attachments

2nd Try:: I am using DIME attachments in my axis server to transfer files. Is it expected to work with C# or Axis C++ clients??

2004-06-03 Thread Jayaraman, Venkatesh
Title: Message I am doing DIME attachments using Axis 1.1 Java  framework and doing internal test.   Is this DIME based  java servlets expected to work with C# soap clients ? Is this DIME based java servlets expected to work with Axis C++ clients?   (It does work for Axis 1.1  Java

I am using DIME attachments in my axis server to transfer files

2004-06-03 Thread Jayaraman, Venkatesh
Title: Message It works fine between Axis JAVA service and Axis JAVA client on a server-config.wsdd                                          

AXIS Attachments w/o using Stub

2004-05-28 Thread rommels
code snippets using attachments use the "Stubs" approach. Am I correct in coming to a conclusion that attachments cannot be sent without using a Stub object, because on Stub object we call the _setProperty, addAttachment methods, and there is no alternative to this for non-stub

Handling Attachments in Apache Axis 1.1 in MIME encoded format

2004-05-25 Thread Dhanush Gopinath
Hi All ...   I having troubling you by asking a lot of questions regarding Handling Attachments in Apache Axis 1.1 in MIME encoded format. Thanks to all who help me and finally I have found a way and my web service is up and running and the client could send the attachments in MIME encoded

Sending Attachments - A Null Pointer Exception

2004-05-13 Thread Dhanush Gopinath
javax.xml.soap.SOAPMessage.createAttachmentPart(SOAPMessage.java:243) at EchoAttachment.echoUsingSAAJ(EchoAttachment.java:469) at EchoAttachment.main(EchoAttachment.java:312) What can be the reason of this? Is Attachments supported by WSDL ?  Please help me   Thanks & Regards Dha

RE: Attachments Axis and .NET

2004-05-13 Thread Paulo Soares
o the tool. Best Regards, Paulo Soares > -Original Message- > From: Andrew Premdas [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 13, 2004 10:55 AM > To: [EMAIL PROTECTED] > Subject: RE: Attachments Axis and .NET > > Thanks for this. Having read Steves article I&#x

RE: Attachments Axis and .NET

2004-05-13 Thread Andrew Premdas
Thanks for this. Having read Steves article I'm still puzzled about how you would go about providing a service that delivers a dime attachment (his article focus is on clients sending attachments to services). Do I have to do something different than returning a DataHandler with the attachme

RE: Attachments Axis and .NET

2004-05-12 Thread Anne Thomas Manes
Thanks for the link and the sample code, Paulo. And to clarify my last statement, you use WSE with .NET to enable DIME attachments. (Standard .NET doesn't support attachments.) See also this paper by Steve. http://www.mail-archive.com/[EMAIL PROTECTED]/msg08732/Fear_of_Attach ments.pdf

RE: Attachments Axis and .NET

2004-05-12 Thread Anne Thomas Manes
Thanks for the link and the sample code, Paulo. And to clarify my last statement, you use WSE with .NET to enable DIME attachments. (Standard .NET doesn't support attachments.) See also this paper by Steve. http://www.mail-archive.com/[EMAIL PROTECTED]/msg08732/Fear_of_Attach ments.pdf

RE: Attachments Axis and .NET

2004-05-12 Thread Paulo Soares
ur service from Microsoft.Web.Services.WebServicesClientProtocol. Best Regards, Paulo Soares > -Original Message- > From: Andrew Premdas [mailto:[EMAIL PROTECTED] > Sent: Wednesday, May 12, 2004 5:35 PM > To: [EMAIL PROTECTED] > Subject: RE: Attachments Axis and .NET >

RE: Attachments Axis and .NET

2004-05-12 Thread Andrew Premdas
] Subject: RE: Attachments Axis and .NET DIME attachments work. You need to use the .NET WSE package to use attachments. -Original Message- From: Andrew Premdas [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 12, 2004 10:00 AM To: [EMAIL PROTECTED] Subject: Attachments Axis and .NET Hi, I&#

RE: Attachments Axis and .NET

2004-05-12 Thread Anne Thomas Manes
DIME attachments work. You need to use the .NET WSE package to use attachments. -Original Message- From: Andrew Premdas [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 12, 2004 10:00 AM To: [EMAIL PROTECTED] Subject: Attachments Axis and .NET Hi, I'm an Axis newbie struggling awa

RE: Attachments Axis and .NET

2004-05-12 Thread Anne Thomas Manes
DIME attachments work. You need to use the .NET WSE package to use attachments. -Original Message- From: Andrew Premdas [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 12, 2004 10:00 AM To: [EMAIL PROTECTED] Subject: Attachments Axis and .NET Hi, I'm an Axis newbie struggling awa

Re: Attachments Axis and .NET

2004-05-12 Thread easterguest
:[EMAIL PROTECTED] Sent: 12 May 2004 15:13 To: [EMAIL PROTECTED] Subject: Re: Attachments Axis and .NET Not fully answering your question, but you might want to consider returning only URL's to the image, instead of the image itself. Configure your http server to serve the image url's with

RE: Attachments Axis and .NET

2004-05-12 Thread Andrew Premdas
Thanks for reply, Unfortunately the images are kept in a database, so this is not possible. Andrew -Original Message- From: easterguest [mailto:[EMAIL PROTECTED] Sent: 12 May 2004 15:13 To: [EMAIL PROTECTED] Subject: Re: Attachments Axis and .NET Not fully answering your question

Re: Attachments Axis and .NET

2004-05-12 Thread easterguest
send the images using attachments to both .NET clients and other clients. The images are in a database. Services envisaged getMyPhoto(String myId) returns a gif getPhotos(String[] ids) returns perhaps a zip file of gif's Anyhow I've read that there are problems with attachments from Ax

Attachments Axis and .NET

2004-05-12 Thread Andrew Premdas
Hi, I'm an Axis newbie struggling away not very successfully at the moment :( What I want to do is create a range of services that send images. I was hoping to use Axis as the server, java code as the provider and to be able to send the images using attachments to both .NET clients and

Re: Byte arrays in SOAP attachments.

2004-04-09 Thread Davanum Srinivas
does both foo() and bar() work with 1.2Beta? If either fails, please open a bug report. thanks, dims --- Stuart Barlow <[EMAIL PROTECTED]> wrote: > Is there any news on this one? > > Joshua Scott Emmons wrote: > > This has been discussed here before, most completely at > > http://www.mail-arch

Re: Byte arrays in SOAP attachments.

2004-04-09 Thread Stuart Barlow
Is there any news on this one? Joshua Scott Emmons wrote: This has been discussed here before, most completely at http://www.mail-archive.com/[EMAIL PROTECTED]/msg12463.html but it seems we haven't been able to come to a resolve. Can someone state definitively what the "proper" way to send byte ar

  1   2   3   4   >