User Nathan Sutcliffe - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:10:49Z http://stackoverflow.com/feeds/user/80660 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/1189892/recommendation-needed-for-good-database-for-delphi-desktop-app/1191088#1191088 1 Answer by Nathan Sutcliffe for Recommendation needed for good database for Delphi desktop app Nathan Sutcliffe 2009-07-27T22:53:39Z 2009-07-27T22:53:39Z <p>Take a look at <a href="http://www.nexusdb.com/" rel="nofollow">NexusDB</a>. We've found it to be solid and speedy and it has a good community around it.</p> http://stackoverflow.com/questions/1049800/anyone-using-bing-map-web-services-with-delphi/1298581#1298581 Comment by Nathan Sutcliffe on Anyone using Bing Map Web Services with Delphi? Nathan Sutcliffe 2009-08-19T14:37:31Z 2009-08-19T14:37:31Z I'm using Delphi 2007. I'd be very interested to hear if you have any luck with RemObjects. I haven't worked on this project for a couple weeks, but I expect we'll use the the old MapPoint API instead until the Bing Map API matures. http://stackoverflow.com/questions/1049800/anyone-using-bing-map-web-services-with-delphi/1101124#1101124 Comment by Nathan Sutcliffe on Anyone using Bing Map Web Services with Delphi? Nathan Sutcliffe 2009-07-13T18:33:01Z 2009-07-13T18:33:01Z Thanks, I had tried something similar before, but I just tried it again with no luck.