I'm evaluating KendoUI upload widget to upload an excel file to the server. When the upload completes i call a controller to import the content of this excel file to a SQL Azure database.
@(Html.Kendo().Upload()
.Name("files")
.Multiple(false)
.ShowFileList(true)
.Messages( m => m.HeaderStatusUploaded("OK"))
.Messages( m => m.HeaderStatusUploading("Subiendo"))
.Messages( m => m.Select("Seleccionar hoja excel"))
.Async(a => a
.Save("procesoImportacion", "Upload")
.AutoUpload(true)
)
)
I would like to use SignalR to provide the process some kind of interaction.
How can i call a signalR hub instead of a controller ?