cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1118
Views
15
Helpful
4
Replies

SignalR in finesse

Hey All.

 

Has anyone has success with use SignalR in a finesse gadget ?

 

My negotiation fails every time with my signalR Hub

 

Best regards

Thomas

Please rate helpful posts and if applicable mark "Accept as a Solution".
Thanks, Thomas G. J.
1 Accepted Solution

Accepted Solutions

var notifications = $.connection.dataHub;
    //debugger;
    notifications.client.updateMessages = function (message) {
        console.log("Updated : " + message)

    };

    // Start the connection.
    $.connection.hub.url = 'https://<server>/DataHub/signalr';
    $.connection.hub.start({ withCredentials: false }).done(function () {
        console.log("connection started")

    }).fail(function (e) {
        console.log("connection failed")
    });

Got it to work yesterday eveneing.

 

(I only had to ask an then it works :-))

 

The highlightet was the solution

Please rate helpful posts and if applicable mark "Accept as a Solution".
Thanks, Thomas G. J.

View solution in original post

4 Replies 4

dekwan
Cisco Employee
Cisco Employee

Hi,

 

I haven't, but I reached out to a few folks on the Finesse team to see if they have. I will let you know if I hear anything promising.

 

Thanx,

Denise

Thanks

Please rate helpful posts and if applicable mark "Accept as a Solution".
Thanks, Thomas G. J.

var notifications = $.connection.dataHub;
    //debugger;
    notifications.client.updateMessages = function (message) {
        console.log("Updated : " + message)

    };

    // Start the connection.
    $.connection.hub.url = 'https://<server>/DataHub/signalr';
    $.connection.hub.start({ withCredentials: false }).done(function () {
        console.log("connection started")

    }).fail(function (e) {
        console.log("connection failed")
    });

Got it to work yesterday eveneing.

 

(I only had to ask an then it works :-))

 

The highlightet was the solution

Please rate helpful posts and if applicable mark "Accept as a Solution".
Thanks, Thomas G. J.

Awesome! And thank you for sharing your solution.

 

Sometimes, just asking someone for help allows you to figure things out. 

 

Thanx,

Denise