03-18-2023 08:34 AM
Hi Sir,
When i set the webserver, then use the client to connect, report the error as below:
Need any password setting ?
Thanks.
Solved! Go to Solution.
03-19-2023 08:28 AM
Report this error, not sure why, thanks.
03-19-2023 12:31 PM
You're likely trying to call a handler with POST but it's configured to respond to GET with query parameters. When doing a GET request you just append the values to the end of the URL after a '?'
03-22-2023 08:52 AM
Hi Sir,
Sorry, not quite understand.
But from below snapshot, it means the web server configuration is not correct ?
Thanks.
03-22-2023 09:11 AM
What setup are you expecting? How are you launching the web service?
03-22-2023 09:23 AM
Hi Sir,
I just try to simulate some scenario:
in factory tester station, we use labview for coding, and try to communicate with IT system:
1. post some test data to IT server;
2. get some serial number related info from IT server;
That is all i want to try, thanks.
03-22-2023 09:32 AM
You didn't answer either of the questions I asked.
You're trying to pull up the webservice on port 8080 instead of the 8001 that the URL dialog is showing, why are you expecting to access it on 8080 instead of 8001?
How have you started/deployed the web service from the LabVIEW project?
03-23-2023 09:14 AM
Hi Sir,
I reviewed the code:
1. need to set server to post as well;
2. for client, need use local URL;
3. need to define the input and output for server vi;
After the above changes, it works now, thanks.