views:

34

answers:

1

How to send file from C# to apache with mod_wsgi (django) and python? It will be nice to see code example in both c# (client) and python (server).

+1  A: 

In C#, you can just use WebClient.UploadFile. For Django, it obviously depends what you're doing, but the documentation has simple examples.

Matthew Flaschen