You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by su...@apache.org on 2004/06/21 15:59:19 UTC

cvs commit: ws-axis/c/src/transport/axis AxisTransport.h

susantha    2004/06/21 06:59:19

  Modified:    c/include/axis/client Stub.h
               c/src/transport/axis AxisTransport.h
  Log:
  Added some comments to Stub.h
  Corrected minor problem in AxisTransport.h
  
  Revision  Changes    Path
  1.16      +3 -0      ws-axis/c/include/axis/client/Stub.h
  
  Index: Stub.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/client/Stub.h,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- Stub.h	17 Jun 2004 05:34:21 -0000	1.15
  +++ Stub.h	21 Jun 2004 13:59:19 -0000	1.16
  @@ -138,6 +138,9 @@
       * 
       * @param pcEndPointURI End point URI of the service to connect to. 
       *                       e.g. http://localhost:8080/axis/services/echo
  +    * @param eProtocol The protocol that this stub should use to communicate
  +    *        with the endpoint. See AXIS_PROTOCOL_TYPE in GDefine.h for
  +    *        possible values for eProtocol.
       */
       Stub(const char *pcEndPointURI, AXIS_PROTOCOL_TYPE eProtocol);
   
  
  
  
  1.10      +1 -1      ws-axis/c/src/transport/axis/AxisTransport.h
  
  Index: AxisTransport.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis/AxisTransport.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- AxisTransport.h	8 Jun 2004 12:02:02 -0000	1.9
  +++ AxisTransport.h	21 Jun 2004 13:59:19 -0000	1.10
  @@ -56,7 +56,7 @@
   	const char* getAttachment(const char* pcAttachmentId){return "value";};
   	void setEndpointUri(const char* pcEndpointUri)
   	{m_pcEndpointUri = strdup(pcEndpointUri);};
  -	void setSessionId(const char* pcSessionId){};;
  +	void setSessionId(const char* pcSessionId){};
   	const char* getSessionId(){return "some session id";};
   	const char* getServiceName();
   	AXIS_PROTOCOL_TYPE getProtocol();