You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ro...@apache.org on 2005/01/24 08:38:02 UTC

cvs commit: ws-axis/c/src/server/simple_axis_server SimpleAxisTransport.h

roshan      2005/01/23 23:38:02

  Modified:    c/src/server/simple_axis_server SimpleAxisTransport.h
  Log:
  added the implementations of the virtual funtions getIncomingSOAPMimeHeaders() and getAttachment()
  
  Revision  Changes    Path
  1.5       +6 -2      ws-axis/c/src/server/simple_axis_server/SimpleAxisTransport.h
  
  Index: SimpleAxisTransport.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/simple_axis_server/SimpleAxisTransport.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SimpleAxisTransport.h	25 Nov 2004 09:08:14 -0000	1.4
  +++ SimpleAxisTransport.h	24 Jan 2005 07:38:02 -0000	1.5
  @@ -59,9 +59,13 @@
       void setAttachment (const char *pcAttachmentid, const char *pcAttachment)
       {
       };
  -    const char *getAttachment (const char *pcAttachmentid)
  +    ISoapAttachment* getAttachment (const char *pcAttachmentid)
       {
  -	return "value";
  +	return NULL;
  +    };
  +
  +    char* getIncomingSOAPMimeHeaders() {
  +	return "incoming headers";
       };
       void setEndpointUri (const char *pcEndpointUri)
       {