From 493cd3fd73e6a6c76adad47da404df269b85f48d Mon Sep 17 00:00:00 2001 From: Aman Bhardwaj Date: Fri, 31 Jul 2020 20:00:22 -0700 Subject: [PATCH] adding a note about IIS express. (#355) --- samples/Actor/Readme.md | 2 ++ samples/AspNetCore/ControllerSample/Readme.md | 2 ++ samples/AspNetCore/RoutingSample/Readme.md | 2 ++ 3 files changed, 6 insertions(+) diff --git a/samples/Actor/Readme.md b/samples/Actor/Readme.md index 30038d87..cba1c6e8 100644 --- a/samples/Actor/Readme.md +++ b/samples/Actor/Readme.md @@ -38,6 +38,8 @@ To run the actor service locally run this command in `DemoActor` directory: The `DemoActor` service will listen on port `5000` for HTTP. +*Note: For Running the sample with ISS express, change the launchsettings.json to use 127.0.0.1 instead of localhost.* + ### Making Client calls The `ActorClient` project shows how to make client calls for actor using Remoting which provides a strongly typed invocation experience. diff --git a/samples/AspNetCore/ControllerSample/Readme.md b/samples/AspNetCore/ControllerSample/Readme.md index e140a3ff..f0aa6398 100644 --- a/samples/AspNetCore/ControllerSample/Readme.md +++ b/samples/AspNetCore/ControllerSample/Readme.md @@ -18,6 +18,8 @@ The application also registers for pub-sub with the `deposit` and `withdraw` top The application will listen on port 5000 for HTTP. + *Note: For Running the sample in ISS express, change the launchsettings.json to use 127.0.0.1 instead of localhost.* + ### Examples **Deposit Money** diff --git a/samples/AspNetCore/RoutingSample/Readme.md b/samples/AspNetCore/RoutingSample/Readme.md index c30f0dc1..f795937a 100644 --- a/samples/AspNetCore/RoutingSample/Readme.md +++ b/samples/AspNetCore/RoutingSample/Readme.md @@ -18,6 +18,8 @@ The application also registers for pub-sub with the `deposit` and `withdraw` top The application will listen on port 5000 for HTTP. + *Note: For Running the sample in ISS express, change the launchsettings.json to use 127.0.0.1 instead of localhost.* + ### Examples **Deposit Money**