About Store Forum Documentation Contact



Post Reply 
Xml problem.
Author Message
b1s Offline
Member

Post: #1
Xml problem.
Not really sure if this is true but is there a some sort of "1000"
limit on the xml reading thingy. That is proving to be a problem for us.
03-06-2012 03:04 PM
Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #2
RE: Xml problem.
What do you mean with 1000 limit?
03-06-2012 03:42 PM
Find all posts by this user Quote this message in a reply
b1s Offline
Member

Post: #3
RE: Xml problem.
Ehmm. It's a bit hard to describe but we are having some sort of 1000 line problem.
We are using the xml reader I guess a bit unconventionally.
We have a OpenOffice calc file that it reads trough. But when the file is 1000 rows for some reason it does not work any more.
Probably something that Esenthel cannot really help with.
03-06-2012 03:57 PM
Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #4
RE: Xml problem.
If there is such a problem he surely could help with, as I have never had problems with XML libs reading only 1000 lines. However it really depends how "unconventionally" it is used, as XML reading still relies on nodes, are you using one main node and all data inside the single node?
eg if you are doing
Code:
<main node>
  //lots of data strings
</main node>

You could do
Code:
<main node>
    <row node></row node>
    <row node></row node>
    <row node></row node>
</main node>
per row = 1 node or per fifth node.
Code:
<main node>
  <rows node>
     <row node></row node>
     <row node></row node>
     <row node></row node>
     <row node></row node>
     <row node></row node>
  </rows node>
</main node>

Could be a node max length limit though, I am not sure how you are reading your XML
03-06-2012 04:25 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #5
RE: Xml problem.
Hi, there shouldn't be any 1000 limit.
are you using XmlData to read the file?
03-09-2012 12:16 PM
Find all posts by this user Quote this message in a reply
b1s Offline
Member

Post: #6
RE: Xml problem.
Yes.. I am. But we are reading a straight open office document. its a bit complicated thingy.. But basically when I add one row over thousand in the open office document it stops working. possibly a bug in the reading script. But I think we can manage under 1000 lines.
03-09-2012 01:02 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #7
RE: Xml problem.
can you attach that file and point out which node/data stops working? or attach sample code?
I could check it
03-11-2012 05:43 PM
Find all posts by this user Quote this message in a reply
Post Reply