Skip navigation links

Java API Reference for Oracle Infrastructure Web Services
11
Release 1 (11.1.1)

E10654-02


oracle.webservices.transfer
Class TransferGetResponse

java.lang.Object
  extended by oracle.webservices.addressing.AddressingMessage
      extended by oracle.webservices.transfer.TransferMessage
          extended by oracle.webservices.transfer.TransferGetResponse


public class TransferGetResponse
extends TransferMessage

This class helps to create/parse a SOAP envelope containing a GetResponse.

An example of how to use this class to understand a GetResponse same as WS-Transfer spec:

        TransferGetResponse gr = getRequest.send(ENDPOINT);

        System.out.println(gr.getAction().getURI().toString());
        System.out.println(gr.getTo().getURI().toString());
        System.out.println(gr.getMessageID().getURI().toString());
        SOAPBody body2 = gr.getSOAPMessage().getSOAPBody();
        Iterator<SOAPElement> it = body2.getChildElements(customer);
        SOAPElement customerElement = it.next();
        it = customerElement.getChildElements(first);
        SOAPElement customerIDElement = it.next();
        System.out.println(customerIDElement.getTextContent());
        it = customerElement.getChildElements(last);
        SOAPElement regionElement = it.next();
        System.out.println(regionElement.getTextContent());
 

Field Summary
static String GET_RESPONSE_ACTION_URI
           

 

Fields inherited from class oracle.webservices.addressing.AddressingMessage
ACTION_NOT_SUPPORTED_SUBCODE, DESTINATION_UNREACHABLE_SUBCODE, ENDPOINT_UNAVAILABLE_SUBCODE, INVALID_MESSAGE_INFORMATION_HEADER_SUBCODE, MESSAGE_INFORMATION_HEADER_REQUIRED_SUBCODE

 

Constructor Summary
TransferGetResponse()
          The constructor for creating a GetResponse
TransferGetResponse(SOAPMessage msg)
          The constructor for parsing a GetResponse
TransferGetResponse(String addressingNamespace)
           
TransferGetResponse(String addressingNamespace, boolean usingSOAP12)
           

 

Method Summary
 void setAction(String action)
          Overwrite setAction() so that actoin is always http://schemas.xmlsoap.org/ws/2004/09/transfer/GetResponse.

 

Methods inherited from class oracle.webservices.addressing.AddressingMessage
addRelatesTo, addRelatesTo, addRelatesTo, addRelatesTo, getAction, getAddressingNamespace, getFaultTo, getFrom, getMessageID, getRelatesTo, getReplyTo, getSOAPMessage, getTo, send, send, setFaultTo, setFaultTo, setFrom, setFrom, setMessageID, setReplyTo, setReplyTo, setSOAPVersion, setTo, setTo

 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Field Detail

GET_RESPONSE_ACTION_URI

public static final String GET_RESPONSE_ACTION_URI
See Also:
Constant Field Values

Constructor Detail

TransferGetResponse

public TransferGetResponse()
                    throws SOAPException,
                           URISyntaxException
The constructor for creating a GetResponse
Throws:
SOAPException
URISyntaxException

TransferGetResponse

public TransferGetResponse(String addressingNamespace)
                    throws SOAPException,
                           URISyntaxException
Throws:
SOAPException
URISyntaxException

TransferGetResponse

public TransferGetResponse(String addressingNamespace,
                           boolean usingSOAP12)
                    throws SOAPException,
                           URISyntaxException
Throws:
SOAPException
URISyntaxException

TransferGetResponse

public TransferGetResponse(SOAPMessage msg)
                    throws SOAPException
The constructor for parsing a GetResponse
Parameters:
msg -
Throws:
SOAPException

Method Detail

setAction

public final void setAction(String action)
                     throws URISyntaxException
Overwrite setAction() so that actoin is always http://schemas.xmlsoap.org/ws/2004/09/transfer/GetResponse.
Overrides:
setAction in class AddressingMessage
Throws:
URISyntaxException

Skip navigation links

Copyright © 2006, 2009 Oracle. All Rights Reserved.