Re: The client fails decoding the response

2002-02-18 Thread Jens Carlberg
R J Scheuerle Jr wrote: > > If I have time on Monday I will try and debug this situation. Any help/hints are appreciated. If I can be of assistance, let me know! > Are you using the latest version of Axis. There have been some changes in > this area. The tests was done with the alpha3-release

FAX / SMS Web Services...

2002-02-18 Thread Kumaresan, Karikalan
Title: FAX / SMS Web Services... Hi All, I would like to create the web service for FAX  and SMS, could you please tell me where I can find the necessary information. Thanks a lot, regards, Karikalan -Original Message- From: Russell Butek [mailto:[EMAIL PROTECTED]] Sent: Thursday, F

RE: Off topic .NET question

2002-02-18 Thread Thomas Börkel
HI! All proxy classes derive from WebClientProtocol in .NET. And this class has a property named "PreAuthenticate" which should exactly do that. But it does not work here. Maybe it CANNOT work, because how should .NET know that you want basic authentication and not, for example, NTLM authentic

RE: Off topic .NET question

2002-02-18 Thread Adam.Leggett
Thomas, Thanks for the feedback. We have the exact same problem i.e PreAuthenticate=true does not appear to work for us either. In the meantime on the Java side I have created a version of my AuthHandler that parses the SOAP header instead for auth details. At this point we are at the stage of tr

Does axis support asychronous messaging?

2002-02-18 Thread Jeffrey Hau
Hi, is it possible for a client to invoke a service, go do something else and get the response from the service at an later stage? for example if i have a service that's waiting for a resource, is it possible for me to call the service first and check later if has got the resource and meanwhil

RE: Off topic .NET question

2002-02-18 Thread Thomas Börkel
HI! We do not use an Axis AuthHandler. We have our own transport (our own HTTP server), so that's no problem for us. Regards, Thomas > -Original Message- > From: Adam.Leggett [mailto:[EMAIL PROTECTED]] > Sent: Montag, 18. Februar 2002 10:54 > To: '[EMAIL PROTECTED]' > Subject: RE: Off

RE: Does axis support asychronous messaging?

2002-02-18 Thread Taras Shkvarchuk
What you want are non blocking calls. No. Currently Axis will block until response has arrived. It does however suppose async messaging, as in you do not have to complete an RPC session. You can submit a separate request to the server asking for your response, or server can push response when its

FAX / SMS Web Services...

2002-02-18 Thread Kumaresan, Karikalan
Title: FAX / SMS Web Services... Hi All, It would be great if somebody provide some assistance to create FAX / SMS SOAP web service? Has anyone developed FAX/SMS SOAP web service? regards, Kari... -Original Message- From: Thomas Börkel [mailto:[EMAIL PROTECTED]] Sent: Monday, Febr

RE: Off topic .NET question

2002-02-18 Thread Sascha Kulawik
Im currently working with ServerSite created GUID for the authentication of the Client. Currently I havent knew, that it would be possible, to use "normal" HTTP Authentication for authenticate a valid SOAP Client. Can anybody tell me, how this would be implemented either in a .NET Application for

Re: Does axis support asychronous messaging?

2002-02-18 Thread Jeffrey Hau
Taras, thanks for your reply. I just look through the api doc and there is a invokeOneway method for client which is suppose to return immediately. Is this a non blocking call? in the alpha3 doc it says this functionality has not been implemented, do you know if has been done in more recent bu

RE: Off topic .NET question

2002-02-18 Thread Thomas Börkel
HI! .NET does everything automatically on the client side. If you for example deploy your service on a web server that forces basic HTTP authentication, then .NET will use this. You just have to set the credentials on the .NET side before the first method call like this: myGeneratedProxyClass

RE: Does axis support asychronous messaging?

2002-02-18 Thread Taras Shkvarchuk
Not that I know of yet. People are mostly working on getting wsdl<->java working right now. If you can add some code to make it work, it will be in AXIS sooner ;) > -Original Message- > From: Jeffrey Hau [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 18, 2002 2:23 AM > To: [EMAIL PRO

Re: Does axis support asychronous messaging?

2002-02-18 Thread Jeffrey Hau
Taras, thanks again for the info. i will try my best :) Taras Shkvarchuk wrote: >Not that I know of yet. People are mostly working on getting wsdl<->java >working right now. >If you can add some code to make it work, it will be in AXIS sooner ;) > >>-Original Message- >>From: Jeffrey Hau

Re: FAX / SMS Web Services...

2002-02-18 Thread Sascha Kulawik
The Problem would be: HOW do you want to send short messages ? Also: Do you want to create an open service ? Who would pay for this service ? (You cant send a fax or sms for nothing). I think, you must implement your own service right to your business affords - and you will need a mobile for send

