Hi there,
We have a mobile application developed with Outsystems. In the application, we are facing an issue where we continously see lot of network requests giving 500 Internal server error and our application does not work as expected. So, any requests the Outsystems app makes internally with the modules (which shows up in network tab) are failing there. Mostly I could see lot of /moduleservices/ping request giving 500 Internal server error.
While seeing the error logs in service center, it says "Invalid URI: The format of the URI could not be determined".
The error stack for which shows the following:
Invalid URI: The format of the URI could not be determined.at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind)at System.Net.WebRequest.Create(String requestUriString)at ssPreviewInDevices.CcPWA.ActionGetManifest(HeContext heContext, ICcPWACallbacks _callbacks, String inParamespaceName, STGetManifestResponseStructure& outParamResponse)
Does anyone has experienced this ? Any idea what can be done to resolve this ?
Please let me know how it can be resolved.
Thanks
Sanjay Pandit
Hi Sanjay,
Is the web service consumed by os mobile app is created using Outsystems? Have you tried using Postman to call it?
regards
Hi Indra,
Thanks for your response. Are you referring to /moduleservices/ping service ?? If yes, this is not something that we have created. It looks like the OS makes this call internally which we don't control.
yes, ping is a command to know whether the URL is reachable or not, if not then there will be an error. To make sure, try to use uri that has been proven to be success when called from postman.
Yeah. I tried hitting the URL and it works perfectly from postman.