Click here to Skip to main content
15,899,474 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: How much HTML CSS should I learn Pin
ZurdoDev16-Sep-19 3:53
professionalZurdoDev16-Sep-19 3:53 
AnswerRe: How much HTML CSS should I learn Pin
ZurdoDev16-Sep-19 3:54
professionalZurdoDev16-Sep-19 3:54 
AnswerMessage Closed Pin
22-Sep-19 23:41
hertavein22-Sep-19 23:41 
Questioncurrent state of word choice - Save/Export - Load/Import Pin
maze324-Aug-19 20:43
professionalmaze324-Aug-19 20:43 
AnswerRe: current state of word choice - Save/Export - Load/Import Pin
ZurdoDev16-Sep-19 3:55
professionalZurdoDev16-Sep-19 3:55 
QuestionApp de películas Pin
Member 1456720323-Aug-19 19:37
Member 1456720323-Aug-19 19:37 
AnswerRe: App de películas Pin
#realJSOP26-Aug-19 0:52
professional#realJSOP26-Aug-19 0:52 
AnswerRe: App de películas Pin
phil.o26-Aug-19 1:27
professionalphil.o26-Aug-19 1:27 
AnswerRe: App de películas Pin
Richard MacCutchan26-Aug-19 3:44
mveRichard MacCutchan26-Aug-19 3:44 
AnswerRe: App de películas Pin
ZurdoDev16-Sep-19 3:56
professionalZurdoDev16-Sep-19 3:56 
QuestionMessage Removed Pin
22-Aug-19 2:15
alicia1990jones22-Aug-19 2:15 
AnswerMessage Removed Pin
22-Aug-19 2:27
gitgit622-Aug-19 2:27 
QuestionBackgroungWork Pin
KGr2820-Aug-19 6:08
KGr2820-Aug-19 6:08 
Rant[REPOST] BackgroungWork Pin
Richard Deeming20-Aug-19 6:18
mveRichard Deeming20-Aug-19 6:18 
GeneralRe: [REPOST] BackgroungWork Pin
KGr2820-Aug-19 7:17
KGr2820-Aug-19 7:17 
QuestionRest API vs wpdb to connect to a separate database on one server Pin
Martin Kaspar13-Aug-19 7:28
Martin Kaspar13-Aug-19 7:28 
QuestionUnity source version control experiences? Pin
Member 1455222313-Aug-19 5:07
Member 1455222313-Aug-19 5:07 
AnswerRe: Unity source version control experiences? Pin
ZurdoDev16-Sep-19 3:58
professionalZurdoDev16-Sep-19 3:58 
QuestionSignalR Connection Problem - Version Mismatch Pin
Kevin Marois8-Aug-19 7:58
professionalKevin Marois8-Aug-19 7:58 
I following this article. Everything works great - from a browser.

What we're really after is to use SignalR in a WPF app, so during development I had been hosting in a Console app. Now, I want to host it in IIS.

For testing, I took this sample app and hosted it in IIS on our server. Like I said already, I can chat using from browser to browser.

Now, I'm trying to create a Console app that calls the Send method on the server from my PC:
class Program
 {
     private const string HUB_NAME = "ChatHub";

     private static IHubProxy HubProxy;

     static void Main(string[] args)
     {
         try
         {
             string url = "<a href="http://192.168.50.83:8062">http://192.168.50.83:8062</a>";

             var connection = new HubConnection(url);

             HubProxy = connection.CreateHubProxy(HUB_NAME);
             HubProxy.On<string, string>("send", HandleSendResponse);

             connection.StateChanged += Connection_StateChanged;
             connection.Error += Connection_Error;

             Console.WriteLine($"Connecting to hub named '{HUB_NAME}' at {url}");
             connection.Start().ContinueWith(task =>
             {
                 if (task.IsFaulted)
                 {
                     Console.WriteLine("Connection failed");
                     foreach (var ex in task.Exception.InnerExceptions)
                     {
                         Console.WriteLine(ex.Message);  // <================== EXCEPTION HERE
                     }
                 }
                 else
                 {
                     Console.WriteLine("Connection succeeded");
                 }
             });

         }
         catch (Exception e)
         {
             Console.WriteLine("EXCEPTION OCCURED" + Environment.NewLine + e.ToString());
         }

         Console.WriteLine("Press any key to quit");
         Console.ReadLine();
     }

     private static void Connection_Error(Exception obj)
     {
         Console.WriteLine($"Connection attempt threw '{obj.ToString()}'");
     }

     private static void Connection_StateChanged(StateChange obj)
     {
         Console.WriteLine($"Connection state is '{obj.NewState}'");

         if (obj.NewState == ConnectionState.Connected)
         {
             string[] args = new string[2];
             args[0] = "John Doe";
             args[1] = "Hello there!";

             HubProxy.Invoke("Send", args).ContinueWith(task =>
             {
                 if (task.IsFaulted)
                 {
                     Console.WriteLine("There was an error calling Send: {0}", task.Exception.GetBaseException());
                     Console.WriteLine(task.Status.ToString());
                 }
                 else
                 {
                     Console.WriteLine("Send Complete.");
                 }
             }).Wait();
         }
     }

     private static void HandleSendResponse(string name, string message)
     {
         Console.WriteLine($"Server returned: '{message}' from '{name}'");
     }
 }
I'm getting the exception "You are using a version of the client that isn't compatible with the server. Client version 2.0, server version 1.3."

This looks pretty straightforward, but I've checked twice - both the server and client console app are using SignalR 2.0.0.

In the case of the browser, the jquery versions also look up to date, but my console app should care about that.

I've Googled this and everyone seems ot say the same thing as the message. But from what I can see the versions are correct.

Anyone have any ideas?
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.

AnswerRe: SignalR Connection Problem - Version Mismatch Pin
Member 1291556124-Sep-20 13:19
Member 1291556124-Sep-20 13:19 
QuestionAsp.Net Web API Installer Pin
Kevin Marois5-Aug-19 5:52
professionalKevin Marois5-Aug-19 5:52 
QuestionCan someone help me understand this error? - HTTP Error 403.14 - Forbidden Pin
GungaDin161-Aug-19 6:45
GungaDin161-Aug-19 6:45 
AnswerRe: Can someone help me understand this error? - HTTP Error 403.14 - Forbidden Pin
ZurdoDev1-Aug-19 8:07
professionalZurdoDev1-Aug-19 8:07 
AnswerRe: Can someone help me understand this error? - HTTP Error 403.14 - Forbidden Pin
Regina Hawk13-Aug-19 4:31
Regina Hawk13-Aug-19 4:31 
QuestionI keep getting error $(...).fileupload is not a function. Pin
KGr2830-Jul-19 4:38
KGr2830-Jul-19 4:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.