Hi all,
Here is what I am trying to do (unsuccessfully, I might add) and would appreciate any direction you can give me
From my Javascript kendo ui site, I want to upload a file to a cross domain WCF service that is hosted in Azure.
In addition to uploading the files, I need to send additional parameters to the upload fucntion on the server
Is this possible to do?
Here is what my operationContract looks like:
How can I use the KendoUI upload widget to send files to this web service?
Do I trap the onUpload Event and call this? any ideas?
thanks,
Jas
Here is what I am trying to do (unsuccessfully, I might add) and would appreciate any direction you can give me
From my Javascript kendo ui site, I want to upload a file to a cross domain WCF service that is hosted in Azure.
In addition to uploading the files, I need to send additional parameters to the upload fucntion on the server
Is this possible to do?
Here is what my operationContract looks like:
[OperationContract]
[WebInvoke( Method = "POST",
UriTemplate = "/uploadmodeldata/?id={Id}&customerdatatype={customerdataType}&data={data}")]
void UploadModelData(string Id, string customerdataType, byte[] data);
How can I use the KendoUI upload widget to send files to this web service?
Do I trap the onUpload Event and call this? any ideas?
thanks,
Jas