You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have been trying to test a connection with our server to POST some data.
We are using https so initialising the library with using WiFISecureClient and ssl cert and setting port to 443 as you would expect for https.
The connection has been failing consistently and digging into the source to find the issue we have discovered that the check:
if (iServerPort != kHttpPort)
{
iClient->print(":");
iClient->print(iServerPort);
}
causes the port to be appended to tje Host header.
Control needs to be added to be able to suppress this as it can cause issues with some proxy setups.
Or facility needs to be added to initialise kHttpPort so it can match the iServerPort.
The text was updated successfully, but these errors were encountered:
We have been trying to test a connection with our server to POST some data.
We are using https so initialising the library with using WiFISecureClient and ssl cert and setting port to 443 as you would expect for https.
The connection has been failing consistently and digging into the source to find the issue we have discovered that the check:
causes the port to be appended to tje Host header.
Control needs to be added to be able to suppress this as it can cause issues with some proxy setups.
Or facility needs to be added to initialise kHttpPort so it can match the iServerPort.
The text was updated successfully, but these errors were encountered: