Problem with DC_Xml2ObjectTree

This forum is for eXpress++ general support.
Message
Author
Piotr D
Posts: 131
Joined: Mon Jul 28, 2014 1:26 am
Location: Poznań, Poland

Re: Problem with DC_Xml2ObjectTree

#21 Post by Piotr D »

Roger
thanks for your help. I will waiting information from you.
Regards

Piotr

User avatar
rdonnay
Site Admin
Posts: 4813
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Problem with DC_Xml2ObjectTree

#22 Post by rdonnay »

Was this XML created by you or by another party?
The eXpress train is coming - and it has more cars.

Piotr D
Posts: 131
Joined: Mon Jul 28, 2014 1:26 am
Location: Poznań, Poland

Re: Problem with DC_Xml2ObjectTree

#23 Post by Piotr D »

This XML was created by our program.
Piotr

User avatar
rdonnay
Site Admin
Posts: 4813
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Problem with DC_Xml2ObjectTree

#24 Post by rdonnay »

I can see no viable technique for viewing this data in a Hierarchal tree format.

If you are the creator of the data, then I would think you could write the data to a database at the same time you are writing it to XML.
The eXpress train is coming - and it has more cars.

Piotr D
Posts: 131
Joined: Mon Jul 28, 2014 1:26 am
Location: Poznań, Poland

Re: Problem with DC_Xml2ObjectTree

#25 Post by Piotr D »

Roger,
I think about universal tool for user-friendly displaying XML files this type - indifferently this was created with my program or another one.

Piotr

User avatar
Auge_Ohr
Posts: 1428
Joined: Wed Feb 24, 2010 3:44 pm

Re: Problem with DC_Xml2ObjectTree

#26 Post by Auge_Ohr »

hi,
Piotr D wrote:This XML was created by our program.
i have test your XML File with Pablos CLASS TXmlArray
FATAL ERROR LOG
Error within the error handling!
SYS Thread-ID: 796
Module: EXE
Error Codes: EH: 1006 Sub: 0(0) OS: 0 XPP: 15
Call Stack of Thread 1 (796):
<non constant name>(1700324)
Call Stack of GUI Thread (1012):
File: D:\ALASKA\XML\TestXmlLite.exe
TimeStamp: 20160801 02:02
End of FATAL ERROR LOG.

1006 // two many memory-objects: there are not enough handles
15 XPP_ERR_MEMORY_FULL Not enough memory or swapping space available
i have XML much bigger than your Test Data and it work perfect with Pablos Class.
TestXmlLite.zip
need ot4xb
(8.43 KiB) Downloaded 873 times
Attachments
wishcollector.zip
other XML Testdata
(403 Bytes) Downloaded 904 times
greetings by OHR
Jimmy

User avatar
Auge_Ohr
Posts: 1428
Joined: Wed Feb 24, 2010 3:44 pm

Re: Problem with DC_Xml2ObjectTree

#27 Post by Auge_Ohr »

c-tec wrote:I think Chilkat XML can handle it, and its free (ActiveX).
can you please post what is in Install File "register_win32.bat" of activeX ( DLL )

... it seem me Chilkat XML is based on DotNet XmlDocument Class :think:
greetings by OHR
Jimmy

c-tec
Posts: 379
Joined: Tue Apr 20, 2010 1:36 am
Location: SALZBURG/AUSTRIA
Contact:

Re: Problem with DC_Xml2ObjectTree

#28 Post by c-tec »

Hello Jimmy,
there is nothing special, only register with regsvr32. But nice sample how to register several ActiveX in one batch.
regards
Rudolf

Code: Select all

@echo off
echo.Current User is '%USERNAME%'
echo.This script must run with administrative privileges to register ActiveX DLLs
pause
cd %~dp0

set "filemask=ChilkatAx*.dll"
for %%A in (%filemask%) do regsvr32 %%A || GOTO:EOF
pause
ECHO.&PAUSE&GOTO:EOF
Rudolf Reinthaler
digital pen & paper systems
http://www.formcommander.net

Post Reply