Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Removed invalid WebService member-values for an SEI

...

Code Block
titleExample4:Interface with the @WebService Annotation
package com.iona.demo;

import javax.jws.*;

@WebService(name="quoteUpdater",
            targetNamespace="http:\\cxf.apache.org",
	    serviceName="updateQuoteService",
            wsdlLocation="http:\\somewhere.com\quoteExampleService?wsdl",
            portName="updateQuotePort")
public interface quoteReporter
{
  public Quote getQuote(@WebParam(name="ticker") String ticker);
}

...