Sudantha
Sudantha

Reputation: 16214

POST data from PHP to ASP.NET

I have a instance of Apache and IIS running on my server which i need to post data from the PHP application to the ASP.NET application .. is this action possible ? ,

because using web services or socket programming will not provide the overall requirement which i have on head !

Upvotes: 0

Views: 1654

Answers (2)

Christoph Fink
Christoph Fink

Reputation: 23103

I did something like this using Memcache, but I'm not shure thats what you want/need:

I put some data into the cache in PHP and read the same value out in .net, but its a little complicated when it comes to objects, but for basic value types it worked fine...

Upvotes: 0

Zoidberg
Zoidberg

Reputation: 10323

I would look at this answer on super user

https://superuser.com/questions/149329/how-do-i-make-a-post-request-with-curl

Shows you how to do a post using cURL from PHP. You can just direct your post to your ASPX page.

Upvotes: 2

Related Questions