we have made an extension to OWA page, connecting to a web application running in Tomcst. The content served by this application is shown in an iframe inside OWA page using isapi. This is working everywhere but in a customer where the session cookies set by OWA (sessionid and cadata ) get deleted as soon as a succesful login is done in the Tomcat application. After this, OWA redirects to its login page. As I said this is happening in only one customer out of about fifty so I guess it cannot be anything with our application but it must be something in the OWA's IIS configuration. The same behaviour is observed both with IE and Firefox. Any idea? Thanks
OWA sessionid cookie lost when logging into a Tomcat site iframe
1.2k Views Asked by Jose Luis C. At
1
There are 1 best solutions below
Related Questions in IIS
- Create an IIS web request activity light
- Why web API return 404 when deploy to IIS
- Adding site Binding programmatically IIS 7.5
- .net Web Api 2 Owin authentication token expires suddenly and often on IIS 8.5
- Redirecting subdomain to directory on Azure
- Saving Image To a Temp Folder is Loosing Session
- The page cannot be displayed because an internal server error has occurred on server
- Approach for performing long running tasks in .NET
- Why does IIS Anonymous Authentication turn on by itself after I publish my project to server?
- IIS 7 ERR_CONNECTION_TIMED_OUT only with public IP
- Maximum value for IIS .NET Compilation Batch Time-out
- ASP.Net 1.1 app on IIS 7 waiting threads
- File upload web api 2.0 error after deployment on IIS 8.5
- nginx and IIS - dealing with invalid hostname and SSL
- Allow console application to access Windows Authenticated web app
Related Questions in TOMCAT
- Best way to pass an environment variable to several config files
- Openshift context path
- KeyStore file is not found in jar, although present in jar
- phpseclib of how to get PID and kill
- Unable to connect database of lamp instance from servlet running on tomcat instance of google cloud
- Spring and Tomcat: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set
- How can I get a custom header from the client in Tomcat?
- why lost Mysql connection pool after a period?
- Eclipse Java EE + Bitnami Tomcat Stack
- Service not starting using Spring-boot during integration tests
- Image not loading in web page and says 404 error
- Maven Tomcat plugin - 404 WebServlet not found
- How to deploy a spring boot MVC application in traditional tomcat webapps folder?
- Tomcat Manager is not accessible in multi-domain configuration
- JSP return Jasper Exceptions on my friend's pc's when it works on mine
Related Questions in SESSIONID
- What is the purpose of using a session id when csrf protection is already implemented?
- Response.write only shows the first record from the database (this.session.sessionid)
- How to remove session id "/?___SID=U" from home page URL using .htaccess
- Django generates a new session ID on every API call
- PHP/MySQL code won't insert userid and password into table
- Object moved to here in response of Jmeter request
- Explanation for session_regenerate_id() proper usage
- Disable session id based on cookies in RAP to use multiple browsers and tabbed browsing
- Jquery File Upload change session id
- Display sql database values in textboxes using the session id
- How to get the session ID of session in a remote machine?
- SRTServletRequest getSession(true) returns HttpSession with same sessionId
- ASP.Net session behavior in Internet Explorer
- Loosin session id over SSL
- Solution for handling Spring security session Id in different wed apps
Related Questions in ISAPI-REDIRECT
- Using HELICON ISAPI Rewrite & ASP.Net MVC - Url Redirection
- Tomcat/IIS isapi_redirect connectors not working
- Apache Tomcat 6.0 IIS 5.1 isapi redirector error "The request is not supported."
- ISAPI Issues with CFWheels
- OWA sessionid cookie lost when logging into a Tomcat site iframe
- How to connect JBoss AS 7.1.1 with IIS 7 using Apache ISAPI Redirector 1.2.37
- URL Redirection from a html page to an .aspx page
- Configure ISAPI redirector: worker propreties for IIS and Liferay
- Best way to redirect from one site to new site adding a querystring to it
- How to update Http Request and send it to another web server
- Redirecting non-www to www in IsapiRewrite
- IIS 6 Isapi filter - forward or redirect requets to other domain
- Windows authentication fails to connect after Java update
- Getting redirected to isapi_redirect.dll url randomly with 404
- Help with redirection for .com, .net and .org domains: redirecting all of them to .com
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Cookies are bound to a specific (sub)domain and path. It sounds like that the login redirects the user to a (sub)domain/path which isn't covered by the cookie. Debug the HTTP headers for sent/received cookies and check the request URL's as well.