Skip to content

Commit 158088f

Browse files
authored
Merge pull request aspnetboilerplate#6548 from aspnetboilerplate/feat/6538
Allow passing options to SignalR withUrl
2 parents 2e2cd35 + c018238 commit 158088f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

doc/WebSite/SignalR-AspNetCore-Integration.md

+3
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,14 @@ connecting:
8181
abp.signalr.autoConnect = false;
8282
abp.signalr.reconnectTime = 5000;
8383
abp.signalr.maxTries = 8;
84+
abp.signalr.withUrlOptions = {};
8485
abp.signalr.increaseReconnectTime = function (time) { //anytime reconnection request gets fail abp will increase the time to wait before next request with using that function.
8586
return time * 2; //(default is twice of previous time)
8687
};
8788
</script>
8889

90+
Note: See [Official SignalR documentation](https://learn.microsoft.com/en-us/aspnet/core/signalr/configuration?view=aspnetcore-6.0&tabs=javascript#configure-additional-options) for withUrlOptions values.
91+
8992
In this case, you can call the **abp.signalr.connect()** function manually
9093
whenever you need to connect to the server.
9194

src/Abp.Web.Resources/Abp/Framework/scripts/libs/abp.signalr-client.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ var abp = abp || {};
1414
abp.signalr.increaseReconnectTime = abp.signalr.increaseReconnectTime || function (time) {
1515
return time * 2;
1616
};
17+
abp.signalr.withUrlOptions = abp.signalr.withUrlOptions || {};
1718

1819
// Configure the connection for abp.signalr.hubs.common
1920
function configureConnection(connection) {
@@ -101,8 +102,9 @@ var abp = abp || {};
101102

102103
return function start(transport) {
103104
abp.log.debug('Starting connection using ' + signalR.HttpTransportType[transport] + ' transport');
105+
abp.signalr.withUrlOptions.transport = transport;
104106
var connection = new signalR.HubConnectionBuilder()
105-
.withUrl(url, transport)
107+
.withUrl(url, abp.signalr.withUrlOptions)
106108
.build();
107109

108110
if (configureConnection && typeof configureConnection === 'function') {

0 commit comments

Comments
 (0)