This is an open forum for any mojoPortal topics that don't fall into the other categories.
I am a little new to the web part of developing, mainly everything I have messed with has been desktop apps.
I have started a small web app that will be hosted on the same server as mojoportal and I want it to only be accessible if the user is a logged in member of the portal.
How do you go about doing a query to see if the user is logged in through mojoportal? I have seen some examples on the web and have found where firefox stores the cookies and can see sessions ids but what are we comparing them to? i would assume they are not unique session ids.
If it runs in the same context as the mojoportal site, you can use
if(Request.IsAuthenticated)
to check if the user is signed in or not.
Hope it helps,
Joe