Create Service with attachments

2003-09-08 Thread henriet
Good morning, I'm working on multimedia transmission using SOAP, and I would like to create a SOAP service like this : the client send a SOAP message to the server with a file in a DIME-attachment. the SOAP service in server side extracts this file, makes some changes in the received file,

Valid signature for AXIS Message-style services

2003-09-08 Thread Sateesh Ayyagari
Hi, I would like to know whether the following method : public void method(SOAPEnvelope req, SOAPEnvelope resp); is still a valid signature for message-based services in AXIS. It gives me an error while deploying. I used the javax.xml.soap.SOAPEnvelope. Am I supposed to use a different class

Virus attention

2003-09-08 Thread redpineseed
someone is sending out virues x removed the attachment: movie0045.pif. The attachment was infected with the [EMAIL PROTECTED] virus. rpd - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 08, 2003 2:39 PM Subject: Thank you! Please see t

Re: Schema checking problem about xsi:nil="true" & minOccurs="0"

2003-09-08 Thread Jeff Greif
I believe that Axis is generating an incorrect soap message. A bug report should be submitted if none exists for this problem already. The elements sort, locale and price are not explicitly nillable in the schema. They should be omitted from the message (as minOccurs="0" allows) in order to indi

Re: Exception occurs when deploying service (Win32)

2003-09-08 Thread Dimuthu Leelarathne
Matt Hatcher, I had the same problem once. It was caused because Axis could not find the wsdd file. Make sure that the wsdd server-config file is in the webInf folder. Regards, Dimuthu. - Original Message - From: "Hatcher Matthew" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Mond

[ATTN] Affected threds (Virus Warning)

2003-09-08 Thread Toshiyuki Kimura
It seems that the following treads contain a couple of virus. Don't open the attached file, and remove it immediately. [Axis-dev] Subject: Thank you! http://marc.theaimsgroup.com/?l=axis-dev&m=106305639432083&w=2 Subject: Re: Details http://marc.theaimsgroup.com/?l=axis-dev&m=106307032512521&w=

multiRef & Schema Checking

2003-09-08 Thread Cheng Po-wen
Hi, all: I try to check the validation of the following message which is generated from the Axis client(WSDL2Java,.) : http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins

RE: Schema checking problem about xsi:nil="true" & minOccurs="0"

2003-09-08 Thread Cory Wilkerson
Most likely related to the following -- Axis makes assumptions that minOccurs unequivocally means that it can put xsi:nil on the wire: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20109 -Original Message- From: Cheng Po-wen [mailto:[EMAIL PROTECTED] Sent: Monday, September 08, 2003

Schema checking problem about xsi:nil="true" & minOccurs="0"

2003-09-08 Thread Cheng Po-wen
Hi, all: I tried check the validation of request sent to Amazon, the following is the request that Axis client sent to Amazon: (I've turned off the multiref and send_xsi, and added xsi:type="ns1:KeywordRequest" to KeywordSearchRequest element) http://schemas.xmlsoap.org/soap/envelope/";

RE: message-style frustrations (this time in plain text)

2003-09-08 Thread PILLAI,RANJITH (HP-PaloAlto,ex1)
Title: RE: message-style frustrations (this time in plain text) Hi Volkmann,    Sorry I forgot to mention an important point ...  In your document ( which you are passing to the service method) for the root element add namespace. That may help you to remove call to setOpertionName met

RE: message-style frustrations (this time in plain text)

2003-09-08 Thread PILLAI,RANJITH (HP-PaloAlto,ex1)
Title: RE: message-style frustrations (this time in plain text) Hi Volkmann,  I can answer one question..  As I mentioned earlier you cannot embed an XML document within another XML document  Since your SOAPMessage itself is a XML document, you cannot embed your document inside another XM

Re: need help with SAXException: Deserializing parameter

2003-09-08 Thread Dimuthu Leelarathne
Hi Scott,   tag come before the service terminating tag i.e.   Like this;      ..     .           Regards, Dimuthu.   - Original Message - From: "scott" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 08, 2003 2:13 PM Subject: need hel

RE: message-style frustrations (this time in plain text)

2003-09-08 Thread Volkmann, Mark
Title: RE: message-style frustrations (this time in plain text) Based on the suggestions I've received, I now have a working example of passing a DOM Document to a service and getting one back in return.  I've included the code below (with comments and some whitespace removed) for those intere

FW: a consensus on xsd/soapenc int?

2003-09-08 Thread Cory Wilkerson
Looks like someone already noticed this and there's some movement on it. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20109 -Original Message- From: Cory Wilkerson Sent: Monday, September 08, 2003 9:41 AM To: '[EMAIL PROTECTED]' Subject: a consensus on xsd/soapenc int? All, Assu

RE: message-style frustrations (this time in plain text)

2003-09-08 Thread PILLAI,RANJITH (HP-PaloAlto,ex1)
Title: message-style frustrations (this time in plain text) Hi,   Thanks!  That helps, but I can't say I like it. I think that Axis should recognize that you've given it a Document and wrap it in a SOAPBodyElement by itself if that's what it needs.   In your code you don't us

RE: message-style frustrations (this time in plain text)

2003-09-08 Thread Volkmann, Mark
Title: message-style frustrations (this time in plain text) Thanks!  That helps, but I can't say I like it. I think that Axis should recognize that you've given it a Document and wrap it in a SOAPBodyElement by itself if that's what it needs.   In your code you don't use call.setOperationNam

What kind of transport protocol supports axis?

2003-09-08 Thread Piero Campanelli
Hi, what kind of transport protocol axis supports? Supporting SOAP 1.2 I figure out that AXIS supports SOAP over HTTP and SOAP over SMTP ? Is it correct? Question 2) If I get a WSDL where SOAP messages are bounded to another transport protocol, which is not supported by AXIS, I cannot create clie

RE: message-style frustrations (this time in plain text)

2003-09-08 Thread PILLAI,RANJITH (HP-PaloAlto,ex1)
Title: message-style frustrations (this time in plain text) Hi Volkmann,     Regarding the third method signature (passing document), this is how its works for me...   Service  service = new Service();         Call call    = (Call) service.createCall();         String end

Re: message-style frustrations (this time in plain text)

2003-09-08 Thread remko de knikker
Take a  look at http://biryani.med.yale.edu:8081/axis/index.jsp?which=6 there is some code for each service available. Volkmann, Mark wrote: message-style frustrations (this time in plain text) I'm trying to learn how to use message-style services in Axis.  The document

Exception occurs when deploying service (Win32)

2003-09-08 Thread Hatcher Matthew
Hi, I'm running Axis 1.1 under Tomcat 4.1 (Windows 2000). I'm having difficulty deploying any services - all I get is a rather unhelpful exception message. happyaxis.jsp is fine. > java org.apache.axis.client.AdminClient deploy.wsdd Processing file deploy.wsdd Exception:: (0)Null Any ideas wha

a consensus on xsd/soapenc int?

2003-09-08 Thread Cory Wilkerson
All, Assume xsd = http://www.w3.org/2001/XMLSchema Assume soapenc = http://schemas.xmlsoap.org/soap/encoding I don't think we ever came to a conclusion on whether or not Axis is behaving improperly when it qualifies ints in the "soapenc" namespace when generating stubs from WSDL (rpc/encoded) t

message-style frustrations (this time in plain text)

2003-09-08 Thread Volkmann, Mark
Title: message-style frustrations (this time in plain text) I'm trying to learn how to use message-style services in Axis.  The documentation says that a message-style service can have any of the following method signatures. public Element [] method(Element [] bodies); public SOAPBodyElement

message-style frustrations

2003-09-08 Thread Volkmann, Mark
Title: message-style frustrations I'm trying to learn how to use message-style services in Axis.  The documentation says that a message-style service can have any of the following method signatures. public Element [] method(Element [] bodies); public SOAPBodyElement [] method (SOAPBodyElement

RE: Where can I download latest version of axis

2003-09-08 Thread Davanum Srinivas
The nightly builds are failing because of a problem with ANT latest sources. Once that gets fixed, the binaries will get created. (http://marc.theaimsgroup.com/?t=10630112151&r=1&w=2) -- dims --- "Volkmann, Mark" <[EMAIL PROTECTED]> wrote: > I think he wants a binary of the latest drop. I

RE: Where can I download latest version of axis

2003-09-08 Thread Volkmann, Mark
Title: RE: Where can I download latest version of axis I think he wants a binary of the latest drop.  I can't find it either, only a source zip. -Original Message- From: Alexander Berry,Jr. [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 07, 2003 2:30 PM To: [EMAIL PROTECTED] Subj

Re: xmlns=" " in the doc\literal SOAP message

2003-09-08 Thread Dimuthu Leelarathne
  It looks like a lot of discussion has been going on while I am away.   It is news to me that this bug has been around for rpc\lit case. So I checked out with wrap\lit case and it is not there, i.e. wrap\literal does not send any xmlns="". I thought of just mentioning it to the list.   Dim

need help with SAXException: Deserializing parameter

2003-09-08 Thread scott
Trying to get my WSDD service going, using BidBuy as an example. To pass data between client/server I created a "User" class that holds some data. Now, when sending data from client to server, this is what I see: POST /axis/services/ValidateFields HTTP/1.0 Content-Type: text/xml; charset=utf-8 Ac

Marshall WSDL generated class

2003-09-08 Thread Kam Cheung
Title: Message I am a total newbie, so excuse me for this dumb question. How can I marshall an instance of a WSDL generated class into the original XML format? I was thinking that the getSerializer is the way to go, but I couldn't figure out how it work. Right now, I am using castor to marsh

serializer

2003-09-08 Thread lucie wermer
Hi all, Is it possible to find a serializer for the class javax.naming.directory.BasicAttributes or it is something that I must do myself? Or is it impossible to have this type of objects as returns of web services ? Thanks a lot Lucie __