Fixing problem with IIS Express not allowing Applications to subscribe to events (#754)

Co-authored-by: Federico.Bridger <Federico.Bridger@endava.com>
This commit is contained in:
Federico Bridger 2021-09-28 17:50:49 -03:00 committed by GitHub
parent a23aebe669
commit 1acd372ae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 3 additions and 9 deletions

View File

@ -3,7 +3,7 @@
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:52190/",
"applicationUrl": "http://127.0.0.1:5000/",
"sslPort": 0
}
},

View File

@ -27,8 +27,6 @@ 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.*
### Make client calls
The `ActorClient` project shows how to make client calls for actor using Remoting which provides a strongly typed invocation experience.

View File

@ -3,7 +3,7 @@
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:52195/",
"applicationUrl": "http://127.0.0.1:5000/",
"sslPort": 0
}
},

View File

@ -25,8 +25,6 @@ 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**

View File

@ -3,7 +3,7 @@
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:52186/",
"applicationUrl": "http://127.0.0.1:5000/",
"sslPort": 0
}
},

View File

@ -25,8 +25,6 @@ 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**