This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Srinivas Sampath
Recipients Srinivas Sampath
Date 2020-06-26.05:07:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1593148039.09.0.312801930904.issue41124@roundup.psfhosted.org>
In-reply-to
Content
I am trying to run the attached code.  when hard-coding the string in the URL and doing .encode, then the code works.  However since i am requesting user input, i cannot hard-code and the code seem to add the 'b' character in the beginning causing the request to fail with output like this

Enter Hostname    :
hostname cannot be empty
Enter Port Number :
before invokingGET http://psglx73:24670/coreservices/DomainService HTTP/1.1


after encode
b'GET http://psglx73:24670/coreservices/DomainService HTTP/1.1\r\n\r\n'
HTTP/1.1 400 Bad Request
Transfer-Encoding: chunked
Date: Fri, 26 Jun 2020 05:06:21 GMT
Connection: close
Server: Informatica

0

i cannot pass without .encode to the socket communication.  is this reported problem ?
History
Date User Action Args
2020-06-26 05:07:19Srinivas Sampathsetrecipients: + Srinivas Sampath
2020-06-26 05:07:19Srinivas Sampathsetmessageid: <1593148039.09.0.312801930904.issue41124@roundup.psfhosted.org>
2020-06-26 05:07:19Srinivas Sampathlinkissue41124 messages
2020-06-26 05:07:18Srinivas Sampathcreate