[問題] Windows Service如何call Web程式

作者: clsshan2010 (livingroom)   2016-04-29 08:47:13
如題
最近要寫一套系統,是由client端 上傳檔案到 Server端進行處理。
client的是定時每幾分鐘就要啟動的,公司要求寫成Windows service
Server端是.NET MVC的Web程式,沒有頁面,只提供cotroller 呼叫。
因為小弟是.net新手,本身是JAVA出身,想請問大大有沒有關鍵字或是
相關資料可以供小弟參考,先謝謝各位大大了。
//後續問題................
感謝大大提供關鍵字,目前小弟有找著官網範例及文件初步完成了web api
遇到一些問題還煩請各位大大幫我看一下是否哪邊有出錯
webapi的程式:
[HttpPost]
public string TransferData([FromBody] byte[] fileByte){
//code
}
client端的部分(Windows Form):
HttpClient client = new HttpClient();
ByteArrayContent content = new ByteArrayContent(File.ReadAllBytes(fileName));
await client.PostAsync("http://localhost:33867/POIC/api/controller/
TransferDate", content);
執行的時候webapi的fileByte部分取出來都是null
如果型態改成字串,且client部分也傳字串是OK的
請問大大如果想要實作一個檔案傳到webapi應該怎麼寫比較好?
作者: WindOfNet   2016-04-29 09:23:00
web api~

Links booklink

Contact Us: admin [ a t ] ucptt.com