Re: AW: newbie question invoking AdminServlet

2002-02-18 Thread Calvin Powers
Hi, I've been trying to follow the directions in the document "Installing and deploying web applications using xml-axis" which comes with alpha 3. In step 5 it says to issue this command to deploy a service: java org.apache.axis.client.AdminClient -lhttp://localhost:8080/axis/services/AdminS

RE: FAX / SMS Web Services...

2002-02-18 Thread Kumaresan, Karikalan
Title: RE: FAX / SMS Web Services... Thanks a lot for your reply Sascha Kulawik, No, I do not want to create my own service, I would like to use the existing service. I am searching for the regional service providers for Germany. Do you know any page which provides the information regarding

Complex type in SOAP header

2002-02-18 Thread Adam.Leggett
I need to serialize a JavaBean to send in the SOAP header, and to retrieve it from the MessageContext in a handler. I have no problem when the header element is a xsd dataype. Has anyone tried this yet? Adam Leggett UPCO Direct Line: 0113 20 10 631 Fax: 0113 20 10 666 Th

AW: FAX / SMS Web Services...

2002-02-18 Thread Stefan Henke
Title: FAX / SMS Web Services... Do you want to define a soap interface which takes all necessary data required for sending (text, receipient and so on) and the message will be sent by the service itself? What is your problem? Sending the message on the server or creating the soap interface

RE: Does axis support asychronous messaging?

2002-02-18 Thread Sascha Kulawik
Isnt WSDL currently working ? Ive checked my AXIS Services via a open WSDL checker - also .NET accepted my WSDL Source. Isnt it completely integrated ? On Mon, 2002-02-18 at 11:28, Taras Shkvarchuk wrote: > Not that I know of yet. People are mostly working on getting wsdl<->java > working right n

RE: Bad envelope namespace error

2002-02-18 Thread Ramon Turnes
See subject "errors with deploying example web service shipped with xml-ax is-alpha3" in the previous messages. Regards. Ramon. > -Original Message- > From: Ajith Joseph [mailto:[EMAIL PROTECTED]] > Sent: Sunday, February 17, 2002 12:12 AM > To: [EMAIL PROTECTED] > Subject: Bad envelope

RE: Off topic .NET question

2002-02-18 Thread Sascha Kulawik
Thank you for your answer. Is that the correct way to implement security for SOAP Services ? Does it work with the "DOMAIN" Flag for Apache HTTPD / Tomcat Server ? How Do you can use the Authentication within a Java Client ? (API-RTFM :) ) On Mon, 2002-02-18 at 11:25, Thomas Börkel wrote: > HI!

RE: problems with WSDL2Java

2002-02-18 Thread Egger Oliver
Hi Adam,   I had the same problem, in my case I "remade" the wsdl file with the java2wsdl utility and the thing I noticed was that xsd:string has changed to SOAP-ENC:string in the wsdl-message part since axis 3 alpha release. Afterwards the WSDL2Java utility was working without any probl

RE: Off topic .NET question

2002-02-18 Thread Thomas Börkel
HI! I am not sure. I am no SOAP expert. And I'm also quite sure that our way (with our own HTTP server and call provider) of using Axis is not very common. Regards, Thomas > -Original Message- > From: Sascha Kulawik [mailto:[EMAIL PROTECTED]] > Sent: Montag, 18. Februar 2002 13:58 > To

Re: AW: FAX / SMS Web Services...

2002-02-18 Thread Sascha Kulawik
Hi Stefan, I dont know, if there is any open service - i think, its impossible, because of the load traffic. I suggest, if there would be any free service, it would be used by several ISPs or any greater website. So I think, you have to do your own. On Mon, 2002-02-18 at 13:39, Stefan Henke

RE: FAX / SMS Web Services...

2002-02-18 Thread Kumaresan, Karikalan
Title: FAX / SMS Web Services... I would like to send the message to the FAX web service (to some providers) using WSDL,   for example,       targetNamespace="http://www.OneOutBox.com/wsdl/FreeFaxService.wsdl"    xmlns:tns="http://www.OneOutBox.com/wsdl/FreeFaxService.wsdl"    xmlns:xsd=

RE: FAX / SMS Web Services...

2002-02-18 Thread Sascha Kulawik
The Problem, youre discussion isnt either WSDL, nor SOAP related. To build a service for freefax, you must have a solution based on your webserver / isdn / hylafax and so on to automate this part of the software. Try to look at the Fax Solutions for Linux and how to send a job to them. I think, th

Problem installing AXIS on Jakarta-Tomcat 4.0.2

2002-02-18 Thread Chauviaux, Patrick
Title: FAX / SMS Web Services... Hi all,   I had previously installed AXIS SOAP on the jakarta-tomcat server version 3.2.2. and it works well. Now I have installed the jakarta-tomcat server version 4.0.2. and it doesn't work.When I make a SOAP call to the server I have the following except

