0

I try to make a soapclient in Python.

I get an answer, but my Problem is that httplib ist converting my POST:

From

(.)\|WebSphere\|wast/test(.)

in

(.)\\|WebSphere\\|wast/test(.)

What can I do for preventing the code modifying any special characters that I could have in the regex string ?

OpenStove
  • 714
  • 1
  • 11
  • 22
  • How exactly are you displaying and setting the characters? Some inputs of \\ will map to \ and outputs vice versa – mmmmmm Dec 21 '13 at 16:46
  • I'm only making : webservice = httplib.HTTP(host) webservice.putrequest("POST", url) ... webservice.send(message) It doesn't matter if I have \\ or \, in the output there is always two... – OpenStove Dec 22 '13 at 00:51
  • In Fact I've checked, a print is doing well, only httplib makes problems – OpenStove Dec 22 '13 at 01:10

0 Answers0