9.0.2 JAZN SSO doasprivileged-mode=true  does not work

I've been trying to deploy an application to my "fresh" 9iR2 App Server that has been installed on Solaris 8 with all the patches 9.0.2. (I also have a second Solaris 8 machine with the 9iR2 Infrastructure installed, also patched up to the latest rev of 9.0.2). I'm deploying my EAR file with the Enterprise Manager deployment tool, and it works great (except for the following problem). I want to make my servlets run in "doasprivileged-mode" as described in
http://otn.oracle.com/tech/java/oc4j/doc_library/902/servicesjun02/jaas_j2a.htm
I believe I have everything setup correctly, but when I try (in my servlet) to try to access JAAS like this:
AccessControlContext acc = AccessController.getContext()
OR, do this:
AccessController.checkPermission(new FilePermission("/tmp/test.txt", "read"));
I get the following exception in my browser and then another exception in the opmn log. I believe the root cause is this: "The system is unable to retreive the specified role(s)." But I have no idea what role it's talking about... When I run the JAZN shell commands and look around in the "llnl" realm, I see the AUTHENTICATED_USERS group and the user I'm logging into SSO as, is a member of this group.
Thanks for any info/help on this matter. Also, if someone has a working example that shows the use of the doasprivliged-mode="true" that would really help. The callerInfo and ssoInfo examples don't seem to address this additional use of the JAAS environment (past asking the HttpServletRequest for the Principal object)
--Leif
java.security.PrivilegedActionException: javax.servlet.ServletException: A JAZN internal error has occurred.
     at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:256)
     at java.security.AccessController.doPrivileged(Native Method)
     at javax.security.auth.Subject.doAsPrivileged(Subject.java:558)
     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:269)
     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)
Root cause is; java.lang.IllegalStateException: A JAZN internal error has occurred.
     at oracle.security.jazn.spi.ldap.LDAPGranteeEntry.checkValidity(LDAPGranteeEntry.java:286)
     at oracle.security.jazn.spi.ldap.LDAPGranteeEntry.getGranteeEntry(LDAPGranteeEntry.java:297)
     at oracle.security.jazn.spi.ldap.LDAPLocalPolicy.getGrantees(LDAPLocalPolicy.java:316)
     at oracle.security.jazn.spi.ldap.LDAPLocalPolicy.getGranteeEntries(LDAPLocalPolicy.java:264)
     at oracle.security.jazn.spi.ldap.LDAPLocalPolicy.getPermissions(LDAPLocalPolicy.java:1029)
     at oracle.security.jazn.spi.ldap.LDAPJAZNPolicy.getPermissions(LDAPJAZNPolicy.java:649)
     at oracle.security.jazn.spi.ldap.LDAPJAZNPolicy.getPermissions(LDAPJAZNPolicy.java:680)
     at oracle.security.jazn.spi.PolicyProvider.getPermissions(PolicyProvider.java:218)
     at javax.security.auth.SubjectDomainCombiner$3.run(SubjectDomainCombiner.java:253)
     at java.security.AccessController.doPrivileged(Native Method)
     at javax.security.auth.SubjectDomainCombiner.combine(SubjectDomainCombiner.java:249)
     at java.security.AccessControlContext.goCombiner(AccessControlContext.java:516)
     at java.security.AccessControlContext.combineWithPrivilegedContext(AccessControlContext.java:305)
     at java.security.AccessControlContext.optimize(AccessControlContext.java:404)
     at java.security.AccessController.checkPermission(AccessController.java:398)
     at gov.llnl.ais.test.TestServlet.doPost(TestServlet.java:59)
     at gov.llnl.ais.test.TestServlet.doGet(TestServlet.java:44)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
     at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:252)
     at java.security.AccessController.doPrivileged(Native Method)
     at javax.security.auth.Subject.doAsPrivileged(Subject.java:558)
     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:269)
     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)
