RE: Bug fix info

2005-03-09 Thread MS
that link works..but why don't i find the changelog there.. Yahoo! India Matrimony: Find your life partner online.

Re: Dynamic Lists in Web Services (java /axis)

2005-03-09 Thread Edoardo Causarano
and now comes my question: can I do the same for attachments? Can I declare a wsdl with an arbitrary quantity of attachment parts in a wsdl:message? I'm afraid not, but could I define a and then <--- NOT

Receiving multiple parameters using Java

2005-03-09 Thread C.C. Ang
Hi there all, I am a SOAP and AXIS newbie (3 days old) and had a question re returning multiple parameters using java. I have looked in the archives and cannot find anything that resolves my question. So my conclusion is that I must be missing something simple. 8-) I have written a SOAP server wri

axis and ejb.

2005-03-09 Thread fabrizio picca
I'm in this situation. I' have an axis client and an ejb-based webservice. the client has to send a custom object to the ejb webservice. ah i've written in another post,i have a lot of problems in serializing/deserializing custom types. The examples in the axis documentation i think are referred t

Re: axis client consuming an ejb service

2005-03-09 Thread fabrizio picca
probably i'll get crazy with all off this. i continue to obtain the same error. I cannot implement my solution using wsdl2java generated classes, but I'm trying to getting something out of that. i don't know how to make axis aware of the deserializer. On Mon, 07 Mar 2005 11:05:10 +, Adr

DIME Chunking

2005-03-09 Thread Marc Dumontier
Hi, I was wondering if AXIS plans to support sending DIME attachements using DIME streaming (record chunking). Our webservice deals with large amounts of data. We currently have DIME attachments implemented by streaming out to a temporary file and then a FileDataSource is created and that's pick

Re: can handlers be added in code?

2005-03-09 Thread Andy Kriger
Also, after I posted I found this in the wiki (which I had thought was dead from Chinese spam)... http://wiki.apache.org/ws/FrontPage/Axis/AxisClientConfiguration On Thu, 10 Mar 2005 07:19:04 +1100, Ross Mason <[EMAIL PROTECTED]> wrote: > If you have a client call object ie new Service.createCall

RE: can handlers be added in code?

2005-03-09 Thread Ross Mason
If you have a client call object ie new Service.createCall(), there is a method on the cal called setClientSideHandlers() which allows you to pass in a request and response handler, Either on can be null. Cheers, Ross >-Original Message- >From: Andy Kriger [mailto:[EMAIL PROTECTED] >Se

Re: wsdl/soap question

2005-03-09 Thread Anne Thomas Manes
See responses inline ... On Wed, 09 Mar 2005 08:43:45 -0900, Elaine Nance <[EMAIL PROTECTED]> wrote: > TIA for considering these questions. > > I am working through the note at > <~~ > >

what's the advantage of using "wsdl2java --server-side"?

2005-03-09 Thread Jay Glanville
Hello all. >From my understanding of Axis, there are two ways to generate a web service: 1) Write a class who's methods are the methods of your service. In your server-config.wsdd, set the className parameter of your service to the above classname. 2) Write a class who's methods are the methods

Re: Stupid question: how to deserialize/serialize axis data objects

2005-03-09 Thread Michael Thome
I've made some progress on my own worth mentioning... It turns out that the feature of my data that was causing axis so much trouble was the rather deep xml structure passed around by my schema (using xsd:any ##any): NodeImpl.getOwnerDocument has spectacularly bad behavior on deep structures. I

axis no joy after upgrading to 1.5 JVM

2005-03-09 Thread Rich Bramante
Hi,   We have been sailing along with Axis 1.1 and the 1.2 RC for awhile now with no problems.   However, we recently upgraded a few clients to the 1.5 JVM and now they are all failing with the exception:   “org.xml.sax.SAXParseException: Attribute “ns” bound to namespace http://www.w

Re: Axis Xdoclet Error

2005-03-09 Thread Adrian Perez Jorge
Hi Michael, Please, check out your documentation comment for the class starts with "/**" and not with just "/*". It is a common mistake and maybe that's why xdoclet can't find axis:service tag (the cause of NullPointerException, I believe). Cheers, Adrian P.J.

No mapped schema type for org.apache.axis.message.SOAPBodyElement