Re: Problem installing AXIS on Jakarta-Tomcat 4.0.2

2002-02-18 Thread Sascha Kulawik
I also need help with AXIS and Tomcat 4. Ive setted up JDK 1.3.1 (because of the 1.4 Bugs (see Cocoon)) and Tomcat 4 final - after Accessing the AxisServlet Ive got : java.lang.NoClassDefFoundError at org.apache.axis.deployment.SimpleDeploymentManager.(SimpleDeploymentManager.java:110) at org.ap

Java2WSDL parameter p specification example?

2002-02-18 Thread Egger Oliver
Hello,   was somebody able to use the Java2WSDL and specifing a package to namespace argument? whatever I do I get the following error:   [java] Java2WSDL emitter[java] Error: Unable to parse first argument for option -p[java] Usage: java org.apache.axis.wsdl.Java2WSDL [options] class-of-p

How to get Session bean published using axis????

2002-02-18 Thread Vinit Kumar
Hi I have to make a stateless sesson bean made available as web service. I could not find the ideal way to get it done.What i am doing is to create a wrapper class,in whose constructor, i lookup for session bean from naming service and and then get the remote interface. Now, once i get the remo

RE: Follow-Up to the email discussion about portType name vs. service name

2002-02-18 Thread Thomas Börkel
HI! Please see my answer in the dev mailing list. Regards, Thomas > -Original Message- > From: R J Scheuerle Jr [mailto:[EMAIL PROTECTED]] > Sent: Samstag, 16. Februar 2002 18:17 > To: [EMAIL PROTECTED] > Cc: Axis Mailinglist > Subject: Re: Follow-Up to the email discussion about portTy

Re: Connection Refused Error

2002-02-18 Thread mickknutson
If you figure this one out, "please" let me know what you did to fix it! I have this issue and can't figure it out. --- Thanks Mick Knutson Discover Financial Services Office: 801-902-4244 Fax: 801-902-4123

RE: Find the List of Services

2002-02-18 Thread Chauviaux, Patrick
Hello all, I have tried the following: C:\jakarta-tomcat-4.0.2\bin>java org.apache.axis.client.AdminClient -lhttp://localhost:8080/axis/services/AdminService list and I got the following error message: Doing a list AxisFault faultCode: http://xml.apache.org/axis/:Server.userE

Re: How to get Session bean published using axis????

2002-02-18 Thread Frank Griffin
Vinit Kumar wrote: > I have to make a stateless sesson bean made available as web > service. I'm trying to do somewhat the same thing. The simplest way is, as you wrote, to create a class that implements your EJB's local or remote interface with pass-through methods, and have the constructor o

axis nighly build exception: No deserializer defined for array type

2002-02-18 Thread Egger Oliver
Hello,   I changed form Axis alpha 3 to Axis nightly build because of name spaces packaging problem.   I was able to run the axis server nightly build and as a client axis alpha3 (I had to manually add manually code for the bean serialization), however if I want to upgrade the client also

RE: Complex type in SOAP header

2002-02-18 Thread Adam.Leggett
If anyone is interested I resolved this by simply building a org.w3c.dom.Element in the client, using the SOAPHeader(Element) constructor. Then in my handler I retrieved the the SOAPHeader from the MessageContext and used header.getAsDOM() in order to parse the contents. In addition I had to man

Re: Java2WSDL parameter p specification example?

2002-02-18 Thread Karen Schuchardt
I experienced this problem also and switched over to using the --NStoPkg syntax which seems to work fine.  I'm not sure what the problem is. Karen Egger Oliver wrote:  Hello,was somebody able to use the Java2WSDL and specifing a package to namespace argument? whatever I do I get the following err

Re: The client fails decoding the response

2002-02-18 Thread R J Scheuerle Jr
Jans, Please do the following: 1) Use the latest version of axis. 2) Don't use Call.NAMESPACE and Call.setMethodName(...). Instead use: call.setOperationStyle("rpc"); call.setOperationName(new javax.xml.rpc.namespace.QName ("http://soapinterop.org/";, "echoString")); 3) Loo

Re: Java2WSDL parameter p specification example?

2002-02-18 Thread R J Scheuerle Jr
Try quotes around the package and namespace. -p "com.ecofin.vk.beans"="urn:ecofin.quoteserver.types" Rich Scheuerle XML & Web Services Development 512-838-5115 (IBM TL 678-5115)

RE: Complex type in SOAP header

2002-02-18 Thread Jeff Talbot
Title: RE: Complex type in SOAP header You shouldn't need to deal with Element's or DOM's. Axis includes support for complexTypes passed as SOAP Header elements (you just need to make sure you have serializers registered for your types). On the client side you can create the header in the fol

