Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

About URL limit

 [1/3] from: rondon::andrade::uol::com::br at: 25-May-2001 7:28


Hi Everybody!! Is there any limit of URL ? Because, I have an url with 199 chars of length, when it's in a string, it holds the 199 chars. When I change it to-url, it's included an 0D0A (automatically) in my var, and when I try to read the URL, I received and error like this: ** Script Error: Out of range or past end ** Where: func [][ response-line: system/words/pick port/sub-port 1 net-utils/net-log response-line either none? response-line [do error] [ either none? result: select response-actions response-code: to-integer second parse response-line none [ do error] [ do get result] ] ] ** Near: either none? result: select response-actions Is there anyway to fix it ? Thanks in advance. Rondon

 [2/3] from: gchiu:compkarori at: 25-May-2001 23:23


On Fri, 25 May 2001 07:28:31 -0300 "Rondon Andrade" <[rondon--andrade--uol--com--br]> wrote:
> Is there any limit of URL ? Because, I have an url with > 199 chars of length,
The HTTP standard warns against relying on URLs longer than 255 characters to work consistently. Something about older routers, proxies and servers (read, most ones out there) not being able to handle them. Brian Hawley
> when it's in a string, it holds the 199 chars. When I > change it to-url, it's
Can you show us your code where this error occurs? -- Graham Chiu

 [3/3] from: rondon:andrade:uol at: 25-May-2001 11:01


Hi , Sorry to bother you, I just figured out now that the URL was malformed.. It had " with ' mixed and I solved the problem puttig the URL between {}. ok. Thanks Rondon