Axis web service send and receiving DIME attachments

2005-01-28 Thread Brammer, Steve
to 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
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 trivial

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 how to handle attachments (client

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 SendMessagePort from some

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

RE: Extracting attachments from messaging service calls

2005-01-12 Thread Jason Judt
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 an attachment to a web service using Axis 1.1

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 AttachmentsPart nor

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

RE: Best way to send attachments

2005-01-07 Thread Tardif, Sebastien
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 also. And I

RE: Best way to send attachments

2005-01-07 Thread Patrick Martin
]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[], or Image

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 Henry Lu
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 from java code

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 before

RE: Best way to send attachments

2005-01-07 Thread Flores, Raul
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 sending

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 BLIS Webmaster (Patrick Houbaux)
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 attachements to .NET

RE: Best way to send attachments

2005-01-07 Thread ANDREW MICONE
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: Best way to send attachments

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

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 production: complexType name=NodeDocument sequence element name=name nillable=true type=xsd:string

Re: Best way to send attachments

2005-01-07 Thread Praveen Peddi
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. Well

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 send attachments

RE: Best way to send attachments

2005-01-07 Thread ANDREW MICONE
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 of a WSDL snippet that is consumed by both .NET and Axis

Re: Best way to send attachments

2005-01-07 Thread Praveen Peddi
05 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/05 03:10PM Nothing in that wsdl fragment

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: public static byte

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 me, so I don't have any code

Re: Best way to send attachments

2005-01-07 Thread BLIS Webmaster (Patrick Houbaux)
): 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.Message reqMsg = msgContext.getRequestMessage

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) { Object content = null

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-userm=104429890926603w=2 Basically, attachments are not included as part

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 samples

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

Reserialization of attachments on the client-side

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

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

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: DIME attachments

2004-11-30 Thread Simon Fell
: [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 audio file (My

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 service

Re: Attachments - AXIS Server, .NET Client

2004-11-29 Thread Tony Opatha
Hi, 1) What level of support currently there is inAXIS 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-24

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 it seems to work

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

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 entire

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 that the message

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 using

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 thus the SOAP

Re: Attachments - AXIS Server, .NET Client

2004-11-24 Thread Rahul Tripathi
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 utilize files stored on my AXIS web server. Please forgive the Exception

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 utilize files

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 utilize files

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

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? Ive use the call.setTargetEndPointAddress(http://localhost..) note the http even though Im using the jms transport but it doesnt seem to work.. faultString: The AXIS engine could not find a target service to invoke

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
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 wondering Here are the relevant

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 WSDL

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 that attachments are required. From

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 attachments

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: xsd:element name=JobID type=xsd:int/ And from the message being sent by the client: JobID xsi:type=xsd:unsignedInt27/JobID

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: ~~~ definitions name=ActuateAPI xmlns=http://schemas.xmlsoap.org/wsdl/; xmlns:xsd=http://www.w3.org/2001/XMLSchema

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 toolkit. I developed my own

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 message just

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 to send

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

Send binary attachments in Axis?

2004-09-01 Thread Daniel Snchez Gmez
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]

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: This e-mail

Re[2]: Send binary attachments in Axis?

2004-09-01 Thread Daniel Snchez Gmez
Hi Keith, It's just what i needed, thank you!!! -- Best Regards, Danielmailto:[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

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!? Ifyou look at a gsoap SOAP-Trace, when sending a attachment, there is a href:cid:... as attribute

AW: Interoperability problem wit Attachments ?

2004-08-12 Thread Dorner Thomas
: 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. First of all, we

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: SOAP with Attachments ?

2004-08-10 Thread Dhanush Gopinath
t: 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 = "C:\\WebS

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: 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 is putting

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

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

2004-07-28 Thread Parley, Thunder Jon
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 input does

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?

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: 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

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

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 wsdl (with attachments

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 JAVAclient on a server-config.wsdd service name="DimeGetFileService" provider="java:RPC" requestFlow handler type="soapmonitor"/ /requestFlow responseFlow handler type="soapmonitor"/ /responseFlow parameter

AXIS Attachments w/o using Stub

2004-05-28 Thread rommels
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 invokation? Thanks

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 upand running and the client could send the attachments in MIME encoded

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 attachment

RE: Attachments Axis and .NET

2004-05-13 Thread Paulo Soares
to 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'm still puzzled about how you would

Sending Attachments - A Null Pointer Exception

2004-05-13 Thread Dhanush Gopinath
) at 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 Dhanush

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 other

Re: Attachments Axis and .NET

2004-05-12 Thread easterguest
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 Axis to .NET, is this still

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
:[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 or without

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 away

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 away

RE: Attachments Axis and .NET

2004-05-12 Thread 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 Anne, Thanks for reply, could you expand a little on it, or add a pointer to something explaining what using

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 Anne

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 Anne

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

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

Newbie question re attachments sample WSDL

2004-04-05 Thread p2p
Hi, I've seen this question posted a few times, but I don't recall seeing an answer... does anyone know why, when one tries to view the echoattachment sample wsdl, provided with Axis, the following error is returned: Fault - ; nested exception is: WSDLException: faultCode=OTHER_ERROR: Can't find

Handling to large attachments (full server disk)

2004-03-30 Thread Tom Vasset
Hi, I'm developing a web service (Platform: Linux-Jetty-Axis 1.1) on a rather limited server (in terms of disk size). It's a possibility that attachments sent to the server will fill up the disk. When I tested this with a large attachment file, I got the stack trace below on the client side. My

SOAP Attachments 1.1 vs 1.2

2004-03-30 Thread Gareth Western
Hiya, Could someone point out the differences between the specifications for SOAP Attachments v1.1 and 1.2? Thanks! ~Gareth

Re: Can someone help a newbie help with attachments?

2004-03-22 Thread James CE Johnson
Have you had a look at the Slide project? No, I haven't heard of it. Googling for axis +slide turns up some interesting things but not, I think, what you're talking about. Do you have a URL handy? Regards Jim. Thanks! James

Re: Can someone help a newbie help with attachments?

2004-03-22 Thread Jim Collins
Here is the URL for the Slide project: http://jakarta.apache.org/slide/index.html Regards Jim. - Original Message - From: James CE Johnson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 22, 2004 2:26 PM Subject: Re: Can someone help a newbie help with attachments? Have

Re: Can someone help a newbie help with attachments?

2004-03-21 Thread Jim Collins
Have you had a look at the Slide project? Regards Jim. - Original Message - From: James CE Johnson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 18, 2004 5:21 PM Subject: Can someone help a newbie help with attachments? Hi, We're working on a file archive service

  1   2   3   4   >