mirror of https://github.com/dapr/dotnet-sdk.git
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:
parent
a23aebe669
commit
1acd372ae2
|
@ -3,7 +3,7 @@
|
||||||
"windowsAuthentication": false,
|
"windowsAuthentication": false,
|
||||||
"anonymousAuthentication": true,
|
"anonymousAuthentication": true,
|
||||||
"iisExpress": {
|
"iisExpress": {
|
||||||
"applicationUrl": "http://localhost:52190/",
|
"applicationUrl": "http://127.0.0.1:5000/",
|
||||||
"sslPort": 0
|
"sslPort": 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -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.
|
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
|
### Make client calls
|
||||||
|
|
||||||
The `ActorClient` project shows how to make client calls for actor using Remoting which provides a strongly typed invocation experience.
|
The `ActorClient` project shows how to make client calls for actor using Remoting which provides a strongly typed invocation experience.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"windowsAuthentication": false,
|
"windowsAuthentication": false,
|
||||||
"anonymousAuthentication": true,
|
"anonymousAuthentication": true,
|
||||||
"iisExpress": {
|
"iisExpress": {
|
||||||
"applicationUrl": "http://localhost:52195/",
|
"applicationUrl": "http://127.0.0.1:5000/",
|
||||||
"sslPort": 0
|
"sslPort": 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -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.
|
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
|
### Examples
|
||||||
|
|
||||||
**Deposit Money**
|
**Deposit Money**
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"windowsAuthentication": false,
|
"windowsAuthentication": false,
|
||||||
"anonymousAuthentication": true,
|
"anonymousAuthentication": true,
|
||||||
"iisExpress": {
|
"iisExpress": {
|
||||||
"applicationUrl": "http://localhost:52186/",
|
"applicationUrl": "http://127.0.0.1:5000/",
|
||||||
"sslPort": 0
|
"sslPort": 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -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.
|
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
|
### Examples
|
||||||
|
|
||||||
**Deposit Money**
|
**Deposit Money**
|
||||||
|
|
Loading…
Reference in New Issue