Changes between Version 1 and Version 2 of ExampleUsingOwnConceteTypes


Ignore:
Timestamp:
10/06/06 16:45:05 (18 years ago)
Author:
lauer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ExampleUsingOwnConceteTypes

    v1 v2  
    11== Using own concete types == 
    22 
     3[|Special case: Using own types in Collections and Maps.] Java's type erasure in action! 
     4 
    35=== Server side === 
    4  
    56 
    67 
     
    4445}}} 
    4546 
    46 Now our type ist XML-RPC compliant! 
     47Now our type ist XML-RPC compliant! We can register the implementation as usual... 
     48{{{ 
     49WebServer xmlRpcServer = new WebServer( port ); 
     50xmlRpcServer.addHandler( "handlerId", XmlRpcHandlerFactory.createHandlerFor( new Impl() ); 
     51xmlRpcServer.start(); 
     52}}}     
     53 
    4754 
    4855=== Client Side === 
     
    5966... 
    6067}}}  
     68 
     69== Using own types in Collections and Maps == 
     70