RE: Dynamic SoapPort Address

2002-11-20 Thread Mattia dongili
Hi, search the archives for *"private final" attribute in generated stub java client* messages (11/6/2002), this topic has been discussed there. bye -- mattia -Original Message- From: Matthias David [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 10:52 AM To: '[EMAIL PROTECT

RE: Serializing / Deserializing

2002-11-19 Thread Mattia dongili
Hi, I probably missed some post but I recall having a similar problem when using Jboss.NET in 3.0.3-tomcat4.1.12. the problem was Jboss using some alpha/beta release and me using the 1.0 release of Axis. I had this problem trying to send and receive a BigDecimal object: the request was serialized

RE: Handlers on client side

2002-11-14 Thread Mattia dongili
Hi, > I call a web service using axis stub classes. How could i do > in order to receive the soap message bypassing deserialization? Have you tried something like this: package wsclients; import web_generated.*; import java.io.*; import java.math.*; import java.text.*; import javax.xml.rpc.Serv

RE: Why seleton and are web service push technology?

2002-11-12 Thread Mattia dongili
> At 11:20 AM 11/11/2002 +0100, niksa_os wrote: > >> 1) For what reason skeleton classes exist, I mean the ability to generate this >> classes? If I have java class I use axis and make wsdl and client stub. Why >> skeleton classes? > > You are suggesting a "dangerous" approach where you generate WS

RE: How to pass a parametre to a webservice on startup

2002-11-08 Thread Mattia dongili
hi, > I didn't understand when you said that this approach will > lock me into using Axis as your SOAP layer. what does this means? that this is an Axis specific way of passing/retrieving parameters to webservices and if you move to any other SOAP framework you'll have to rewrite that piece of co

RE: Error while trying to deploy service

2002-11-07 Thread Mattia dongili
why not use this? java org.apache.axis.client.AdminClient -l"http://localhost/axis/services/AdminSe rvice" path_to\deploy.wsdd anyway I think deploy.wsdd should reside in the same directory where you run your code from... in case your code is in a JSP file the execution directory is your server's

RE: ResultSet arguments

2002-11-07 Thread Mattia dongili
I think they said to represent a row of your resultset as a Bean (a map between columns and bean members): public class MyRow { int id; String name; String pippo; String pluto; /* ... setters and getters for all members ... *

RE: Mapping Exception to AxisFault AxisFault

2002-11-06 Thread Mattia dongili
Hi, Are you connecting to the right address of you web service? > faultString: java.net.ConnectException: Connection refused ^^ -- mattia > faultActor: null > faultDetail: > stackTrace: java.net.ConnectException: Connection ref