could it be possible to write in c# this fuction?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mandalmanas787
    New Member
    • Apr 2015
    • 1

    could it be possible to write in c# this fuction?

    I am executing below curl command to read config file and send it to the servlet which does some logic based on config file and upload the data to the application

    Code:
      curl -K mydata.cfg http://10.1.0.1:1000/servlet/Upload
    Anyone please help how to run/automate above command from C# console application?
    Last edited by zmbd; Apr 20 '15, 04:31 PM. Reason: [z{please use the [CODE/] format for script/formatted text}]
  • athar13
    New Member
    • Apr 2015
    • 3

    #2
    Look into
    Code:
    ProcessStartInfo
    and
    Code:
    Process
    . They are used to execute processes from within Windows or Console Applications.

    Comment

    Working...