Book Image

SignalR: Real-time Application Development - Second Edition

By : Einar Ingerbrigsten
Book Image

SignalR: Real-time Application Development - Second Edition

By: Einar Ingerbrigsten

Overview of this book

Table of Contents (19 chapters)
SignalR – Real-time Application Development Second Edition
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
11
Hosting a Server Using Self-hosted OWIN
Index

Preparing for connections


In order for us to be able to connect from OSX to SignalR, we're going to have to do some changes to the IIS Express configuration:

  1. Locate the IIS Express icon in the system tray:

  2. Right-click on it and select Show All Applications:

  3. From the dialog box, select the site for the application and look at the path of the configuration file. Make a note of this as we're going to need it real soon:

  4. We want to stop the site, since we're changing its configuration. Right-click on the tray icon to locate IIS Express again and select Stop Site:

  5. We need to know the IP address of the Windows computer that is hosting the website. One way of doing this is to open up a console/cmd and just type ipconfig; make note of IPv4 Address:

  6. Open the config file from the path we found in the IIS Express configuration, using something such as Notepad or whatever your favorite text editor is. Inside it, search for the <site> tag. Under the <bindings> tag, we want to add a binding other...