Changes from 1.0 to 1.1

2003-03-05 Thread Thomas Börkel
HI! This section is not very detailed in the 1.1 RC1 changelog. Could this please be enhanced? Thanks! Regards, Thomas

Re: Using the WSDD

2003-03-05 Thread Sonja Pieper
Mike Smithson wrote: Is there documentation besides what is on the axis site about generating wsdd files? I want to deploy a jar file as a web service and I am not sure how to write a wsdd for it, if it is at all possible. Hi, I am not a big expert myself, but someone gave me a good hint

Re: DIME attachment size limit

2003-03-05 Thread Sharmila Pillai
Hi Steve, Can you elaborate on this, please? I have been trying to get to the filename of attachments for a while now. I must admit, I haven't see the Axis1.1 code, yet. TIA, Sharmila. On 4/3/03 7:30 pm, Steve Loughran [EMAIL PROTECTED] wrote: you should note that Axis1.1 has some hooks

RE: Return Value in a SOAPEnvelope

2003-03-05 Thread Betsy Frey
Title: RE: Return Value in a SOAPEnvelope I think you need to cast the result of next() to MessageElement: MessageElement elem = mySOAPENv.getFirstBody().getChildElements().next(); String value = elem.getValue(); Betsy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: Trouble with logging in axis

2003-03-05 Thread Hugh Ferguson
I thought I'd share that I did finally get everything to work. I share this so that someone in a similar position might be saved some time. Turns out, my config was right all along - the problem was that the classes with the log statements were never being updated, so that effectively, there were

RE: Return Value in a SOAPEnvelope

2003-03-05 Thread John Chen
I'm attempting to do this as a jython script. Perhaps that is the problem? John At 07:06 AM 3/5/2003 -0800, you wrote: I think you need to cast the result of next() to MessageElement: MessageElement elem = mySOAPENv.getFirstBody().getChildElements().next(); String value = elem.getValue();

Admin class problem

2003-03-05 Thread Daniel Elenius
Hi. I am having some problems with the process() method in the org.apache.axis.utils.Admin class. It is used from a deploy() method in a DeploySOAPTransport class in the JXTA binding for Axis (included below). Can someone explain to me what the process() method does? I looked at the code and

SOAPAction Header

2003-03-05 Thread Nicola Muratori
hi i'm trying the amazon web service kit, but i can't do any search because the server replies this to any request: ?xml version=1.0 encoding=UTF-8? SOAP-ENV:Envelope xmlns:SOAP-ENC=http://schemas.xmlsoap.org/soap/encoding/; SOAP-ENV:encodingStyle=http://schemas.xmlsoap.org/soap/encoding/;

Re: DIME attachment size limit