I also get this exception in $ORACLE_HOME/opmn/logs/home.default_island.1
java.lang.reflect.InvocationTargetException: oracle.security.jazn.JAZNException: The system is unable to retreive the specified role(s).
     at oracle.security.jazn.spi.ldap.LDAPRealmRole.<init>(LDAPRealmRole.java:91)
     at java.lang.reflect.Constructor.newInstance(Native Method)
     at oracle.security.jazn.spi.ldap.LDAPGranteeEntry.init(LDAPGranteeEntry.java:218)
     at oracle.security.jazn.spi.ldap.LDAPGranteeEntry.<init>(LDAPGranteeEntry.java:121)
     at oracle.security.jazn.spi.ldap.LDAPGranteeEntry.<init>(LDAPGranteeEntry.java:116)
     at oracle.security.jazn.spi.ldap.LDAPLocalPolicy.getGrantees(LDAPLocalPolicy.java:315)
     at oracle.security.jazn.spi.ldap.LDAPLocalPolicy.getGranteeEntries(LDAPLocalPolicy.java:264)
     at oracle.security.jazn.spi.ldap.LDAPLocalPolicy.getPermissions(LDAPLocalPolicy.java:1029)
     at oracle.security.jazn.spi.ldap.LDAPJAZNPolicy.getPermissions(LDAPJAZNPolicy.java:649)
     at oracle.security.jazn.spi.ldap.LDAPJAZNPolicy.getPermissions(LDAPJAZNPolicy.java:680)
     at oracle.security.jazn.spi.PolicyProvider.getPermissions(PolicyProvider.java:218)
     at javax.security.auth.SubjectDomainCombiner$3.run(SubjectDomainCombiner.java:253)
     at java.security.AccessController.doPrivileged(Native Method)
     at javax.security.auth.SubjectDomainCombiner.combine(SubjectDomainCombiner.java:249)
     at java.security.AccessControlContext.goCombiner(AccessControlContext.java:516)
     at java.security.AccessControlContext.combineWithPrivilegedContext(AccessControlContext.java:305)
     at java.security.AccessControlContext.optimize(AccessControlContext.java:404)
     at java.security.AccessController.checkPermission(AccessController.java:398)
     at gov.llnl.ais.test.TestServlet.doPost(TestServlet.java:59)
     at gov.llnl.ais.test.TestServlet.doGet(TestServlet.java:44)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
     at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:252)
     at java.security.AccessController.doPrivileged(Native Method)
     at javax.security.auth.Subject.doAsPrivileged(Subject.java:558)
     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:269)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
     at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
     at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
Here are my XML files:
=== application.xml start ===
<?xml version="1.0" encoding="windows-1252"?>
<!DOCTYPE application PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN" "http://java.sun.com/j2ee/dtds/application_1_2.dtd">
<application>
     <display-name>TestMe</display-name>
     <module>
          <web>
               <web-uri>test.war</web-uri>
               <context-root>/testme</context-root>
          </web>
     </module>
     <security-role>
          <role-name>users</role-name>
     </security-role>
</application>
=== application.xml end ===
=== orion-application.xml start ===
<?xml version="1.0" encoding="windows-1252"?>
<!DOCTYPE orion-application PUBLIC "-//Evermind//DTD J2EE Application runtime 1.2//EN" "http://xmlns.oracle.com/ias/dtds/orion-application.dtd">
<orion-application>
     <web-module id="test" path="test.war"/>
     <security-role-mapping name="users">
          <group name="llnl/AUTHENTICATED_USERS"/>
     </security-role-mapping>
     <persistence path="persistence"/>
     <log>
          <file path="application.log"/>
     </log>
     <!-- use JAZN-XML by default
     <jazn provider="XML" location="./jazn-data.xml"/> -->
     <!-- use JAZN-LDAP instead -->
     <jazn provider="LDAP" default-realm="llnl" location="my-ldap-server-is-here"/>
     <namespace-access>
          <read-access>
               <namespace-resource root="">
                    <security-role-mapping impliesAll="true" name="&lt;jndi-user-role&gt;">
                         <group name="administrators"/>
                    </security-role-mapping>
               </namespace-resource>
          </read-access>
          <write-access>
               <namespace-resource root="">
                    <security-role-mapping impliesAll="true" name="&lt;jndi-user-role&gt;">
                         <group name="administrators"/>
                    </security-role-mapping>
               </namespace-resource>
          </write-access>
     </namespace-access>
</orion-application>
=== orion-application.xml end ===
=== orion-web.xml start ===
<?xml version="1.0"?>
<!DOCTYPE orion-web-app PUBLIC "-//Evermind//DTD Orion Web Application 2.3//EN" "http://xmlns.oracle.com/ias/dtds/orion-web.dtd">
<orion-web-app>
     <jazn-web-app auth-method="SSO" runas-mode="true" doasprivileged-mode="true"/>
