Re: [Fwd: Re: stub and skelton]

2005-03-03 Thread jayachandra
What you have in server-config.wsdd is the class which can help deployment
update itself with the description of operation etc. Instead of a skeleton if 
you try to give the actual impl class itself in that location, then
the service itself might not get deployed.
For removing any doubts on the need for skeleton, just open up the
skeleton that WSDL2Java creates with -Strue option for any standard
wsdl and see the significant amount of code that is present in it that
talks about operation description etc. You will find that it is
something one cannot dispense with so easily.

Bye
jayachandra

On Wed, 02 Mar 2005 19:07:36 +0530, Pavan Kumar Choukhada
<[EMAIL PROTECTED]> wrote:
> 
> 
> --
> Netcore Solutions Pvt. Ltd.
> Website:  http://www.netcore.co.in
> Spamtraps: http://cleanmail.netcore.co.in/directory.html
> --
> 
> 
> -- Forwarded message --
> From: Pavan Kumar Choukhada <[EMAIL PROTECTED]>
> To: jayachandra <[EMAIL PROTECTED]>
> Date: Wed, 02 Mar 2005 11:57:39 +0530
> Subject: Re: stub and skelton
> On Wed, 2005-03-02 at 11:43, jayachandra wrote:
> that's true
> SOAP message just contain method name and parameter.
> 
> but we define java class information in server-config.wsdd
> 
> for respective service.
> so i think still no need of skelton.
> 
> > Not that easy buddy.
> > Even for RPCProvider how is it to know from the plain SOAP message to
> > which Java classes the XML need to be deserialized before invoking the
> > java class.
> > There comes the need for skeleton code.
> >
> > Jayachandra
> >
> > On Wed, 02 Mar 2005 11:23:44 +0530, Pavan Kumar Choukhada
> > <[EMAIL PROTECTED]> wrote:
> > > that's true i am not using static invocation.
> > > but i think we do not require skelton on server.
> > > because as i mentioned earlier using RPCProvider axis invoke java class
> > > via reflection.
> > >
> > > On Wed, 2005-03-02 at 11:04, Shahi, Ashutosh wrote:
> > > > Pavan,
> > > >   The skeleton code is used at the server for delegating the work
> > > > to the actual java class. The stubs are used at the client end if u r
> > > > using static invocation, which I think you r not using, so u can do
> > > > without them at client.
> > > >
> > > > Ashutosh
> > > >
> > > > -Original Message-
> > > > From: Pavan Kumar Choukhada [mailto:[EMAIL PROTECTED]
> > > > Sent: Wednesday, March 02, 2005 9:59 AM
> > > > To: axis-user@ws.apache.org
> > > > Subject: stub and skelton
> > > >
> > > > hi
> > > >
> > > > where do axis use generated stub and skelton.
> > > > since we just send soap message and it call respective handler and
> > > > invoke method using reflection.
> > > >
> > > > thanks
> > > >
> > > > with regards
> > > > pavan
> > > >
> > > >
> > > >
> > > > --
> > > > Netcore Solutions Pvt. Ltd.
> > > > Website:  http://www.netcore.co.in
> > > > Spamtraps: http://cleanmail.netcore.co.in/directory.html
> > > > --
> > > >
> > >
> > > --
> > > Netcore Solutions Pvt. Ltd.
> > > Website:  http://www.netcore.co.in
> > > Spamtraps: http://cleanmail.netcore.co.in/directory.html
> > > --
> > >
> >
> 
> 
> 


-- 
-- Jaya


[Fwd: Re: stub and skelton]

2005-03-02 Thread Pavan Kumar Choukhada



--
Netcore Solutions Pvt. Ltd.
Website:  http://www.netcore.co.in
Spamtraps: http://cleanmail.netcore.co.in/directory.html
- Begin Message ---
On Wed, 2005-03-02 at 11:43, jayachandra wrote:
that's true
SOAP message just contain method name and parameter.

but we define java class information in server-config.wsdd

for respective service.
so i think still no need of skelton.


> Not that easy buddy.
> Even for RPCProvider how is it to know from the plain SOAP message to
> which Java classes the XML need to be deserialized before invoking the
> java class.
> There comes the need for skeleton code.
> 
> Jayachandra
> 
> On Wed, 02 Mar 2005 11:23:44 +0530, Pavan Kumar Choukhada
> <[EMAIL PROTECTED]> wrote:
> > that's true i am not using static invocation.
> > but i think we do not require skelton on server.
> > because as i mentioned earlier using RPCProvider axis invoke java class
> > via reflection.
> > 
> > On Wed, 2005-03-02 at 11:04, Shahi, Ashutosh wrote:
> > > Pavan,
> > >   The skeleton code is used at the server for delegating the work
> > > to the actual java class. The stubs are used at the client end if u r
> > > using static invocation, which I think you r not using, so u can do
> > > without them at client.
> > >
> > > Ashutosh
> > >
> > > -Original Message-
> > > From: Pavan Kumar Choukhada [mailto:[EMAIL PROTECTED]
> > > Sent: Wednesday, March 02, 2005 9:59 AM
> > > To: axis-user@ws.apache.org
> > > Subject: stub and skelton
> > >
> > > hi
> > >
> > > where do axis use generated stub and skelton.
> > > since we just send soap message and it call respective handler and
> > > invoke method using reflection.
> > >
> > > thanks
> > >
> > > with regards
> > > pavan
> > >
> > >
> > >
> > > --
> > > Netcore Solutions Pvt. Ltd.
> > > Website:  http://www.netcore.co.in
> > > Spamtraps: http://cleanmail.netcore.co.in/directory.html
> > > --
> > >
> > 
> > --
> > Netcore Solutions Pvt. Ltd.
> > Website:  http://www.netcore.co.in
> > Spamtraps: http://cleanmail.netcore.co.in/directory.html
> > --
> > 
> 
--- End Message ---


Re: stub and skelton

2005-03-01 Thread jayachandra
Not that easy buddy.
Even for RPCProvider how is it to know from the plain SOAP message to
which Java classes the XML need to be deserialized before invoking the
java class.
There comes the need for skeleton code.

Jayachandra

On Wed, 02 Mar 2005 11:23:44 +0530, Pavan Kumar Choukhada
<[EMAIL PROTECTED]> wrote:
> that's true i am not using static invocation.
> but i think we do not require skelton on server.
> because as i mentioned earlier using RPCProvider axis invoke java class
> via reflection.
> 
> On Wed, 2005-03-02 at 11:04, Shahi, Ashutosh wrote:
> > Pavan,
> >   The skeleton code is used at the server for delegating the work
> > to the actual java class. The stubs are used at the client end if u r
> > using static invocation, which I think you r not using, so u can do
> > without them at client.
> >
> > Ashutosh
> >
> > -Original Message-
> > From: Pavan Kumar Choukhada [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, March 02, 2005 9:59 AM
> > To: axis-user@ws.apache.org
> > Subject: stub and skelton
> >
> > hi
> >
> > where do axis use generated stub and skelton.
> > since we just send soap message and it call respective handler and
> > invoke method using reflection.
> >
> > thanks
> >
> > with regards
> > pavan
> >
> >
> >
> > --
> > Netcore Solutions Pvt. Ltd.
> > Website:  http://www.netcore.co.in
> > Spamtraps: http://cleanmail.netcore.co.in/directory.html
> > --
> >
> 
> --
> Netcore Solutions Pvt. Ltd.
> Website:  http://www.netcore.co.in
> Spamtraps: http://cleanmail.netcore.co.in/directory.html
> --
> 


-- 
-- Jaya


RE: stub and skelton

2005-03-01 Thread Pavan Kumar Choukhada
that's true i am not using static invocation.
but i think we do not require skelton on server.
because as i mentioned earlier using RPCProvider axis invoke java class
via reflection.

On Wed, 2005-03-02 at 11:04, Shahi, Ashutosh wrote:
> Pavan,
>   The skeleton code is used at the server for delegating the work
> to the actual java class. The stubs are used at the client end if u r
> using static invocation, which I think you r not using, so u can do
> without them at client.
> 
> Ashutosh
> 
> -Original Message-
> From: Pavan Kumar Choukhada [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, March 02, 2005 9:59 AM
> To: axis-user@ws.apache.org
> Subject: stub and skelton
> 
> hi
> 
> where do axis use generated stub and skelton.
> since we just send soap message and it call respective handler and
> invoke method using reflection.
> 
> thanks
> 
> with regards
> pavan
> 
> 
> 
> --
> Netcore Solutions Pvt. Ltd.
> Website:  http://www.netcore.co.in
> Spamtraps: http://cleanmail.netcore.co.in/directory.html
> --
> 


--
Netcore Solutions Pvt. Ltd.
Website:  http://www.netcore.co.in
Spamtraps: http://cleanmail.netcore.co.in/directory.html
--


RE: stub and skelton

2005-03-01 Thread Shahi, Ashutosh
Pavan,
The skeleton code is used at the server for delegating the work
to the actual java class. The stubs are used at the client end if u r
using static invocation, which I think you r not using, so u can do
without them at client.

Ashutosh

-Original Message-
From: Pavan Kumar Choukhada [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 02, 2005 9:59 AM
To: axis-user@ws.apache.org
Subject: stub and skelton

hi

where do axis use generated stub and skelton.
since we just send soap message and it call respective handler and
invoke method using reflection.

thanks

with regards
pavan



--
Netcore Solutions Pvt. Ltd.
Website:  http://www.netcore.co.in
Spamtraps: http://cleanmail.netcore.co.in/directory.html
--