- Viktor Genel
- PowerServer 2020 or older (Obsolete)
- Wednesday, 30 May 2018 12:21 PM UTC
Hello Community,
I am implementing a webservice call through Appeon PowerServer 2017.
The call works fine in PB using web service proxy.
The webmethod of the call takes a structure lstr_rqst as a parameter.
1. When I pass the whole parameter structure as a first item of the paralist array
la_paralist[1] = lstr_rqst
I get this error:
ErrorText:
Execute call Web Service failed.
Error message:AppWebservice:Failed to parse Web Service!Web Service address https://xxx.xxx,
message=The remote server returned an error: (500) Internal Server Error.
ReturnValue Is Null
2. When I pass srtucture's items as individual items of the paralist array
la_paralist[1] = lstr_rqst.agency_id
la_paralist[UpperBound( la_paralist)+1] = lstr_rqst.eligibility_id
la_paralist[UpperBound( la_paralist)+1] = lstr_rqst.worker_id
The call fails with no ErrorText
ReturnValue Is Null
Function of_callwebservice() returns -1 in both cases
Any Idea how to overcome this?
Find Questions by Tag
Helpful?
If a reply or comment is helpful for you, please don’t hesitate to click the Helpful button. This action is further confirmation of their invaluable contribution to the Appeon Community.