hello all,
I used fileupload in ApiBridge with MVC ASP.net Applicatin
this is code
APIBridge.fileUpload("barcode",
"C:\Images\myImage.jpg",
"http://10.1.20.60:2000/Home/ReadImage",
parameters,
function(res) {
document.getElementById("outer").innerHTML = "done ";
alert("Done");
},
function(res) {
document.getElementById("outer").innerHTML = "error ";
alert("ERROR: " + res.status);
}
);
my mobile can reach to the controller Home but when writing ReadImage It gives
Error : 404
and i ensured that ReadImage action and its view are existed so is there any suggestions
thanks
wael

Reply With Quote