</orion-web-app>
=== orion-web.xml end -===
=== web.xml start ===
<?xml version="1.0"?>
<!DOCTYPE web-app SYSTEM "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
     <servlet>
          <servlet-name>TestServlet</servlet-name>
          <servlet-class>gov.llnl.ais.test.TestServlet</servlet-class>
          <security-role-ref>
               <role-name>users</role-name>
               <role-link>users</role-link>
          </security-role-ref>
          <!--          <run-as>
          <role-name>users</role-name>
          </run-as> -->
     </servlet>
     <servlet-mapping>
          <servlet-name>TestServlet</servlet-name>
          <url-pattern>/test</url-pattern>
     </servlet-mapping>
     <welcome-file-list>
          <welcome-file>index.jsp</welcome-file>
     </welcome-file-list>
     <error-page>
          <error-code>404</error-code>
          <location>/error.jsp</location>
     </error-page>
     <security-constraint>
          <web-resource-collection>
               <web-resource-name>authenticated</web-resource-name>
               <url-pattern>/test</url-pattern>
          </web-resource-collection>
          <auth-constraint>
               <role-name>users</role-name>
          </auth-constraint>
     </security-constraint>
     <login-config>
          <auth-method>BASIC</auth-method>
     </login-config>
     <security-role>
          <role-name>users</role-name>
     </security-role>
