Ant task documentation

2002-09-24 Thread Peter Kelley
I'm probably overlooking the obvious but could someone point me at the documentation for the AXIS ant tasks ? Thanks. Peter Kelley

FW: Problem in installing Apache Axis on iAS 6.5

2002-09-24 Thread Shankar S
Hi All,   I am still facing this problem? Can anyone of you help me out with this issue?   Thanks, Shankar Shanmugam -Original Message-From: Shankar S [mailto:[EMAIL PROTECTED]]Sent: Friday, September 20, 2002 11:32 AMTo: [EMAIL PROTECTED]Cc: Sudhakar S; Anantha Padmanabhan Vedach

Performance problems with RPC messages over 20k

2002-09-24 Thread Martin Jericho
I was doing some benchmarking to test how much it would impact on performance to break up a single, large request into several smaller ones. I was expecting of course that for a fixed volume of data, dividing it into more separate messages would increase the overheads and make things slower. What

Security example does not work in AXIS1.0RC1

2002-09-24 Thread Jinghua Gu
The security example does not working in the latest (Sep 6, 02) AXIS1.0_RC1. Where is the "org.apache.xml.security.c14n.Canonicalizer" in this release? Thanks, Emily

A continuous response every 5 seconds and thread in Server side. Stream?

2002-09-24 Thread Yu Chen
Hi, all. In fact I can and must (according to requires) do thread in the Server with a java.util.Timer so that (for instance) some clients can repeated measure some properties(dates) from the server, but... for a continuous response from the repeated thread what can I do? Must I use a strem? A

RE: newbie question (access to response message as DOM)

2002-09-24 Thread Basil Hosmer
FWIW the basic method I've settled on is: install a "deserializer" that just accesses what you need from the message context. E.g. here's how to return an Element node containing the returned DOM (constants, imports etc. omitted): // in the client code: // after creating a Service o

RE: newbie question (access to response message as DOM)

2002-09-24 Thread nbrennan
BDY.RTF Description: RTF file

Re: [VOTE] Axis 1.0 release plan

2002-09-24 Thread Jinghua Gu
Hi All,   It is really painful to try each new version of AXIS. Does anybody has successful experience in deploy AdminService in newest AXIS 1.0RC1? I have AXIS validation page running correctly and all jar files are in my class path. But when I tried to deploy AdminService, using command:   jav

[VOTE] Axis 1.0 release plan

2002-09-24 Thread Sam Ruby
BACKGROUND: Many users have requested a v1.0 so that they can work from a relatively stable base. Some users have even remained on Apache SOAP until v1.0 of Axis is available. Now Axis has surpassed Apache SOAP in function, performance, and interoperability and, in particular, has passed Sun's

RE: Unable to create JavaBean of type... maybe a name space problem

2002-09-24 Thread Yu Chen
thank a lot! Chen -Original Message- From: Gregor Kova [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 7:34 AM To: [EMAIL PROTECTED] Subject: Re: Unable to create JavaBean of type... maybe a name space problem Hi! As the exception says the bean must have a defau

TCPMon/Tomcat port problem

2002-09-24 Thread Robert Herold
I'm seeing a strange problem using TCPMon and Tomcat, and I am out of ideas on how to solve it. I've got TCPMon configured to listen on port 8080 and forward to port 8081, and Tomcat configured to accept requests on port 8081. When I issue SOAP calls using Axis, they are reported in Tomcat as ar

No deserializer defined for array type

2002-09-24 Thread Dinesh Khetarpal
I have a return value Item[] where Item is a bean. Have any one of got this kind of exception before. I generated and deployed the service as documented. quick clue please..       - Exception:org.xml.sax.SAXException: No deserializer defined for array type {urn:inventory}Item    at or

Re: [AdminClient Problem] namespace URL http://xml.apache.org/axis unreachable (404 Not Found)

2002-09-24 Thread Ulrich Winter
Hi, the URIs in the wsdd file are not intended to be accessed via http. You should instead check the URL used as parameter to AdminClient's command line: For example if you invoked AdminClient with a parameter of -lhttp://localhost:8080/axis/services/AdminService"; you should check that URL. It

Re: hi

2002-09-24 Thread Prabhakar Chaganti
You need to have the JAXP classes on your classpath. Add the xercesImpl.jar and xmlParserAPIs.jar to your CP. -prabhakar --- Original Message From: [EMAIL PROTECTED] To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> CC: Subject: hi Date: 24/09/02 02:09 Clean Clean Doc

[AdminClient Problem] namespace URL http://xml.apache.org/axis unreachable(404 Not Found)

2002-09-24 Thread Sebastien Pereira
The context : I am using the AdminClient tool (org.apache.axis.client.AdminClient) fo deploy a Web Service. My WSDD file begin with these lines : http://xml.apache.org/axis"; xmlns:java="http://xml.apache.org/axis/wsdd/"; xmlns:xsd="http://www.w3.org/2000/10/XMLSchema"; xmlns:x

Re: message style - method signature

2002-09-24 Thread Andrew Vardeman
The code has this snippet in it: boolean bodyOnlyService = true; if (targetService.getOption("FullMessageService") != null) { bodyOnlyService = false; } this FullMessageService option appears to be defined outside the service; I'm wondering if it's something you have to specify in the deploy

Re: message style - method signature

2002-09-24 Thread RP C987342
The source talks something about FullMessageService, What is FullMessageService? Body Vs total envelope? Any use case scenarios for the same? > >public Element [] method(Vector v); MessageContext mc = MessageContext.getcurrentContext(); mc.TRANS_URL is giving transport.url and not anything from

?wsdl error

2002-09-24 Thread Claudio D'Angelo
Hi, I'm new in axis user and I've a problem with axis. I've deployed a SOAP:RPC service in axis. I've noted that the axis engine don't resolve the wsdl creation throwing these error: AXIS error Sorry, something seems to have gone wrong... here are the details: Fault - The AXIS engine could

RE: Message style services - ATTN ANY java:MSG USERS

2002-09-24 Thread Dan Kamins
Sounds great, Glen. Thanks for the clarification (ie if you need access to the MessageContext, then just write your service as a Handler). Keep up the good work in cleaning all this stuff up. BTW, this type of issue was somewhat representative of what I've (presumably others as well) found

hi

2002-09-24 Thread harvey xu
I am a user of Axis. I have install axis beta3 with tomcat3.2.4. Now I use command line to test some examples as define in the user’s guide. For example: I typed java samples.userguide.example1.TestClient java samples.userguide.example2.CalcClient -p8080 add 2 5java org.apache.axis.cli

message style - method signature

2002-09-24 Thread RP C987342
Hi According to org.apache.axis.providers.java.MsgProvider in message style, a method's signature can be one of public Element [] method(Vector v); public Document method(Document doc); public void method(MessageContext mc); I chose the third. and got the error: Message service must take eit

problems issuing a call using soap with attachments

2002-09-24 Thread Ulrich Winter
Hi, I've problems issuing a call which should use attachments for some parameters. I've setup a Call object and user DataHandler type as parameter. I've worked along the example from the WROX book on Axis. The resulting http request does not use mime multipart/related format. Instead it issues

method returning String[][] as a web-service ?

2002-09-24 Thread Jan-Olav Eide
Is this doable with Axis ? I get a "org.xml.sax.SAXException: No deserializer defined for array type" error -- jo Jan-Olav Eide, Seniorkonsulent ErgoSolutions AS, avdeling eTjenester Nydalsvn 28, Postboks 4364 Torshov, 0402 Oslo Telefon 23 14 54 49, Mobil 99 26 01 32