Anyone using Bing Map Web Services with Delphi? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T19:22:16Z http://stackoverflow.com/feeds/question/1049800 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1049800/anyone-using-bing-map-web-services-with-delphi 6 Anyone using Bing Map Web Services with Delphi? Nathan Sutcliffe 2009-06-26T15:35:44Z 2009-08-19T08:49:37Z <p>Has anyone gotten Bing Map Web Services (formerly Virtual Earth Web Services) working with Delphi?</p> <p>Based on my experiences so far (both using Delphi and Visual Studio C#), I'm about ready to give up on it and go with the MapPoint Web Service until a future version of Bing Maps Web Services comes out. However, I thought I'd post a question here as a last resort...</p> <p>I imported the Token Service and Geocode Services WSDL documents.</p> <p>I was successfully able to get a token from the token service, but have been unable to get the Geocode service to work at all. It always returns the following error message: The message with Action '' cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either a contract mismatch (mismatched Actions between sender and receiver) or a binding/security mismatch between the sender and the receiver. Check that sender and receiver have the same contract and the same binding (including security requirements, e.g. Message, Transport, None).</p> <p>I noticed Delphi wasn't specifying a value for the SOAPAction header, so I tried specifying "http://staging.dev.virtualearth.net/webservices/v1/geocode/contracts/IGeocodeService/Geocode" and got the following error message instead:</p> <p>The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the &lt;serviceDebug&gt; configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and inspect the server trace logs.</p> <p>Below is my Delphi code and the raw XML being sent, then the raw XML being sent by a similar call from Microsoft's sample C# code. There are several differences in the XML, but I'm not sure what difference(s) is the key.</p> <pre><code>var Service: IGeocodeService; Request: Geocode; Response: GeocodeResponse3; ResponseIndex: Integer; Token: WideString; Filters: ArrayOfFilterBase; begin Token := GetToken; Service := GetIGeocodeService; Request := Geocode.Create; try Request.request := GeocodeRequest.Create; Request.request.Credentials := GeocodeService.Credentials.Create; // Freed by GeocodeRequest class Request.request.Credentials.Token := Token; Request.request.Query := AddressEdit.Text; Request.request.Options := GeocodeOptions.Create; SetLength( Filters, 1 ); Filters[ 0 ] := ConfidenceFilter.Create; ConfidenceFilter( Filters[ 0 ] ).MinimumConfidence := GeocodeService.High_; Request.request.Options.Filters := Filters; Response := Service.Geocode( Request ); try for ResponseIndex := Low( Response.GeocodeResult.Results ) to High( Response.GeocodeResult.Results ) do begin OutputMemo.Lines.Add( Response.GeocodeResult.Results[ ResponseIndex ].DisplayName ); end; finally Response.Free; end; finally Request.Free; end; end; &lt;?xml version="1.0"?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"&gt; &lt;SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:NS2="http://dev.virtualearth.net/webservices/v1/geocode/contracts" xmlns:NS3="http://dev.virtualearth.net/webservices/v1/geocode" xmlns:NS4="http://dev.virtualearth.net/webservices/v1/common"&gt; &lt;NS1:Geocode xmlns:NS1="http://dev.virtualearth.net/webservices/v1/geocode/contracts"&gt; &lt;parameters href="#1"/&gt; &lt;/NS1:Geocode&gt; &lt;NS2:Geocode id="1" xsi:type="NS2:Geocode"&gt; &lt;request href="#2"/&gt; &lt;/NS2:Geocode&gt; &lt;NS3:request id="2" xsi:type="NS3:GeocodeRequest"&gt; &lt;Credentials href="#3"/&gt; &lt;Options href="#4"/&gt; &lt;Query xsi:type="xsd:string"&gt;Some Address&lt;/Query&gt; &lt;/NS3:request&gt; &lt;NS4:Credentials id="3" xsi:type="NS4:Credentials"&gt; &lt;Token xsi:type="xsd:string"&gt;cbYkKgNlrsGnZbn3HRP7Xp5LJMv3RR_5qECwgB792COfY3EPmviaDpZ4mmD3fDP1Osc6fWUkTptog7bfgM73bA2&lt;/Token&gt; &lt;/NS4:Credentials&gt; &lt;NS3:Options id="4" xsi:type="NS3:GeocodeOptions"&gt; &lt;Filters xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="NS3:FilterBase[1]"&gt; &lt;item href="#5"/&gt; &lt;/Filters&gt; &lt;/NS3:Options&gt; &lt;NS3:ConfidenceFilter id="5" xsi:type="NS3:ConfidenceFilter"&gt; &lt;MinimumConfidence xsi:type="NS4:Confidence"&gt;High&lt;/MinimumConfidence&gt; &lt;/NS3:ConfidenceFilter&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt; &lt;s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;s:Body&gt; &lt;Geocode xmlns="http://dev.virtualearth.net/webservices/v1/geocode/contracts"&gt; &lt;request xmlns:a="http://dev.virtualearth.net/webservices/v1/geocode" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"&gt; &lt;Credentials xmlns="http://dev.virtualearth.net/webservices/v1/common"&gt; &lt;ApplicationId i:nil="true"/&gt; &lt;Token&gt;pezCDpJoxdCG63NQdJUGkTrYYalnuSQDwuIC9FvheFAd9MIPO75qX9n7il0dx3eTEHlN2877PzN1_6YbQDL5tg2&lt;/Token&gt; &lt;/Credentials&gt; &lt;Culture i:nil="true" xmlns="http://dev.virtualearth.net/webservices/v1/common"/&gt; &lt;ExecutionOptions i:nil="true" xmlns="http://dev.virtualearth.net/webservices/v1/common"/&gt; &lt;UserProfile i:nil="true" xmlns="http://dev.virtualearth.net/webservices/v1/common"/&gt; &lt;a:Address i:nil="true" xmlns:b="http://dev.virtualearth.net/webservices/v1/common"/&gt; &lt;a:Options&gt; &lt;a:Count i:nil="true"/&gt; &lt;a:Filters&gt; &lt;a:FilterBase i:type="a:ConfidenceFilter"&gt; &lt;a:MinimumConfidence&gt;High&lt;/a:MinimumConfidence&gt; &lt;/a:FilterBase&gt; &lt;/a:Filters&gt; &lt;/a:Options&gt; &lt;a:Query&gt;1 Microsoft Way, Redmond, WA&lt;/a:Query&gt; &lt;/request&gt; &lt;/Geocode&gt; &lt;/s:Body&gt; &lt;/s:Envelope&gt; </code></pre> http://stackoverflow.com/questions/1049800/anyone-using-bing-map-web-services-with-delphi/1101124#1101124 1 Answer by garethm for Anyone using Bing Map Web Services with Delphi? garethm 2009-07-08T23:40:00Z 2009-07-08T23:40:00Z <p>My best guess is that Delphi seems to be producing too many Geocode elements - there doesn't appear to be any thing that corresponds to NS2:Geocode in the C# produced XML. If you can intercept the XML and change it so that it looks like this, who knows - it might work:</p> <pre><code> ... &lt;NS1:Geocode xmlns:NS1="http://dev.virtualearth.net/webservices/v1/geocode/contracts"&gt; &lt;parameters href="#2"/&gt; &lt;/NS1:Geocode&gt; &lt;NS3:request id="2" xsi:type="NS3:GeocodeRequest"&gt; ... </code></pre> <p>The other problem could be that the Bing service doesn't support the way Delphi organizes the SOAP request.</p> <p>It that doesn't work, perhaps you can find another SOAP library you can use with Delphi - perhaps resorting to wrapping a library with a C or COM interface.</p> http://stackoverflow.com/questions/1049800/anyone-using-bing-map-web-services-with-delphi/1298581#1298581 0 Answer by Lars Westerlind for Anyone using Bing Map Web Services with Delphi? Lars Westerlind 2009-08-19T08:49:37Z 2009-08-19T08:49:37Z <p>I have exatctly the same problem. I run Delphi 2006, used WSDLImp.exe in command mode; needed version 11.0 of 2006 to get the import work. What do you use? We have the intention to try RemObjects, version 6. Any guess if that would work better?</p> <p>Cheers, Lars</p>