Need to login using a cookie

Hello!!
I´m developing a Sharepoint 2013 login form (Sharepoint 2013 application) and I need to check if a cookie generated in another Web app is present then login using information stored in this cookie (No critical info stored here). I know the cookie is generated
but I can´t  read it from the sharepoint app. When I check if the cookie exists the cookie is null.
Edit
Right now, this application used to Log In is a Single Sign On app, it is used by multiple applications in the organization (Via an authentication coookie). What I need to do is that my Sharepoiint Login page calls this application which generates a cookie
(not authentication coookie) its a normal cookie whith some information that will allow me to login and generate the security token via my membership provider in my sharepoint app. 
Any additional steps or something I need to do for this to work?

Hi,
According to your description, my understanding is that you want to call the cookie which generated in Single Sign On app in your SharePoint login page.
If your SharePoint app and the SharePoint single sign on app are in the same domain, you can set the cookie with a
domain level asp.net authentication cookie using setAuthCookie
and some web.config changes.
Here is a code demo for your reference:
Single Sign-on in ASP.NET and Other Platforms
Thanks
Best Regards
Jerry Guo
TechNet Community Support

Similar Messages

  • My wife and I each have our own apple ID's which we use on our own iPhones and iPads. We share an iMac. Is there a way of enabling Facetime on the iMac to accept calls to either of our IDs without the need to login as that particular user?

    My wife and I each have our own apple ID's which we use on our own iPhones and iPads. We share an iMac. Is there a way of enabling Facetime on the iMac to accept calls to either of our IDs without the need to login as that particular user?

    no, when using facetime you log in with the apple id you want people to reach you at, so unless you both agree to share one apple id for all the facetime you do, it will be necessary for you to logout and login each time you use the application.

  • Cookies...I need alternatives to using them...

    I need to create a text only version of the portal to meet
    requirements of the Federeal Gov't's Disabilities Act...
    So, I'm scraping the content of the Portal Pages (pages from
    v1.0.2.2) by basically creating another middle tier (db ->
    application server -> scraper -> browser).
    The issue is COOKIES. I loose them at the "scraper" tier. And
    for some reason, I can't retrieve the Oracle Portal generated
    cookies from the client machine. The result is a "security
    error" when rendering portlets on a page with non-public access
    requirements.
    So, how can I maintain the user's session WITHOUT the use of
    cookies? I would think this would have to be done for the WAP
    version of the portal...but then again, maybe not.
    Please help!
    Thanks,
    Ryan Stefani

    Hi,
    How abt using HttpSession ? This is one of the modes of session
    maintenance in a J2EE scenario. Typically, when you go for a MVC
    architecture in Java, a controller (a servlet, which typically
    maintains session info), a view (a JSP, which is called from the
    servlet and also the UI) and a model (an EJB, which represents
    data). This class is in Servlet API.
    Hope this helps,
    --Rajesh

  • HT4798 I need help resetting my password. I haven't used my Mac book pro in over little over two months. I just got the hard drive changed on it. My problem is that I can't login because I forgot the new password. It's also not letting me login using my a

    I recently had my a new hard drive installed. I didn't have any Internet until today so I wasn't able to set up wifi on it. I just got an Internet service today and now I cannot login to my Mac book. I can't remember the master password and its not letting me login using the apple id

    See
    http://osxdaily.com/2011/08/24/reset-mac-os-x-10-7-lion-password/ and
    http://osxdaily.com/2011/09/19/change-password-mac-os-x-10-7-lion-without-knowin g-current-password/

  • Customized netweaver login screen needs seperate login for every mime

    Hi all,
    we are running ECC6 and have customzed our netweaver login screen (copied CL_ICF_SYSTEM_LOGIN to <ownClass>, redefined HTM_LOGIN, maintained it in SICF, etc.).
    And it works great - but:
    At the first call the system wants login/pw of each mime used on the login screen.
    But only for the first time.
    I can't repeat it.
    But it happens to every user.
    Correctly deleting cookies (close all screens; control->internet options-> delete cookies) CANNOT repeat the behaviour.
    Globally invalidating http server cache CANNOT repeat the behaviour.
    mimes on login screen are called like:
    https://<servername>:<https-port>/sap/bc/bsp/sap/public/bc/bsp/<applname>/xy.jpg
    So we need a login to see our login screen
    pls help...

    > All URLs under /sap/public run with user SAPSYS and so don't need any login.
    Bugger here is that the code which retrieves the object from the MIME repository makes an authorization check.
    CL_MIME_SERVICES method -> MIME_CHECK_AUTHORITY
    So it cannot run under SAPSYS as the user cannot be assigned any authority, let alone S_DEVELOP... (which in my opinion is much too strict here...). You will need to save a SERVICE user's logon credentials into the ICF service to make it visible to the user who has not logged in yet.
    Or... use SSO..
    Cheers,
    Julius

  • Any tutorials on creating a simple Login using Mysql and sessions?

    Hey guys. I cannot seem to find any information(online) or books that cover sessions in JSF and how to do a simple log in. I can get the application to query a mysql table and check the credentials and go to the next page, but I'm not sure how to make that page locked from non authorized access. I am very familiar with PHP and using it to create database driven applications. It's very straightforward, making safe logins using mysql, and creating sessions once the user has logged in(making pages locked unless the user is logged in, etc).. I have the core java server faces book but it's a joke. I feel like its an incomplete book. It merely skims a topic, and when you think it's going to get interesting it moves on to something else. It teaches basic stuff but nothing of what I want to do(or need to do). The older Javaserver faces book that came out in 2004 from O'Reilly doesn't seem to help either. I'm just wondering where people learn JSF at. I know Java, I would say pretty well as far as desktop applications go. I really like the way JSF is layed out and would really like to use it in my next project. At the level I know it now it's perfect for static web pages with no dynamic information.(but I could use plain html for that). Thanks for all your help.

    dothedru22 wrote:
    but I'm not sure how to make that page locked from non authorized access.You can use a Filter for that. Map the filter on the desired url-pattern and write doFilter() logic which checks if the user is logged in (basically: if there is an User object in the HttpSession) and handle accordingly (chain.doFilter() on success or response.sendRedirect on fail).
    and creating sessions once the user has logged in(making pages locked unless the user is logged in, etc).. The HttpSession is backed by a cookie (as is PHP's $_SESSION, did you know that?), you don't need to do any low-level stuff with cookies. Maybe at highest if you ever want a "remember me on this computer" option.
    booksThe mentioned books learns you the JSF basics. They doesn't really learn the best practices / practical use cases. There you have other resources for (or just practical experiences). Besides, I recommend you to go get a book which covers JSF 1.2 or newer. The mentioned ones are outdated, as is everything else older dan two years in the programming world.

  • TS5325 I have already purchased all the instruments but my app is saying they are not available. I have clicked already purchased but it says I need to login as original user???? Any ideas.

    I have already purchased the full set of GarageBand instruments but the app is no longer recognising this. I have clicked on already purchased as it suggests in troubleshooting however it then says it can't install because I need to login as the original user??? Please help.

    Are you signed into the AppStore  with the same Apple ID you used when you originally bought GarageBand and the in-app purchase? If yes, then contact the iTunes Store, see:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase

  • Question about email setting: how  do i change the setting so i need to login to check my email. Currently it automatically come to the inbox without the need to log in. Thanks

    Question about email setting: how  do i change the setting so i need to login to check my email. Currently it automatically come to the inbox without the need to log in.

    You don't. Email comes in either by push or when you invoke the email app. Ther is no password except when you first set up the account. If your iPad is not being used as your personal device and you need to shield emails from other users, then don't use the email app.  Instead, use web mail if available from your provider.

  • Need to login again while opening a JSP page from inside Oracle Forms

    Hi,
    we are using EBS r12.1.1 on OEL 5.
    Whenever we are trying to open java page from inside an Oracle Form a login page is coming again.And we need to login to view the page.Whereas when the same page is been opened from the home page itself it is opening fine.
    Please help.

    Hi,
    We've had similiar issues to this. Typically it's around the java version on the client machine being different to that on the oracle server.
    We usually uninstall the client machines java (making sure all applications are closed first), then log back into forms so it downloads the java client again from the server.
    Once it has done that, you need to go into the java control panel and turn off updates.
    Hope that helps.
    Cheers,
    Russell H.

  • Creative cloud shows CC and CC (2014), if i try running (2014) I get an error that I need to login.

    I have adobe Creative cloud and it shows CC and CC (2014) for every program, if i try running (2014) I get an error that I need to login.
    When I look at my adobe subscription it says Creative Cloud Free membership but I pay 49.95 a month for full access.
    Why am I not able to use CC(2014).
    If I pay the 49 monthly should I not get upgrades to all my apps instantly?
    Please help

    You will see my monthly payment to Adobe and the reference for the payment.
    Hi Kartikay,
    I have been using my creative cloud for months with my email address [email protected] I am surprised you do not see it.
    What can I do?
    When I login all my programs open correctly except premiere cc 2014

  • Unable to login using weblogic in sample tutorial page

    I am trying to login using "weblogic" and "weblogic1" credentials to the tutorial page at http://docs.oracle.com/cd/E23943_01/webcenter.1111/e10273/createapp.htm
    But after I click the link "login", nothing is happening. I mean no response is coming and progress bar shows still waiting. Neither its saying invalid credentials.
    But using the same credentials I am able to successfully login into the console page at http://127.0.0.1:7101/console
    I even tried to delete the DefaultDomain and started Integrated Weblogic server and it again automatically created the domain. But still same problem exists.
    Please let me know. Thanks.

    Hi,
    You need to run the setup once to register the administrator user for discussion server. Open /Oracle/Middleware/user_projects/domains/yourdomain/config/fmwconfig/servers/WC_Collaboration1/owc_discussions/jive_startup.xml file and change "true" to "false"
    <jive>
    <!-- When setup is false, you can access the setup tool. -->
    <setup>true</setup> // Change it to false
    <!-- Database settings -->
    <database>
    Now access the http://host:port/owc_discussions/admin/setup and make the configuration and on last step specify weblogic or any other user as admin. Then you will be able to access it.
    Thanks

  • Purchased IOS Developer program but couldn't see any developer options after login using my apple id

    On 15/06/14,I’ve purchased IOS Developer program by paying 99$,on 17/06/14 i got email from Apple reg Invoice No.But when i check the Order Status,it says “No Orders placed”.And AlsoI tried to login using my applied,but i couldn’t see the developer options.
    I would request you all to let me know what happend to my order Status?

    We are users like you. We have nothing to do with your enrollment. You need to go to the Online Store to formally purchase and pay for the membership.

  • Concurrent user logins using same user ID- Is it Possible?

    Hi Experts,
    I want to know how can I make the configuration for user ID in SAP to login in to the system at once through different machings. Basically concurrent user logins using same user ID.
    Is this is possible?  whats the configuaration? Am I violating any SAP license policies?
    Please help me with this.

    just for the knowledge, it is possible and via following parameter
    login/disable_multi_gui_login
    http://help.sap.com/saphelp_nw04s/helpdata/en/22/41c43ac23cef2fe10000000a114084/content.htm
    However, it is not permitted to use in Production at all. But sometimes, only in critical situations, for eg. we have only a few basis IDs and some maintenance task is to be carried out involving more resources, multiple gui login can be utilized in sandbox to for that ID.
    But, it is for sure that, USMM report will be sent to SAP for the sandbox too. So client is subjectable. If you, as a basis guy, are going to try it, then please do it only after the confirmation from the client and only if client needs it.

  • Cant login using internet explorer 9 but can using...

    I cant login using internet explorer 9 but can using other browsers such as mozilla and google chrome on my laptop.
    The problem is only on my laptop as i can login on my desktop pc .
    I keep returning to the login page everytime I submit my details.
    Solved!
    Go to Solution.

    You could try clearing cookies and cache - see here for how http://kb.wisc.edu/page.php?id=15141
    Can't think of much else I'm afraid - don't actually use IE (or windows) that much myself.

  • Help required to login using certification id

    Hi Professionals,
    I heard that we can login using the certification id no:
    pls do let me know the url or how to register.
    I searched the forum, but i didnt get a proper idea ....i tried in
    sap market place too but i can see only partner/customer login only
    Pls reply
    Thanx in advance
    Rachel

    Hi Rachel,
    While going for SAP certification u need to register and get an S-user Id. With this id u can access the sdn as well as SAP's marketplace. Is this the id ur talking about? If yes u can register through https://service.sap.com. You to have mention the partner number if u r working in SAP partnered  company.
    Regards
    Priyanka

Maybe you are looking for

  • ALL MY DUKES TO ANYONE WHO CAN EXPOSE THESE POSTERS/IMPOSTER

    Please check message #16 and #17 at the link below: http://forum.java.sun.com/thread.jsp?forum=31&thread=216311 Also look at these links: http://forum.java.sun.com/thread.jsp?thread=216613&forum=17&message=750160 http://forum.java.sun.com/thread.jsp?

  • JMS Text Msg Payload - Oracle 8i

    I am using Oracle8i Enterprise Edition Release 8.1.7.4.0 for creating a queue uisng Oracle AQ with payload type SYS.AQ$_JMS_TEXT_MESSAGE. When I tried create a queue, I found some of components in SYS.AQ$_JMS_TEXT_MESSAGE are missing in Oracle 8i. Wi

  • Target cost version 0

    Hi, currently we are using target cost version 0 to calculate production variance. But to get correct production variance in relevant variance category it is needed to have current standard cost updated in material master.  But if we skip updating st

  • Is there a size limit when importing videos?

    Is there a size limit when importing videos into iTunes (8)? I have a 4+ gig video file I'm trying to import, but when I drag/drop it into the movies, nothing happens. It works fine with smaller files. thanks Scott

  • My executable has kind "MPEG-1 Video" in Finder... how to change?

    Hi, i have a unix executable (small command line program) that is compiled under Mac OS X. However, the Finder thinks it is an MPEG-1 Video (as displayed in the "Kind" field). So, whenever, I launch the application, OS X first opens QuickTime in an a