Axis C++ 1.3 final is released

2004-10-28 Thread axis cpp
Hi All, The Apache Axis C++ team would like to announce the Final release of Axis c++ 1.3. The binary and source distributions can be downloaded from http://ws.apache.org/axis/cpp/download.html

Re: Problem with Deserializer

2004-10-28 Thread Gopalakrishnan T
Hi I fixed the issue the problem is with my deploy.wsdd   http://xml.apache.org/axis/wsdd/"   xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">                 http://ejb.wsif.company.com" >    http://www.w3.org/2001/XMLSchema"/>        xmlns:ns="http://ejb.wsif.compa

Stop typecasting

2004-10-28 Thread Scott Tully
Hi all- I have a problem with passing a long integer parameter into an axis web service that normally accepts a string value. The method's parameter is defined as a String (it holds a username) because is has been up to now, but I have a user that needs to use a number for a username and the

RE: jax-rpc compliant handler

2004-10-28 Thread Jonathan Colwell
Hey Ben, GenericHandler is not an interface that AXIS needs to provide an implementation of, it's just a convenient class that helps you write a handler of your own. It's up to the user to extend GenericHandler according to their needs. Here's an example of one I wrote that simply adds funkadeli

Trying to get call.invoke to return a java Double[] object. Help....

2004-10-28 Thread charles . rosa
To all, I am using a web service method that returns a java Double[] object. I am trying to invoke this method with the following code: // Instantiate new Service object Service service = new Service(); // Instantiate new Call object Call call= (Call) service.cre

jax-rpc compliant handler

2004-10-28 Thread Ben Anderson
Hi, I'm relativlely new to axis and web services in general. I saw a blurb on the wiki: http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/StandardsSupported that claims axis has passed jax-rpc compatibility tests. What I'm wondering is where is Axis implementation of: http://java.sun.

AW: Automating web service

2004-10-28 Thread Florian Theurich
When 'advertising your stuff' you should provide the correct URL :-) -Ursprüngliche Nachricht- Von: Matthieu RIOU [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 28. Oktober 2004 17:33 An: [EMAIL PROTECTED] Betreff: Re: Automating web service There's also an open souce Java BPEL engine n

Re: Automating web service

2004-10-28 Thread Matthieu RIOU
There's also an open souce Java BPEL engine named Twister. You can find more about it here : http://www.smartcomps/twister Our users usually find it somewhat better than ActiveBPEL and it's LGPL. Sorry for advertising my stuff here but I thought it could help ;) On Thu, 28 Oct 2004 11:15:11 -0

Re: Automating web service

2004-10-28 Thread Jim Murphy
Business Process Execution Language is a higher level Web Services technology. It describes how to glue together a series of web services message exchanges. In this sense, since you can implement web services in any language on any platform, its a higher level technology than Java, C++, .NET.

RE: Automating web service