2003-03-05 Thread Steve Loughran
well, download the RC, look at the javadocs for axis.attachments.AttachmentPart to see what new and useful method calls there are. - Original Message - From: Sharmila Pillai [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 02:24 Subject: Re: DIME attachment size

Importing a schema into a WSDL

2003-03-05 Thread Neil Blue
Hello, I have been building up a WSDL file, and now I need to import schemas from other locations on our web site. But I keep getting an error about the type not being defined. Here is a sample of my problem: java.io.IOException: Type {http://importer/test}testType is referenced but not defined

Help exposing this document service

2003-03-05 Thread Pete Clark
Heres the EJB I want to expose as a web service (Using axis 1.0 with Jboss 3.2.0) public Document runQuery(DatabaseRequest lDatabaseRequest) { . Code removed Document lResults; . Code removed return lResults; } DatabaseRequest is just a simple class with 4 public

Performance

2003-03-05 Thread tim
I'm seeing dreadful performance using Axis with multiple concurrent calls. I have a simple test app which runs some PL/SQL. In single user mode, it works quickly across an Axis call (Axis on both client and server), taking about a second to complete. I've ramped up the app and have 10

Re: Performance

2003-03-05 Thread IvanLatysh
Hello, [EMAIL PROTECTED] You wrote to [EMAIL PROTECTED] on 5 Mar 2003 17:46:47 -: t However, the total call time varies between 7331ms and 10445ms. I t appear to be losing between 5 and 8 seconds simply doing Axis comms. t Anyone got any tips on how to speed this up, or ideas of why it's

simple WS

2003-03-05 Thread Gianni Pucciani
Hi all, following the book instructions (java web service) I'm trying to start a simple WS, the classic helloworld. I put the source code, renamed axis.jws, in tomcat_dir/webapps/axis. The page http://localhost:8080/axis/HelloWorld.jws shows me the Axis error: No service is available at this

Re: Performance

2003-03-05 Thread James Black
IvanLatysh wrote: To improve performance you can use parameter name=scope value=application/ This service will be created once and will serve all requests, but you should handle yourself concurent requests. I am using the webservice to handle requests from about 500 clients, and I am

RE: Return Value in a SOAPEnvelope

2003-03-05 Thread John Chen
Okay, I tried it in Java and I just keep getting null. I tried casting it as an RPCElement, but I don't think it is one. Any other Ideas? John At 07:06 AM 3/5/2003 -0800, you wrote: I think you need to cast the result of next() to MessageElement: MessageElement elem =

RE: Performance

2003-03-05 Thread Anecito, Anthony (HQP)
Title: RE: Performance Hi Tim, I have seen the same problem. I have been concentrating on the Client side and have done almost all I can so far there. I would recommend setting up a SOAP pool. The pool design pattern will help a lot with the client side. I would create the service object

RE: Return Value in a SOAPEnvelope

2003-03-05 Thread Betsy Frey
Title: Message Have you used a tool like org.apache.axis.utils.tcpmon to see what's getting passed? -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 11:30 AMTo: [EMAIL PROTECTED]Subject: RE: Return Value in a

[axus] Deploying axis over tomcat

2003-03-05 Thread Slaybaugh Laura J IHMD
Hey, I'm trying to deploy axis under Tomcat, and I don't seem to be getting anywhere. I have Tomcat up and running fine. But copying the axis folder into %catalina_home%\webapps seems to have no effect. when I type in http: //localhost:8080 //axis (or http: //localhost:8080 //axis/* for that

Re: [axus] Deploying axis over tomcat

2003-03-05 Thread James Black
Slaybaugh Laura J IHMD wrote: I'm trying to deploy axis under Tomcat, and I don't seem to be getting anywhere. I have Tomcat up and running fine. But copying the axis folder into %catalina_home%\webapps seems to have no effect. when I type in http: //localhost:8080 //axis (or http:

Re: SOAPAction Header

2003-03-05 Thread Eric Rajkovic
Nicola, the SOAPAction has to be set in the HTTP header, not the SOAP header. from Amazon's WSDL: soap:operation soapAction=urn:PI/DevCentral/SoapService / It's the same value for all operation, but it need to be there on the wire. eric Nicola Muratori wrote: hi i'm trying the amazon web

Re: Performance

2003-03-05 Thread IvanLatysh
Hello, Anecito,! You wrote to [EMAIL PROTECTED] [EMAIL PROTECTED] on Wed, 5 Mar 2003 10:30:09 -0800: AAH On the server side I would use worker thread pattern. I have not AAH tried this myself yet but have hopes it will help me cut down the AAH transaction times since there is not a big

RE: Help exposing this document service

2003-03-05 Thread Pete Clark
Folks, let me know if this was an inappropriate question to ask on the mailing list. If it was, I apologize. Pete -Original Message- From: Pete Clark [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 3:12 PM To: [EMAIL PROTECTED] Subject: Help exposing this

RE: [axus] Deploying axis over tomcat

2003-03-05 Thread Slaybaugh Laura J IHMD
hmmm after logging off and logging back onto my machine, tomcat doesn't seem to want to start either. I checked the tomcat logs, the most recent entries are below. I notice there's a NoClassDefFoundError. I'm thinking that could be the reason Axis wasn't working? Now, I gotta figure why

RE: simple WS

2003-03-05 Thread Almeida, Timothy
Does your helloworld class specify a package? If so, try removing the package declaration. -Original Message- From: Gianni Pucciani To: ML Axis Sent: 3/5/2003 12:11 PM Subject: simple WS Hi all, following the book instructions (java web service) I'm trying to start a simple WS, the

MultiRef soap

2003-03-05 Thread WALTERS,EUGENIO (HP-Boise,ex1)
Does axis beta 1.1 handle multiref soap? It looks like the processMessage() method in RPCProvider class has a for loop that does not seem to handle xml references. Anyone else had this problem or had some success with axis and the reception of multiref soap messages. Also can the xml root

RE: Performance

2003-03-05 Thread Anecito, Anthony (HQP)
Title: RE: Performance Hi Ivan, The worker thread pattern is mentioned in the book Applied Java Patterns by Stephen Stelting and Olav Maassen. I do not have the book near me but there are probably links to descriptions of this pattern on the web. It might also be referred elsewhere as

RE: Performance

2003-03-05 Thread Anecito, Anthony (HQP)
Title: RE: Performance Hi Steve, Your answers helped a lot. I do not normally get source code unless absolutely necessary. If I did then I would have been on the Axis dev message thread and more likely this message would not have occurred. Many Thanks, Tony -Original Message-

RE: help with proxy

2003-03-05 Thread thomas . cherel
I have an issue along the same lines of that ones. I am accessing my web service through a proxy. All the right system properties are correctly set, but the issue seems to come from a different interpretation of the HTTP spec between my client (Axis) and my proxy server (Microsoft ISA server).

Re: simple WS

2003-03-05 Thread Gianni Pucciani
Almeida, Timothy ha scritto: Does your helloworld class specify a package? If so, try removing the package declaration. -Original Message- From: Gianni Pucciani To: ML Axis Sent: 3/5/2003 12:11 PM Subject: simple WS Hi all, following the book instructions (java web service) I'm trying to

How do I work with exceptions?

2003-03-05 Thread Paul Andrews
I've had a look back through the list archives and looked for some example in the ditribution but I can't see anything that tells me how I deploy a service that can throw exceptions and what I should expect to see back in the client if one of those exceptions is thrown. 1. Do I need to specify

Re: Performance

2003-03-05 Thread Tim Sawyer
Thanks for everyone's comments. On Wed, 2003-03-05 at 18:00, IvanLatysh wrote: To improve performance you can use parameter name=scope value=application/ Good plan, but I'm already using application scope. What I hadn't considered is upping the number of axis servlets available, might try

Re: Performance

2003-03-05 Thread Steve Loughran
- Original Message - From: Anecito, Anthony (HQP) [EMAIL PROTECTED] To: 'Steve Loughran' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 12:21 Subject: RE: Performance Hi Steve, Your answers helped a lot. I do not normally get source code unless absolutely

Re: wsdl and documentation

2003-03-05 Thread Steve Loughran
- Original Message - From: Pascale, Peter H. [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 06:33 Subject: RE: wsdl and documentation Why does java2wsdl run against the .class files? Is that to ensure the WSDL is generated from a compile-able version of

Re: wsdl and documentation

2003-03-05 Thread Nicholas
i never thought it'd be simple :(. And like I said before: xdoclet. Though I still think you should write the WSDL and generate the server and client code from it, as if it was just another IDL syntax. Anyone know about any Ant tasks to do exactly this ? //Nicholas --- Steve Loughran

RE: wsdl and documentation

2003-03-05 Thread Almeida, Timothy
axis-ant.jar contains Ant tasks corresponding to WSDL2Java, Java2WSDL and a few other utilities. Btw, (be warned) for some very strange reason I had very little success generating valid WSDL using Java2WSDL from Ant scripts -- both when using the Ant task Java2WsdlAntTask and when using the java

interop with apache SOAP and axis 1.1rc1

2003-03-05 Thread Sean Brandt
First, my apologies for the cross post, but I need to get an answer to the following as soon as I can. I've run into two issues working with axis 1.1rc1 and apache soap ( unknown rev at this time ). 1) The soap (server) side of things doesn't accept nil(null) arrays. If I update the code

Re: wsdl and documentation

2003-03-05 Thread Steve Loughran
- Original Message - From: Nicholas [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 15:18 Subject: Re: wsdl and documentation i never thought it'd be simple :(. And like I said before: xdoclet. Though I still think you should write the WSDL and generate

What are the jars needed?

2003-03-05 Thread Risath
Hi, I want to access a .NET Web Service from an Applet using axis client.TheApplet comes fron the same IIS server.I sidned the applet.So the security problems were eliminated.But still I get no class found error message. I want to know what are the classes or jars should be sent to the

Handling .NET DataSets: any utilities?

2003-03-05 Thread ascii text
Hi, I've been researching the problem of consuming a DotNet DataSet with a Java/Axis client. I've found a few tidbits here and there, usually saying things like don't do it, it won't work, etc. My problem is that I don't have a choice. I'm in a position where a 3rd party web service provider

Re: How do I work with exceptions?

2003-03-05 Thread Sonja Pieper
Paul Andrews wrote: I've had a look back through the list archives and looked for some example in the ditribution but I can't see anything that tells me how I deploy a service that can throw exceptions and what I should expect to see back in the client if one of those exceptions is thrown. 1. Do I

ANNOUNCE: Axis 1.1 RC2 dist

2003-03-05 Thread Glen Daniels
Hi folks! You can now pick up Axis 1.1 (release candidate 2) at http://ws.apache.org/axis/dist/1_1rc2/ This release is primarily for bug fixes, of which there were quite a few. Please take a look, run tests, let us know what you think, etc. We hope to release 1.1 final in a few weeks.