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 whilst trying to cheat by
Hi guys,
I've installed Axis 1.0 from xml-axis-10.tar.gz distribution.
I ran validate from localhost:8080/axis, and core
classes validated nicely.
Problems occured when i tried to run some sample
tests,
ie TestClient and Calculator.java
* For TestClient, it doesn't work maybe
because of
Fixed "connection refused" error by using
>java org.apache.axis.client.AdminClient -llocal://AdminService (list or deploy )
instead of
>java org.apache.axis.client.AdminClient (list or deploy)
(see http://xml.apache.org/mail/axis-user/200112 )
-Rey
--
__
Hello,
I'm trying to use the Message Handler on the client side to modify the SOAP
header before it is sent to the server. When I run with no client side
configuration, my client can invoke the jax rpc web service just fine. When
I run with a client side configuration (set with -Daxis.ClientConf
On Tuesday, October 22, 2002 2:05 PM [GMT+0100=CET],
Tom Jordahl <[EMAIL PROTECTED]> wrote:
> Not really in the scope of Axis, so no plans to implement this spec.
> Are you volunteering? :-)
>
> --
> Tom Jordahl
> Macromedia Server Development
If I only had time, Tom... ;)
--
David Orriss Jr.
Hi Tom,
Can you tell exactly what was added?
What if I have my custom exception thrown? How does it know what to put
in DETAIL section?
regards,
Ruslan
-Original Message-
From: tomj
Sent: October 18, 2002 1:16 PM
To: Ruslan Zenin; butek; chappell; dug; igors; nakamury; tomj
Subject: RE:
Hi All:
This is my first email to this users group. I believe the best way to learn
a technology is by implementing it. Therefore, I am looking for a partner
and an interesting project suggestion which I can implement using Axis. This
way I will hands on experience with web services
Anyone inter
Thanks for your info. I know that I need to implement handlers. I was
confused by the presence of some classes like JAXRPCHandlers which doesn't
implement the
jax-rpc handler interface.
Just one more question. Chapter 12 you are refering to is from which book?
regards,
Haneef
-Original Messa
I would like to store the deployment and undeployment scripts in a
database and use the admin client to update the deployment state from
the server. I found that I could call the admin client from the server
using the -llocal:// switch, but the change doesn't take effect until
I restart the serve
I am deploying the fibonacci service example on
http://www.onjava.com/pub/a/onjava/2002/06/05/axis.html?page=2
Can anyone assist with the error I get when I deploy with AdminClient ?
> java -verbose org.apache.axis.client.AdminClient deploy.wsdd
[Loaded org.apache.axis.utils.DOM2Writer]
- Exc
Hi Tim,
Most document/literal services (at least the .NET ones) are actually taking
a list of method parameters and wrapping them in a single document. If this
is the type you're dealing with, Axis takes care of the details for you
pretty much automatically - you just call the method in the genera
My guess is that it has to do with the standard naming convention of
having attributes start with a lower-case letter. You may want to try
changing your objects to start with lower case and see if you still have
the problem.
-Brian
Lasker, Kory wrote:
Can anyone give me a good explanation of
Not really in the scope of Axis, so no plans to implement this spec.
Are you volunteering? :-)
--
Tom Jordahl
Macromedia Server Development
-Original Message-
From: David Orriss Jr [mailto:dave@;davenet.net]
Sent: Tuesday, October 22, 2002 4:18 PM
To: [EMAIL PROTECTED]
Subject: Re: AXI
Could be bugs in the name mapping, but note that JAX-RPC has specific rules as to how
names in WSDL are mapped to Java names, and Axis tries to follow these rules. At
various points in development, this has gotten LOTS of attention. :-)
If a name is mangled, however, the Meta-data (particularl
Hello All,
I'm new to Axis and I need to write a client that connects to a web service
that handles messaging using the document/literal mechanism. I found a lot
of examples using rpc. I was wondering if anyone could point me to some
examples using the document/literal mechanism?
Thanks,
Tim
**
Check out the tests in
xml-axis/test/wsdl/jaxrpchander
The Handler interface is something *you* implement in your class.
You then register your class with the Axis runtime.
See JAX-RPC chapter 12 for details, specifically section 12.3.1
for the Handler configuration APIs.
--
Tom Jordahl
Macr
On Tuesday, October 22, 2002 9:19 AM [GMT+0100=CET],
Tom Jordahl <[EMAIL PROTECTED]> wrote:
>
> Axis does NOT implement all/most of JAXM.
>
Any idea if/when it will??
--
David Orriss Jr.
[EMAIL PROTECTED]
http://www.davenet.net
Want ICQ/AIM/MSN ID's? Just Ask...
Linux - Chicken Soup for the
Can anyone give me a good explanation of why my SOAP-encoded RPC responses
do not always obey my mixed case object name and attributes.
For example, if I get a simple response back that includes a "StreetAddress"
object, why does the SOAP response look like this:
...
http://schemas.xmlsoap.org/s
On Mon, 2002-10-21 at 22:26, Matthias Brunner wrote:
> First of all, set scope to "session" in your deployment descriptor
> (WSDD file).
I've done that, but still nothing happens.
Server returns:
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Connection: close
Date: Tue, 22 Oct 2002 19:5
There's probably a better way, but what I did was catch
java.rmi.RemoteException for the Call.invoke() call and then check to
see if a response message is present. If it is, I extract it's contents.
-Brian
Max Carlson wrote:
What's the best way to bypass deserialization in the AXIS client and
Hi!,
I am getting following error while deploying the web services.
- Processing file deploy.wsdd
- Exception:
AxisFault
faultCode: {http://xml.apache.org/axis/}HTTP
faultString: (302)Moved Temporarily
faultActor: null
faultDetail:
null: return code: 302
Apache Tom
The solution to this problem was tied up in JSR101 mapping rules. I needed
a properly formed setStreetAddress(StreetAddress[] addresses) method in my
java object to be fully compliant with the JavaBeans spec.
Hope this helps someone out.
Kory Lasker
-Original Message-
From: Lasker, Kory
I've been trying for quite a while to get messaging with attachments working
with axis release 1.0. I seem to get so close only to be thwarted in the
end. My current configuration (based on much research in the various pieces
of axis documentation, samples, mailing list archives, and sourc code)
On Mon, 2002-10-21 at 22:26, Matthias Brunner wrote:
> First of all, set scope to "session" in your deployment descriptor
> (WSDD file).
> And look at the session example in the samples dir.
Thank you!
And is it possible to work with sessions from *.jws files?
--
Timofey Korolyov <[EMAIL PROTE
Hi,
Can you please let me know this? I don't find any handlers implementation
for javax.xml.rpc.handlers. The handlers given their seems to implement
org.apache.axis.handlers interface. javax.xml.rpc.handlers are part of
JAX-RPC
regards,
Haneef
-Original Message-
From: Tom Jordahl [mail
Check to make sure you have the Axis 1.0 jar files, including wsdl4j.jar.
--
Tom Jordahl
Macromedia Server Development
-Original Message-
From: Michael Roytman [mailto:michael.roytman@;ualloyalty.com]
Sent: Monday, October 21, 2002 3:25 PM
To: '[EMAIL PROTECTED]'
Subject: WSDL2Java NoS
Axis supports JAX-RPC.
We have passed all of the Sun "TCK" conformance tests for both JAX-RPC and SAAJ.
Axis does NOT implement all/most of JAXM.
--
Tom Jordahl
Macromedia Server Development
-Original Message-
From: David Orriss Jr [mailto:dave@;davenet.net]
Sent: Monday, October 21
You're my angels It finally works!! Thank you all for helping me!!!
The problem was the two jar files in
/home/loke/ejoemma/tomcat/webapps/axis/WEB-INF/lib/xercesImpl.jar:
/home/loke/ejoemma/tomcat/webapps/axis/WEB-INF/lib/xmlParserAPIs.jar :
When I removed these and used
/home/loke/ejoemma
On Tuesday 22 October 2002 09:26, [EMAIL PROTECTED] wrote:
> Hi Matthias,
> I have put Axis on ATG, but the sessions does not get killed
> even though I've set it to "Request" scope. I had to invalidate
> the session from the AxisServlet to kill the session, which I
> definitely don't want(do
Ok, it works now, but not with this solution. I explain here how I did :
- I installed Tomcat 4.1.12
- I installed Axis 1.0, like it's explained here :
http://cvs.apache.org/viewcvs.cgi/~checkout~/xml-axis/java/docs/install.html
BUT :
- I didn't install any new XML Parser (Xerces, Crimson...)
Some
versions of Tomcat cannot load classes from jar files in
axis/WEB-INF/lib if they start with javax.
This
is the case for jaxrpc.jar, saaj.jar, wsdl4j.jar. These files must be in
tomcat/common/lib
But
this is not the case with recent versions of Tomcat (4.1.10 for
example).
All
jar
Could you precisely tell us which files ?? (and which should be in the classpath
?)
Thanks!
Bohn Volker wrote:
Yes, you're right Eric!
Some files are supposed to go in /tomcat/common/lib
an some in your /webapps/[...]/lib
--
Von: Jung, Eric (Contractor)[SMTP:[EMAIL PROT
Hi Matthias,
I have put Axis on ATG, but the sessions does not get killed even
though I've set it to "Request" scope. I had to invalidate the session from
the AxisServlet to kill the session, which I definitely don't want(don't
want to touch axis source code). Is there a way to have a session
33 matches
Mail list logo