RE: Object lists in axis

2004-10-13 Thread Pridemore, Russell (MAN-Corporate)
I return lists of objects like this:                           />     />                                 Hope this helps, Russ -Original Message-From: Suzy Fynes [mailto:[EMAIL PROTECTED]Sent: Wednesday, October 13

RE: SAP interop problem with RPC

2004-09-29 Thread Pridemore, Russell (MAN-Corporate)
ptember 29, 2004 5:56 PM To: [EMAIL PROTECTED] Subject: RE: SAP interop problem with RPC The encoding style attribute is required when using RPC/encoded. Have you tried generating a stub from the WSDL rather than using the Call interface? Anne -Original Message----- From: Pridemore, Ru

RE: SAP interop problem with RPC

2004-09-29 Thread Pridemore, Russell (MAN-Corporate)
ception is actually coming from WebMethods. I supposed you are calling WebMethods Web Services that in turn calling SAP backend system. Do you have the WSDL file? Regards! -Original Message----- From: Pridemore, Russell (MAN-Corporate) [mailto:[EMAIL PROTECTED] Sent: Wednesday, Sep 29, 2004 1

SAP interop problem with RPC

2004-09-29 Thread Pridemore, Russell (MAN-Corporate)
Hello all. I have implemented & tested an application using Axis 1.1. It is fairly simple, only requiring a request/response pattern using simple types. However, now I'm trying to integrate with an SAP backend system and I'm running into issues. (SAP is the web service and Axis is the client).

RE: Signed SOAP messages

2004-06-29 Thread Pridemore, Russell (MAN-Corporate)
With SSL, you can be reasonably sure that no one can listen to the conversation, but if the messages are signed as well, you can be sure of the identity of whom you are speaking with.  SSL alone does not do this.   Russ -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL P

RE: Posting XML to AxisServlet

2004-06-14 Thread Pridemore, Russell (MAN-Corporate)
I have successfully posted to Axis, using the following snippet: StringBuffer buf; // populate buf here... URL url = new URL(location); HttpURLConnection con = (HttpURLConnection) url.openConnection(); con.setRequestMethod("POST"); con.setDoOutput(true); con.setRequestProperty("Conte

schema issue

2004-06-11 Thread Pridemore, Russell (MAN-Corporate)
Hello all, I have added the following schema def to the types section of my wsdl, then run wsdl2java. Axis generated BuyerType.java, but the code appears pretty much useless. There are no getters or setters and no member variables to hold the string. Is this a problem because the class is unable

RE: How to Serialize/Deserialize to/from file(For testing)

2004-05-24 Thread Pridemore, Russell (MAN-Corporate)
Should be fairly straightforward to modify the tcpmon code included with axis to provide the caching behavior for when the host is unreachable... Russ -Original Message- From: aa bb [mailto:[EMAIL PROTECTED] Sent: Monday, May 24, 2004 4:13 PM To: [EMAIL PROTECTED] Subject: How to Serializ

RE: Axis Client - Basic Question

2004-05-14 Thread Pridemore, Russell (MAN-Corporate)
spath? I'm using Java. Jan -Original Message----- From: Pridemore, Russell (MAN-Corporate) [mailto:[EMAIL PROTECTED] Sent: Friday, May 14, 2004 5:20 PM To: '[EMAIL PROTECTED]' Subject: RE: Axis Client - Basic Question A client app will require the axis libs at runtime, but

RE: Axis Client - Basic Question

2004-05-14 Thread Pridemore, Russell (MAN-Corporate)
A client app will require the axis libs at runtime, but not, of course, the axis servlet. Or you could use something completely different for the client and only write the service using axis. Your choice. Russ -Original Message- From: Miller, Janet [mailto:[EMAIL PROTECTED] Sent: Friday

RE: Project from hell?

2004-05-14 Thread Pridemore, Russell (MAN-Corporate)
Not at all. Let me describe my project: I'm taking an existing application and replacing the current DAO layer to use web-services. This DAO layer is used by our web front-end (yes, using Struts), a standalone Java application, and a web-start application. The same code is working just fine in

RE: Best Practices?

2004-05-13 Thread Pridemore, Russell (MAN-Corporate)
Title: RE: Best Practices? I've seen this question come up before on this list, but don't quite follow the reasoning. AFAIK, Mozilla is the only browser that can natively consume SOAP, and then only with fairly recent builds and there are several restrictions.  Web services, in general, se

RE: Abort a axis handler chain

2004-05-12 Thread Pridemore, Russell (MAN-Corporate)
It sounds like what you want is HTTP DIGEST authentication, which supplies a client certificate outside the realm of SOAP. Or am I lost (again)? Have you looked into it? Doing so would not simply drop the connection, it would return a standard HTTP 401 (unauthorized), however... Russ -Origi

RE: Best Practices?

2004-05-12 Thread Pridemore, Russell (MAN-Corporate)
e was supposed to do, the arguments, etc before coding it during their initial development process. Jan -Original Message- From: Pridemore, Russell (MAN-Corporate) [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 12, 2004 1:39 PM To: '[EMAIL PROTECTED]' Subject: RE: Best Practice

RE: Best Practices?

2004-05-12 Thread Pridemore, Russell (MAN-Corporate)
I'm fairly new to web-services (and axis), but am a seasoned programmer. Comparing web-services to other technologies, CORBA for instance, you always started with the interface definition, never the code. I personally don't find WSDL to be all that difficult to work with, even by hand, and there a

RE: "Unique" classpath problem

2004-04-26 Thread Pridemore, Russell (MAN-Corporate)
To find a class in a jar, try "unzip -l whatever.jar | grep AdminClient". In this case, it resides in axis.jar, as expected. For setting environment variables in your .bashrc, it is: export FOO=BAR (no "set" required). Then, as someone else suggested: "source .bashrc" from your shell and you shou

RE: Port Problem

2004-04-23 Thread Pridemore, Russell (MAN-Corporate)
Can you view http://localhost:8050/axis/servlet/AxisServlet with your web browser? (Is it just your web services client code that isn't working?)  If so, check the URL that is passed to your BindingStub.  (Just checking the most obvious things first.)   Russ -Original Message-Fr

RE: Port Problem

2004-04-22 Thread Pridemore, Russell (MAN-Corporate)
The port is a property of the servlet engine (Tomcat or whatever), not Axis.  If you are using Tomcat, look at server.xml. -Original Message-From: Sarat Challa [mailto:[EMAIL PROTECTED]Sent: Thursday, April 22, 2004 2:21 PMTo: [EMAIL PROTECTED]Subject: Port Problem Hi,

RE: Document (Vs) RPC style services

2004-03-30 Thread Pridemore, Russell (MAN-Corporate)
I was looking into interoperability with MS web services and discovered that MS supports doc, but not RPC. However, it appears that RPC is a subset of doc, so it is possible to convert a WSDL from RPC -> document. Anyway, the point is that there shouldn't be any measurable difference between the

RE: [newbie] how to get soap-envelope xml?

2004-03-25 Thread Pridemore, Russell (MAN-Corporate)
chine outside of my domain?  -----Original Message-From: Pridemore, Russell (MAN-Corporate) [mailto:[EMAIL PROTECTED] Sent: Thursday, 25 Mar, 2004 3:08 PMTo: '[EMAIL PROTECTED]'Subject: RE: [newbie] how to get soap-envelope xml? Use the tcpmonitor appl

RE: [newbie] how to get soap-envelope xml?

2004-03-25 Thread Pridemore, Russell (MAN-Corporate)
Title: [newbie] how to get soap-envelope xml? Use the tcpmonitor application provided with axis.  Read about it in the user-guide. -Original Message-From: JEFF EMMINGER [mailto:[EMAIL PROTECTED]Sent: Thursday, March 25, 2004 2:56 PMTo: '[EMAIL PROTECTED]'Subject: [newbie] how

SimpleDeserializer error from generated client code

2004-03-25 Thread Pridemore, Russell (MAN-Corporate)
I started with a WSDL file, ran WSDL2Java to generate both client & server sources. I successfully deployed the web service with stubbed methods. I'm running the TCPMonitor and request & response look fine as far as I can tell. But the client blows up with an exception from SimpleDeserializer.