Re: Subject lines prepended with "[AXIS-USERS] "

2003-12-15 Thread Brian Abbott
I disagree entirely, it's not redundant. The problem is that, the reply-to address is the list address and, the from address is set to whoever sent it. Because this problem generally only appears on mailing-lists, people dont want to have to add a column to their mail viewer (the reply-to field

Axis Bug?

2003-12-15 Thread Tevoi Andrea
Hi all, I've seen that for a simple type derived from another simple type WSDL2Java tool generates a wrapped class, not according with jax-rpc specs (4.2.5). example: ...

Environment variables

2003-12-15 Thread Guillermo Arias del Rio
hi, I want to set a parameter for my server (where a configuration file is). I haven't found any way to provide a parameter to the servlet constructor via wsdd. I'm trying to achieve this with an environment variable, but it seems not to work (and it is system-dependent)... Is there any way to

Remote client can't access server

2003-12-15 Thread Yves
Hi, I've got a small java app running that works in a client/server relationship on MY computer, but when I go to run the app from a completely different machine I get ye old "Exception in thread main java.lang.NoClassDefFoundError: org/apache/axis/AxisFault" does this mean, that since it's h

Need help on SAXNotSupportedException

2003-12-15 Thread Taylor, Rick L
Does anyone have a solution, I haven't been able to figure out what is going on -- I am converting several web services to Axis. This has been successful and I have Java proxies created that can access the services. We have also been successful in accessing our services from Smalltalk and Visual

Re: Environment variables

2003-12-15 Thread Ben Souther
You could implement ServiceLifecycle and store the value as an init param in your web.xml file. import javax.xml.namespace.QName; import javax.xml.rpc.server.ServletEndpointContext; import javax.xml.rpc.server.ServiceLifecycle; import javax.xml.rpc.ServiceException; import javax.servlet.ServletCo

Re: Response message

2003-12-15 Thread Ben Souther
Have you looked at the tcpMon app that ships with Tomcat? On Monday 15 December 2003 01:05 am, GANDHIRAJAN,AYYAPPAN (HP-India,ex2) wrote: > Hi folks, > > I am very new to Axis and am trying to Axis as an interceptor for incoming > webservice request. I know that JAX-RPC has got a 'handleResponse

Re: Remote client can't access server

2003-12-15 Thread Ben Souther
You just need to make sure that your client app has access to the axis.jar library. On Monday 15 December 2003 04:34 am, Yves wrote: > Hi, > I've got a small java app running that works in a client/server > relationship on MY computer, but when I go to run the app from a completely > diff

RE: getChildElements(Name) trouble

2003-12-15 Thread chris
Cyril - Most likely, you are running into a namespace issue. Try public abstract Name createName(String localName, String prefix, String uri) and see if it works. Though, why the API designers put the prefix in the signature befuddles me The getChildElements call is going to end up p

Can we pass a SOAP Envelope directly to AXIS-WS

2003-12-15 Thread Srikanth Ramachandra
Hi All, Currently AXIS supports the invocation of a web service by (constructing and ) passing an instance of SOAPEnvelope. E.g. Call.invoke(SOAPEnvelope env) - If we have a SOAP Message readily available is there a way to invoke the web service by passing the SOAP Envelope as a string. This

Re: multithreaded WS

2003-12-15 Thread Steffen Zirfas
Hi, after some study and search i find the Interface ServiceLifecyle. Is this the thing i must use to solve the problem. I played a little bit with this interface, i tried to make produce some console-output to make sure it works the way i think. But there is noting to see... i inserted some samp

Re: Subject lines prepended with "[AXIS-USERS] "

2003-12-15 Thread Anne Thomas Manes
Because it makes it easier to use email client features such as sort-by-subject. At 12:08 PM 12/15/2003, you wrote: Why? If you need this for filters, why not just filter by the email address? I think the [EMAIL PROTECTED] address implies that it's for axis users, adding the same label to the

Re: Remote client can't access server

2003-12-15 Thread Yves
Hey that worked! When I just added the axis.jar to the classpath it complained about javax or something, so I just ended up adding all eight .jar files to the classpath, are they all necessary? Thanks again.Ben Souther <[EMAIL PROTECTED]> wrote: You just need to make sure that your client app has a

Re: Remote client can't access server

2003-12-15 Thread Yves
Awesome! It works! Just a question, I ended up adding all 8 .jar files to the classpath of the client machine, because after just adding the axis.jar it complained about javax something so I just added 'em all, was that necessary or are there only a couple I really need? Thanks again!Ben Souther <[

Re: Remote client can't access server

2003-12-15 Thread Yves
Hey that worked! When I just added the axis.jar to the classpath it complained about javax or something, so I just ended up adding all eight .jar files to the classpath, are they all necessary? Thanks again.Ben Souther <[EMAIL PROTECTED]> wrote: You just need to make sure that your client app has a

