#include <SOAPTransport.h>
Inheritance diagram for AxisIOStream:
Public Methods | |
virtual AXIS_TRANSPORT_STATUS | sendBytes (const char *pcSendBuffer, const void *pBufferid)=0 |
Sends a buffer to the transport layer. | |
virtual AXIS_TRANSPORT_STATUS | getBytes (char *pcBuffer, int *piRetSize)=0 |
Gets a part of or full SOAP message. |
Interface of the input/output stream of Axis transport. The use of this interface is to avoid the parser being provided the full functionalies of SOAPTransport interface
|
Gets a part of or full SOAP message. Gets a part of or full SOAP message. A Caller may call this method multiple times to get parts of the SOAP message until the function return status says that no more data available.
|
|
Sends a buffer to the transport layer. Sends a buffer to the transport layer. A Caller may call this method multiple times to send several buffers. Its upto the transport to decide how they are sent (chunked/unchunked etc). But should return the appropriate status code.
|