[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: How to encode URI?

  • Thread starter Thread starter Peter Judge
  • Start date Start date
Status
Not open for further replies.
P

Peter Judge

Guest
If it follows the rules per RFC 3986 then you should use the Encode() method on the URI object. Basically this- so something like def var myURI as OpenEdge.Net.URI. def var encodedUri as character. myURI = new URI(' http://blah.com/blah?some=x and y'). encodedURI = myURI:Encode().

Continue reading...
 
Status
Not open for further replies.
Back
Top