Hello,
Has anyone had this error in the UPLOAD file by Webspeed.
I created a form with the "arquivo" field and type: "file" like print, however, when I give get-binary-data, appserver returns error below:
[19/06/21@22:38:37.286-0300] P-015820 T-002916 1 WS -- (Procedure: 'get-binary-data web/objects/web-util.p' Line:2911) Form does not contain a file named arquivo or the field is not of type 'file'. (12597
In the program that I uploaded in webspeed, it presents this error at this moment:
ASSIGN mFile = get-binary-data("arquivo").
IF mFile <> ? THEN DO:
ASSIGN cfile = get-value("arquivo").
COPY-LOB FROM mFile TO FILE cFile NO-CONVERT.
END.
I have already corrected the parameter to
binaryUploadMaxSize=-1
The other fields in the form I'm getting the return from get-value's correctly.
Has anyone ever experienced this? There is little material on google talking about, and I've done everything I've found.
Tks.
Has anyone had this error in the UPLOAD file by Webspeed.
I created a form with the "arquivo" field and type: "file" like print, however, when I give get-binary-data, appserver returns error below:
[19/06/21@22:38:37.286-0300] P-015820 T-002916 1 WS -- (Procedure: 'get-binary-data web/objects/web-util.p' Line:2911) Form does not contain a file named arquivo or the field is not of type 'file'. (12597

In the program that I uploaded in webspeed, it presents this error at this moment:
ASSIGN mFile = get-binary-data("arquivo").
IF mFile <> ? THEN DO:
ASSIGN cfile = get-value("arquivo").
COPY-LOB FROM mFile TO FILE cFile NO-CONVERT.
END.
I have already corrected the parameter to
binaryUploadMaxSize=-1
The other fields in the form I'm getting the return from get-value's correctly.
Has anyone ever experienced this? There is little material on google talking about, and I've done everything I've found.
Tks.