1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
package net.webservicex; |
12 | |
|
13 | |
import javax.jws.WebMethod; |
14 | |
import javax.jws.WebParam; |
15 | |
import javax.jws.WebResult; |
16 | |
import javax.jws.WebService; |
17 | |
import javax.jws.soap.SOAPBinding; |
18 | |
import javax.xml.bind.annotation.XmlSeeAlso; |
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
@WebService(targetNamespace = "http://www.webserviceX.NET/", name = "StockQuoteHttpGet") |
28 | |
@XmlSeeAlso({ObjectFactory.class}) |
29 | |
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) |
30 | |
public interface StockQuoteHttpGet { |
31 | |
|
32 | |
@WebResult(name = "string", targetNamespace = "http://www.webserviceX.NET/", partName = "Body") |
33 | |
@WebMethod(operationName = "GetQuote") |
34 | |
public java.lang.String getQuote( |
35 | |
@WebParam(partName = "symbol", name = "symbol", targetNamespace = "") |
36 | |
java.lang.String symbol |
37 | |
); |
38 | |
} |