Tell me more ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

I want to call an ASPX page from a UNIX script running on a separate server from the ASP Web Server and send the ASPX page information in the URL. Is this possible? If so, what is the script command to do this?

share|improve this question
2  
wget ? – Peter K. Aug 14 '12 at 12:43
if i use wget will the aspx page process like it does if its called from a browser? – DFord Aug 14 '12 at 12:46
1  
There are some differences: stackoverflow.com/questions/6293133/wget-download-aspx-page – Peter K. Aug 14 '12 at 12:53
wget works as well as curl, thank you. – DFord Aug 14 '12 at 17:46

1 Answer

up vote 5 down vote accepted

curl provides every feature you could need from a shell script, including sending POST data and authentication.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.