EJB: No serializer found for class

2003-12-07 Thread Anthony Dodd
I'm attempting to map an existing SessionBean as a WebService. I've attached my wsdd script below. All works well except where I have the Ticket bean either passed as a parameter or return ed from the function. In each case I get the error 20:54:52,974 WARN  [jbossweb] WARNING: Exception

Installation verification problem

2003-12-07 Thread Damir Dulitz
Hi, I followed the installation instruction for Axis. At step 4 happyaxis.jsp reports "The core axis libraries are present. 1 optional axis library is missing". The missing one is "xmlsec.jar". I copied the files jaxrpc.jar and saaj.jar to CATALINA_HOME/common/lib, too (mentioned on happyaxis.jsp)

Axis C++ wsdl2ws Exception

2003-12-07 Thread Martin Aberle
Hi, I am trying the beta version of Aixs C++. I want to write a client, that connects to our exisiting web service. When I run wsdl2ws, several exceptions occur and some complex types are not created. These messages are shown: Error occured yet we continue to genarate other classes ... you should

Simple Pass of data from Skeleton to Stub of another Service-> newbie question

2003-12-07 Thread Arne Wolf Kösling
Hi ! I've to following problem : I'm building a connection between a wrapper (built in PHP) -> mediator (in Java) -> wrapper (in PHP). The Mediator only passes the values through from the first wrapper to the second one and the other direction. The Mediator and one of the wrappers are offering

RE: Adding a text node to a MessageElement

2003-12-07 Thread chris
Hi Lou, it's good to hear that you are still banging on Axis. Axis doesn't make it easy to morph the message elements while the message is in the processing pipeline. After the XML string has been converted to SOAP elements, the definition is locked down. For example, as you probably found, Messa

RE: Helping send XML files

2003-12-07 Thread chris
Axis doesn’t munge Strings at all….. in tcpmon, you will notice that the angle brackets are escaped on the wire, but (using Axis-to-Axis) the escaped values are set back to regular characters by the time the string is passed to the service method.   /Chris   -Original Message-

RE: Reconstructing a SOAP reply -- Plsss help

2003-12-07 Thread Mark
Hi Chris, Thanks again for your help, but obviously I am missing somehting. Here is the code from PRCProvider which deals with the return values. Now if the return value which i want to send is in an integer variable returnInt, how do I send it back? I will want to do the same with out parameters