currently working on product , using asp.net mvc framework, signalr real time , using mysql backend. working on iis , window server 2012 server environment. want move application on linux server. have confirm type of changes need this.
my hub class methods are: example
public class myhub : hub { public void uploadlogo(string employeeid, string logo) { try { // code here clients.all.uploadlogo(employeeid, logo); } catch (exception ex) { exceptionutility.logexception(ex, "error"); } } }
is changes in signalr hub class or else? plase suggest regarding this. in advance.
Comments
Post a Comment