| java.lang.Object com.sun.xml.ws.mex.client.HttpPoster
HttpPoster | public class HttpPoster (Code) | | Class that handles making the HTTP POST request
to a service.
|
makeGetCall | public InputStream makeGetCall(String address) throws IOException(Code) | | This method is called by ServiceDescriptorImpl when a
metadata response contains a mex location element. The
location element contains an address of a metadata document
that can be retrieved with an HTTP GET call.
Parameters: address - The address of the document. The java.io.InputStream returned by the httpurl connection. |
post | InputStream post(String request, String address, String contentType) throws IOException(Code) | | Makes the request to the service. It is expected that this
method may throw IOException several times before metadata
is returned successfully.
Parameters: request - A String containing the xml thatwill be the payload of the message. Parameters: address - Address of the service. The java.io.InputStream returned by the httpurl connection. |
|
|