Squirrel30
Programmer
Hi
I have this code :
xmlDoc : TXMLDocument;
firstNode,bodyNode,bodyContent : IXMLNode;
xmlDoc.Active := true;
firstNode := xmlDoc.AddChild('Envelope') ;
firstNode.Attributes['xmlns']
:=' firstNode.Attributes['xmlns:edp']
:=' firstNode.Attributes['xmlns
odo']
:=' bodyNode:= firstNode.AddChild('body');
bodyContent:=bodyNode.AddChild('edp:bodyContent') ;
on my computer >
<Envelope xmlns="xmlns:edp="xmlns
odo="-<body>
<edp:bodyContent />
on other comp:
<Envelope xmlns="xmlns:edp="xmlns
odo="-<body xmlns=">
<edp:bodyContent />
on body tag makes and extra attribute
same program diferent outputs
what is the problem
what shell I do?
I have this code :
xmlDoc : TXMLDocument;
firstNode,bodyNode,bodyContent : IXMLNode;
xmlDoc.Active := true;
firstNode := xmlDoc.AddChild('Envelope') ;
firstNode.Attributes['xmlns']
:=' firstNode.Attributes['xmlns:edp']
:=' firstNode.Attributes['xmlns
:=' bodyNode:= firstNode.AddChild('body');
bodyContent:=bodyNode.AddChild('edp:bodyContent') ;
on my computer >
<Envelope xmlns="xmlns:edp="xmlns
<edp:bodyContent />
on other comp:
<Envelope xmlns="xmlns:edp="xmlns
<edp:bodyContent />
on body tag makes and extra attribute
same program diferent outputs
what is the problem
what shell I do?