Skip to content

Commit

Permalink
updated sponsors for new features
Browse files Browse the repository at this point in the history
  • Loading branch information
cedrozor committed Nov 5, 2019
1 parent 2823f43 commit 570e00d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Myrtille.Admin.Web/Default.aspx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@ protected void Page_Load(object sender, EventArgs e)
// use shift + tab to switch focus from one iframe to another
LoadMyrtille(
myrtille_1,
"https://192.168.1.13/Myrtille_microarea/",
"https://server/myrtille/",
new ConnectionInfo
{
User = new UserInfo
{
UserName = "Administrator",
Password = @"/Passw20\"
UserName = "user",
Password = "password"
},
Host = new HostInfo
{
IPAddress = "192.168.1.25",
IPAddress = "1.2.3.4",
},
AllowRemoteClipboard = true,
AllowFileTransfer = false,
Expand All @@ -88,18 +88,18 @@ protected void Page_Load(object sender, EventArgs e)

LoadMyrtille(
myrtille_2,
"https://192.168.1.13/Myrtille_microarea/",
"https://server/myrtille/",
new ConnectionInfo
{
User = new UserInfo
{
Domain = "MYRTLAB",
UserName = "Administrator",
Password = @"/Passw20\"
Domain = "domain",
UserName = "user",
Password = "password"
},
Host = new HostInfo
{
IPAddress = "192.168.1.24",
IPAddress = "1.2.3.4",
},
AllowRemoteClipboard = true,
AllowFileTransfer = false,
Expand Down Expand Up @@ -489,7 +489,7 @@ protected void LogoutButtonClick(
{
var success = true;

var disconnectionClient = new DisconnectionClient("https://192.168.1.13/Myrtille_microarea/api/Disconnection/");
var disconnectionClient = new DisconnectionClient("https://server/myrtille/api/Disconnection/");
success = disconnectionClient.DisconnectAll();

// if the page have iframes on different gateways, call DisconnectAll for each of them
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ Cedric Coste ([email protected]).
- ElasticServer (http://www.elasticserver.co/) - print a remote document using the browser print dialog
- Coduct GmbH (https://www.coduct.com/) - reconnect on browser resize, keeping the display aspect ratio
- Practice-Labs (https://practice-labs.com/) - audio support, REST APIs, improved iframes integration
- Schleupen AG (https://www.schleupen.de/) - clipboard synchronization, disconnect API, drain of disconnected sessions
- Microarea SpA (https://www.microarea.it/) - application pool API, reduced memory usage
- Your company here (contact me!)

## Fun
Expand Down

0 comments on commit 570e00d

Please sign in to comment.