Re: Remote client can't access server

2003-12-15 Thread Yves
Hey that worked! When I just added the axis.jar to the classpath it complained about javax or something, so I just ended up adding all eight .jar files to the classpath, are they all necessary? Thanks again.Ben Souther <[EMAIL PROTECTED]> wrote: You just need to make sure that your client app has a

Re: getChildElements(Name) trouble

2003-12-15 Thread Cyril Godefroy
I did actually. Sorry if this was a 2 cents question. On lundi, déc 15, 2003, at 15:03 Europe/Paris, chris wrote: Most likely, you are running into a namespace issue. Try public abstract Name createName(String localName, String prefix, String uri) and see if it works. Though, why the API d

Anonymous Complex Types

2003-12-15 Thread chrapchp
Hello, I cannot get a successful WSDL doc generation from ?WSDL or Java2WSDL when I include complex anonymous types. I cannot modify the WSDL doc since it is driven by a third party spec. What I did was create a simple WSDL doc to try an isolate the problem from which I just perform a WSDL2Java an

Re: Anonymous Complex Types

2003-12-15 Thread Dan Christopherson
If you're implementing a third party WSDL why are you generating WSDL? chrapchp wrote: Hello, I cannot get a successful WSDL doc generation from ?WSDL or Java2WSDL when I include complex anonymous types. I cannot modify the WSDL doc since it is driven by a third party spec. What I did was create

RE: Anonymous Complex Types

2003-12-15 Thread chrapchp
Hello, Because it is failing when I just try to go to the URL?wsdl. I can access the client ok with a java-based client, but when I use a non-java client e.g. macromedia it chokes. What I did to try to get around it was configure the sever-config.wsdd service entry with the tag and watch it fail m

Re: Anonymous Complex Types

2003-12-15 Thread Dan Christopherson
But why are you using URL?wsdl (which just runs the same generation code as java2wsdl afterall) when you have the wsdl already? What was the failure in using the tag? chrapchp wrote: Hello, Because it is failing when I just try to go to the URL?wsdl. I can access the client ok with a java-based

RE: Need help on SAXNotSupportedException

2003-12-15 Thread Gary L Peskin
Rick -- At a glance, it sounds like, in the second application, that the parser is being loaded by a different classloader than axis. Are you able to bring up WSAD-IE and just run the second application right after you bring up WSAD-IE, without first running the first application? Does it still

RE: How do I tell Axis to deserilize an xml-soapSOAPStruct in stu bs?

2003-12-15 Thread Gurkan, Ozzie (MAN-Corporate)
This is a snippet from my wsdl, and I see that the "mapItem" definition is under the apachesoap namespace. See, if moving it will fix it... http://xml.apache.org/xml-soap"; xmlns="http://www.w3.org/2001/XMLSchema";> http://schemas.xmlsoap.org/soap/encoding/"; />

Out going soap requests

2003-12-15 Thread Shah, Soniya M.
Hi All, This questin is not related to Axis, but I am posting in here with a hope of answer as people who are runnning any SOAP client might have this situation. What is the best approach for outgoing SOAP messages? I am using SOAP/https. I have a SOAP client and server. For SOAP server incomi

RE: Zipping up stream?

2003-12-15 Thread Manchaiah, Girish (LNG-DAY)
Thanks for the tip. Does anybody have numbers on message size and performance gains? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, December 11, 2003 4:22 PM To: [EMAIL PROTECTED] Subject: Re: Zipping up stream? Please see the following discussion:

RE: Anonymous Complex Types

2003-12-15 Thread chrapchp
If I include the wsdlFile tag I get this error when I invoke the method that has anon complex type based arg from a non-java client. BTW, it should generate the WSDL without fuss even if I don't have to create the WSDL. The WSDL tools should be bi-directional. pjc - java.io.IOException: java.net.

Re: Anonymous Complex Types

2003-12-15 Thread Dan Christopherson
chrapchp wrote: If I include the wsdlFile tag I get this error when I invoke the method that has anon complex type based arg from a non-java client. BTW, it should generate the WSDL without fuss even if I don't have to create the WSDL. The WSDL tools should be bi-directional. How? Things can be exp

RE: Axis Bug?

