RE: Unable to find Deserializer

2002-11-21 Thread Russell Brown
Title: Message can you post the part of your client code where you register the DeserializerFactory ( its  Call.registerTypeMApping() )?   Russell -Original Message-From: Vijetha Vadlakonda (vijetha) [mailto:[EMAIL PROTECTED]]Sent: 20 November 2002 20:08To: [EMAIL PROTECTED]Su

RE: SSL-Axis Bug ?

2002-11-20 Thread Russell Brown
y to assist you... Regards, stefan -Ursprungligt meddelande- Från: Russell Brown [mailto:[EMAIL PROTECTED]] Skickat: den 20 november 2002 13:27 Till: [EMAIL PROTECTED] Ämne: RE: SSL-Axis Bug ? Stefan, I am having the same problem that you outline below ( the nullPoinerException) can you exp

RE: SSL-Axis Bug ?

2002-11-20 Thread Russell Brown
Stefan, I am having the same problem that you outline below ( the nullPoinerException) can you explain what the reason is and where I have to change the code of Axis to make this work please ? Thanks in advance Russell -Original Message- From: Stefan Carlsson [mailto:[EMAIL PROTECTED]

RE: Deseraliazing anyType problem

2002-11-19 Thread Russell Brown
e wsdl to work with. The wsdl uses datatypes from http://schemas.xmlsoap.org/soap/encoding/ W3C schema, which I belive includes the anyType data type.   How can I specify my custom deserializer without using a wsdd file descriptor for client axis code?   cheers, chico.   --

RE: Serializing / Deserializing

2002-11-19 Thread Russell Brown
ust out of curiosity, have you tried your code with a simpler bean? One with only strings or integers? Just to insure that everything else is working? On Tuesday 19 November 2002 06:26 am, Russell Brown wrote: > Hi Again, > Ok I'm spamming the list: I have sorted the problem descri

RE: Deseraliazing anyType problem

2002-11-19 Thread Russell Brown
Chico, Please post your wsdd and the bit of your client code  that registers type mappings: I have had this issue , and thanks to the support from this list I have overcome.   Checklist: Is the anyType you are trying to deserialize a valid bean ?     have you set up the beanMapp

RE: Serializing / Deserializing

2002-11-19 Thread Russell Brown
Hi Again, Ok I'm spamming the list: I have sorted the problem described in the previous post: not be recoding my deserializer, but by using the beanMapping tag and the default bean deserilaizer instead. Thanks again all Russell -Original Message- From: Russell Brown Sen

RE: Serializing / Deserializing

2002-11-19 Thread Russell Brown
> If someone just tells me they have passed a bean to an EJB as > a webservice and got a result back..well I'll keep trying. > > > Regards in desperation > > Russell > > -Original Message- > From: Russell Brown > Sent: 18 November 2002 09:12 > To: [EMAIL

RE: Serializing / Deserializing

2002-11-19 Thread Russell Brown
I am trying to do If someone just tells me they have passed a bean to an EJB as a webservice and got a result back..well I'll keep trying. Regards in desperation Russell -Original Message----- From: Russell Brown Sent: 18 November 2002 09:12 To: [EMAIL PROTECTED] Subject: RE: S

RE: Help with List De-serializer problem.

2002-11-18 Thread Russell Brown
Muthu, This sounds a lot like my problem with the HashMap property of my Bean. Even though I have written a deserializer for the bean Axis still fails to deserialize it. If I get any answers I'll let you know for sure Good Luck Russell -Original Message- From: Ramaswamy, Muthu [mailto:

RE: Serializing / Deserializing

2002-11-18 Thread Russell Brown
.registerTypeMapping(args...) anywhere in your code? Is the class file for you javabean available to your client? On Friday 15 November 2002 12:46 pm, Russell Brown wrote: > Cheers ben, > > That is pretty much line for line what I have, except that the service > provider is

RE: Serializing / Deserializing

2002-11-15 Thread Russell Brown
System.out.println( 162 "Error in PayrollSummaryBean: " 163 + e 164 ); 165 } 16 On Friday 15 November 2002 11:42 am, Russell Brown wrote: > Hi, > > Has anyone on this list managed

Serializing / Deserializing

2002-11-15 Thread Russell Brown
Hi, Has anyone on this list managed to serialize AND deserialize a bean with Axis's bean serializer or there own custom serializer / deserializer ever ? Just to know that it has been done once will fill me with a renewed hope. If you can tell me how you side stepped the ubiquitous error (Error

RE: Deserializer /Serializer examples

2002-11-15 Thread Russell Brown
In the book Axis next generation java soap by Romin Irani. Chapter 5. However I am posting about this is I cannot get the tutorial to work. Whether I use the BeanDeserializer or my own custom deserializer i get this error Error : org.xml.sax.SAXException: Deserializing parameter 'arg1': could

RE: Reset Axis.

2002-11-14 Thread Russell Brown
Ramon    -Original Message-From: Russell Brown [mailto:[EMAIL PROTECTED]]Sent: Jueves, 14 de Noviembre de 2002 09:10 a.m.To: [EMAIL PROTECTED]Subject: RE: Reset Axis. Save below as undeploy.wsdd   http://xml.apache.org/axis/wsdd/"> 

Deserializing beans ( serializing works ! )