2005-03-09 Thread John McCosker
Title: No mapped schema type for org.apache.axis.message.SOAPBodyElement Hi, I seem to be doing something wrong but not sure what, I have created my axis stubs which use the JAVA:MSG provider, my web service has a method, public Element[] getPosition(MessageContext msgCtx, Vector soapBodyE

wsdl/soap question

2005-03-09 Thread Elaine Nance
TIA for considering these questions. I am working through the note at

Problem with Setting up Jakarta Logging with AXIS

2005-03-09 Thread babloosony
Hi All, I am using AXIS 1.2 RC2, IBM WSAD 5.1.2, IBM WebSphere 5.0 Test Enviroment inside WSAD. I am trying to setup Jakarta Commons Logging with my AXIS web application deployed using WSAD. I have my commons-logging.properties file and log4j.properties file in my WEB-INF\classes\lib directory. Ba

.NET and Axis

2005-03-09 Thread aedemar . cooke
Title: .NET and Axis Hi, I have posted emails on this topic before but have never really understood the problem I was experiencing until now. Sorry for any misleading mails up to this point. I also apologise in advance for the length of this mail.  Hopefully people can understand what I am

in my .wsdd - 1.2RC3 overrides specified soapLocation?

2005-03-09 Thread Ellecer Valencia
Hi, I was trying to do some debugging using a customised WSDL and I noticed the section in the WSDL where the soap endpoint is specified is now being overriden by axis. Bug or feature? Is there a way to get axis to just return the entire contents of the WSDL without trying to second guess the u

RE: Using axis ant task with typed enums

2005-03-09 Thread Jay Glanville
Hello Paul (and all) I tried to create an enumeration using your template below. However, when I ran Java2WSDL, I got the following error: ... [axis-java2wsdl] - The class com.nci.slt.epi.admin.Enumeration does not contain a default constructor, which is a requirement for a bean class. The class

FW: replacing default namespace prefixes

2005-03-09 Thread Dino Chiesa
Moving this back to axis-user. . . -Original Message- From: Andy Dolbey [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 09, 2005 10:26 AM To: [EMAIL PROTECTED] Cc: Dino Chiesa Subject: Re: replacing default namespace prefixes Sure, I've attached it here. It was a wsdl automatically g

Re: Stupid question: how to deserialize/serialize axis data objects

2005-03-09 Thread Michael Thome
Thanks for the examples. I've got a few followups, if you don't mind... Peter Molettiere wrote: Chances are you're doing it right. My experience is that axis is pretty slow, especially if you have large object graphs to read and write. I sure hope I'm not doing it right, though so far your solu

can handlers be added in code?

2005-03-09 Thread Andy Kriger
I have a SOAP client generated using wsdl2java. I would like to configure this client programmatically without using a wsdd file (because it is auto-generated for testing and I do not want to have to maintain a wsdd file). I see that I can set properties on the Stub (like username and password). Ca

Axis Xdoclet Error

2005-03-09 Thread Michael . Medwith
Can someone help me with this error, this is my first implmentation, I looked at the source code and it fails for a null pointer, I am thinking I have something setup incorrectly. XDoclet line of code failing; String service_urn = getCurrentClass().getDoc().getTag("axis:service").getValue();

Basic doubt on AXISFault

2005-03-09 Thread babloosony
Hi All, Say I am exposing below skeleton EJB method as web service using AXIS. public String getMethod1() { .. getMethod1.1() .. } If getMethod1.1() throws some unchecked exceptions that I didnt handle in my code then how is this axs web service going to handle

what is (not) allowed in the service name?

2005-03-09 Thread Martin Senger
Hi, I am using double colons in service names, e.g. my sevice name is classic::helloworld. I found that it breaks Axis deployment. I wonder if it is because some spec (SOAP I guess) does not allow it, or if Axis has a bug? I have feeling that the former is right because I remember that some time

Re: New header incoding behaviour in 1.2-RC3

2005-03-09 Thread Davanum Srinivas
hmm..that does not ring a bell. can you please open a bug report with some sample code? soap traces? wsdl? thanks, dims On Wed, 9 Mar 2005 21:06:49 +1100, Ross Mason <[EMAIL PROTECTED]> wrote: > > Hi All, > > I've recently upgraded to Axis 1.2-RC3 from 1.2-RC2 and I'm seeing new > behaiour

General Exception handling in Axis (SoapFaults)

2005-03-09 Thread Tysnes Are Thobias
Title: Message Hello!   Wonder if there exist some documentation of all the SoapFaults which may be thrown from the Axis engine !?   And dows it exist some documentation on how the SoapFaults thrown from the Axis engine looks like ? Is the details field, for instance, always populated ?   I

RE: Bug fix info

2005-03-09 Thread Shahi, Ashutosh
  Check out: http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10460   Ashutosh From: MS [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 09, 2005 3:55 PM To: axis-user@ws.apache.org Subject: Bug fix info   Hello group, is there any link when i can find

Bug fix info

2005-03-09 Thread MS
Hello group, is there any link when i can find the list of bug fixes to axis across various releases??   Thanks Ms Yahoo! India Matrimony: Find your life partner online.

New header incoding behaviour in 1.2-RC3

2005-03-09 Thread Ross Mason
Hi All,   I've recently upgraded to Axis 1.2-RC3 from 1.2-RC2 and I'm seeing new behaiour thats causing my code to break.  I'm setting some custom String headers but they're being base64 encoded.   how do I read this encoded value from the header?   Cheers,   Ross    

Send a Vector with axis

2005-03-09 Thread bohldan bohldan
Hi i want to send a Vector with User Objects in it.. my client look like this (at the moment i receive a Vector with right number of objects in it but all the values in each object are null) --- try{ Service service = new Service(); Cal