2004-10-28 Thread Suzy Fynes
Thanks a million for that! -Original Message- From: Daniel Beland [mailto:[EMAIL PROTECTED] Sent: 28 October 2004 14:47 To: [EMAIL PROTECTED] Subject: RE: Automating web service BPEL4WS stands for Business Process Execution Language for Web Services (commonly named only just BPEL). It

RE: Automating web service

2004-10-28 Thread Daniel Beland
BPEL4WS stands for Business Process Execution Language for Web Services (commonly named only just BPEL). It is pure xml, it is only a new standard developped by IBM, Microsoft and BEA. (Used by orchestrator solutions like Websphere Business Integration or Bizztalk) There are a few open source so

Re: Automating web service

2004-10-28 Thread Silvano Maffeis
Suzy Fynes wrote: Hi, Can anyone tell me if its possible to automate an axis web service i.e. as oppose to a client making a request when they want information that the service sends out the information daily Thanks Suzy One approach would be to simply invert the roles: The "web serv

RE: Automating web service

2004-10-28 Thread Suzy Fynes
I never used BPEL before, is it compatible with java or is it something works on its own? -Original Message- From: Daniel Beland [mailto:[EMAIL PROTECTED] Sent: 28 October 2004 13:37 To: [EMAIL PROTECTED] Subject: RE: Automating web service Wouldn't it be easier with BPEL? Some kind of

RE: Automating web service

2004-10-28 Thread Arijit Mukherjee
May be - I'm not much aware of details about BPEL - I was referring to standard axis based WS (those which are called plain-vanilla WS) :) Cheers Arijit >-Original Message- >From: Daniel Beland [mailto:[EMAIL PROTECTED] >Sent: 28 October 2004 13:37 >To: [EMAIL PROTECTED] >Subject: RE: A

RE: Automating web service

2004-10-28 Thread Daniel Beland
Wouldn't it be easier with BPEL? Some kind of suscribe/publish message queue? ActiveBPEL is a free open source BPEL orchestrator which uses axis to produce their web services. It would not be too hard to adapt your current web services with it. Daniel > The client probably needs to register o

RE: Automating web service / question

2004-10-28 Thread Marco Mistroni
Hello all,     I read this post and take the opportunity to ask a related question: can you make a webservice  with ‘application context’ scope with axis?   This way, webservice is created only once…   Regards     marco         -Original Message- From: Su

RE: Automating web service

2004-10-28 Thread Suzy Fynes
Thanks will give it a go   -Original Message- From: Arijit Mukherjee [mailto:[EMAIL PROTECTED] Sent: 28 October 2004 12:18 To: [EMAIL PROTECTED] Subject: RE: Automating web service   The client probably needs to register once - otherwise how would the service know where to sen

RE: Automating web service

2004-10-28 Thread Suzy Fynes
How would the service be set up? Would I just put a timer of some sort on the java class been deployed?   -Original Message- From: Paul Kukk [mailto:[EMAIL PROTECTED] Sent: 28 October 2004 12:17 To: [EMAIL PROTECTED] Subject: RE: Automating web service   Yes, this is very d

RE: Automating web service

2004-10-28 Thread Arijit Mukherjee
The client probably needs to register once - otherwise how would the service know where to send the stuff? So, a probable solution can be:   1. The client registers once and provides some means (some URI) where the server will send its stuff - shouldn't be a synchronous procedure - the serve

RE: Automating web service

2004-10-28 Thread Paul Kukk
Yes, this is very do-able? -Original Message-From: Suzy Fynes [mailto:[EMAIL PROTECTED]Sent: Thursday, October 28, 2004 7:11 AMTo: [EMAIL PROTECTED]Subject: RE: Automating web service Kinda of but an object would be sent to the client server.   Is it do-able?

RE: Automating web service

2004-10-28 Thread Suzy Fynes
Kinda of but an object would be sent to the client server.   Is it do-able?   -Original Message- From: Arijit Mukherjee [mailto:[EMAIL PROTECTED] Sent: 28 October 2004 12:10 To: [EMAIL PROTECTED] Subject: RE: Automating web service   Sounds like a notification service...  

RE: Automating web service

2004-10-28 Thread Arijit Mukherjee
Sounds like a notification service...   Cheers Arijit From: Suzy Fynes [mailto:[EMAIL PROTECTED] Sent: 28 October 2004 12:08To: [EMAIL PROTECTED]Subject: Automating web service     Hi,   Can anyone tell me if its possible to automate an axis web service i.e.

Automating web service

2004-10-28 Thread Suzy Fynes
    Hi,   Can anyone tell me if its possible to automate an axis web service i.e. as oppose to a client making a request when they want information that the service sends out the information daily   Thanks Suzy

Problem with Deserializer

2004-10-28 Thread Gopalakrishnan T
Hi I deployed a sample ejb webservice using Axis and i am using WSIF to invoke the webservice. My webservice is going to return a complex java object(A value object). The service was invoked successfully and the problem is with Deserializing the object ejb returned. Its throwing error while Deseria

RE: adding security to webservices in axis

2004-10-28 Thread Shahi, Ashutosh
http://www-128.ibm.com/developerworks/webservices/library/ws-sec1.html The following article provides good introduction to different options available to implement security in Tomcat + Axis. Regards, Ashutosh -Original Message- From: Marco Mistroni [mailto:[EMAIL PROTECTED] Sent: Thursda

adding security to webservices in axis

2004-10-28 Thread Marco Mistroni
Hello all, I have a question for axis mailing list.. I would like to add security to my axis webservice, and I am looking For tips.. What I want to avoid is to going and modify the web.xml in tomcat for adding Users I am sure that there is at least someone on this list which came across