Attribute GET-CGI-VALUE for the PSEUDO-WIDGET has an invalid value of . (4058)

subscripciones

New Member
DEF VAR sPost AS CHARACTER NO-UNDO.
sPost = GET-VALUE("WebValue").

**Attribute GET-CGI-VALUE for the PSEUDO-WIDGET has an invalid value of . (4058)


"WebValue" contains great quantity of information.

How I can solve it?

thanks
 
There is no real solution that exists in Version 9.

There is no datatype in version 9 that can receive a string longer then 32k.

Even if you broke down WebValue into different fields that didn't go over 30k , it wouldn't work because GET-CGI-VALUE receives all the fields that are submitted and will break if the total of the fields is greater then 32k.

Version 9 does not have the capability to retrieve that amount of data with the progress library.

You could try to modify the progress code itself and create a alternative way to retrieve your field but this doesn't mean it possible to do.

You should consider upgrading to version 10 , it removes alot of limitation.
 
Back
Top