Session don�t work in JSF

Hi, i have created a simple web application with a login form using JSF.
I use Eclipse 3.31, and use the webcontainer of Sun GlassFish V2.
When i want to store a session value in my login method using
FacesContext.getCurrentInstance().getExternalContext().getSessionMap().put(KEY, value);
Then a Null Pointer Exception is thrown, cause getSessionMap always returns NULL!
Here is my faces-config.xml
<managed-bean>
<managed-bean-name>uctl</managed-bean-name>
<managed-bean-class>demo.UserController</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>
<managed-bean>
<managed-bean-name>user</managed-bean-name>
<managed-bean-class>entity.User</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>What is goind wrong here? Do i need to configure session support in glassfish�s server settings?
Thanks in advance,
markus_down

You were right, session map is not null, but invoking this call throws a NPE.
I call the method from my doLogin() method in my bean class, which is the action method for my command button to login.
I�m using the JSF 1.2 RI, which was shipped with NetBeans 6.0.1.
Here is the full stacktrace:
[#|2008-03-09T12:45:32.265+0100|SEVERE|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=20;_ThreadName=httpSSLWorkerThread-8080-0;_RequestID=499c3d3b-eb2a-4696-a7e2-ca9b6209d720;|StandardWrapperValve[Faces Servlet]: PWC1406: Servlet.service() for servlet Faces Servlet threw exception
javax.faces.FacesException: #{bean.doLogin}: java.lang.NullPointerException
     at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:107)
     at javax.faces.component.UICommand.broadcast(UICommand.java:383)
     at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:184)
     at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:162)
     at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:350)
     at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:97)
     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:251)
     at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:117)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:244)
     at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:317)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
     at org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:141)
     at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:281)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:288)
     at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
     at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
     at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:272)
     at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
     at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
     at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
     at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341)
     at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263)
     at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214)
     at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
     at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)
Caused by: javax.faces.el.EvaluationException: java.lang.NullPointerException
     at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:91)
     at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:91)
     ... 40 more
Caused by: java.lang.NullPointerException
     at com.sun.faces.context.SessionMap.put(ExternalContextImpl.java:968)
     at demo.Bean.doLogin(Bean.java:55)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at com.sun.el.parser.AstValue.invoke(AstValue.java:187)
     at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297)
     at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:77)
     ... 41 more
|#]

