Displaying 1 result from an estimated 1 matches for "visitapp1".
2006 Jun 29
1
session management not working for me in an exceptional condition
...ed to kickstart other RoR
applications(child).
A user can log in to parent RoR and then start child RoR''s and then visit
that RoR using one of the links provided in parent RoR; I have following
html code is parent RoR list page for visiting an child RoR
<input type=button onclick="visitApp1()" value="Application1"> </input>
<script>
function visitApp1()
{
window.open("http://localhost:3001/ror2/list")
}
</script>
I start parent RoR at 3000 port and then I visit it using IE (
http://localhost:3000/ror1)
on the list page of ror1 when...