Delphi 2009: "XML document must have a top level element" error when using TIdHttpWebBrokerBridge - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T06:02:21Z http://stackoverflow.com/feeds/question/942448 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/942448/delphi-2009-xml-document-must-have-a-top-level-element-error-when-using-tidhtt 0 Delphi 2009: "XML document must have a top level element" error when using TIdHttpWebBrokerBridge Sandeep 2009-06-02T23:41:17Z 2009-06-16T18:02:10Z <p>We have a app which uses HttpWebBrokerBridge, it works fine in Delphi2006 but when I recompile using Delphi2009 I get EDOMParserError exception with message "XML document must have a top level element".</p> <p>I don't have any clues as to what's causing this error.</p> <p>Any clues as to what I should do?</p> <p>Sandeep</p> http://stackoverflow.com/questions/942448/delphi-2009-xml-document-must-have-a-top-level-element-error-when-using-tidhtt/942508#942508 0 Answer by Remy Lebeau - TeamB for Delphi 2009: "XML document must have a top level element" error when using TIdHttpWebBrokerBridge Remy Lebeau - TeamB 2009-06-03T00:06:14Z 2009-06-03T00:06:14Z <p>https://forums.codegear.com/thread.jspa?messageID=96179&amp;#96179</p> http://stackoverflow.com/questions/942448/delphi-2009-xml-document-must-have-a-top-level-element-error-when-using-tidhtt/973450#973450 1 Answer by eed3si9n for Delphi 2009: "XML document must have a top level element" error when using TIdHttpWebBrokerBridge eed3si9n 2009-06-10T02:36:37Z 2009-06-10T02:46:34Z <p>See <a href="http://stackoverflow.com/questions/846207/how-to-build-stand-alone-soap-web-services-using-delphi/846210">How to build stand-alone SOAP web services using Delphi?</a></p> <p>In particular, </p> <blockquote> <p>People in <a href="https://forums.embarcadero.com/thread.jspa?messageID=63725" rel="nofollow">Indy 10 and IdHTTPWebBrokerBridge with CBuilder 2009</a> posted modified version. For example, <a href="https://forums.embarcadero.com/servlet/JiveServlet/download/2-9780-66171-751/IdHTTPWebBrokerBridge.pas" rel="nofollow">IdHTTPWebBrokerBridge.pas</a> is by Jochanan van der Niet.</p> </blockquote> <p>According to <a href="http://threads.embarcadero.com/threads/threads.exe/view?commentid=41840" rel="nofollow">Robert Petek</a>,</p> <blockquote> <p>I used Delphi 2009 with Indy 10 and modified IdHTTPWebBrokerBridge.pas a bit. It looks the problem is in the TIdHTTPAppRequest.GetStringVariable function where Content property is filled with FRequestInfo.UnparsedParams. This is empty when it gets a POST command. I've debugged the code and saw the contents is in the FRequestInfo.PostStream. </p> <p>Try to set the result for the Content property to the PostStream contents when FRequestInfo.CommandType is hcPOST. You will also need to fix the result value for the ContentLength property. It worked for me.</p> </blockquote> http://stackoverflow.com/questions/942448/delphi-2009-xml-document-must-have-a-top-level-element-error-when-using-tidhtt/1003025#1003025 1 Answer by Remy Lebeau - TeamB for Delphi 2009: "XML document must have a top level element" error when using TIdHttpWebBrokerBridge Remy Lebeau - TeamB 2009-06-16T18:02:10Z 2009-06-16T18:02:10Z <p>Make sure you are using the latest 10.5.5 snapshot of Indy 10 from SVN's Tiburon branch. Changes to TIdCustomHTTPServer and TIdHTTPWebBrowserBridge were merged into that codebase awhile ago.</p>