</web-app>
=== web.xml end ===
=== TestServlet.java start ===
package gov.llnl.ais.test;
import java.io.FilePermission;
import java.io.IOException;
import java.io.PrintWriter;
import javax.security.auth.Subject;
import javax.security.auth.SubjectDomainCombiner;
import javax.security.auth.login.LoginContext;
import javax.security.auth.login.LoginException;
import javax.servlet.http.HttpServlet;
import java.security.AccessControlContext;
import java.security.AccessController;
import java.security.DomainCombiner;
import java.security.Principal;
import java.util.Iterator;
import java.util.Set;
import oracle.security.jazn.oc4j.JAZNUserAdaptor;
public class TestServlet extends HttpServlet {
     * Constructor for TestServlet.
     public TestServlet() {
          super();
     * @param request
     * @param response
     public void doGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws IOException {
          doPost(request, response);
     public void doPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws IOException {
          PrintWriter pw = response.getWriter();
          pw.println("<html><head><title>Hi</title><body>Hi there dude<br>You are:");
          pw.println(request.getRemoteUser());
          Principal p = request.getUserPrincipal();
          if (p instanceof JAZNUserAdaptor) {
               JAZNUserAdaptor jaznuser = (JAZNUserAdaptor) p;
               pw.println("<br>SSO user DN [RealmPrincipal.getFullName] = " + jaznuser.getFullName() + "<br>");
               pw.println("Subscriber name [Realm.getName] = " + jaznuser.getRealm().getName() + "<br>");
               pw.println("Subscriber DN [Realm.getFullName] = " + jaznuser.getRealm().getFullName() + "<p>");
          AccessController.checkPermission(new FilePermission("/tmp/test.txt", "read"));
          Subject subject = null;
          AccessControlContext acc = AccessController.getContext();
          subject = Subject.getSubject(acc);
          if (subject == null) {
               pw.println("Subject via AccessControlContext is null.<br>");
               DomainCombiner dc = acc.getDomainCombiner();
               if (dc instanceof SubjectDomainCombiner) {
                    subject = ((SubjectDomainCombiner) dc).getSubject();
          if (subject == null) {
               pw.println("Subject via DomainCombiner is null.<br>");
          if (subject != null) {
               Set principals = subject.getPrincipals();
               Iterator principalsIterator = principals.iterator();
               while (principalsIterator.hasNext()) {
                    Principal principal = (Principal) principalsIterator.next();
                    pw.println("Principal: " + principal.toString() + "<br>");
          pw.println("</body></html>");
=== TestServlet.java end ===

More info...
When I go into the JAZN tool via:
java -jar jazn.jar -shell
Then do this:
JAZN:> cd realms/llnl/roles/AUTHENTICATED_USERS
JAZN:llnl> ls permissions
java.lang.reflect.InvocationTargetException: oracle.security.jazn.JAZNException: The system is unable to retreive the specified role(s).
at oracle.security.jazn.spi.ldap.LDAPRealmRole.<init>(LDAPRealmRole.java:91)
at java.lang.reflect.Constructor.newInstance(Native Method)
at oracle.security.jazn.spi.ldap.LDAPGranteeEntry.init(LDAPGranteeEntry.java:218)
at oracle.security.jazn.spi.ldap.LDAPGranteeEntry.<init>(LDAPGranteeEntry.java:121)
at oracle.security.jazn.spi.ldap.LDAPGranteeEntry.<init>(LDAPGranteeEntry.java:116)
at oracle.security.jazn.spi.ldap.LDAPLocalPolicy.getGrantees(LDAPLocalPolicy.java:315)
at oracle.security.jazn.spi.ldap.LDAPLocalPolicy.getGranteeEntries(LDAPLocalPolicy.java:264)
at oracle.security.jazn.spi.ldap.LDAPLocalPolicy.getPermissions(LDAPLocalPolicy.java:1029)
at oracle.security.jazn.spi.ldap.LDAPJAZNPolicy.getPermissions(LDAPJAZNPolicy.java:649)
at oracle.security.jazn.spi.ldap.LDAPJAZNPolicy.getPermissions(LDAPJAZNPolicy.java:680)
at oracle.security.jazn.tools.Admintool.listRolePerms(Admintool.java:1140)
at oracle.security.jazn.tools.Admintool.processArgs(Admintool.java:404)
at oracle.security.jazn.tools.Admintool.lsCommand(Admintool.java:2782)
at oracle.security.jazn.tools.Admintool.shell(Admintool.java:2399)
at oracle.security.jazn.tools.Admintool.processArgs(Admintool.java:230)
at oracle.security.jazn.tools.Admintool.main(Admintool.java:123)
A JAZN internal error has occurred.
What could be causing this problem? It seems to be the same error that I'm getting in the OPMN log.
Thanks!
--Leif

Similar Messages

  • Paid subscription, but all products still in trial mode and does not work!

    Hello!
    I paid subscription, but all products still in trial mode and does not work! In Adobe ID manage page i don't see my subscription Screenshot “Adobe ID”
    I received an email confirmation of my payment subscription. Order number 12984126025, my adobe id
    [personal information removed... Mod - https://forums.adobe.com/docs/DOC-3731]
    [This is an open forum, not Adobe support, please do not post personal information]
    Why so?! This is very important! My current project at risk, I can lose money

    Please try the below mentioned steps
    1) Sign out of the Creative Cloud app
    2) delete the opm.db file*
    3) update to the latest version of the Creative Cloud app.
    *On Windows 7, the opm.db file is located here:
    C:\Users\YourUserName\AppData\Local\Adobe\OOBE
    *On a Mac, go here:
    [Userdir]:Library:Application Support:Adobe
    ~Deepak

  • CE7305 - Transparent mode authentication does not work.

    Hi,
    I’m doing a trial content engine 7305 for my customer. Everything worked well so far with the box except with the authentication feature.
    Authentication work well on proxy mode but when I turned it on with transparent mode it does not work. My customer is using LDAP for user authentication.
    I suspect there is something that I did not turn on in the configuration.
    Attached herewith is the show tech of the Cisco 7305 content engine.
    Please advise!
    Thanks in advance,
    Raymond Hew

    Hi Zach,
    My customer is using Novell LDAP.
    Right at the moment the CE is already working with the auth. after rebooted the CE 7305. Just can't explain why but it works after rebooting.
    Thanks for your fast respond.
    Best regards,
    Raymond Hew

  • Rtexprvalue true does not work

    I write a tag ,it works well( tomcat 5.5 ,jdk5):
         <u:repeat num="5">
                   ${count} of 5<br>
              </u:repeat>
         <%
              request.setAttribute("number",2);
         %>
    but when I use it like this:
              <u:repeat num="${number}">
                   ${count} of 5
              </u:repeat>     
    i got the error:
    NumberFormatException: For input string: "${number}"
    It seems the rtexprvalue does not work at runtime.
    tag class:
    import javax.servlet.jsp.JspException;
    import javax.servlet.jsp.tagext.SimpleTagSupport;
    import java.util.HashMap;
    import java.io.IOException;
    public class RepeatSimpleTag extends SimpleTagSupport {
         private int num;
         public void doTag() throws JspException, IOException {
              for (int i = 0; i < num; i++) {
                   getJspContext().setAttribute("count", String.valueOf(i + 1));
                   getJspBody().invoke(null);
         public void setNum(int num) {
              this.num = num;
    TLD:
         <tag>
              <name>repeat</name>
              <tag-class>boc.common.tags.RepeatSimpleTag</tag-class>
              <body-content>scriptless</body-content>
              <variable>
                   <description>Current invocation count (1 to num)</description>
                   <name-given>count</name-given>
              </variable>
              <attribute>
                   <name>num</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
              </attribute>
         </tag>
    then I change the code to:
         public void setNum(String num) {
              this.num = Integer.parseInt(num);
    still got the error
    org.apache.jasper.JasperException: Exception in JSP: /WEB-INF/jsp/spring/userauth.jsp:22
    19:           request.setAttribute("number",2);
    20:      %>
    21:      
    22:           <u:repeat num="${number}">
    23:                ${count} of 5
    24:           </u:repeat>          
    25:           <u:repeat num="5">
    Stacktrace:
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:504)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
    root cause
    java.lang.NumberFormatException: For input string: "${number}"
         java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
         java.lang.Integer.parseInt(Integer.java:447)

    I set <el-ignored>true</el-ignored>
    change it to false and all is ok

  • Installing Firefox with windows 7 64bit mode just does not work.

    I have windows 7 64bit mode. I cannot install firefox, it crashes all the time when I open it. I know the problem is because my windows 7 is in 64bit mode. Can you (firefox support) or someone on this forum provide the simple and easy steps of getting it to work. Also can you (firefox) hurry up and release a 64bit version. I'm using google chrome and crazy browser as they seem to have no problems at all. I really want to use firefox but it just won't set up for me because I'm running win7 64bit mode. If I was running win7 32bit mode I wouldn't be having any issues. Has anyone out there got a simple step by step solution for this? It it mind boggling that with todays technology no one has a simple fix for this issue. Help!!!!!
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.70 Safari/533.4

    I have been running Win 7 64 bit on an HP Pavilion lap for several months. The whole browser thing has been a nightmare. My work involves heavy duty internet research. Firefox crashes every few minutes. There is no specific event I can find that kicks this off, but running the latest Flash Players and Adobe Reader makes it a lot worse. In fact, I had to set up the adobe reader to not run within the Firefox window. I had to back off to an old version of adobe Reader and Flash Player to accomplish this. I love Firefox. I was disappointed to have to uninstall it as it was impossible to run searches with it.
    So then it proved to be that IE either version 8 or 9 was even worse. I could not keep it up long enough to run a search.
    So I installed Chrome which has some nice features, but it also crashes, albeit more gracefully so I do not lose my place and it makes a quick recovery but there are many online applications where Chrome just does not work.
    My son also has Win7 64 bit and says he is also having the same problems.
    I want my Firefox back! Please fix it.

  • Will not load sites linked from another website--have cleared cache, cookies, history, restarted, checked in Safe Mode--still does not work.

    Some sites load fine. But some sites will not load when linked from another web site, or, occasionally, even from my bookmarks. I went through troubleshooting routine--cleared cache and cookies, history, checked in Safe Mode for extensions, etc., but still will not work in Safe Mode. No other problems with computer or browser.

    What happens when you click the link that does not open up the new page? Is it a blank page? Does this also happen if you Shift Click the link?
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Firefox 3.6.3 does not save any history, does not save passwords. I have read the forum and checked my settings (ok), started in Safe mode (still does not work).

    Firefox 3.6.3 does not save history, nor passwords. I have read the forum and checked my settings in Privacy (all ok), I restarted Firefox in Safe mode (it still does not remember history or passwords). Running on XP. I think these problems started when I upgraded to 3.6.3.

    I had the same problem after an upgrade to 3.6.3.
    I was using password manager for a number of web sites before. Not using cookies but password manager.
    After 3.6.3 auto upgrade it did not work.
    I could not enter private browsing mode.
    When I looked in tools>options>security at my saved passwords the list was blank. The button in the saved passwords dialog that normally says "Show saved passwords" was actually blank (the button was there but there was no text on it).
    I did have my old bookmarks and was able to create new ones but oddly the bookmark all tabs menu function wouldn't work.
    I decided to reinstall firefox 3.6.3. There is no way something with that many bugs got out!
    I was able to get the full firefox executable from http://mozilla.com
    I closed all firefox windows and ran the installation.
    After re-running the install and starting firefox everything was fine. It must have been a bad download or the original install got messed up somehow.
    I hope you have the same good fortune I had!

  • H:selectOneRadio required true does not work

    Hi,
    I have a selectOneRadio and it was a required="true" attribute. Some how, it never works. All the other validations in the page work except this one. Any clues??
    <h:panelGrid columns="1">
         <h:outputText value="Handbook Type " styleClass="outputText"></h:outputText>
         <h:selectOneRadio id="selectOneRadioID" layout="pageDirection"
              required="true" styleClass="selectOneRadio"
              value="#{pc_SelectCriteriaForFilingTypeNotesBody.currentHBT}">
              <f:selectItems
                   value="#{pc_SelectCriteriaForFilingTypeNotesBody.handBookTypeList}" />
         </h:selectOneRadio>
         <h:message for="selectOneRadioID" errorClass="errorMessage"></h:message>
    </h:panelGrid>I don't have immediate on my button. I am using Sun's RI 1.0
    Thanks,
    Dushy

    Hi Dushy,
    Try putting an inline message or message list component in the page. This would show any error messages and it would be easier to understand what is happening if there is an error.
    Cheers :-)
    Creator Team

  • After I upgrade to Lion OS my Lexmark printer mod. x1185 does not work anymore. I need the scan and copy functions, since I have a HP laserjet for printing. Even in the new (sep/08) driver file from apple there is no driver for my printer. Anyone could h

    Driver for lexmark x1185 (series 1100) for MAC OS 10.7. Anyone has a solution ?

    You should contact Lexmark. They have not released a driver for this printer since 10.3, and they no longer sell it. You could try the Generic PostScript PPD and see if you get limited functionality.
    Hope this helps.

  • HT1338 I forgot my administrative password and login. I do not have the CD and every time i try to use single user mode it does not work either.  Is their anything i can do to reset this? I don't care about losing the information.

    Please help me ive been trying to do this all day by googling it and using apple.  HELP PLEASE

    Hello, is it an admin Login, or possibly a Firmware Protection Password???
    Firmware password protection in Mac OS X ...
    http://support.apple.com/kb/HT1352
    It would block usage of all the startup keys, like C, N, T, D, CMD+s, CMD+Option+p+r, CMD +v, Option, and Shift, as well as booting from anything but the Hard Drive.
    Force Removing Password Protection
    1) Add or remove DIMMs to change the total amount of RAM in the computer.
    2) Then, the PRAM must be reset 3 times. (Command + Option + P + R).
    http://www.securemac.com/openfirmwarepasswordprotection.php

  • Why fms3 edge mode can't not work like fms2 ?

    Step 1:
    Yesterday,I use edge mode with fms2.05 , and I do like this
    URL (
    http://www.adobe.com/devnet/flashmediaserver/articles/webcasting_fme_print.html)
    PC A run FME 2.5 (flash media encode )+ FMS 2.05 (orgin mode
    ,use install by default setup)
    IP address:192.168.1.1 OS :windows xp sp2
    PC B run FMS 2.05 (edge mode ,use install by default setup
    and modify C:\Program Files\Adobe\Flash Media Server
    2\conf\_defaultRoot_\_defaultVHost_\Vhost.xml , "local"
    ->"remote" )
    IP address :192.168.1.2 OS: windows 2003 sp1
    PC C run a viewlive.swf made by me like this:
    nc = new NetConnection();
    nc.connect("rtmp://192.168.1.2/?rtmp://192.168.1.1/live");
    nc.onStatus = function(info) {
    if (info.code == "NetConnection.Connect.Success") {
    createNetStream(this);
    createNetStream = function (nc) { ns = new
    NetStream(nc);myvid.attachVideo(ns);myvid.smoothing =
    true;ns.play("test", -1);};
    I can see the live webcasting on PC C, all think is OK !
    Step 2
    Today , I install fms3.02 instead of fms2.05 in PC A and PC
    B, do the same thing like Step 1
    but run the viewlive.swf can't see anything.
    I check PC B : C:\Program Files\Adobe\Flash Media Server
    3\logs\core.00.log
    2008-05-24 18:33:14 3480 (i)2581231 Core (3480) connected to
    admin. -
    2008-05-24 18:33:14 3480 (i)2581246 Core (3480) sending
    register cmd to edge. -
    2008-05-24 18:33:14 3480 (w)2631008 Asynchronous I/O
    operation failed (Failed to attach to completion port:
    参数不正确。 87). -
    2008-05-24 18:33:15 3480 (i)2581234 Core (3480) connection to
    admin accepted. -
    Asynchronous I/O operation failed (Failed to attach to
    completion port: 参数不正确。
    87). Why ?
    Should anybody can help me?

    This works. I change the visible property instead of using
    removeChild, though I don't know why yours does not work.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:states>
    <mx:State name="state2">
    <mx:SetProperty target="{popupbutton1}" name="visible"
    value="false"/>
    </mx:State>
    </mx:states>
    <mx:Script>
    <![CDATA[
    [Bindable]
    public var treeXml:XML=
    <Child>
    <Child fatherCategoryId="0" categoryName="expenses"
    categoryId="38">
    <Child fatherCategoryId="38" categoryName="eat"
    categoryId="40"/>
    </Child>
    <Child fatherCategoryId="0" categoryName="income"
    categoryId="39">
    <Child fatherCategoryId="39" categoryName="salary"
    categoryId="41"/>
    </Child>
    </Child>
    ]]>
    </mx:Script>
    <mx:Button x="84" y="32" label="state1"
    click="currentState=''"/>
    <mx:Button x="166" y="32" label="state2"
    click="currentState='state2'"/>
    <mx:PopUpButton id="popupbutton1" height="24" width="150"
    textAlign="left" label="please select..." x="84" y="85">
    <mx:popUp>
    <mx:Tree id="cateTree" dataProvider="{treeXml}"
    labelField="@categoryName" showRoot="false"
    width="160" textAlign="left"/>
    </mx:popUp>
    </mx:PopUpButton>
    </mx:WindowedApplication>

  • RT target works OK in volatile mode but does not when deployed in non-volatile mode.

    I have developed several applications using the NI cRIO-9073 Integrated chassis. The applications work perfectly well in volatile mode (development), but when I come to deploy the the RT target as an executable the application does not work. Now, I ran the LabVIEW Real-Time 1 Solution application and the same problem occured, in this case, the USER1 LED came on then went off as if an error occured. I finally trapped an error around the shutdown stage, attached, funny thing is though the error code doe not make sense as I am not using the FPGA, running in scan mode, however, I could be missing something.
    (Note: I have obviously modified the Real-Time 1 course solution to use my existing hardware)
    Now this is where it gets puzzling, 3 years ago I did the old RT course, LabVIEW Real-Time Application Development, I have now run the solution for this course, on the same target as the RT1 solution and it works!!!
    I have contacted NI support with no solution to this problem. In the meatime I have a NI cRIO-9704 on order and when it arrives I will try again.
    I really need to know, however what is going on here, does anyone out there have any Ideas? have you experienced any similar problems?
    Thanks
    Neil

    Note to self - Include attachment...
    Error Log
    Status: TRUE
    Code: -65589
    Source: Shared Variable in Chamber Control.vi->RT Main.vi
    This error or warning occurred while reading the following Shared Variable:
    \\NI-cRIO9073-0180F3D1\Thermocouple Mod\Temperature-cRIO
    \\localhost\Thermocouple Mod\Temperature-cRIO
    Error -65589 occurred at an unidentified location
    Possible reason(s):
    CompactRIO:  The FPGA VI you are running does not contain the DMA FIFOs that the RIO Scan Interface requires. Ensure that the modules under the Chassis item in the project match the modules in the chassis, and recompile the FPGA VI.

  • Validataion does not work in batch mode

    Hello community,
    We created an FI line item validation for transaction FBV1 that does a validation on a field and displays an error message if the validation fails. We have an RFC that uploads data from an Excel template and runs a BDC Call Transaction to upload and park the document. This worked well when we were on 4.6C but when we upgraded to ECC6.0, the Validation works fine when we manually call the FBV1 in SAP and the Validation DOES get triggered and displays a message if the line item validation fails but when we run FBV1 in batch mode, (RFC which contains a call transaction to FBV1) the validation does not work.
    I set up break a point in the generated program GBTBOFID where the exception error gets triggered and traced the FI Validation. The program will not display the error Validation message when run in batch but when run online, the error message gets triggered.

    Thanks for the prompt reply. I tryied a combination of the following options and did not have much luck with this one.
    Data: x_options type ctu_params.
         clear X_OPTIONS.
         X_OPTIONS-DISMODE = 'A'.
         X_OPTIONS-UPDMODE = 'S'.
         X_OPTIONS-CATTMODE = ' '.
         X_OPTIONS-DEFSIZE = ' '.
         X_OPTIONS-RACOMMIT = ' '.
         X_OPTIONS-NOBINPT = ' '.
         X_OPTIONS-NOBIEND = 'X'.
    CALL TRANSACTION 'FBV1' USING bdcdata options from X_OPTIONS
    After the call transaction the program automatically triggers some SAP generated code for a Validation check for FBV1 line item that we have put in through IMG. The message that should be displayed is in the FI validation check of FBV1.
    I put a break point in the SAP generated code for the Validation where the message should be displayed. The program executes the statement that should raise the exception and display the message. As soon as the statement is executed, conrol returns to the the the SAP transaction FBV1 program and the program continues to finish.
    The statement that executes and does not display the error message is:
    CASE valsevere.
            WHEN  'A'.
              MESSAGE ID msg_id    TYPE valsevere   NUMBER msg_nr
                      WITH msgv1 msgv2 msgv3 msgv4
                      RAISING abend_message.
            WHEN  'E'.    <=== *This option is true and the progam steps
                        " through the following message but does not display it.*
              MESSAGE ID msg_id    TYPE valsevere   NUMBER msg_nr
                      WITH msgv1 msgv2 msgv3 msgv4
                      RAISING errormessage.
            WHEN  OTHERS.
              MESSAGE ID msg_id    TYPE valsevere   NUMBER msg_nr
                      WITH msgv1 msgv2 msgv3 msgv4.
          ENDCASE.
    I should mention that in debug mode, I check the values of msg_id, msg_nr, msgv1 etc. and they all have values of a message class that we have created.
    The above code is in a SAP generated program for FI Validation (GBTBOFI0, include FGBB100R).
    -- We only have this issue when we use the FBV1 transaction in batch mode. Runing FBV1 directly online works fine.
    -- The issue is unique to ECC 6.0 environemnt. We did not have this problem in 4.6C
    Suggestions greatly appreciated.
    Edited by: Rob Burbank on Jan 20, 2010 12:15 PM

  • My ipod touch is in dfu mode and does not want to turn on.

    my ipod touch is in dfu mode and does not want to turn on.

    What happens when you connect the iPod to your computer and restore viia iTunes?

  • Logout does not work in OIM after enabling OAM SSO

    We have installed a webgate to protect xlWebApp in OIM. Once the SSO is enabled, the logout does not work in the OIM user interface. How to solve this issue?
    Metalink has a solution where we need to add document.location="http://host:port/access/oblix/lang/en-us/logout.html"; in xlWebApp\tiles\tjspLogoffTiles.jsp. This is the logout URL of OAM. Is there any other way so we can have a logout page in the OIM application/server itself?
    Thanks.

    Kevin,
    I did what you suggested and initially it looked like it is working but there is slight issue. When I click Logout, it redirects to the logout screen. After logging out when I try to access xlWebApp it prompts for the login (i am using basic authentication). If I cancel it and again try to access xlWebApp, it lets me in without any prompt. This issue is in IE only but not in Firefox. Not sure what's the issue.
    Btw, to make the logout screen work, I had to unprotect the following with None Authentication:
    - /xlWebApp/pages/logout.html      (logout page)
    - /xlWebApp/images
    - /xlWebApp/css/Xellerate.css
    - /xlWebApp/css/style.css
    Thanks.
    Edited by: user504421 on Mar 16, 2009 9:52 AM
    Edited by: user504421 on Mar 16, 2009 10:00 AM
    Edited by: user504421 on Mar 16, 2009 10:01 AM

Maybe you are looking for

  • X1 and x4 give same displacement

    Hey All, I realize now that this issue should go in this discussion board.  Instead of repeating, just follow this link: http://forums.ni.com/ni/board/message?board.id=250&message.id=32994&jump=true Thanks, -Andrew

  • Speed of animation fluctuates based on java cache..

    Hi everyone, It seems I am experiencing a rather weird problem. In my app I am having a small animation on a BufferedImage using the swingx.Timer class. The problem is that sometimes the animation runs very slow (I get a feeling of the computer strug

  • Set location in Reminders by tap

    Reminders.app allows to notify on location (arriving or leaving). But when location sets it cannot be selected by tap on the map. Only by writing address via search field. Is there app restriction or my iPhone fault?

  • No Linking Available in Layers

    I am unable to link layers. Little chain does not show up next to each layer only ability to make layer visible/invisible. Link at bottom of palette just shows null sign when clicked on. Am on Mac OS 10.4.11;CS2 v. 9.0.2. thank you

  • Updating files in FCP 5.0.4 problems

    When ever I update a LiveType or photoshop file (i.e. make new changes to the file in either LT or Pshop while that file exists in the timeline in FCP) upon saving and going back into an the already open FCP project, FCP ALWAYS disconnects the file a