Skip to content

Commit

Permalink
Port - 8080 modified + AudioPlayback - Removed
Browse files Browse the repository at this point in the history
  • Loading branch information
sarathy365 committed Apr 28, 2020
1 parent e1164c2 commit 166a223
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Myrtille.Services/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -111,47 +111,47 @@
<endpoint address="" binding="wsDualHttpBinding" bindingConfiguration="wsDualHttpBindingCallback" contract="Myrtille.Services.Contracts.IRemoteSessionProcess" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:5625/Myrtille/RemoteSessionProcess" />
<add baseAddress="http://localhost:8080/Myrtille/RemoteSessionProcess" />
</baseAddresses>
</host>
</service>
<service name="Myrtille.Services.FileStorage" behaviorConfiguration="ServiceBehavior">
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="basicHttpBindingFileStream" contract="Myrtille.Services.Contracts.IFileStorage" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:5625/Myrtille/FileStorage" />
<add baseAddress="http://localhost:8080/Myrtille/FileStorage" />
</baseAddresses>
</host>
</service>
<service name="Myrtille.Services.PrinterService" behaviorConfiguration="ServiceBehavior">
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="basicHttpBindingFileStream" contract="Myrtille.Services.Contracts.IPrinterService" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:5625/Myrtille/PrinterService" />
<add baseAddress="http://localhost:8080/Myrtille/PrinterService" />
</baseAddresses>
</host>
</service>
<service name="Myrtille.Services.MFAAuthentication" behaviorConfiguration="ServiceBehavior">
<endpoint address="" binding="basicHttpBinding" contract="Myrtille.Services.Contracts.IMFAAuthentication" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:5625/Myrtille/MFAAuthentication" />
<add baseAddress="http://localhost:8080/Myrtille/MFAAuthentication" />
</baseAddresses>
</host>
</service>
<service name="Myrtille.Services.EnterpriseService" behaviorConfiguration="ServiceBehavior">
<endpoint address="" binding="basicHttpBinding" contract="Myrtille.Services.Contracts.IEnterpriseService" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:5625/Myrtille/EnterpriseService" />
<add baseAddress="http://localhost:8080/Myrtille/EnterpriseService" />
</baseAddresses>
</host>
</service>
<service name="Myrtille.Services.ApplicationPoolService" behaviorConfiguration="ServiceBehavior">
<endpoint address="" binding="basicHttpBinding" contract="Myrtille.Services.Contracts.IApplicationPoolService" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:5625/Myrtille/ApplicationPoolService" />
<add baseAddress="http://localhost:8080/Myrtille/ApplicationPoolService" />
</baseAddresses>
</host>
</service>
Expand Down
2 changes: 1 addition & 1 deletion Myrtille.Web/Web.Base.config
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
<!-- allow remote session sharing (the session is broadcasted to all guests; read/write access is granted individually) -->
<add key="AllowSessionSharing" value="false"/>
<!-- allow audio plaback -->
<add key="AllowAudioPlayback" value="true"/>
<add key="AllowAudioPlayback" value="false"/>
<!-- client ip protection -->
<add key="ClientIPTracking" value="true"/>
<!-- if the browser window/tab of the remote session owner is closed without disconnecting first, or if the connection is lost, delay (ms) before the remote session is disconnected by the gateway. value must be greater than "browserPulseInterval" defined into config.js (default 10 secs). 0 to disable -->
Expand Down
2 changes: 1 addition & 1 deletion Myrtille.Web/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
<!-- allow remote session sharing (the session is broadcasted to all guests; read/write access is granted individually) -->
<add key="AllowSessionSharing" value="false"/>
<!-- allow audio plaback -->
<add key="AllowAudioPlayback" value="true"/>
<add key="AllowAudioPlayback" value="false"/>
<!-- client ip protection -->
<add key="ClientIPTracking" value="true"/>
<!-- if the browser window/tab of the remote session owner is closed without disconnecting first, or if the connection is lost, delay (ms) before the remote session is disconnected by the gateway. value must be greater than "browserPulseInterval" defined into config.js (default 10 secs). 0 to disable -->
Expand Down

0 comments on commit 166a223

Please sign in to comment.