Hi Derek
Thank you very much for the reply.
I am facing a problem, while using MapPoint Services in my .NET application.
I have created a windows application with which I am trying to locate a
particular account. I am retrieving the address of this account from MS CRM
by passing the GUID and then passing this address to MapPoint Services
(FindAddressSpecification) to locate this account.
Following is the code:
FindServiceSoap FindService = new FindServiceSoap();
FindService.Credentials = new System.Net.NetworkCredential("XYZ", "***");
FindService.PreAuthenticate = true;
FindAddressSpecification spec = new FindAddressSpecification();
spec.InputAddress = new Address();
spec.InputAddress.AddressLine = bb.address1_line1;
spec.InputAddress.CountryRegion = bb.address1_country;
spec.InputAddress.Subdivision = bb.address1_stateorprovince;
spec.InputAddress.PrimaryCity = bb.address1_city;
spec.InputAddress.PostalCode = bb.address1_postalcode;
spec.DataSourceName = "MapPoint.NA";
FindResults results = FindService.FindAddress(spec);
While debugging, on the first line itself, I am getting the following
exception:
“ The request failed with HTTP status 407: Proxy Authentication Required
(The ISA Server requires authorization to fulfil the request. Access to the
Web proxy filter denied.”
When I am trying to add the web reference again, I am getting the following
error:
“There was an error downloading
‘http://staging.mappoint.net/standard-30/mappoint.wsdl’”.
The proxy name could not be resolved: “staging.mappoint.net”.
The problem here is, to add the mappoint web reference with proper
authentication. Kindly help me in this regards.
Thanks in advance and help appreciated.
Bharat Chawla
Post by Derek ChanBharat,
Assuming your referring to the Mappoint Web Service and not the Mappoint CD
1) There's documentation on the CSS live site as to datasource limitations,
how to upload a datasource, etc... Simply login to
https://mappoint-css.live.com/CscV3/Css.aspx, then click on 'help' on the
left hand panel. The search text box on the top of the help pop-up can
quickly help you search topics.
2) I'd recommend looking through the documentation on MSDN
(http://msdn.microsoft.com/en-us/library/aa492550.aspx) for MWS tutorials as
well as running through the MWS sample SDK
(http://www.microsoft.com/downloads/details.aspx?FamilyId=CB5148A9-F09E-4EC8-992F-16478C0B5D9A&displaylang=en)
3) Just incase you haven't already, you'll have to request a developer
(trial) account to get access to the staging environment
https://mappoint-css.live.com/mwssignup/
Hope that helps,
--
Infusion Development
http://www.infusion.com
Post by Bharat ChawlaHi,
Please provide the information on how to locate a particular address using
MapPoint, means how to use MapPoint functionalities in my .NET application?
Are there any prerequisites for the same like MapPoint Developer Account,
Data Source, if yes please provide the information on the prerequisites also.
Thanks in advance and help appreciated.
Bharat