Author: nadiramra
Date: Thu Feb 14 15:53:17 2013
New Revision: 1446248
URL: http://svn.apache.org/r1446248
Log:
minor reformatting
Modified:
axis/axis1/c/trunk/include/axis/Handler.hpp
axis/axis1/c/trunk/include/axis/IHandlerSoapDeSerializer.hpp
Modified: axis/axis1/c/trunk/include/axis/Handler.hpp
URL:
http://svn.apache.org/viewvc/axis/axis1/c/trunk/include/axis/Handler.hpp?rev=1446248&r1=1446247&r2=1446248&view=diff
==============================================================================
--- axis/axis1/c/trunk/include/axis/Handler.hpp (original)
+++ axis/axis1/c/trunk/include/axis/Handler.hpp Thu Feb 14 15:53:17 2013
@@ -34,14 +34,6 @@
*
*/
-/*
- * Revision 1.1 2004/06/14 roshan
- * Added doxygen comments to help autobuild API docs
- * Added the implementations of getOption(const string& sArg) and
- * setOptionList(const map<string, string>* OptionList), because these methods
- * are not needed to be implemented by the users. These are generic methods.
- */
-
AXIS_CPP_NAMESPACE_START
class Handler : public HandlerBase
Modified: axis/axis1/c/trunk/include/axis/IHandlerSoapDeSerializer.hpp
URL:
http://svn.apache.org/viewvc/axis/axis1/c/trunk/include/axis/IHandlerSoapDeSerializer.hpp?rev=1446248&r1=1446247&r2=1446248&view=diff
==============================================================================
--- axis/axis1/c/trunk/include/axis/IHandlerSoapDeSerializer.hpp (original)
+++ axis/axis1/c/trunk/include/axis/IHandlerSoapDeSerializer.hpp Thu Feb 14
15:53:17 2013
@@ -33,13 +33,6 @@
*
*/
-/*
- * Revision 1.1 2004/06/14 roshan
- * Removed virtual int AXISCALL addHeaderBlock(IHeaderBlock* pBlk)=0; method
- * from this interface, because a user should not be able to add any thing
- * to the DeSerialzer.
- */
-
AXIS_CPP_NAMESPACE_START
class IHandlerSoapDeSerializer : public IWrapperSoapDeSerializer
@@ -48,21 +41,13 @@ public:
virtual ~IHandlerSoapDeSerializer() {};
/*
- * The soap body may be encrypted/compressed and a
- * handler in the request message
- * path may decode and then decrypt and/or decompress
- * whole soap body and set the
- * XML to the Deserializer. In such a case a handler
- * will use following functions
- * to get soap body and set back the XML.
- * If this process goes throgh several
- * handlers the intermediate binary data
- * (unencrypted/uncompressed body) may be kept
- * in the IMessageData until it is converted to XML.
- * A handler usually converts it
- * to XML and use SetNewSoapBody(..) function to set
- * the new SoapBody back to the
- * Deserializer.
+ * The soap body may be encrypted/compressed and a handler in the request
message
+ * path may decode and then decrypt and/or decompress whole soap body and
set the
+ * XML to the Deserializer. In such a case a handler will use following
functions
+ * to get soap body and set back the XML. If this process goes throgh
several
+ * handlers the intermediate binary data (unencrypted/uncompressed body)
may be kept
+ * in the IMessageData until it is converted to XML. A handler usually
converts it
+ * to XML and use SetNewSoapBody(..) function to set the new SoapBody back
to the Deserializer.
*/
/**
@@ -105,8 +90,7 @@ public:
* @param pNamespace namespare URI of header block.
* @return HeaderBlock
*/
- virtual IHeaderBlock* getHeaderBlock(const AxisChar* pName,
- const AxisChar* pNamespace) = 0;
+ virtual IHeaderBlock* getHeaderBlock(const AxisChar* pName, const
AxisChar* pNamespace) = 0;
};
AXIS_CPP_NAMESPACE_END