Hi, I have a REST-service and the procedure needs to recieve two longchars. So INPUT PARAMETER lc1 AS LONGCHAR and INPUT PARAMETER lc2 AS LONGCHAR. But it gives me an error (internal server error 500 - postman). If I just use 1 longchar then that's ok. Is it possible to have two or more longchars as input parameter ? And if so, how can that be achieved ? Regards, Bart
Can virtual memory be increased on the server that receives and processes LONGCHAR?
Could memory be the problem ?
The test I'm doing is with a very small request:
{
"request": {
"authToken": "aaaabbbccc",
"dossierNr": 1,
"jsontttable1":
[
{
"srchfield": "naam",
"srchstring": "abc"
}
],
"jsontttable2":
[
{
"srchfield": "naam",
"srchstring": "abc"
}
]
}
}
The 500 Internal Server Error is a very general HTTP status code. Please check the log files to see if there are any additional errors or exceptions. They might help us in understanding the issue.
I checked the procedure on the appserver.
I recieve for jsontttable1 and jsonttable2 a '?'.
Seems like the internal-server error is because I'm reading the data in a temp-table, did not do any error-check.
But still, how comes that I recieve an '?' and not the data ?