You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by David <dj...@employees.org> on 2006/02/14 20:04:07 UTC

How to use generated skeleton to provide my own Impl?

(New to Axis).  

I've used wsdl2java to generate client and server-side code, and the
generated code includes an xxBindingSkeleton with two constructors. The
no-arg constructor and a constructor that takes an Impl of the correct
type.  

I use this by calling AxisServer which eventually uses a JavaProvider
which calls my Skeleton and right now uses the no-arg constructor.
  
How can I influence the AxisServer to be able to use the other
constructor -- e.g. can I set a context setting somewhere or something
to specify my Impl?   
TIA