Page 1 of 1

Web Service error

Posted: Mon Dec 24, 2012 12:56 am
by harish841913
When i try to run web services i am getting error as

main_program: Syntax error: Error in "export" operator: Error in operator arg: In field "PostalCode": Expected ";", got: ".", line 322
In field "PostalCode": Expected ";", got: ".", line 323
In field "PrivateMailbox": Expected ";", got: ".", line 325
In field "USLACS": Expected ";", got: ".", line 348
In field "RecordType": Expected ";", got: ".", line 360
In field "LocationCode": Expected ";", got: ".", line 368
In field "MatchCode": Expected ";", got: ".", line 369
In field "StreetSide": Expected ";", got: ".", line 387
In field "Geocoder": Expected ";", got: ".", line 415
In field "Status": Expected ";", got: ".", line 423
In field "Status": Expected ";", got: ".", line 424

But when same webservice is called using .net application i am able to get latitude and longitude information. Can you please help me on this.

I am using
AddressLine1 = "2300 Clayton Rd";
WSInput[1].AddressLine2 = "Suite 1000";
WSInput[1].City = "Concord";
WSInput[1].StateProvince = "CA";
WSInput[1].PostalCode = "94520";

as input fields

Posted: Mon Dec 24, 2012 1:48 pm
by ray.wurlod
You appear to be using "." as the delimiter whereas the web service you are calling is expecting ";".