Re: "Undefined Symbol" error under Solaris

2002-01-16 Thread Vinay Kakade
Hi Tinny,   Thanx a million!!!   Now I've started using SUNWspro 5.0 and the things are working fine! Thanx again for your kind help and prompt reply -Vinay - Original Message - From: Tinny Ng To: [EMAIL PROTECTED] Sent: Tuesday, January 15, 2002 10:25 PM Subject

DO NOT REPLY [Bug 5893] New: - non-terminated string

2002-01-16 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: Managing memory

2002-01-16 Thread Michael D. Crawford
The problem you are having is that I placed my DomStringToStdString in a namespace. The namespace is called "MCLib", for "Mike Crawford Library". What I think is happening is that you don't understand how to use something from a namespace. One option is to read up on namespaces in a C++ text, l

DOMParser never returns

2002-01-16 Thread Jeremy Ford
I am working on a project which must retrieve XML data from a cgi program running on another server. I am using Xerces 1_5_2 for Windows. I believe that the standard distribution uses the WinSock NetAccessor to retrieve data from a URL. I am using a URLInputSource with the appropriate URL and p

RE: Parsing from a string

2002-01-16 Thread Murphy, James
Look at MemBufInputSource - there is a sample. It wraps your buffer and reads bytes from memory. Jim > -Original Message- > From: Drew Tennenbaum [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 16, 2002 5:35 PM > To: [EMAIL PROTECTED] > Subject: Parsing from a string > > > Can

Re: Managing memory

2002-01-16 Thread Xerces Rule
Hi again. I changed my piece of code: --// namespace MCLib{ using std::string; string DOMStringToStdString( const DOMString& s); inline string MCLib::DOMStringToStdString( const DOMString& s) { using std::string; ... ---//-

Re: Managing memory

2002-01-16 Thread Xerces Rule
Hi again. I changed my piece of code: --// namespace MCLib{ using std::string; string DOMStringToStdString( const DOMString& s); inline string MCLib::DOMStringToStdString( const DOMString& s) { using std::string; ... ---//-