|
|
|
สอบถามการใช้ Web service (SOAP) upload image to sql server |
|
|
|
|
|
|
|
ได้ครับ แปลงเป็น Base64 พอขึ้นไปแล้ว ให้แปลงจาก Base64 เป็นไฟล์กลับมาเหมือนเดิมครับ ง่ายๆ
|
|
|
|
|
Date :
2018-02-15 14:43:55 |
By :
OOP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ในกระทู้เก่าๆ มีอยู่ครับ ลองค้นหาดู
|
|
|
|
|
Date :
2018-02-16 17:52:12 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string filePath = fileUpload.PostedFile.FileName;
string filename = Path.GetFileName(filePath);
string ext = Path.GetExtension(filePath);
Stream fs = fileUpload.PostedFile.InputStream;
BinaryReader br = new BinaryReader(fs);
Byte[] bytes = br.ReadBytes((Int32)fs.Length);
เวลานำไปใช้ก็แค่นี้ครับ
cmd.Parameters.Add("@Picturename", SqlDbType.Binary).Value = bytes;
นำ @Picturename ไป insert to DB ที่ type = byte
|
|
|
|
|
Date :
2018-02-18 15:27:08 |
By :
waraphon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ได้เลยครับ please help!!!!!!!!
นี่คือ code ที่ผมเขียน ใน web service (SOAP) และ code ใน Xamarin (Android) พอกด upload ลง Sql server ขึ้น error ดังรูปครับ
**** type Images = image ใน sql server
code web service
Error code Xamarin (Android)
code Xamarin (Android)
ขอบคุณครับ
|
|
|
|
|
Date :
2018-02-21 15:45:32 |
By :
mee_ci |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|