Am Dienstag, den 17.07.2007, 13:13 -0700 schrieb [EMAIL PROTECTED]: > Page Edited : CXF20DOC : Developing a Service > Developing a Service has been edited by Dan Diephouse (Jul 17, 2007). > > (View changes) > > Content: > Developing a Service using JAX-WS > You can develop a service using one of two approaches: > > * Start with a WSDL contract and generate Java objects to > implement the service. > * Start with a Java object and service enable it using > annotations. > For new development the preferred path is to design your > services in WSDL and then generate the code to implement them. > This approach enforces the concept that a service is an > abstract entity that is implementation neutral. It also means > you can spend more time working out the exact interface your > service requires before you start coding. > > However, there are many cases where you may need to service enable an > existing application. While JAX-WS eases the process, it does require > that you make some changes to source code of your application. You > will need to add annotations to the source. It also requires that you > migrate your code to Java 5.0. > >
Really? When you provide an implementation for an SEI, you should be able to reference objects from your existing application without necessarily needing to make changes to its source code. Glen