Similar Messages

  • Jdev 10.1.3 and JSF  "comandlink component" don't work with Data filter

    I´m working in JSF with Jdeveloper 10.1.3 and Oc4j .
    I have a problem.
    I have .jspx where display employees of the company.
    The field employeeid have "comandlink component" with action "control.editemployee"
    when I fetch all data comandlink work OK.
    But I filter data by field, example Employee name Command link not work
    Help me, please.

    thanks
    i'm a little bit confused by the fact that jsf in 10.1.3 preview use managed bean (instead of data control) to get/put data from the model layer.
    we are using entity bean and session facade. In 9.0.5.2 we are using dto and data control to generate our jsp.
    we are currently testing/discovering jsf and search the best way to efficiently generate our ui's
    what is right way for jsf
    a) managed bean (if it is possible with session bean)
    b) data control when/if available
    and why ?

  • Why don't responseHeader's works in JSF Portlet

    Hi All,
    I have a JSF portlet where i want to save the contents of my Text area on the click of a button to a word document.(IBM Websphere portal) <h:inputTextarea id="text1" value="#{pc_TextAreaView.textAreaValue}" rows="10" cols="50" /> <h:commandButton id="save" value="Save As Word" action="#{pc_TextAreaView.SaveAsWord}"/> In my page bean i have written the follwoing code but the response.setHeader() doesn't seem to work.I am not getting any pop dialog and i cannot save my file.Please let me know what is wrong in this code snippet.How can i make it work in my portlet.
    public String SaveAsWord() {
      FacesContext context = FacesContext.getCurrentInstance();
      HttpServletResponse response = (HttpServletResponse)context.getExternalContext().getResponse();
      response.setContentType("application/vnd.ms-word");
         response.setHeader("Content-Disposition", "attachment; filename=myfile.doc");
         response.setHeader("Cache-Control", "no-cache");
         try{
         byte[] buf=new byte[4*1024];
         InputStream inStream=new ByteArrayInputStream(textAreaValue.getBytes());
         OutputStream outStream=response.getOutputStream();
         int sizeRead;
         while ( ( sizeRead=inStream.read(buf, 0, buf.length) ) != -1 )
           outStream.write(buf, 0, sizeRead);
         inStream.close();
         outStream.close();
         catch(IOException ex){
          ex.printStackTrace();
         return null;
      }Best Regards,
    Pallavi

    Hi ,
    I am working with jsf 1.2 and jasper 3.0.
    For this problem just try with "aFacesContext.responseComplete();" method. This will work!
    Here is my code for generating pdf file report.
    demoreport.jsp code:
    <h:commandLink immediate="true" actionListener="#{reportGenerator.generateReport}">
                                  <h:outputText value="Generate Report"/>
                             </h:commandLink>Here is bean method: (ReportGenerator.java)
    Note: Services is the user defined class for getting connection obj.
    public void generateReport(ActionEvent actionEvent)
                                       throws ClassNotFoundException, SQLException, IOException,JRException
              Connection connection;
              FacesContext aFacesContext = FacesContext.getCurrentInstance();
              HttpServletResponse response = (HttpServletResponse)aFacesContext.getExternalContext().getResponse();
              ServletContext context = (ServletContext)aFacesContext.getExternalContext().getContext();
              String reportFileName = context.getRealPath("/reports/DemoReport.jasper");
              System.out.println("reportFileName: "+ reportFileName);
              InputStream reportStream = aFacesContext.getExternalContext().getResourceAsStream("/reports/DemoReport.jasper");
              ServletOutputStream servletOutputStream = response.getOutputStream();
              //Class.forName("com.mysql.jdbc.Driver");
              connection = Services.getConnection(); //get the db connection.
              try{
              JasperRunManager.runReportToPdfStream(reportStream,servletOutputStream, new HashMap(),connection);
              catch(JRException lJRException){
                   System.out.println("while run report");
                   lJRException.printStackTrace();
              //connection.close();
              response.setContentType("application/pdf");
              response.setHeader("Content-disposition","attachment; filename=DemoReport.pdf");
              servletOutputStream.flush();
              servletOutputStream.close();
              aFacesContext.responseComplete();
         }Regards,
    Nils

  • Adobe Flash & Javascript don't work even though Enabled

    Ever since what I think was either a Firefox upgrade (I don't know which one) or installation of Quicktime, my Adobe Flash Plugin is perpetually crashed and I cannot play any Flash content on any website. All that displays in place of the video is a gray screen with the sad-face Lego icon and the message: “The Adobe Flash Plugin has crashed. Please reload the page to try again.” (See attached image.) But it will not resolve when reloaded.
    No Flash videos on any sites work. HTML5 videos work on YouTube when tested, but non-HTML5 videos won't work.
    Also, my Javascript does not seem to be working since at least some displays requiring javascript don't work. Sometimes the display just doesn't work, and sometimes I get a message that javascript is disabled and must be enabled, but it is already enabled (set to “true” in about:config).
    I have spent days scouring every help forum entry I can find on troubleshooting Flash Player and Javascript. Everything on my end seems to be in order and I cannot find or fix either problem. I think it is possible the issue could have its roots in the fact that Javascript seems to not be working which may be preventing Flash Player content from working...??
    Also, Flash content does work in I.E. but not in Firefox (I do not have Chrome installed so did not test in Chrome). I have too many window tabs open in Firefox and can't switch to I.E. (nor do I like to use I.E.).
    PLEASE HELP as this is crippling for very important work deadlines I have.
    This is what else I know and have tried:
    I have a Toshiba Satellite C75D-A Laptop;
    Processor: AMD A6-5200 APU with Radeon HD Graphics; x64; 2.00 Ghz;
    RAM: 8 MB;
    OS: 64-bit system; Windows 8.1 (but some auto-check utilities detect it as 8.0 because it was upgraded.);
    Graphics Card: “Desktop Graphics” System – AMD Radeon HD 8400 (0x9830);
    Installed Graphics Driver Version: AMD 13.352.1004.1007 (Driver Date: 4/22/2014)
    My Device Manager graphics driver updater states: “driver software is up to date.”
    From the AMD website: the graphics driver auto-detect utility recommended the AMD Catalyst Driver (amd-catalyst-omega-14.12-without-dotnet45-win8.1-64bit.exe) I tried installing this driver, but it won't install. After trying to install, I got a message stating: “We are unable to find a driver for your system.” But Device Manager states I have a current driver, and my graphics card & driver seem to be working fine, so I do not believe this is part of the issue.
    I am using Latest Firefox version 35.0.1; and
    Using Latest Flash Player: 32-bit NPAPI Plug-in Version: 16.0.0.296; designated: “always activate” (Downloaded new update several times, including fresh install after uninstall; system & web address icons indicate Flash is enabled).
    I turned off hardware acceleration in FF Tools>Options>Advanced>General
    I disabled WebGL as explained here: https://support.mozilla.org/en-US/kb/upgrade-graphics-drivers-use-hardware-acceleration
    I am using Ad-Block Plus which has never affected things in the past. I have not tried starting FF in Safe Mode because I believe I will lose all open tabs and not be able to recover them (I may have over 200 open). But disabling add-ons has no effect (I disabled all except for Sessions Manager in case of a crash). (My No-Script has been disabled for at least six months.)
    I have Windows Media Player and Quicktime installed.
    Quicktime is most recent upgrade (7.7.6) so should not be a problem according to:
    “QuickTime plugin takes over Flash” at:
    http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (note underscores in place of spaces in string; underscores not insertable here)
    Disabling Quicktime had no effect in the prior version of FF (ver. 35.0), but in latest FF ver. 35.0.1, Flash videos only display a plain (blank) gray screen instead of the sad-faced icon and crash message.
    (I tried to uninstall Quicktime altogether, but was not able to due to Error codes 2502 & 2503. I tried troubleshooting that as well with no luck using methods successful for other programs, including here:
    http://www.fixkb.com/2014/01/error-2503-and-2502-when-uninstalling-on-windows-8.html;
    & here:
    http://answers.microsoft.com/en-us/windows/forum/windows_8-winapps/re-internal-error-codes-2502-and-2503-for/ba5f2145-aa6e-4cc0-81a7-e4346f43b698.)
    Disabling my FF theme and using the default brought back the sad-faced icon and crash message in the place of videos on some YouTube pages, but not other YouTube pages (where video was still blank gray screen). It also enabled a still Flash image (an ad) to display on a different website page that previously had a Flash Plugin crash message. I have been using this same theme for a couple of years without previous issue. While turning it off did generate an effect on some still imagery, it didn't fix the video problem.
    I tried Disabling Protected Mode in Flash 11.3 as explained here:
    http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (note underscores in place of spaces in string; underscores not insertable here).
    It did not solve the issue.
    I also deleted all storage & data in Flash Player as advised. This had no effect either.
    I've tried all solutions I've been able to find and am at a loss for what to try next. Please help and advise ASAP. Thank you!!

    ''guigs2 [[#answer-684038|said]]''
    <blockquote>
    I truely admire the efforts that have been made to make this work.
    "“We are unable to find a driver for your system.” "
    For it not installing, you need to follow these instructions to install them: see the comments: [http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_devices/windows-10-atiamd-display-drivers/50944d10-dde3-4e08-8244-d54eb2b1e7de] --> take warning though it looks like it has caused issues for others as well.
    Since it was working for some youtube videos and not others, there might be an issue with a particular video codec. DO you have OpenH264 Video Codec provided by Cisco Systems, Inc. plugin?
    Is it possible to try Safe Mode after saving your session with [https://addons.mozilla.org/en-US/firefox/addon/session-manager/ Session Manager Addon]? IT would test hardware acceleration in Firefox.
    </blockquote>
    Thank you, guigs2! Sorry for my delayed reply...I didn't realize I hadn't gotten back to you. Update is that I did try a whole slew of other troubleshooting steps including starting FF in safe mode, to no avail. However, I was FINALLY (after months) able to solve this problem just today by pure chance!
    The problem was that hardware acceleration was enabled in the Flash settings. I had not been able to turn it off because I didn't have access to the Flash Player settings as long as the crash error message was visible, which was all the time! Today, by a sheer fluke, I saw a static picture in place of the crash message on a Flash video. I snagged the opportunity to call up the settings and turn off hardware acceleration, and it fixed the problem for my whole browser! This has been a frustrating issue because I did not have access to the settings utility as long as I had the crash message, which was always, so my Flash was crippled without the ability for me to fix it until pure luck gave me this window of opportunity.
    Does anyone know another way to access the settings utility if this ever happens again in the future? I could not find a way. (Incidentally, I had tried disabling hardware acceleration via my graphics driver settings, but it didn't fix the problem.) We need Adobe to allow some other way to access the Flash Player settings utility when this problem arises since they aren't accessible when there is a static crash message.
    Thanks again!

  • Reopen All Windows from Last Session is not working

    The option Reopen All Windows from Last Session is not working, is there any other way to recover the tabs from my last session?
    Last night I fell asleep and my friend shut down my laptop.
    When I woke up in the morning I couldn't restore my last session which had several tabs opened for my research.
    I don't know the exact date when I found them, so I haven't been able to find them in History either.
    I've looked around on the internet, but haven't been able to find anything that helped me out.
    Hope you can help me! Thanks.

    Restart your Mac.
    Check the box for:  Reopen windows when logging back in
    Then check History >  Reopen Windows from Last Session

  • Session: Waiting and Working Chart

    I am using OEM 10g (Grid control) to monitor my database.
    But I don know what does the Y axis on the chart (Session: Waiting and Working) mean ?
    Thanks for your help.
    Note: Click Home page -> Database -> Performance -> Sessions: Waiting and Working.

    2 store the user name in the session to display as a welcome message to the user when they are logged in.]
    in class where you match the username and password .if given user is exist in records then set it into session
    HttpSession session =request.getSession();
    session.setAttribute("",);
    3 tell the user they dont exist in the database or that there password is wrong and give them the option to either A) reset the password or B) create a user
    in same class if user does not exist the redirect the request to different pages in that pages you put these two like A) reset the password or B) create a user

  • [SOLVED] Poweroff, suspend and hibernate don't work

    I installed Archlinux on my work desktop on Monday and can't get poweroff, suspend and hibernate to work. The command `systemctl poweroff` sort of works, except it doesn't actually turn off the computer. Suspend and hibernate don't work at all, the computer hangs on the terminal with a cursor on the top left corner of the screen. Here is the log from `journalctl`. There doesn't seem to be any error messages in it, as far as I can see.
    Apr 16 10:02:55 carolfs-ifusp sudo[1127]: carolfs : TTY=pts/0 ; PWD=/home/carolfs ; USER=root ; COMMAND=/usr/bin/systemctl poweroff
    Apr 16 10:02:55 carolfs-ifusp sudo[1127]: pam_unix(sudo:session): session opened for user root by carolfs(uid=0)
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping Session c2 of user carolfs.
    Apr 16 10:02:55 carolfs-ifusp gnome-session[576]: Received signal:15->'Terminated'
    Apr 16 10:02:55 carolfs-ifusp org.gnome.evolution.dataserver.Sources3[591]: Received terminate signal.
    Apr 16 10:02:55 carolfs-ifusp colord[453]: Automatic remove of icc-9cb50954c1872204852075bef0599dec from xrandr-Goldstar Company Ltd-W2043-16843009
    Apr 16 10:02:55 carolfs-ifusp colord[453]: Profile removed: icc-9cb50954c1872204852075bef0599dec
    Apr 16 10:02:55 carolfs-ifusp colord[453]: device removed: xrandr-Goldstar Company Ltd-W2043-16843009
    Apr 16 10:02:55 carolfs-ifusp polkitd[358]: Unregistered Authentication Agent for unix-session:c2 (system bus name :1.37, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)
    Apr 16 10:02:55 carolfs-ifusp ntpd[300]: ntpd exiting on signal 15
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopped Session c2 of user carolfs.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping Session c1 of user gdm.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopped Session c1 of user gdm.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping Sound Card.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopped target Sound Card.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping system-systemd\x2dfsck.slice.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Removed slice system-systemd\x2dfsck.slice.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping system-getty.slice.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Removed slice system-getty.slice.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping User Manager for UID 1000...
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping Disk Manager...
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping Login Service...
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Stopping Default.
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Stopping Default.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping Login Prompts.
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Stopped target Default.
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Stopped target Default.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopped target Login Prompts.
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Stopping Basic System.
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Stopping Basic System.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping GNOME Display Manager...
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Stopped target Basic System.
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Stopped target Basic System.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Starting Generate shutdown-ramfs...
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Stopping Paths.
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Stopping Paths.
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Stopped target Paths.
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Stopped target Paths.
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Stopping Timers.
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Stopping Timers.
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Stopped target Timers.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopped RealtimeKit Scheduling Policy Service.
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Stopped target Timers.
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Stopping Sockets.
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Stopping Sockets.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopped Locale Service.
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Stopped target Sockets.
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Stopped target Sockets.
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Starting Shutdown.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopped Disk Manager.
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Starting Shutdown.
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Reached target Shutdown.
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Reached target Shutdown.
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Starting Exit the Session...
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Starting Exit the Session...
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping Network.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopped target Network.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping dhcpcd on all interfaces...
    Apr 16 10:02:55 carolfs-ifusp systemd[567]: Received SIGRTMIN+24 from PID 1159 (kill).
    Apr 16 10:02:55 carolfs-ifusp systemd[386]: Received SIGRTMIN+24 from PID 1160 (kill).
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopped User Manager for UID 120.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopped User Manager for UID 1000.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping user-1000.slice.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Removed slice user-1000.slice.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopping user-120.slice.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Removed slice user-120.slice.
    Apr 16 10:02:55 carolfs-ifusp dhcpcd[1161]: sending signal TERM to pid 264
    Apr 16 10:02:55 carolfs-ifusp dhcpcd[1161]: waiting for pid 264 to exit
    Apr 16 10:02:55 carolfs-ifusp dhcpcd[264]: received signal TERM from PID 1161, stopping
    Apr 16 10:02:55 carolfs-ifusp dhcpcd[264]: eno1: removing interface
    Apr 16 10:02:55 carolfs-ifusp systemd[387]: pam_unix(systemd-user:session): session closed for user gdm
    Apr 16 10:02:55 carolfs-ifusp systemd[568]: pam_unix(systemd-user:session): session closed for user carolfs
    Apr 16 10:02:55 carolfs-ifusp gnome-session[576]: Received signal:15->'Terminated'
    Apr 16 10:02:55 carolfs-ifusp gdm-session-worker[383]: <3>GLib: Source ID 71 was not found when attempting to remove it
    Apr 16 10:02:55 carolfs-ifusp gdm-Xorg-:0[336]: (II) evdev: AT Translated Set 2 keyboard: Close
    Apr 16 10:02:55 carolfs-ifusp gdm-Xorg-:0[336]: (II) UnloadModule: "evdev"
    Apr 16 10:02:55 carolfs-ifusp gdm-Xorg-:0[336]: (II) evdev: Microsoft Microsoft Basic Optical Mouse : Close
    Apr 16 10:02:55 carolfs-ifusp gdm-Xorg-:0[336]: (II) UnloadModule: "evdev"
    Apr 16 10:02:55 carolfs-ifusp gdm-Xorg-:0[336]: (II) evdev: Power Button: Close
    Apr 16 10:02:55 carolfs-ifusp gdm-Xorg-:0[336]: (II) UnloadModule: "evdev"
    Apr 16 10:02:55 carolfs-ifusp gdm-Xorg-:0[336]: (II) evdev: Power Button: Close
    Apr 16 10:02:55 carolfs-ifusp gdm-Xorg-:0[336]: (II) UnloadModule: "evdev"
    Apr 16 10:02:55 carolfs-ifusp org.freedesktop.Tracker1[591]: Received signal:15->'Terminated'
    Apr 16 10:02:55 carolfs-ifusp dhcpcd[1161]: dhcpcd[1161]: sending signal TERM to pid 264
    Apr 16 10:02:55 carolfs-ifusp dhcpcd[1161]: dhcpcd[1161]: waiting for pid 264 to exit
    Apr 16 10:02:55 carolfs-ifusp dhcpcd[264]: exited
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: Stopped Login Service.
    Apr 16 10:02:55 carolfs-ifusp systemd[1]: dhcpcd.service: main process exited, code=exited, status=1/FAILURE
    Apr 16 10:02:55 carolfs-ifusp mkinitcpio[1145]: ==> Starting build: none
    Apr 16 10:02:56 carolfs-ifusp mkinitcpio[1145]: -> Running build hook: [sd-shutdown]
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped dhcpcd on all interfaces.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unit dhcpcd.service entered failed state.
    Apr 16 10:02:56 carolfs-ifusp gdm-Xorg-:0[336]: (II) NVIDIA(GPU-0): Deleting GPU-0
    Apr 16 10:02:56 carolfs-ifusp gdm-Xorg-:0[336]: (EE) Server terminated successfully (0). Closing log file.
    Apr 16 10:02:56 carolfs-ifusp gdm[295]: Freeing conversation 'gdm-password' with active job
    Apr 16 10:02:56 carolfs-ifusp gdm[295]: Freeing conversation 'gdm-launch-environment' with active job
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped GNOME Display Manager.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Permit User Sessions...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Permit User Sessions.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Basic System.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped target Basic System.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Slices.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped target Slices.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping User and Session Slice.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Removed slice User and Session Slice.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Paths.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped target Paths.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Forward Password Requests to Wall Directory Watch.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Dispatch Password Requests to Console Directory Watch.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Timers.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped target Timers.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Daily man-db cache update.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Daily man-db cache update.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Daily verification of password and group files.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Daily verification of password and group files.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Daily rotation of log files.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Daily rotation of log files.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Daily Cleanup of Temporary Directories.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Daily Cleanup of Temporary Directories.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Sockets.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped target Sockets.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Device-mapper event daemon FIFOs.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Closed Device-mapper event daemon FIFOs.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping LVM2 metadata daemon socket.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Closed LVM2 metadata daemon socket.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping D-Bus System Message Bus Socket.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Closed D-Bus System Message Bus Socket.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping System Initialization.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped target System Initialization.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Apply Kernel Variables...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Apply Kernel Variables.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Setup Virtual Console...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Setup Virtual Console.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Encrypted Volumes.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped target Encrypted Volumes.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Load/Save Random Seed...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Update UTMP about System Boot/Shutdown...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Swap.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped target Swap.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Deactivating swap Swap Partition...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Deactivating swap Swap Partition...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Deactivating swap Swap Partition...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Deactivating swap Swap Partition...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Deactivating swap Swap Partition...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Deactivating swap Swap Partition...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Remote File Systems.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped target Remote File Systems.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Load/Save Random Seed.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Update UTMP about System Boot/Shutdown.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Create Volatile Files and Directories...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Create Volatile Files and Directories.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Local File Systems.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped target Local File Systems.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unmounting /run/user/1000/gvfs...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unmounting /run/user/120...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unmounting /boot...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unmounting /home...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unmounting Temporary Directory...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Deactivated swap /dev/disk/by-partuuid/748828e6-d06b-4dc9-a1ee-94e2bf6e2d41.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Deactivated swap /dev/disk/by-partlabel/swap.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Deactivated swap /dev/disk/by-id/wwn-0x5000c500242cde85-part2.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Deactivated swap /dev/disk/by-id/ata-ST3500418AS_5VM96G8V-part2.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Deactivated swap /dev/disk/by-uuid/59c506eb-3a40-4eae-8048-317bcc3d00fb.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Deactivated swap Swap Partition.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unmounted /run/user/1000/gvfs.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unmounted Temporary Directory.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unmounting /run/user/1000...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unmounted /run/user/120.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unmounted /boot.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping EFI System Partition Automount.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unset automount EFI System Partition Automount.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unmounted /run/user/1000.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Unmounted /home.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Starting Unmount All Filesystems.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Reached target Unmount All Filesystems.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Local File Systems (Pre).
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped target Local File Systems (Pre).
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopping Remount Root and Kernel File Systems...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Stopped Remount Root and Kernel File Systems.
    Apr 16 10:02:56 carolfs-ifusp mkinitcpio[1145]: ==> Build complete.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Started Generate shutdown-ramfs.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Starting Shutdown.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Reached target Shutdown.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Starting Final Step.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Reached target Final Step.
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Starting Power-Off...
    Apr 16 10:02:56 carolfs-ifusp systemd[1]: Shutting down.
    Apr 16 10:02:56 carolfs-ifusp systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    Apr 16 10:02:56 carolfs-ifusp systemd-journal[166]: Journal stopped
    Last edited by CFS (2014-05-08 12:57:13)

    Thank you for your replies. Shutdown now doesn't turn the computer off either. About the type of system, I think it was custom built. This is a new install from Monday, so I didn't update the kernel. Poweroff, suspend and hibernate have never worked. The requested output:
    $ uname -a
    Linux carolfs-ifusp 3.14.1-1-ARCH #1 SMP PREEMPT Mon Apr 14 20:40:47 CEST 2014 x86_64 GNU/Linux
    $ pacman -Qi linux
    Name : linux
    Version : 3.14.1-1
    Description : The Linux kernel and modules
    Architecture : x86_64
    URL : http://www.kernel.org/
    Licenses : GPL2
    Groups : base
    Provides : kernel26=3.14.1
    Depends On : coreutils linux-firmware kmod mkinitcpio>=0.7
    Optional Deps : crda: to set the correct wireless channels of your country
    Required By : nvidia
    Optional For : None
    Conflicts With : kernel26
    Replaces : kernel26
    Installed Size : 71136.00 KiB
    Packager : Tobias Powalowski <[email protected]>
    Build Date : Mon 14 Apr 2014 03:42:52 PM BRT
    Install Date : Mon 14 Apr 2014 07:50:11 PM BRT
    Install Reason : Explicitly installed
    Install Script : Yes
    Validated By : Signature

  • I think I installed a pirated copy of CS5.1 Extended and now my purchased Elements 10 don't work!

    So yeah, that's right. I admitted to a crime. Wanna fight about it?
    I didn't know that it wasn't a legitimate copy. So now my purchased copies for Adobe Photoshop Elements 10 and Adobe Premier Elements 10 don't work! I tried restoring to a previous point, using a forced uninstall program that cleans the registry. I uninstalled my Elements copies, and when I reinstall them they don't show up in the start menu. I tried using the Adobe cleaner tool. I really do not want to use my restore DVD's for this laptop.
    Help!
    I can provide the Serial Numbers, and the codes on the DVD's put on the clear ring of the DVD, a copy of the purchase...etc.

    Windows 7 64 bit home premium, ASUS A53 Core i5 processor, NVIDIA 610M
    Actually it is relevant, because there is an activation program that generates a serial number.
    [Wed May 02 21:30:40 2012] ---------------------------------------------------------
    [Wed May 02 21:30:40 2012] *=*=*=*=*=*=*=*=* :: Start Session :: *=*=*=*=*=*=*=*=*=*
    [Wed May 02 21:30:40 2012] ---------------------------------------------------------
    [Wed May 02 21:30:40 2012] Win OS Version: 6.1
    [Wed May 02 21:30:40 2012] Cleaner Tool version        : 3.0.0.49
    [Wed May 02 21:30:40 2012] Cleanup source directory    : C:\Program Files (x86)\Common Files\Adobe\AdobeCreativeSuiteCleanerTool
    [Wed May 02 21:30:40 2012] [AdobeProgramFiles]        : C:\Program Files (x86)\Adobe
    [Wed May 02 21:30:40 2012] [AdobeProgramFiles_x64]    : C:\Program Files\Adobe
    [Wed May 02 21:30:40 2012] [AdobeCommon]            : C:\Program Files (x86)\Common Files\Adobe
    [Wed May 02 21:30:40 2012] [AdobeCommon_x64]        : C:\Program Files\Common Files\Adobe
    [Wed May 02 21:30:40 2012] [UserRoamingAppData]        : C:\Users\Scott\AppData\Roaming
    [Wed May 02 21:30:40 2012] [UserLocalAppData]        : C:\Users\Scott\AppData\Local
    [Wed May 02 21:30:40 2012] [StartMenu]                : C:\ProgramData\Microsoft\Windows\Start Menu\Programs
    [Wed May 02 21:30:40 2012] [System32Folder]            : C:\Windows\system32
    [Wed May 02 21:30:40 2012] [SharedApplicationData]    : C:\ProgramData
    [Wed May 02 21:30:44 2012] Language selected: English
    [Wed May 02 21:30:44 2012] Displaying the Adobe End User License Agreement
    [Wed May 02 21:30:44 2012] Please enter (y) for Yes or (n) for No.
    [Wed May 02 21:30:46 2012] Choose any one from the options below :
    [Wed May 02 21:30:46 2012] 1.  CS3, CS4
    [Wed May 02 21:30:46 2012] 2.  CS5-CS5.5
    [Wed May 02 21:30:46 2012] 3.  Adobe Flash Player 10.2
    [Wed May 02 21:30:46 2012] 4.  Quit
    [Wed May 02 21:30:46 2012] Choice :>
    [Wed May 02 21:30:53 2012] User selected: CS5-CS5.5
    [Wed May 02 21:30:53 2012] Executed the command : call copy /Y "C:\Program Files (x86)\Common Files\Adobe\caps\pdb.db" "C:\Program Files (x86)\Common Files\Adobe\backup20120502T213053\pdb.db"
    [Wed May 02 21:30:55 2012] Executed the command : call copy /Y "C:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db" "C:\Program Files (x86)\Common Files\Adobe\backup20120502T213053\Media_db.db"
    [Wed May 02 21:30:55 2012] Opened PDB database connection with path: C:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Wed May 02 21:30:55 2012] Opened MediaDB database connection with path: C:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Wed May 02 21:30:55 2012] List of products installed on this machine
    [Wed May 02 21:30:55 2012] Listing products for cleanup:
    [Wed May 02 21:30:55 2012] Please select a number corresponding to the product that needs to be removed else press Ctrl + C to Quit :>
    [Wed May 02 21:31:03 2012] User selected: 'Clean All'
    [Wed May 02 21:31:03 2012] WARNING : All the CS5-CS5.5 products and installer related data will be REMOVED from the machine. Do you want to continue..
    [Wed May 02 21:31:04 2012] Please enter (y) for Yes or (n) for No. :>
    [Wed May 02 21:31:06 2012] Please wait for Adobe Creative Suite Cleaner Tool to finish........
    [Wed May 02 21:31:06 2012] *-*-*-*-*-*-* Start removing product : ALL *-*-*-*-*-*-*
    [Wed May 02 21:31:06 2012] :: Cleaning-up left over inventories ::
    [Wed May 02 21:31:06 2012] Inventory: 'AdobeApplicationManager-1.0' Type: SelfUpdate, Action: NoDelete
    [Wed May 02 21:31:06 2012] Inventory: 'uninstallts', Type: RIBS, Action: Delete
    [Wed May 02 21:31:06 2012] Deleting folder: C:\Program Files (x86)\Common Files\Adobe\AAMUpdaterInventory\1.0\uninstallts
    [Wed May 02 21:31:06 2012] Atleast one Non-RIBS Inventory : False, Atleast one AAMRef: False
    [Wed May 02 21:31:06 2012] ::Start:: Removing AUM contents
    [Wed May 02 21:31:06 2012] Deleting registry root:HKLM key:Software\Microsoft\Windows\CurrentVersion\Run value:AdobeAAMUpdater-1.0
    [Wed May 02 21:31:06 2012] Exception during deleting key : (2, 'RegDeleteValue', 'The system cannot find the file specified.')
    [Wed May 02 21:31:06 2012] Deleting registry root:HKLM key:Software\Microsoft\Windows\CurrentVersion\Run value:ADOBE_UPDATER_STARTUP_UTILITY
    [Wed May 02 21:31:06 2012] Exception during deleting key : (2, 'RegDeleteValue', 'The system cannot find the file specified.')
    [Wed May 02 21:31:06 2012] Deleting scheduled task : AdobeAAMUpdater-1.0-Scott-PC-Scott
    [Wed May 02 21:31:06 2012] Executing command: schtasks /delete /TN "AdobeAAMUpdater-1.0-Scott-PC-Scott" /F
    [Wed May 02 21:31:06 2012] ERROR: The system cannot find the file specified.
    [Wed May 02 21:31:06 2012] Deleting scheduled task : AdobeUpdater Task-Scott-PC-Scott
    [Wed May 02 21:31:06 2012] Executing command: schtasks /delete /TN "AdobeUpdater Task-Scott-PC-Scott" /F
    [Wed May 02 21:31:06 2012] ERROR: The system cannot find the file specified.
    [Wed May 02 21:31:06 2012] Deleting folder: C:\Users\Scott\AppData\Local/Adobe/AAMUpdater/1.0
    [Wed May 02 21:31:06 2012] ::Finish:: Removing AUM contents
    [Wed May 02 21:31:06 2012] ::Start:: Removing OOBE
    [Wed May 02 21:31:06 2012] Executing command "taskkill /F /FI "IMAGENAME eq AAM Updates Notifier.exe""
    [Wed May 02 21:31:06 2012] INFO: No tasks running with the specified criteria.
    [Wed May 02 21:31:06 2012] Deleting folder: C:\Program Files (x86)\Common Files\Adobe/OOBE
    [Wed May 02 21:31:08 2012] Deleting folder: C:\Program Files (x86)\Common Files\Adobe/AAMUpdaterInventory/1.0
    [Wed May 02 21:31:08 2012] Folder does not exist: C:\Program Files (x86)\Common Files\Adobe/AdobeApplicationManager
    [Wed May 02 21:31:08 2012] ::Finish:: Removing OOBE
    [Wed May 02 21:31:08 2012] Removing content of Product : CS5Installer, Version : CS5
    [Wed May 02 21:31:08 2012] Deleting file : C:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Wed May 02 21:31:08 2012] Deleting file : C:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Wed May 02 21:31:08 2012] Folder does not exist: C:\Users\Scott\AppData\Local\Adobe\OOBE
    [Wed May 02 21:31:08 2012] Folder does not exist: C:\ProgramData\Adobe\SLStore_v1
    [Wed May 02 21:31:08 2012] *-*-*-*-*-*-* Finished removing product : ALL *-*-*-*-*-*-*
    [Wed May 02 21:31:08 2012] All the CS5-CS5.5 products and CS installer files have been removed.
    [Wed May 02 21:31:08 2012] Action : Created the C:\Program Files (x86)\Common Files\Adobe\backup20120502T213053 folder as backup of PDB and MediaDB for this session.
    [Wed May 02 21:31:08 2012] LOG FILE SAVED TO: C:\Users\Scott\Adobe Creative Suite Cleaner Tool.log
    [Wed May 02 21:31:08 2012] Adobe Creative Suite Cleaner Tool completed successfully
    [Wed May 02 21:31:08 2012] ---------------------------------------------------------
    [Wed May 02 21:31:08 2012] *=*=*=*=*=*=*=*=* :: End Session :: *=*=*=*=*=*=*=*=*=*=*
    [Wed May 02 21:31:08 2012] ---------------------------------------------------------

  • Not getting cleared with internal working of JSF

    Hi All,
    I have started with basics of JSF and created some simple apps using netBeans.
    However I am not getting cleared with the exact internal working of JSF i.e. how the things are implemented in JSF libraries: jsf-api and jsf-impl.
    Please advice or share some links on this.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi,
    While creating JSP custom tags, we start from scratch by first creating tag handler class then .tld file for that and finally deploying both these files.
    I am looking for a similar approach for making our own JSF component.
    I don't want to put jsf-impl API into lib directory. Is it possible to make a simple component using jstl standard libraries ?
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Button don't work in datatable

    Hello,
    this a strangely problem. I put a button with actionlistener in a datatable, but this button don't work after i click it. The button outside the datatable works fine. I use ObjectListDataProvider in this datatable. I have tested ObjectArrayDataProvider in datatable too, the button works now. I use JSF 1.1.
    Can anybody help me? Thanks!
    Bo

    Hi BalusC, i have saved the datamodel (a ArrayList) in SessionBean. It can't be null. The rows of table display correct. I don't understand, why functions buttons with ObjectArrayDataProvider, but not with ObjectListDataProvider?
    I found a page with same problem: http://forum.java.sun.com/thread.jspa?threadID=549675&tstart=30

  • Since update to later version of Lion, some applications don't work?

    Since I updated to a later version of Lion, the following things have stopped working:
    -Safari
    -VLC Media Player
    -Java based things (chatrooms don't work for example)
    I did a combo update that someone suggested and this did nothing.
    Here are my specs:
    Macbook Pro
    Mac OS X Version 10.7.4 (11E53)
    2.4 GHz Intel Core i5
    4 GB 1333 MHz DDR3
    Intel HD Graphics 3000 384 MB
    I have tried removing VLC and reinstalling but no luck.
    Please help? I am tempted to just wipe my Macbook clean and start again but that will take forever to get back and my internet is awful.
    I hope you can help!

    Facetime doesn't go fullscreen...
    As has been mentioned you must be connected to a FaceTime session to be able to enter Full Screen.
    ... there is no iPhoto option in Address Book...
    I'm not entirely sure what you mean but if you are looking for this:
    You can find it by double-clicking the photo area in an AB contact. Mine says Aperture because that is my default photo manager.
    ... the Social Profile and birthday options show in preferences but are aren't working so well...
    I'm not entirely sure what you mean. Can you be more specific?
    ...I just can't see or use the Versions browser...
    For the moment only a few applications support Autosave + Versions. They are mainly Pages, Numbers, Keynote and TextEdit. So depending on what application you are using you may not have that feature available yet. But you can enter the Version UI a couple of ways:
    1. Pull down the window name and choose "browse all versions;"
    2. Or, pull down File > Revert to Saved.

  • OC4J connection polling don't work

    Application Server version is Oracle Enterprise Manager 10g Application Server Control 9.0.4.0.0
    Operating System is Sun Solaris 9
    data-source.xml configuration file is
    <?xml version = '1.0' standalone = 'yes'?>
    <!DOCTYPE data-sources PUBLIC "Orion data-sources" "http://xmlns.oracle.com/ias/dtds/data-sources-9_04.dtd">
    <data-sources>
    <data-source location="jdbc/pool/JCheckSuiteDS"
    class="oracle.jdbc.pool.OracleConnectionCacheImpl"
    password="ckmgr"
    connection-driver="oracle.jdbc.driver.OracleDriver"
    username="ckmgr"
    url="jdbc:oracle:thin:@localhost:1521:JHECK"
    inactivity-timeout="30"
    name="JCheckSuiteDS"
    min-connections="1"
    max-connections="10">
         <property name="cacheScheme" value="1"/>
    </data-source>
    </data-sources>
    connection pooling don't work !!!
    thanks for help
    Aldo

    Hi Steve,
    I solved the problem,
    Reading the article
    http://www.oracle.com/technology/products/jdev/tips/muench/ampooling/index.html
    I tried to check the 'Disconnect Application Module Upon Release' in the configuration panel of an ApplicationModule who sets the parameter "jbo.doconnectionpooling=true" in bc4j.xcfg,
    Now the Application does not open one connection for every ApplicationModule and for every Http Session,
    but only one for every simultaneous request, having a total number of connections small.
    Despite of this, I had to restore original configuration parameters in bc4j.xcfg,
    because using this approach there where problems with View Objects that I assumes as pre-filter in some pages
    and that now seems to be 'clear' (I.E. wrong paging or 'Not all variables bound' error on parametrized query..)
    Thanks anyway...
    Aldo

  • Parts of pages don't work in ALL web browsers?

    There's a site where I'm a registered user and have a profile page. One one of my PowerBook G4s, all the frames and content appear fine and I can use the tabs and pull-down menus no matter which browser I use (Safari or Firefox). On my other PB G4 though, these things don't work no matter WHICH browser I use--I've tried Safari, Firefox and Camino. Under the content tabs, there is no content and I can't highlight the other tabs. If I click on a pull-down menu, nothing appears.
    I tried emptying the cache of all of them. I went through all the preferences for each browser and for system prefs and matched them to what's on the PB G4 that works--but these items still don't work on the one laptop. Obviously this isn't a browser issue so I'm thinking it has something to do with the operating system? Any help would be greatly appreciated. Thanks!

    Here's the Terminal output:
    Kim-St-Ours-Computer:~ kimstours$ ifconfig
    lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
    inet6 ::1 prefixlen 128
    inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
    inet 127.0.0.1 netmask 0xff000000
    gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
    stf0: flags=0 mtu 1280
    en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    ether 00:0d:93:af:7e:10
    media: autoselect (none) status: inactive
    supported media: none autoselect 10baseT/UTP <half-duplex> 10baseT/UTP <full-duplex> 10baseT/UTP <full-duplex,hw-loopback> 100baseTX <half-duplex> 100baseTX <full-duplex> 100baseTX <full-duplex,hw-loopback>
    en1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    inet6 fe80::20d:93ff:fe8b:5810%en1 prefixlen 64 scopeid 0x5
    inet 10.0.1.2 netmask 0xffffff00 broadcast 10.0.1.255
    ether 00:0d:93:8b:58:10
    media: autoselect status: active
    supported media: autoselect
    fw0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 2030
    lladdr 00:0d:93:ff:fe:af:7e:10
    media: autoselect <full-duplex> status: inactive
    supported media: autoselect <full-duplex>
    Kim-St-Ours-Computer:~ kimstours$
    Console log just keeps repeating this:
    2007-01-04 18:49:34.336 SyndicationAgent[2281] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 04 Jan 2007 16:58:48 -800'
    System log:
    Jan 4 18:27:33 Kim-St-Ours-Computer STMStart: kCGErrorRangeCheck : Window Server communications from outside of session allowed for root and console user only
    Jan 4 18:27:37 Kim-St-Ours-Computer AL_CX11-1: ATSFontGetPostScriptName failed: error -984.
    Jan 4 18:27:38 Kim-St-Ours-Computer AL_CX11-1: ATSFontGetPostScriptName failed: error -984.
    Jan 4 18:27:38 Kim-St-Ours-Computer AL_CX11-1: ATSFontGetPostScriptName failed: error -984.
    Jan 4 18:27:38 Kim-St-Ours-Computer AL_CX11-1: ATSFontGetPostScriptName failed: error -984.
    Did that tell us something?

  • [SOLVED] Face icons don't works in KDM

    Hello,
    I have configured Oxygen theme in KDM for view the face icons, but the icons don't works. I have KDE 4.9.4.
    How can I solve this?.
    Best regards.
    Last edited by yoburtu (2013-01-03 11:12:00)

    oboedad55 wrote:
    yoburtu wrote:
    Hello,
    I have configured Oxygen theme in KDM for view the face icons, but the icons don't works. I have KDE 4.9.4.
    How can I solve this?.
    Best regards.
    Could you please provide more information? I'm not really sure what you're trying to do.
    I have configured avatar in my profile from system preferences from KDE, but don't view in KDM. I send kdmrc file:
    [General]
    ConfigVersion=2.4
    ConsoleTTYs=tty1,tty2,tty3,tty4,tty5,tty6
    GreeterUID=kdm
    PidFile=/var/run/kdm.pid
    ReserveServers=:1,:2,:3
    ServerVTs=-7
    StaticServers=:0
    [Shutdown]
    BootManager=None
    HaltCmd=/sbin/shutdown -h -P now
    RebootCmd=/sbin/shutdown -r now
    [X-*-Core]
    AllowNullPasswd=false
    AllowRootLogin=false
    AllowShutdown=Root
    AutoReLogin=false
    ClientLogFile=.xsession-errors-%d
    Reset=/usr/share/config/kdm/Xreset
    Session=/usr/share/config/kdm/Xsession
    SessionsDirs=/usr/share/config/kdm/sessions,/usr/share/apps/kdm/sessions
    Setup=/usr/share/config/kdm/Xsetup
    Startup=/usr/share/config/kdm/Xstartup
    [X-*-Greeter]
    AntiAliasing=false
    ColorScheme=
    FaceSource=PreferAdmin
    FailFont=Sans Serif,10,-1,5,75,0,0,0,0,0
    ForgingSeed=1356806206
    GUIStyle=
    GreetFont=Serif,20,-1,5,50,0,0,0,0,0
    GreetString=Bienvenido a %s en %n
    GreeterPos=50,50
    HiddenUsers=
    Language=es
    LogoArea=Logo
    LogoPixmap=/usr/share/apps/kdm/pics/kdelogo.png
    MaxShowUID=65000
    MinShowUID=500
    Preloader=/usr/bin/preloadkde
    SelectedUsers=
    ShowUsers=NotHidden
    SortUsers=true
    StdFont=Droid Sans,10,-1,5,50,0,0,0,0,0
    Theme=/usr/share/apps/kdm/themes/oxygen
    UseBackground=true
    UseTheme=true
    UserCompletion=false
    UserList=true
    [X-:*-Core]
    AllowNullPasswd=true
    AllowShutdown=All
    NoPassEnable=false
    NoPassUsers=
    ServerArgsLocal=-nolisten tcp
    ServerCmd=/usr/bin/X -br -novtswitch -quiet
    [X-:*-Greeter]
    AllowClose=false
    DefaultUser=mari
    FocusPasswd=true
    LoginMode=DefaultLocal
    PreselectUser=Previous
    [X-:0-Core]
    AutoLoginEnable=false
    AutoLoginLocked=false
    AutoLoginUser=
    ClientLogFile=.xsession-errors
    [Xdmcp]
    Enable=false
    Willing=/usr/share/config/kdm/Xwilling

  • I downloaded creative cloud and I payed for it but it don't work. He doesn't download the apps nothing works.

    I downloaded creative cloud and I payed for it but it don't work. He doesn't download the apps nothing works.

    Please read, and reply back here with information https://forums.adobe.com/thread/1499014
    -try some steps such as changing browsers and turning off your firewall
    -also flush your browser cache so you are starting with a fresh browser
    http://myleniumerrors.com/installation-and-licensing-problems/creative-cloud-error-codes-w ip/
    http://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

Maybe you are looking for

  • Error during GR for asset PO

    while doing GR for asset PO system is giving error message of "Acct123 for trans/ev  key ANL, is not a control account some one plz explain me the reason for this error and how to resolve.

  • Connect Sony TV via HDMI / Thunderbolt to my Mac Air no sound :(

    Hi all, I am new to this "mac world" ....and I'm trying to see videos on my Sony TV from my Mac Air, for that purpose I've bought a Thunderbolt / HDMI Encore electronics adapter. (There's a picture below....) Everything goes well, apart from the issu

  • IDOC to MDM scenario error

    my scenario is IDOC to MDM.For that i m using MDM adapter. I m getting erroer in Communication channel monitoring : "Configuration Error: cannot create repository session:Caused by: The specific MDM repository was not found on the server." Kindly sen

  • Lenovo Monitor Flickers constantly

    Hi All, I have a Lenovo L197 Wide connected to a Server 2003 box (also lenovo) and the monitor flickers constantly. The refresh rate is set to default and I can't change it to see if it has any effect. Anyone any ideas? Cheers Andy.

  • Is there any similar field in 4.6??

    hi all, i am working for upgrade. in 4.7 there is a field named 'EXCLASS' in table DD02V. but this is not there in 4.6 is there any similar field in 4.6?? pls let me know... regards, sri.