2002-11-14 Thread Russell Brown
Hi all,  I am having problems with deserializing beans. Below is the SOAP request sent by the Web Service client, as you can see the ArgumentSet class is serialized ok. However I get an Axis Fault when running the client as follows: org.xml.sax.SAXException: Deserializing parameter 'arg1':

RE: EJBs deployed as webservices continued

2002-11-14 Thread Russell Brown
Title: Message Hello all, I finally solved my problems by switching to JBoss. I hate to quit on the RI like that but I was loosing my hair.   Thanks to all who helped me with deploying a bean as a service.   regards   Russell -Original Message-From: Russell Brown Sent: 14

RE: Reset Axis.

2002-11-14 Thread Russell Brown
Save below as undeploy.wsdd   http://xml.apache.org/axis/wsdd/">  run java org.apache.axis.client.AdminClient undeploy.wsdd   if by "axis server stops working properly" you mean that the list of deployed services disappears   Russell -Original Message-From: Ramon Arias [mailto

RE: EJBs deployed as webservices continued

2002-11-14 Thread Russell Brown
ok.     1)    In your code don't use InitialContext with default parameters. Find out what is your jndi properties values like CONTEXT_FACTORY etc and use the constructor which takes HashTable as parameter    2) Unjar sun-j2ee jar and  set the .jndi.properties to whateve

RE: EJBs deployed as webservices continued

2002-11-13 Thread Russell Brown
up and put them in lib (I assume). Now, here's the difficult part. Sometimes, you get really helpful messages spewing in the Tomcat logs/windows -- sometimes not. Several times, I found myself confronted with "nothing worked and there don't seem to be any errors." Rega

RE: EJBs deployed as webservices continued

2002-11-06 Thread Russell Brown
. Restart the jboss server. You can test your installation by placing a simple test case class in the WEB-INF subdir of the axis.war distribution. Name the java source test.jws. Then, point your web browser to http://yourhostname:8080/axis/test.jws - Original Message - From: "Russel

RE: Axis set up woes

2002-11-06 Thread Russell Brown
in WEB-INF/lib. On my 4.0.4 instance, I just dumped the axis jars into WEB-INF/lib and it worked fine. The only error I ever got was something about "Problem with servlet engine config file: /WEB-INF/server-config.wsdd" but it didn't seem to affect anything. Regards, Lajos R

RE: Axis set up woes

2002-11-06 Thread Russell Brown
Are the jars that are needed ( like jaxrpc.jar, saaj.jar, activation.jar, mail.jar, xmlsec.jar ) should be in the %TOMCAT_HOME%/lib not in the webapps/axis/WEB-INF/lib   is this your problem ( it was mine y'see )   Regards   Russell -Original Message-From: Darrell Gamble [mail

RE: Axis set up woes

2002-11-06 Thread Russell Brown
I kept getting screwed by the fact that you cannot place jars that contain javax packages in web-inf/lib for the axis app. Put them in tomcat_home/lib   ( that is if you are on tomcat )   Hope that helps   Russell -Original Message-From: Darrell Gamble [mailto:[EMAIL PROTECTE

EJBs deployed as webservices continued

2002-11-06 Thread Russell Brown
r is on the claspath, and in the Tomcat lib dir and in the WEB-INF lib dir for Axis but still Tomcat cannot find the javax/ejb/EJBObject class. If anyone can even give me mild encouragement I will buy them booze!!! Thanks in advance Russell Russell Brown Application Developer Freeserve.c

RE: Deploying an EJB as a webservice ( j2sdkee RI EJB container )

2002-11-05 Thread Russell Brown
ot return any complex types. I got it working, though, so maybe there is something in here that will help you. -Original Message- From: Russell Brown [mailto:russell.brown@;Freeserve.com] Sent: Tuesday, November 05, 2002 11:14 AM To: [EMAIL PROTECTED] Subject: RE: Deploying an EJB as a webse

RE: Deploying an EJB as a webservice ( j2sdkee RI EJB container )

2002-11-05 Thread Russell Brown
ing an EJB as a webservice ( j2sdkee RI EJB container ) On Tue, 2002-11-05 at 02:45, Russell Brown wrote: > thanks for the hints. > > I changed the allowedMethods to the two I need to use ( should I add create() ? ) Nope. The current context must have permissions to call create on the

RE: Deploying an EJB as a webservice ( j2sdkee RI EJB container )

2002-11-04 Thread Russell Brown
es > have vainished ) > > Anyone out there able to help me on this at all ? I know > somebody must have deployed a session bean as a webservice > successfully > > Regards > > Russell > > -Original Message- > From: Russell Brown > Sent: 04 Nove

RE: Deploying an EJB as a webservice ( j2sdkee RI EJB container )

2002-11-04 Thread Russell Brown
deployed services have vainished ) Anyone out there able to help me on this at all ? I know somebody must have deployed a session bean as a webservice successfully Regards Russell -Original Message- From: Russell Brown Sent: 04 November 2002 09:53 To: [EMAIL PROTECTED] Subject

Deploying an EJB as a webservice ( j2sdkee RI EJB container )

2002-11-04 Thread Russell Brown
"How to deploy a EJB as a Web Service on Axis 1.0". I have also ordered the Axis book, bu am awaiting delivery. Many thanks in advance Russell Russell Brown Application Developer Freeserve.com Plc The Malthouse, Chadwick Street, Leeds LS10 1LJ Telephone: 0113 222 9110