Re: writing a client

2008-02-19 Thread Wesley Mesquita
I trying to use stubs but I am getting erros like "InputStream Could not be null", even for out-only methods. What this mean? PS. In the other thread I had "Read time out" using the ServiceClient approach. On Feb 19, 2008 6:40 AM, Antonio Manuel Muñiz Martín < [EMAIL PROTECTED]> wrote: > I like

Re: writing a client

2008-02-19 Thread Antonio Manuel Muñiz Martín
I like to use an Adapter Class that encapsulates all the creation message logic. This adapter class is used as a simple java object, in other words, the user of this class dont know if it is calling a web service, is calling a database, ... methods of this Adapter Class only receive parameters of

RE: writing a client

2008-02-15 Thread D . H . T . M . Gameren
Hi, Indeed this is the aproach. First genereate client-stub and then create a ServiceClient which calls the stubmethods. See small example voor de client main. public static void main(String[] args) throws RemoteException { // TODO Auto-generated method stub De

RE: writing a client

2008-02-15 Thread Shailendra Singh
Generally we are using first approach. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, February 15, 2008 5:42 PM To: axis-user@ws.apache.org Subject: writing a client Hi, Could you please let me how to go about writing a client? I mean