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