vote up -1 vote down star

Hi all,

Context:
Considering below defined Engine class being parameter of some webservice method. As we have both server and client in java we may have some benefits (???) in sharing Engine class between server and client ( i.e we may put in a common jar file to be added to both client and server classpath )

Some benefits would be :

  1. we keep specific operations like 'brushEngine' in same place
  2. build is faster as we do not need in our case to generate java code for client classes but to use them from the server build)
  3. if we later change server implementation for 'brushEngine' this is reflected automatically in client .

Questions:

  • How to share below detailed Engine class using java 6 tools ( i.e wsimport , wsgen etc )?
  • Is there other tools for java that can achieve this sharing ?
  • Is sharing a case that java 6 web services support is missing ?
  • Can this case be reduced to other web service usage patterns?

Thanks.

Code:


public class Engine {

   private String engineData;

   public String getData(){
        return data;
   }

   public setData(String value){
        this.data = value;
   } 

   public void brushEngine(){
        engineData = "BrushedEngine"+engineData; 

   } 

}

flag
Why does this smell like homework to me? – tvanfosson Sep 15 at 0:44
sorry to say but is not homework, looks like the smell has tricked you. – unknown (yahoo) Sep 15 at 14:10
If you have by miracle any tech specific comment about how to do the sharing please post it . Thanks. – unknown (yahoo) Sep 26 at 11:15

1 Answer

vote up 0 vote down

Hi, i am trying to do the same thing, i have 3 projects, server, client and clientapi (both client and server are using clientapi)

I want the webservices to use the same classes defined on clientapi.

I know I can do it, just generating the code with netbeans and later changing the code where the wrappers where created for the real class. (with 'wrappers' i mean the clases that wsimport generates)

It is there an easier way to do this without replacing the class usage?

I mean, can i generate code using directly the classes defined on 'clientapi' ?

Thanks a lot!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.