Posts

Showing posts from June, 2015

Progress Notification for Long Running Methods using WCF Duplex Binding, SignalR

Image
Hi Guys, This time I made a WCF Duplex Service which notifies the progress to the client using SingalR. Hope you like it. Windows Client 1) ServiceClient.aspx <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ServiceClient.aspx.cs" Inherits="Htm5Notifications.ServiceClient" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title></title>     <script src="../Scripts/jquery-1.6.4.js"></script>         <script src="../Scripts/jquery.signalR-2.2.0.js"></script>     <script src="http://localhost:51255/signalr/hubs/" type="text/javascript"></script>     <script src="Message.js"></script>     <link href="../Styles/bootstrap.min.css" rel="stylesheet" /> </head> <body>     ...