Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

211
Views
Jquery $.ajax - Error: SignalR: Connection has not been fully initialized. Use .start().done() or .start().fail()

Here is my javascript codes :

$.ajax({
    url: "/Users_Area/Order.aspx/Get_Server_Date",
    type: "POST",
    dataType: "json",
    contentType: "application/json; charset=utf-8",
    data: "{}",
    async: true,
    success: function(result) {
        server_date = new Date(result.d);
        //alert(server_date);

        var Order_id = $("#<%= hf_order_id.ClientID %>").val();
        alert(Order_id);
        $.ajax({
            url: "/Users_Area/Order.aspx/Get_Order_Date",
            type: "POST",
            dataType: "json",
            contentType: "application/json; charset=utf-8",
            data: "{'Order_id': '" + Order_id + "'}",
            async: true,
            success: function(result) {
                order_date = new Date(result.d);
                alert(order_date);

                if (server_date > order_date) {
                    var dif_server_order_in_seconds = (server_date - order_date) / 1000;
                    alert(dif_server_order_in_seconds);
                    if (dif_server_order_in_seconds > 3600) {

                    } else {}
                }
            },
            error: function(XMLHttpRequest, textStatus, errorThrown) {
                debugger;
            }
        });
    },
    error: function(XMLHttpRequest, textStatus, errorThrown) {
        debugger;
    }
});

And here is console error after alert(order_date); line :

Browser Link: Failed to send message to browser link server: Error: SignalR: Connection has not been fully initialized. Use .start().done() or .start().fail() to run logic after the connection has started.

How can i fix this problem?

(I am using asp.net webforms with c#)

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!