[Mono-list] SCTP support on linux

2014-10-08 Thread sensph
Hi, I am currently developing Telecom applications which require the use of SCTP. Although I have used many languages over the years, x86 assembly, C, C++, pascal, I am currently most familiar with C#. Currently the applications are based on Windows servers, however the, non commercial, SCTP is

Re: [Mono-list] Linux command line curl to C#

2014-10-08 Thread Agustin Gimenez
Also, you can use a WebClient: var wc = new WebClient(); wc.UploadFile(UrlToPost, PathToFile); With your example data UrlToPost will be "https://server.com"; and if the file is in the same dir as the application PathToFile will be "WellFormed.xml", else it must be an absolute path. Cheers. 2014

Re: [Mono-list] Linux command line curl to C#

2014-10-08 Thread Edward Ned Harvey (mono)
> From: mono-list-boun...@lists.ximian.com [mailto:mono-list- > boun...@lists.ximian.com] On Behalf Of Alf Stockton > > curl -X POST https://server.com -Hcontent-type:application/xml -d > @WellFormed.xml Oh, um - You might need to escape some characters, for example: "C:\\Users\\eharvey\\myprog

Re: [Mono-list] Linux command line curl to C#

2014-10-08 Thread Edward Ned Harvey (mono)
> From: mono-list-boun...@lists.ximian.com [mailto:mono-list- > boun...@lists.ximian.com] On Behalf Of Alf Stockton > > Please tell me how I would code the following Linux command line to C#. Something like this? http://stackoverflow.com/a/1469790/1726692

[Mono-list] Linux command line curl to C#

2014-10-08 Thread Alf Stockton
Please tell me how I would code the following Linux command line to C#. I have read google and the curl documentation but am still confused. BTW Names etc have been changed to protect the innocent. curl -X POST https://server.com -Hcontent-type:application/xml -d @WellFormed.xml As I said server