vote up 0 vote down star

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".

I don't have any clues as to what's causing this error.

Any clues as to what I should do?

Sandeep

flag
While tracing through HttpWebBrokerBridge I get exception in method DoCommanGet on line lWebModule.DispatchAction(LRequest, LResponse) – Sandeep Jun 3 at 0:58

3 Answers

vote up 1 vote down

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.

link|flag
vote up 1 vote down

See How to build stand-alone SOAP web services using Delphi?

In particular,

People in Indy 10 and IdHTTPWebBrokerBridge with CBuilder 2009 posted modified version. For example, IdHTTPWebBrokerBridge.pas is by Jochanan van der Niet.

According to Robert Petek,

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.

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.

link|flag
vote up 0 vote down

https://forums.codegear.com/thread.jspa?messageID=96179&#96179

link|flag
I am using Indy 10.2.5 and I have done changes to the HttpWebBrokerBridge but I am still getting the same error. Any other ideas? – Sandeep Jun 3 at 0:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.