shiniyproxy: test multiuser caseHow do i get the web browser password store to remember R/Shiny passwords?running node.js command from browserMake a Shiny app execute code when called via HTTP GET (e.g. cURL)Cannot Get Express Route to Activate on LocalhostRun shiny app on shiny server installed in docker container from Windows 10 Pro?How do I Dockerize an R Shiny app on my local machine using Shiny server?Is it possible to run RSelenium in ShinyApp on the RStudio server?How to change permissions of a folder inside a container using docker run?containarized shinyproxy very slowShinyproxy & Keycloak - ERR_TOO_MANY_REDIRECTS

Is there any way to stop a user from creating executables and running them?

Submitting a new paper just after another was accepted by the same journal

Boss wants me to ignore a software license

How to write hyperlinks to local files in GeoJSON properties?

Why I have higher ping to the VLAN interface than to other local interfaces

Is this n-speak?

Is God unknowable?

A continuous water "planet" ring around a star

Does the Fireball spell damage objects?

How many people would you need to pull a whale over cobblestone streets?

What is my malfunctioning AI harvesting from humans?

TEMPO: play a sound in animated GIF/PDF/SVG

Why command hierarchy, if the chain of command is standing next to each other?

A torrent of foreign terms

The cat ate your input again!

What does the phrase "pull off sick wheelies and flips" mean here?

Why are Gatwick's runways too close together?

How would timezones work on a planet 100 times the size of our Earth

0xF1 opcode-prefix on i80286

Is it feasible to get a hash collision for CRC32, MD-5 and SHA-1 on one file?

Is there a command to install basic applications on Ubuntu 16.04?

How to take the beginning and end parts of a list with simpler syntax?

Why are Tucker and Malcolm not dead?

Why is there a large performance impact when looping over an array over 240 elements?



shiniyproxy: test multiuser case


How do i get the web browser password store to remember R/Shiny passwords?running node.js command from browserMake a Shiny app execute code when called via HTTP GET (e.g. cURL)Cannot Get Express Route to Activate on LocalhostRun shiny app on shiny server installed in docker container from Windows 10 Pro?How do I Dockerize an R Shiny app on my local machine using Shiny server?Is it possible to run RSelenium in ShinyApp on the RStudio server?How to change permissions of a folder inside a container using docker run?containarized shinyproxy very slowShinyproxy & Keycloak - ERR_TOO_MANY_REDIRECTS






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I have set a shinyproxy serving shinyapps on a virtual machine running on a cluod infrastructure. It works pretty well, i.e. client-side: I can log in with a test user and run the application from my web-browser, server-side: I can see the docker container starting out and running the shinyapp.



I would like to test concurrent use scenario with more than two users. In the application.yml I have defined three users: test1,test2 and test3 using authentication:simple. So far I tried to open multiple new private windows in firefox to do that. It works ok for test1 and test2 users, but when trying with test3 I get automatically logged in as test2.



I then tried to use curl to workaround the problem with:



 curl -u test1:test1 http://IP:8080/app/app_name


I get back the html on my stdout but no container is spinned server side.



Is there a way to simulate multi-user and so scalability of shinyproxy with web-browser or some other tool?










share|improve this question
























  • This is odd. Why should it work for test1 and test2, but not for test3? What happens if you try it with 3 and 2, does 1 not work then? There might be something wrong with your application.yml.

    – bellackn
    May 1 at 16:44

















1















I have set a shinyproxy serving shinyapps on a virtual machine running on a cluod infrastructure. It works pretty well, i.e. client-side: I can log in with a test user and run the application from my web-browser, server-side: I can see the docker container starting out and running the shinyapp.



I would like to test concurrent use scenario with more than two users. In the application.yml I have defined three users: test1,test2 and test3 using authentication:simple. So far I tried to open multiple new private windows in firefox to do that. It works ok for test1 and test2 users, but when trying with test3 I get automatically logged in as test2.



I then tried to use curl to workaround the problem with:



 curl -u test1:test1 http://IP:8080/app/app_name


I get back the html on my stdout but no container is spinned server side.



Is there a way to simulate multi-user and so scalability of shinyproxy with web-browser or some other tool?










share|improve this question
























  • This is odd. Why should it work for test1 and test2, but not for test3? What happens if you try it with 3 and 2, does 1 not work then? There might be something wrong with your application.yml.

    – bellackn
    May 1 at 16:44













1












1








1








I have set a shinyproxy serving shinyapps on a virtual machine running on a cluod infrastructure. It works pretty well, i.e. client-side: I can log in with a test user and run the application from my web-browser, server-side: I can see the docker container starting out and running the shinyapp.



I would like to test concurrent use scenario with more than two users. In the application.yml I have defined three users: test1,test2 and test3 using authentication:simple. So far I tried to open multiple new private windows in firefox to do that. It works ok for test1 and test2 users, but when trying with test3 I get automatically logged in as test2.



I then tried to use curl to workaround the problem with:



 curl -u test1:test1 http://IP:8080/app/app_name


I get back the html on my stdout but no container is spinned server side.



Is there a way to simulate multi-user and so scalability of shinyproxy with web-browser or some other tool?










share|improve this question














I have set a shinyproxy serving shinyapps on a virtual machine running on a cluod infrastructure. It works pretty well, i.e. client-side: I can log in with a test user and run the application from my web-browser, server-side: I can see the docker container starting out and running the shinyapp.



I would like to test concurrent use scenario with more than two users. In the application.yml I have defined three users: test1,test2 and test3 using authentication:simple. So far I tried to open multiple new private windows in firefox to do that. It works ok for test1 and test2 users, but when trying with test3 I get automatically logged in as test2.



I then tried to use curl to workaround the problem with:



 curl -u test1:test1 http://IP:8080/app/app_name


I get back the html on my stdout but no container is spinned server side.



Is there a way to simulate multi-user and so scalability of shinyproxy with web-browser or some other tool?







browser shiny shinyproxy






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 27 at 8:57









diegusdiegus

5249 silver badges33 bronze badges




5249 silver badges33 bronze badges















  • This is odd. Why should it work for test1 and test2, but not for test3? What happens if you try it with 3 and 2, does 1 not work then? There might be something wrong with your application.yml.

    – bellackn
    May 1 at 16:44

















  • This is odd. Why should it work for test1 and test2, but not for test3? What happens if you try it with 3 and 2, does 1 not work then? There might be something wrong with your application.yml.

    – bellackn
    May 1 at 16:44
















This is odd. Why should it work for test1 and test2, but not for test3? What happens if you try it with 3 and 2, does 1 not work then? There might be something wrong with your application.yml.

– bellackn
May 1 at 16:44





This is odd. Why should it work for test1 and test2, but not for test3? What happens if you try it with 3 and 2, does 1 not work then? There might be something wrong with your application.yml.

– bellackn
May 1 at 16:44












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55373188%2fshiniyproxy-test-multiuser-case%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55373188%2fshiniyproxy-test-multiuser-case%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript