RE: [newbie] Axis implementation of JAXM and SAAJ

2004-02-24 Thread Robert Lowe
I think Axis 1.1 implements SAAJ 1.1 and JWSDP 1.3 implements SAAJ 1.2. I don't believe Axis implements JAXM. Best regards, Robert Lowe http://RMLowe.com/ -Original Message- From: Samuel Cheung [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 12:46 AM To: &#

[newbie] Axis implementation of JAXM and SAAJ

2004-02-23 Thread Samuel Cheung
Title: [newbie] Axis implementation of JAXM and SAAJ Hi, Can someone please tell me which version of JAXM and SAAJ that AXIS is implementing? I compare the API in the saaj.jar in the AXIS distribution with the saaj-api.jar in JWSDP 1.3, they look different. Thanks in advance for any help.

[newbie] Axis 1.1 vs JAXM + SAAJ

2004-02-13 Thread Sam Cheung
Hi, I think both Axis 1.1 and JAXM + SAAJ (in Sun's JWSDP 1.3) implement Simple Object Access Protocol (SOAP) 1.1 with Attachments messaging. So what are the advantages/disadvantages of each package? in terms of performance? functionality? flexibility? Thanks for any fee

RE: JAXM Support

2003-11-18 Thread Nachi
:RE: JAXM Support Please see the following: http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/AxisJAXMRelati onship -Original Message- From: Nachi [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 11:32 PM To: [EMAIL PROTECTED] Subject: JAXM Support Hello

RE: JAXM Support

2003-11-12 Thread Rick Kellogg
Please see the following: http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/AxisJAXMRelati onship -Original Message- From: Nachi [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 11:32 PM To: [EMAIL PROTECTED] Subject: JAXM Support Hello All, I am facing some

RE: JAXM Support

2003-11-12 Thread Rick Kellogg
Please see the following: http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/AxisJAXMRelati onship -Original Message- From: Nachi [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 11:32 PM To: [EMAIL PROTECTED] Subject: JAXM Support Hello All, I am facing some

JAXM Support

2003-11-12 Thread Nachi
Hello All, I am facing some problems while deploying my service in Axis (in weblogic8.1). My implementation is some thing like I should deploy a webservice(message - JAXM) which should consume attachements. I have some doubts. Does Axis support JAXM .. ? I couldn't

Re: JAXM vs. SAAJ clarification

2003-10-30 Thread Stuart Barlow
Apologies for going back to this earlier thread, but... At the end you recommend AXIS over the Sun JWSDP but dont give any specific reasons. Do you have any reasons? Thanks, Stuart. Anne Thomas Manes wrote: JAXM vs. SAAJ clarificationJAXM 1.0 was the first Java API to support SOAP. It originally

Re: JAXM vs. SAAJ clarification

2003-08-14 Thread Anne Thomas Manes
Title: JAXM vs. SAAJ clarification JAXM 1.0 was the first Java API to support SOAP. It originally contained two packages: javax.xml.soap and javax.xml.messaging. The soap package is a low-level SOAP API. It provides access to the SOAP envelope and supports basic SOAP communication. The

JAXM vs. SAAJ clarification

2003-08-05 Thread Volkmann, Mark
Title: JAXM vs. SAAJ clarification Can someone clarify the current state of JAXM and SAAJ for me?  Here's what I thought was going on, but I'm not positive. JAXM predates SAAJ and includes two basic mechanisms for XML-based messaging.  These are point-to-point and provider-b

Re: SOAPAction header and JAXM interfaces

2003-03-13 Thread Erich Oliphant
This is not working at all with AXIS (3-9 drop). The SOAPAction is still blank. I am trying it with the Sun RI now. - Original Message - From: "Sverre Joki" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 13, 2003 1:42 PM Subject: Re: SOAP

Re: SOAPAction header and JAXM interfaces

2003-03-13 Thread Sloan Seaman
t;[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 13, 2003 1:42 PM Subject: Re: SOAPAction header and JAXM interfaces > On Thu, 13 Mar 2003 13:23:59 -0500, Erich Oliphant <[EMAIL PROTECTED]> > wrote: > > > Hi, > > Is there any way to set

Re: SOAPAction header and JAXM interfaces

2003-03-13 Thread Sverre Joki
On Thu, 13 Mar 2003 13:23:59 -0500, Erich Oliphant <[EMAIL PROTECTED]> wrote: Hi, Is there any way to set the SOAPAction Header via the JAXM ints? Erich According to a post i found on forums.java.sun.com: MimeHeaders mimeHeaders = msg.getMimeHeaders(); mimeHeaders.addHeader("

SOAPAction header and JAXM interfaces

2003-03-13 Thread Erich Oliphant
Hi, Is there any way to set the SOAPAction Header via the JAXM ints?   Erich

Re: Antw: invoking sun jaxm refernece implementaion within axis

2003-01-15 Thread Davanum Srinivas
Markus, If you find a problem and want to help us fix it, please open a bug report at bugzilla (http://nagoya.apache.org/bugzilla) with a test case. Thanks, dims --- Markus Frommherz <[EMAIL PROTECTED]> wrote: > Hi aixs-users, > > I tried to use jaxm (partially implemented ) i

Antw: invoking sun jaxm refernece implementaion within axis

2003-01-15 Thread Markus Frommherz
Hi aixs-users, I tried to use jaxm (partially implemented ) in axis and gave up after a while. (in 1.1b, I remember a cast on axis-classes with the same name as a jaxm-interface while receiving). I m interested to do all with jaxm, but in axis. Is there light at the end of the tunnel, or

invoking sun jaxm refernece implementaion within axis

2003-01-15 Thread Ingo Vietense
Hi everybody, is it possible to use the jaxm-ri within axis ? i have the problem that i have to build that kind of messages by hand: http://schemas.xmlsoap.org/soap/envelope/"; xmlns:test="http://blahblub/test";> doSomthing 1123456789ABC 1234567

How can I get JAXM SOAP with Attachement parts?

2002-11-18 Thread ???\(Junhong Song\)
I received a SOAP with attachment message. Attached data is XML document("text/xml" type). But when I try to get a attachment part by using below source code, I got a NullPointerException. Iterator it = message.getAttachments(); AttachmentPart attachment = (AttachmentPart)it.next(); Stream

RE: Basic question: JAX-RPC (what about JAXM?)

2002-10-30 Thread Ron Ridenour
Service Styles - RPC, Document, Wrapped, and Message I believe that Message uses JAXM. Check the users guide for details. Ron -Original Message- From: Anand Hatwalne [mailto:anand_hatwalne@;persistent.co.in] Sent: Wednesday, October 30, 2002 1:29 AM To: [EMAIL PROTECTED] Subject: Basic

Basic question: JAX-RPC (what about JAXM?)

2002-10-30 Thread Anand Hatwalne
Hi, I am revisiting a basic question about Axis. Since Axis is based on JAX-RPC, how is it possible to build message based services in Axis? Wouldn't that require JAXM ? This might be too obvious for experts, but please share the answer with newbies like me. thanks in advance!

JAXM SOAPMessage No Attachments

2002-10-28 Thread Simon Hargreaves
not supported, and a similair snippet has worked using an older version of axis. There are ways to do it by using datahandlers and call objects in RPC mode, but this is JAXM and is manipulating the SOAP message directly, and it's meant to handle attachments as shown but does not.

Question in JAXM, Message Service and Document Service...

2002-10-24 Thread Adolfo de Unanue Tiscareño
Hi everyone! I have a -maybe- simple question... Which is the main difference between Message and Document style? And which is the difference between those and JAXM?Axis support JAXM? Could some one give some code of example? Thanks in advance! Adolfo De Unanue

Re: JAXM failure: Cannot invoke Call with null namespace URI formethod null

2002-10-22 Thread Peter Kelley
Never mind, I'll just use Glue instead On Tue, 2002-10-22 at 14:39, Peter Kelley wrote: > I'm running code that is essentially similar to the JAXM sample included > with AXIS but I am getting the exception below. This is the sort of > exception that I would expect to get whi

JAXM failure: Cannot invoke Call with null namespace URI for methodnull

2002-10-21 Thread Peter Kelley
I'm running code that is essentially similar to the JAXM sample included with AXIS but I am getting the exception below. This is the sort of exception that I would expect to get whilst trying to cheat by using the RPC methods to call document services and forgetting to set the operation name.

Re: Axis and JAXM...

2002-10-18 Thread David Orriss Jr
Title: RE: Axis and JAXM... Original Message From: Volkmann, MarkTo: '[EMAIL PROTECTED]'Sent: Friday, October 18, 2002 5:57 AMSubject: RE: Axis and JAXM...>> -Original Message->> From: David Orriss Jr [mailto:[EMAIL PROTECTED]]>> Sent: Thursday

RE: Axis and JAXM...

2002-10-18 Thread Volkmann, Mark
Title: RE: Axis and JAXM... > -Original Message- > From: David Orriss Jr [mailto:[EMAIL PROTECTED]] > Sent: Thursday, October 17, 2002 11:29 PM > To: [EMAIL PROTECTED] > Subject: Re: Axis and JAXM... > > > On Thursday, October 17, 2002 5:04 PM, > Prabhakar

Re: Axis and JAXM...

2002-10-18 Thread Prabhakar Chaganti
Axis is an implementation of the JAXRPC specification. -prabhakar >>>Is the messaging part of AXIS really just an implementation of the Java API for >>>XML Messaging with some additional features tacked on??

Re: Axis and JAXM...

2002-10-18 Thread David Orriss Jr
On Thursday, October 17, 2002 5:04 PM, Prabhakar Chaganti <[EMAIL PROTECTED]> wrote: > Axis is an implementation of the JAXRPC specification. > > -prabhakar > Is the messaging part of AXIS really just an implementation of the Java API for XML Messaging with some additional features tacke

Axis and JAXM...

2002-10-18 Thread David Orriss Jr
OK.. stupid question time again... Is the messaging part of AXIS really just an implementation of the Java API for XML Messaging with some additional features tacked on?? -- David Orriss Jr. [EMAIL PROTECTED] http://www.davenet.net Want ICQ/AIM/MSN ID's? Just Ask... Linux - Chicken Soup for the U

RE: SOAP envelope - JAXM

2002-09-27 Thread veton . kosovali
: SOAP envelope - JAXM For a new project based on the soap 1.2 (more exactly http://www.w3.org/2001/12/soap-envelope"; )I need to access headers information, so I decided to use JAXM. I first tought that there will be some options to set the correct soapenv attribute but I didn't see h

SOAP envelope - JAXM

2002-09-27 Thread veton . kosovali
For a new project based on the soap 1.2 (more exactly http://www.w3.org/2001/12/soap-envelope"; )I need to access headers information, so I decided to use JAXM. I first tought that there will be some options to set the correct soapenv attribute but I didn't see how to do it. Then

Axis and JAXM

2002-09-26 Thread veton . kosovali
Using JAXM at client side with Axis requires to have javax.servlet.ServletContext in the classpath. Is it possible to avoid this? I'm using the built 2002-09-24. Veton. DISCLAIMER "This e-mail and any attachments thereto may contain information which is confident

Re: JAXM - AXIS

2002-07-11 Thread david.benavides.telvent-rtd.com
Hi! > What does it mean? That if I want to use the JAXM , I've to write > my own > code, for example using the JAVA WEB SERVICE DEVELOPER PACK ? No!!!. You have some possibilities to choose from: You can write your own code (if you have 100 years of life...), you can use the

JAXM - AXIS

2002-07-11 Thread Giacomo Fiorentini
Title: JAXM - AXIS In the FAQ I read (I'm new on SOAP and Axis topics): --- What is the relationship between JAXM and AXIS? JAXM is a specification (NB. not an implementation) of two sets of interfaces: javax.xml.soap and javax.xml.messaging. Recently, the forme

Re: What is the Relationship between JAXM and AXIS?

2002-04-23 Thread Glyn Normington
My approach has been to take numerous small steps, and at each step, refactor some org.apache.axis.message classes to closely match javax.xml.soap and then make the Axis classes implement the corresponding JAXM interfaces. Then the Axis and JAXM interfaces co-exist. I don't think the

RE: What is the Relationship between JAXM and AXIS?

2002-04-23 Thread Volkmann, Mark
Title: RE: What is the Relationship between JAXM and AXIS? I'm not one of the decision makers on this, but I can certainly tell you my preference. I'd prefer to see the related Axis classes become implementations of the JAXM interfaces. > -Original Message- > From:

Re: What is the Relationship between JAXM and AXIS?

2002-04-23 Thread L Rutker
Thanks. The JAXM interfaces seem to overlap and provide the same interfaces that the Axis classes do. Will these Axis classes become implementations of JAXM? Will they coexist? Will the Axis interfaces disappear? I guess my expectation is that something like JAXP will unify all Java

Re: What is the Relationship between JAXM and AXIS?

2002-04-23 Thread Glyn Normington
JAXM is a specification (NB. not an implementation) of two sets of interfaces: javax.xml.soap and javax.xml.messaging. Axis currently implements *some* of the javax.xml.soap interfaces, although these are not mentioned in the list of published interfaces in the Axis Users Guide as the job is

What is the Relationship between JAXM and AXIS?

2002-04-22 Thread L Rutker
Hi, What is the Relationship between JAXM and AXIS? Does AXIS use JAXM? etc etc Lou _ Send and receive Hotmail on your mobile device: http://mobile.msn.com

Help using JWSDP-JAXM

2002-04-16 Thread Monika Solanki
Hi !!! I would like to know if anyone has tried using the JAXM from JWSDP. I have got stuck up with a serious problem,. and would like some help at the earliest. It would be great if you could let me know I can directly correspond, further with you rather than sending mails to the whole

Re: JAXM

2002-04-08 Thread Glyn Normington
No, although it contains JAXM interfaces and implements some of them. Glyn "Ma,

JAXM

2002-04-03 Thread Ma, June
Title: JAXM Hi AXIS team, I attended JAVAONE last week, seems like SUN is pushing hard on JAXM. Does AXIS comply with JAXM. I know it complies with JAX-RPC. Thanks, -June

JAXM and Axis

2002-03-13 Thread Bruce Bleasdale
This may be a well know question/answer, but the FAQ is currently empty. :) How does Axis fit with Sun's JAXM and JAX-RPC APIs? From what I can see, now they really don't fit together currently (ie there are no implementing classes for the JAX* api's), however Axis coul

JAXM & Axis

2002-02-22 Thread Rajan Gupta
How will JAXM & Axis play together? Will Axis adopt the JAXM API for send & recv messsages/responses? Thanks __ Do You Yahoo!? Yahoo! Sports - Coverage of the 2002 Olympic Games http://sports.yahoo.com