Are you irritated because of VersionOne.Parsing.MismatchedCharException while accessing version one restful API & using where clause.
The 'where' clauses in a rest-1.v1 query or query.v1 query only support ASCII. So any character which is non-ascii or Unicode will result in the this error.
The 'with' clause should be used by default to avoid unsupported character issues.
It should look something like this -
Scopes.Name=$name&with=$name= XXXXX: XXXXX
CAUSES
Due to the use of the special character in version1 restful endpoint, this error is common.The 'where' clauses in a rest-1.v1 query or query.v1 query only support ASCII. So any character which is non-ascii or Unicode will result in the this error.
SOLUTION
The 'with' clause should be used by default to avoid unsupported character issues.
It should look something like this -
Scopes.Name=$name&with=$name= XXXXX: XXXXX
No comments:
Post a Comment