hi , ich hab inzwischen auch ne lösung gefunden,
folgende
Delphi-Quellcode:
uses
MSXML
procedure TForm1.Button2Click(Sender: TObject);
var
mydoc:IXMLDOMDocument;
begin
mydoc:= CoDOMDocument.Create;
mydoc.async:=false;
mydoc.load('
http://eu.wowarmory.com/item-info.xml?i=29040') ;
Memo1.Text:=mydoc.xml;
end;
Das funktioniert soweit sehr gut, nur hab ich das problem, das die Item sprache auf (lang=us_en) ist siehe:
XML-Code:
<?
xml version="1.0"?>
<?
xml-stylesheet type="text/xsl" href="/layout/item-info.xsl"?>
<page globalSearch="1" lang="en_us" requestUrl="/item-info.xml">
<itemInfo>
<item icon="inv_helmet_15" id="29040" level="120" name="Cyclone Helm" quality="4" type="Mail">
<cost>
<token count="1" icon="inv_helmet_24" id="29760"/>
</cost>
<disenchantLoot requiredSkillRank="300">
<item dropRate="6" icon="inv_enchant_voidcrystal" id="22450" level="70" maxCount="2" minCount="1" name="Void Crystal" quality="4" type="Enchanting"/>
</disenchantLoot>
<vendors>
<creature area="Terokkar Forest" classification="0" id="20616" maxLevel="64" minLevel="64" name="Asuur" title="Keeper of Sha'tari Artifacts" type="Humanoid"/>
<creature area="Terokkar Forest" classification="0" id="20613" maxLevel="64" minLevel="64" name="Arodis Sunblade" title="Keeper of Sha'tari Artifacts" type="Humanoid"/>
</vendors>
</item>
</itemInfo>
</page>
über den Webborwser bekomme ich bei lang="de_de" und dann auch die Stat´s auf deutsch.
Teste es gleich mal mit deiner Methode.
Hast du vieleicht eine Ahnung wie ich diese Parameter setzen kann damit ich das auf German zurück bekomme das
xml file?
lg
bundy