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:
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.
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
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
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
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
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
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
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
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
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
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
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("
Hi,
Is there any way to set the SOAPAction Header via
the JAXM ints?
Erich
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
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
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
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
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
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!
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.
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
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
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.
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
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
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??
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
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
: 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
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
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
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
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
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
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:
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
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
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
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
No, although it contains JAXM interfaces and implements some of them.
Glyn
"Ma,
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
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
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
44 matches
Mail list logo