How to write a web service which updates the servlet session object ?

2002-02-18 Thread Thierry Dupont
Hello, I find Axis very interesting. Amazing how easy it is to publish a web service, especially stateless service, like getting stock quotation as show in the example. However, I think that web applications very often have to handle user session information. Axis can run on top of a servlet e

Re: samples.userguide.example5

2002-02-18 Thread Jake Logan
Hi, I have the same problem. Should I try the latest nightly build? I also noticed that the deploy.wsdd file has I tried changing to because the "myNS" syntax looks incorrect. It didn't help. Any ideas? Thanks, Jake >Hi, > >I tried the example5 and got org.xml.sax.SAXException: >D

EJB Provider - Illegal Access Exception

2002-02-18 Thread David L. Cole
Hi all, I am trying to deploy a service which access an EJB for which I am getting an IllegalAccessException at EJBProvider.getServiceClass(EJBProvider.java:208). This is happening as a result of using reflection to get a handle to the RemoteInterface. Has anybody seen this error before? prot

Re: Problem installing AXIS on Jakarta-Tomcat 4.0.2

2002-02-18 Thread Calvin Powers
For what it's worth, I had the same levels of JDK, Tomcat, and Axis and had the same symptoms. So either we're both making the same mistake or there's a bug someplace. I think I'm gonna back off to a 3.x level of Tomcat. At 02:48 PM 2/18/2002 +0100, you wrote: >I also need help with AXIS

RE: Connection Refused Error

2002-02-18 Thread Ramon Turnes
This usually means that you don't have the HTTP Server running on port 8080 which is the default. If you want to specify other port do the folllowing: java org.apache.axis.client.AdminClient -p 80 deploy.wsdd if your web server is running on port 80. Regards. -

RE: Java2WSDL parameter p specification example?

2002-02-18 Thread Ramon Turnes
You should write -p com.ecofin.vk.beans urn:ecofin.quoteserver.types instead of -p com.ecofin.vk.beans=urn:ecofin.quoteserver.types Regards. -- Ramon Turnes Perez HERMES SoftLab, Litijska 47 1000 Ljubljana, SLOVENIA Phone: +386 1 5865 638 Fax: +38

Re: How to get Session bean published using axis????

2002-02-18 Thread cleve
put a name to this, the class you need to write is a business delegate. a plain vanilla java class that encapsulates all aspects EJB. it think this pattern is going to become increasingly more popular was more and more web services are published. if you've got a login to http://theserverside.c

RE: SimpleSessionHandler

2002-02-18 Thread Glen Daniels
Hi Chris! Check out org/apache/axis/handlers/SimpleSessionHandler and test/session/TestSimpleSession. That shows you how to do it using Axis' session header. To use MS SOAP as a client, you'd need to write some equivalent to the functionality of the SimpleSessionHandler on the .NET side to

RE: service instances

2002-02-18 Thread Glen Daniels
If you want a single instance of your service object for ALL calls (i.e. a singleton), then all you need to do is make sure the "scope" parameter on the service is set to "application" in the engine's WSDD.  In other words, your deploy.wsdd should look like this:       ...   This doesn

Re: service instances

2002-02-18 Thread Ramaswamy Srikant
thanks This is what I was looking for. I wanted a single instance of the service object. Since I am using pub/sub I dont care abt sessions Srikant Glen Daniels wrote: [EMAIL PROTECTED]"> If you want a single instance of your service object for ALL calls (i.e. a singleton), then all you need

RE: Does axis support asychronous messaging?

2002-02-18 Thread Taras Shkvarchuk
Mostly yes, but not 100%. Among other things there are some inconsistencies in serializers for Arrays/custom Array type/sequences, etc... When Axis is announced as Beta 1, then you might be able claim it supports 90% of the use cases. > -Original Message- > From: Sascha Kulawik [mailto:[

RE: Java2WSDL parameter p specification example?

2002-02-18 Thread Egger Oliver
Hi Ramon, Rich & Karen, I'm working with ANT and changing the parameter from -p to --PkgtoNS works! Thanks a lot!!! Oliver P.S: - ommitting the equal sign with a space (-p xxx xxx) does not work in my case - I was not able to produce the suggested calling syntax -p "xx"="xx" with the ant s

RE: Problem installing AXIS on Jakarta-Tomcat 4.0.2

2002-02-18 Thread Egger Oliver
Title: FAX / SMS Web Services... Hello,   You have to add axis.jar (and maybe logxxx.jar) to tomcat common\lib directory, it was mentioned somewhere in the news group here, but it can't find it anymore.   Hope this helps, Oliver   NEU:  NZZ finfox, personal finance, die finanz- und vermögen