2003-12-15 Thread Gurkan, Ozzie (MAN-Corporate)
Remove the restriction bit, since there is no validation anyways... -Original Message- From: Tevoi Andrea [mailto:[EMAIL PROTECTED] Sent: Monday, December 15, 2003 3:22 AM To: [EMAIL PROTECTED] Subject: Axis Bug? Hi all, I've seen that for a simple type derived from another simple type

Compisite Bean Complex Type

2003-12-15 Thread Sivakumar Jagadeesan
Hi All: I am getting a NullPointerException when invoking a webservice using a JavaClient. Service Interface is public boolean uploadFile( DataHandler dataHandler, MetadataBean metadataBean, FolderBean folderBean); MetadataBean has a another bean

Null Serializer factory specified?? Any Help?

2003-12-15 Thread Tolsch, Ed
Title: Null Serializer factory specified?? Any Help? I'm getting the following message when trying to deploy my WSDD file. Can anyone shed some light on where to look to solve my problem?  Any help is appreciated. [ The command I'm running is the  java -cp $AXIS_CLASSPATH org.apache.axis.

RE: Anonymous Complex Types

2003-12-15 Thread chrapchp
I am scratching my head too. If I am doing something wrong, then it is not jumping out at me at the momment. I don't have a .Net environment so I cannot try another type of non-java client. I just re-ran the java client and it worked. Then I moved to the flash MX client and watched the socketwrite

RE: Environment variables

2003-12-15 Thread I-Sampige, Srinivas
Be very careful how you put those parameters in the web.xml file. Here is a working sample - http://java.sun.com/j2ee/dtds/web-app_2.2.dtd";> Apache-Axis fop_demoFoFileName demo.fo foo desc AxisServlet Apache-Axis Servlet org.apache.axis.t

RE: Zipping up stream?

2003-12-15 Thread Rick Kellogg
Depending on the data size, I found sizes to decrease to around 10% for large messages. Rick -Original Message- From: Manchaiah, Girish (LNG-DAY) [mailto:[EMAIL PROTECTED] Sent: Monday, December 15, 2003 2:25 PM To: '[EMAIL PROTECTED]' Subject: RE: Zipping up stream? Thanks for the tip

RE: Zipping up stream?

2003-12-15 Thread Rick Kellogg
Depending on the data size, I found sizes to decrease to around 10% for large messages. Rick -Original Message- From: Manchaiah, Girish (LNG-DAY) [mailto:[EMAIL PROTECTED] Sent: Monday, December 15, 2003 2:25 PM To: '[EMAIL PROTECTED]' Subject: RE: Zipping up stream? Thanks for the tip

Re: Subject lines prepended with '[AXIS-USERS] '

2003-12-15 Thread Dimuthu Leelarathne
It sounds good. -- Lanka Software Foundation http://www.opensource.lk > Because it makes it easier to use email client features such as > sort-by-subject. > > At 12:08 PM 12/15/2003, you wrote: >>Why? If you need this for filters, why not just filter by the email >> address? I think the [EMAIL

Re: Subject lines prepended with '[AXIS-USERS] '

2003-12-15 Thread Dimuthu Leelarathne
Yes it sounds good. -- Lanka Software Foundation http://www.opensource.lk > Because it makes it easier to use email client features such as > sort-by-subject. > > At 12:08 PM 12/15/2003, you wrote: >>Why? If you need this for filters, why not just filter by the email >> address? I think the [E

Re: Problem in getting unparsed raw XML from AXIS

2003-12-15 Thread Dimuthu Leelarathne
Hi Naresh, Right now I don't think there is a way you can get untouched stream, because Axis begins processing a SOAP message by parsing it using SAX and then it stores these SAX events. Then Axis work on these stored SAX events. So if you really, really want to do this - you have to start parsing

RE: Axis C++ wsdl2ws Exception

2003-12-15 Thread Kanchana Welagedara
Hi Martin; Yes .There's a bug.when carefully checked I understood that.I'll enter it to Bugzilla.Thanks in advance for making us alert on this. Thanks Kanchana > -Original Message- > From: Martin Aberle [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 10, 2003 6:13 PM > To: [EMAIL PRO

Couldn't find trusted certificate

2003-12-15 Thread Coffman, Bill
Hello,   I am new to AXIS, and even pretty new to Java.  My goal is to write a soap client that connects to a url over https, with a certificate.  Having lot’s of trouble with that, I am attempting to simply connect to a basic HTTPS server.  The sample code from jsse1.0.3_02 gives a URLRe

Using tcpmon to monitor web conversation

2003-12-15 Thread Oliver White
Title: Using tcpmon to monitor web conversation Hi folks, I'm just trying to come to grips with tcpmon. Essentially what I want to do is monitor a conversation between a browser and web server. To test out tcpmon I used the following settings: Listen port: 1234 Host: www.google.com Port:

next Release of Axis ?

2003-12-15 Thread Chetan Lalye
Hi axis developers,   When can we expect the next release ( beta) of Axis ?   Chetan

RE: next Release of Axis ?

2003-12-15 Thread Jaspreet Singh
  Axis c beta is already out   -Original Message-From: Chetan Lalye [mailto:[EMAIL PROTECTED]Sent: Tuesday, December 16, 2003 11:41 AMTo: [EMAIL PROTECTED]Subject: next Release of Axis ? Hi axis developers,   When can we expect the next release ( beta) of Axis ?