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 sa...@apache.org on 2005/06/16 06:00:16 UTC

cvs commit: ws-axis/c/src/server/apache2 AttachmentHelper.cpp AttachmentHelper.h

samisa      2005/06/15 21:00:16

  Modified:    c/src/server/apache AttachmentHelper.cpp AttachmentHelper.h
               c/src/server/apache2 AttachmentHelper.cpp AttachmentHelper.h
  Log:
  I added a temporyry fix to solve the build problems caused due to changes to SoapAttachment class
  
  Revision  Changes    Path
  1.3       +3 -2      ws-axis/c/src/server/apache/AttachmentHelper.cpp
  
  Index: AttachmentHelper.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/apache/AttachmentHelper.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AttachmentHelper.cpp	6 May 2005 16:13:37 -0000	1.2
  +++ AttachmentHelper.cpp	16 Jun 2005 04:00:16 -0000	1.3
  @@ -51,7 +51,8 @@
   
   	while (blnContinue)
       {
  -        SoapAttachment* pSoapAttachment= new SoapAttachment();
  +	m_pContentIdSet = new ContentIdSet();
  +        SoapAttachment* pSoapAttachment= new SoapAttachment(m_pContentIdSet );
   		int start =0;
   
   	if (blnFirstTime) {
  @@ -187,4 +188,4 @@
       return attachArray;
      
        //return mymap;	
  -}
  \ No newline at end of file
  +}
  
  
  
  1.3       +1 -0      ws-axis/c/src/server/apache/AttachmentHelper.h
  
  Index: AttachmentHelper.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/apache/AttachmentHelper.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AttachmentHelper.h	6 May 2005 16:13:37 -0000	1.2
  +++ AttachmentHelper.h	16 Jun 2005 04:00:16 -0000	1.3
  @@ -56,6 +56,7 @@
   private:
   	map<string, ISoapAttachment*> mymap;
   	char* pMime;
  +	ContentIdSet *m_pContentIdSet;
   public:
   	char* getIncomingSOAPMimeHeaders();
   	ISoapAttachment* getAttachment (const char* pcAttchId);
  
  
  
  1.7       +3 -2      ws-axis/c/src/server/apache2/AttachmentHelper.cpp
  
  Index: AttachmentHelper.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/apache2/AttachmentHelper.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- AttachmentHelper.cpp	6 May 2005 16:13:37 -0000	1.6
  +++ AttachmentHelper.cpp	16 Jun 2005 04:00:16 -0000	1.7
  @@ -51,7 +51,8 @@
   
   	while (blnContinue)
       {
  -        SoapAttachment* pSoapAttachment= new SoapAttachment();
  +	m_pContentIdSet = new ContentIdSet();
  +        SoapAttachment* pSoapAttachment= new SoapAttachment(m_pContentIdSet );
   		int start =0;
   
   	if (blnFirstTime) {
  @@ -187,4 +188,4 @@
       return attachArray;
      
        //return mymap;	
  -}
  \ No newline at end of file
  +}
  
  
  
  1.8       +1 -0      ws-axis/c/src/server/apache2/AttachmentHelper.h
  
  Index: AttachmentHelper.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/server/apache2/AttachmentHelper.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- AttachmentHelper.h	6 May 2005 16:13:37 -0000	1.7
  +++ AttachmentHelper.h	16 Jun 2005 04:00:16 -0000	1.8
  @@ -56,6 +56,7 @@
   private:
   	map<string, ISoapAttachment*> mymap;
   	char* pMime;
  +	ContentIdSet *m_pContentIdSet;
   public:
   	char* getIncomingSOAPMimeHeaders();
   	ISoapAttachment* getAttachment (const char* pcAttchId);