Re: MemBufInputSource Core Dump

2008-12-10 Thread Pranav Savkur
Hello Dave, Even i'm using a similar piece of code for XML String parsing with Xerces 2.8 and Visual Studio 2005. thsi piece of code goes thru fine the first time but the second time onwards even for a valid XML, the parse() method throws a generic exception.. i.e catch(...) block despit

RE: XInclude functionality - any interest in beta testing?

2007-01-23 Thread Pranav, Savkur
Hello, what is the LSParser? Regards, Pranav -Original Message- From: Simon Rowland [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 8:42 PM To: c-dev Subject: XInclude functionality - any interest in beta testing? Hi All, Just a heads up that I am currently working on

RE: Latest usable xerces version?

2006-12-27 Thread Pranav, Savkur
nesday, December 27, 2006 3:32 PM To: c-dev@xerces.apache.org Subject: Re: Latest usable xerces version? 2.7. We will be releasing 3.0 soon. Gareth On 27 Dec 2006, at 05:47, Pranav, Savkur wrote: Hello All, Which is the latest usable xerces C++ version that can b

Latest usable xerces version?

2006-12-26 Thread Pranav, Savkur
Hello All, Which is the latest usable xerces C++ version that can be used? Is v2.7.0 the latest? We're currently using V2.2.0 Please let me know Best regards, Pranav The new company Nokia Siemens Networks is expected to start operations by January 1, 2007, subject to customary

win32TransService leaks

2006-11-09 Thread Pranav, Savkur
Title: win32TransService leaks Hello All,     I'm getting a leak in the API: I'm not calling this API explicitly.Does it get called implicitly by other APIs? Xercesc_2_2::win32Transservice::Win32TransService(void) Has any1 faced this problem? thanks, Pranav The new company No

RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter

2006-11-08 Thread Pranav, Savkur
: Alberto Massari [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 08, 2006 3:02 PM To: c-dev@xerces.apache.org Subject: RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter Hi Pranav, At 14.52 08/11/2006 +0530, Pranav, Savkur wrote: >Hello Alberto, >

RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter

2006-11-08 Thread Pranav, Savkur
i Pranav, At 09.27 08/11/2006 +0530, Pranav, Savkur wrote: >Hello Alberto, > I've ensured Initialize and terminate are called in the right >sequences and this is working fine now! >Wrt writeNode of DOMWriter,if we have one thread that has used this API >to write the n

RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter

2006-11-07 Thread Pranav, Savkur
t call? thanks, Pranav -Original Message- From: Alberto Massari [mailto:[EMAIL PROTECTED] Sent: Friday, November 03, 2006 1:46 PM To: c-dev@xerces.apache.org Subject: RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter Hi Pranav, At 13.10 03/11/2006 +0530,

RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter

2006-11-03 Thread Pranav, Savkur
@xerces.apache.org Subject: RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter Hi Pranav, At 13.10 03/11/2006 +0530, Pranav, Savkur wrote: >Hello Alberto, > Thanks. I was able to get over the release problem as well! >Sometimes, the transcode of XMLStrin

RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter

2006-11-02 Thread Pranav, Savkur
ted: (XERCESC-1279) Memory leak with writeToString in DOMWriter At 14.41 02/11/2006 +0530, Pranav, Savkur wrote: >Hello Alberto, > thanks for the confirmation! >Does this hold even for releasing memory held by DOMDocument and >XercesDOMParser pointers as well. > Also i

RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter

2006-11-02 Thread Pranav, Savkur
leak with writeToString in DOMWriter At 16.49 02/11/2006 +0530, Pranav, Savkur wrote: >Hi Alberto, > thanks for the reply. >I'm sure when the DOM Tree is not required but once the DOM Tree is not >used anymore,when I call a release on the DOMDocument pointer,a generic >

RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter

2006-11-02 Thread Pranav, Savkur
ssari [mailto:[EMAIL PROTECTED] Sent: Thursday, November 02, 2006 4:15 PM To: c-dev@xerces.apache.org Subject: RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter Hi Pranav, At 15.55 02/11/2006 +0530, Pranav, Savkur wrote: >Hello Alberto, > > Yes that h

RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter

2006-11-02 Thread Pranav, Savkur
Hello Alberto, Yes that helped big time! Thanks. I'm also using the DOMImplementation to form a DOM tree and to get the DOMElement and DOMDocument as below: DOMImplementation* impl = DOMImplementationRegistry::getDOMImplementation(X("Core")) XERCES_CPP_NAMESPACE::DOMDocument* doc = im

RE: [jira] Commented: (XERCESC-1279) Memory leak with writeToString in DOMWriter

2006-11-02 Thread Pranav, Savkur
Hello Alberto, thanks for the confirmation! Does this hold even for releasing memory held by DOMDocument and XercesDOMParser pointers as well. Also if a release/delete is called on the XercesDOMParser pointer,is it necessary to call release/delete on the DOMDocument pointer got fr

Issues with DOmWriter::WriteToString

2006-11-01 Thread Pranav, Savkur
Hello, We're using the writeToString API of DOMWriter to get back the XML String when a root node is given. Following is a code snippet: SaveXMLString(const XERCES_CPP_NAMESPACE::DOMNode *const p_pDOMNode) { XERCES_CPP_NAMESPACE::DOMWriter *pSerializer = 0; XERCES

Issues with DOMWriter::writeToString

2006-10-17 Thread Pranav, Savkur
Title: Issues with DOMWriter::writeToString Hello,     We're using the writeToString API of DOMWriter to get back the XML String when a root node is given. Following is a code snippet: ReadXMLNode(const XERCES_CPP_NAMESPACE::DOMNode *const p_pDOMNode) {     TRACE_INFO("Entering

Xerces=C++: Parsing an XML String

2006-10-13 Thread Pranav, Savkur
Title: Xerces=C++: Parsing an XML String Hello All,     What is the API of AbstractDOMParser to be used for parsing an XML String ( not an xml file path but the contents of an xml file) in xerces C++ 2.2? We're using the XercesDOMParser derived class of AbstractDOMParser in the XERCES_C

RE: XercesDOMParser::parse(const InputSource& source) method leaks

2006-10-09 Thread Pranav, Savkur
ld either add a try/catch block around the parse() call or use a Janitor object to perform the cleanup automatically when leaving scope. Hope this helps, Alberto At 11.26 09/10/2006 +0530, Pranav, Savkur wrote: >Hello, > We're using the 2.2 version of the xerces C++ dll

xerces-c-2.7.0: getDocumentElement returns NULL

2006-10-09 Thread Pranav, Savkur
Title: xerces-c-2.7.0: getDocumentElement returns NULL Hello,     We tried using xerces-c 2.7 version. I downloaded the same from the apache website.     Now as we parse XML Files by giving file names as below:             m_pDOMParser = new XERCES_CPP_NAMESPACE::Xerc