douzhongjian0752 2012-06-11 13:38
浏览 74
已采纳

Delphi,MSXML2.XMLHTTP,PHP和Win-1250字符集编码

Hoi!

I trying to make a webservice in Windows.

The client is Delphi 6, with MSXML2.XMLHTTP call, and other side is PHP.

First I tested: can I receive hungarian XML?

The PHP source was UTF-8 encoded file (PSPAD).

$s = 'alma árvíztűrő tükörfúrógép beta';
$doc = new DOMDocument('1.0', 'utf-8');
$doc->formatOutput = true;
$m = $doc->createElement('package');
$doc->appendChild($m);
$n = $doc->createElement('Msg');
$m->appendChild($n);
$n->nodeValue = $s;
$xs = $doc->saveXML();
header('Content-Type: text/xml');
echo($xs);

This package I fully got in Delphi side, the accents are ok.

So then I tried to inject data from xml (post xml to php with accents).

global $HTTP_RAW_POST_DATA;
$xmlstr = $HTTP_RAW_POST_DATA;
$xml = new SimpleXMLElement($xmlstr);
$msg = $xml->msg;
#$msg = 'ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP';

Ok, I got the "msg" field, but nevertheless I trying to convert it, everytime I got some convert notice, and the result is not same as when I set the variable directly...

The debug is:

echo(utfCharToNumber($sinput).'<br>');
echo(utfCharToNumber($sdefined).'<br>');

Input:   195[   ]8286195141908419717682197[   ]328419
Defined: 195[129]8286195141908419717682197[144]328419
Input:   5156751951508270195154821951477119513780<br>
Defined: 5156751951508270195154821951477119513780<br>

As you see that two holes I have in the variable when I converted the input from MSXML2.

I really don't understand this.

I cannot reproduce same XML output from get the data from input XML as when I set directly in PHP code...

Why?

Thanks for your every help, idea, link, document, little example!

dd

  • 写回答

2条回答 默认 最新

  • doukuai3822 2012-06-27 14:34
    关注

    The source of the problem was the Delphi code.

    Priorly I used AnsiToUTF8 to encode the XML text. But the COM object is uses UTF16 as I think.

    The working code is this:

    procedure TForm1.Button4Click(Sender: TObject);
    var
        mhttp : variant;
        ws : WideString;
        tosend : OleVariant;
        xml : TXMLDocument;
        n : IXMLNode;
    begin
        mhttp := CreateOleObject('MSXML2.XMLHTTP');
        mhttp.Open('POST', 'http://127.0.0.1/test_xmlgen.php', False);
    
        xml := CreateANewDocument(Self, '', 'a');
        n := xml.DocumentElement.AddChild('msg');
        n.NodeValue := 'ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP';
        xml.SaveToXML(ws);
        tosend := ws;
    
        mhttp.send(tosend);
        Memo1.Lines.Text :=
            IntToStr(mhttp.Status) + #13 +
            mhttp.responseText + #13;
    end;
    

    This can resend the XML I sent - with good accents.

    Thanks for your help: dd

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?