curl issue with URL not connecting
- by bmucklow
So I'm not a very good network person so I was hoping someone could point me in the right direction to figuring out what I am doing wrong.
I am trying to use curl to post a SOAP message. I am running the following:
curl -d "string of xml message" -H "Content-Type:text/xml; charset=utf-8" ":/"
This results in a 'Connection refused' message.
So I try pinging ip by itself...no problems.
Then I think maybe I need http://:/ so I tried pinging http:// and I get:
unknown host http:// yet if I ping the IP by itself I get no issues.
Any thoughts on where to start debugging this issue?