Problem Microsoft MapPoint WebService

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to create a Mobile Application in C# that view MapPoint Maps, but
when
I execute:

FindServiceSoap fws = new FindServiceSoap();
RenderServiceSoap ws = new RenderServiceSoap();
fws.Credentials = new NetworkCredential(myUserName, myPassword);
ws.Credentials = new NetworkCredential(myUserName, myPassword);
FindSpecification myFindSpec = new FindSpecification();
myFindSpec.DataSourceName = "MapPoint.NA";
myFindSpec.InputPlace = this.textBox1.Text;
FindResults results = fws.Find(myFindSpec); // ERROR !!!!!!!!!!!!!
ERROR!!!!!!!

I have this error:

The remote name could not be resolved.

I found this solution:

http://support.microsoft.com/default.aspx?scid=kb;en-us;330221

but I don't have proxy!!!

Can someone please help?
 
Back
Top