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 pr...@apache.org on 2006/02/07 11:10:42 UTC

svn commit: r375558 - in /webservices/axis/trunk/c/src/xml/xerces: XMLParserXerces.cpp XMLParserXerces.h

Author: prestonf
Date: Tue Feb  7 02:10:40 2006
New Revision: 375558

URL: http://svn.apache.org/viewcvs?rev=375558&view=rev
Log:
Have had to remove the extract exception processing for catching parser errors because Linux version would not compile.  I will come back to this area later to investigate why...

Modified:
    webservices/axis/trunk/c/src/xml/xerces/XMLParserXerces.cpp
    webservices/axis/trunk/c/src/xml/xerces/XMLParserXerces.h

Modified: webservices/axis/trunk/c/src/xml/xerces/XMLParserXerces.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/xml/xerces/XMLParserXerces.cpp?rev=375558&r1=375557&r2=375558&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/xml/xerces/XMLParserXerces.cpp (original)
+++ webservices/axis/trunk/c/src/xml/xerces/XMLParserXerces.cpp Tue Feb  7 02:10:40 2006
@@ -83,9 +83,13 @@
 
     if( !m_bFirstParsed)
     {
+		m_pParser->parseFirst( *m_pInputSource, m_ScanToken);
+/*
+	Try this again at some point in the future.  At the moment it works on
+	Windows, but Linux as a problem...
 		try
 		{
-			m_pParser->parseFirst(*m_pInputSource, m_ScanToken);
+			m_pParser->parseFirst( *m_pInputSource, m_ScanToken);
 		}
 		catch( const XMLException& toCatch)
 		{
@@ -123,7 +127,7 @@
 
 			throw AxisParseException( CLIENT_SOAP_CONTENT_NOT_SOAP, pErrorMsg);
 		}
-
+*/
         m_bFirstParsed = true;
     }
 

Modified: webservices/axis/trunk/c/src/xml/xerces/XMLParserXerces.h
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/xml/xerces/XMLParserXerces.h?rev=375558&r1=375557&r2=375558&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/xml/xerces/XMLParserXerces.h (original)
+++ webservices/axis/trunk/c/src/xml/xerces/XMLParserXerces.h Tue Feb  7 02:10:40 2006
@@ -36,7 +36,11 @@
 #include <xercesc/framework/XMLPScanToken.hpp>
 #include "SoapInputSource.h"
 #include "../AxisParseException.h"
+/*
+Try this again at some point in the future.  At the moment it works on
+Windows, but Linux as a problem...
 #include "../../transport/axis3/HTTPTransportException.hpp"
+*/
 
 XERCES_CPP_NAMESPACE_USE