@postconstruct doesn't work in managed bean

Hi,
I'm using JBOSS 6, JSF 2 and EJB 3.1, i have an ear with
- EJB folder (@postconstruct is working)
- JSF folder with manged bean where @postconstruct doesn't work
This my manged bean :
package com.galhauban.geriex;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.PostConstruct;
import javax.ejb.EJB;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.event.ValueChangeEvent;
import javax.faces.model.SelectItem;
import javax.servlet.ServletContext;
import org.richfaces.event.ItemChangeEvent;
@ManagedBean
@ViewScoped
public class AdministrationController {
@EJB
private VilleBean ville;
private List<SelectItem> villes = new ArrayList<SelectItem>();
private String commune;
private String communeId;
private String cp;
private String labelListCommune;
@EJB
private BisBean bisBean;
private String bis;
private Integer bisId;
private List<SelectItem> bisList = new ArrayList<SelectItem>();
@EJB
private RueBean rueBean;
private String rue;
private String rueId;
private List<SelectItem> ruesList = new ArrayList<SelectItem>();
//boolean desactives pour n'afficher que ce que l'on souhaite a partir du menu
private boolean bCommune =false;
private boolean bBis =false;
private boolean bRue =false;
private UIComponent selectedChild = null;
//Pour connaitre l'item du menu actif
private String selectedTab;
private List<String> renderComponents = new ArrayList<String>();
public AdministrationController(){
ServletContext servletContext = (ServletContext) FacesContext.getCurrentInstance().getExternalContext().getContext();
System.out.println("============================================================================");
System.out.println("==================================CONSTRUCTEUR==============================");
System.out.println("Servlet : "+servletContext.getEffectiveMajorVersion()+"."+servletContext.getMinorVersion());
System.out.println("============================================================================");
@PostConstruct
public void postConstruct(){
setSelectedTab("rue");
System.out.println("###################################################");
System.out.println(" POST CONSTRUCT MANAGED BEAN ");
System.out.println("###################################################");
JanusController multi = new JanusController();
* AFFICHAGE DES MODIFS/SUP/AJOUT EN FONCTION DU MENU SELECTIONNE
public void updateCurrent(ItemChangeEvent event){
setSelectedTab(event.getNewItem().getId());
System.out.println("====> SELECTEDTAB " + selectedTab.toString());
if (selectedTab.equals("commune")) {
setbCommune(true);
setbBis(false);
setbRue(false);
renderComponents.add("gCommune");
else if (selectedTab.equals("bis")) {
setbBis(true);
setbCommune(false);
setbRue(false);
renderComponents.add("gBis");
else if (selectedTab.equals("rue")) {
setbRue(true);
setbBis(false);
setbCommune(false);
renderComponents.add("gRue");
else System.out.println("----> pas dans le if " + selectedTab.toString());
public void ajouter(){
System.out.println("====> AJOUTER SELECTEDTAB " + selectedTab.toString());
if (selectedTab.equals("commune")) {
System.out.println("ajouter commune ");
ville.ajouter(commune, cp);
else if (selectedTab.equals("bis")) {
System.out.println("ajouter iBbis ");
bisBean.ajouter(bis);
else if (selectedTab.equals("rue")) {
System.out.println("ajouter rue: "+commune);
rueBean.ajouter(rue, Integer.parseInt(communeId));
else System.out.println("----> pas dans le if de l'ajouter " + selectedTab.toString());
public void modifier(){
System.out.println("====> MODIFIER SELECTEDTAB " + selectedTab.toString());
if (selectedTab.equals("commune")) {
ville.modifier(Integer.parseInt(communeId), commune);
else if (selectedTab.equals("bis")) {
bisBean.modifier(bisId, bis);
else if (selectedTab.equals("rue")) {
rueBean.ajouter(rue, Integer.parseInt(communeId));
else System.out.println("----> pas dans le if de modifier " + selectedTab.toString());
public void supprimer(){
System.out.println("====> SUPRIMER SELECTEDTAB " + selectedTab.toString());
if (selectedTab.equals("commune")) {
System.out.println("ajouter commune ");
ville.ajouter(commune, cp);
else if (selectedTab.equals("bis")) {
System.out.println("supprimer iBbis ");
bisBean.supprimer(bisId);
else if (selectedTab.equals("rue")) {
System.out.println("ajouter rue: "+commune);
rueBean.ajouter(rue, villes.indexOf(ville));
else System.out.println("----> pas dans le if de l'ajouter " + selectedTab.toString());
* LISTENER
public void selectListener(ValueChangeEvent vce){
System.out.println("new value : "+vce.getNewValue());
public void listAdminCommune(ValueChangeEvent vce){
System.out.println("listener*************");
ruesList.clear();
ruesList = rueBean.listRue(Integer.parseInt(vce.getNewValue().toString()));
* AUTRES FONCTIONS
public boolean invbool(boolean vrai){
if (vrai == true) return false;
else return true;
* GETTER AND SETTER
Any help will be highly appreciated.
Regards
Couse1

Hi,
First of all thanks for your help.
I've some problems to add a new mojarra version (2.1.2) to jboss 6
1- I modified the file META-INF\jsf-integration-deployer-jboss-beans.xml
<entry>
          <key>Mojarra-2.1.2</key>
          <value>${jboss.server.home.url}deployers/jsf.deployer/Mojarra-2.1.2</value>
</entry>
<bean name="JSFUrlIntegrationDeployer-212" class="org.jboss.jsf.deployer.JSFUrlIntegrationDeployer">
    <property name="JSFConfigName">
      <value>Mojarra-2.1.2</value>
    </property>
    <property name="JSFImplManagementDeployer">
      <inject bean="JSFImplManagementDeployer"/>
    </property>
  </bean>2- I added this code in my web.xml(war)
<context-param> 
        <param-name>org.jboss.jbossfaces.JSF_CONFIG_NAME</param-name> 
        <param-value>Mojarra-2.1.2</param-value> 
      </context-param>3- And in the folder ...\deployers\jsf.deployer\Mojarra-2.1.2, i've got :
- jsf-libs with jars
- META-INF with web.xml
I took the web.xml from Mojarra-2.0 :
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
   version="2.5">
   <!-- ======================== Introduction ============================== -->
   <!-- This document defines default values for the Mojarra-2.0 JSF config  -->
   <!--                                                                      -->
   <!-- WARNING:  Do not configure application-specific resources here!      -->
   <!-- They should go in the "/WEB-INF/web.xml" file in your application.   -->
   <!-- =========== Common Context Params ================================== -->
   <!-- Regular expression to determine if two different URLs actually point -->
   <!-- to the same jar file.  This keeps faces-config files from being      -->
   <!-- read twice.                                                          -->
   <context-param>
     <param-name>com.sun.faces.duplicateJARPattern</param-name>
     <param-value>^tmp\d+(\S*\.jar)</param-value>
   </context-param>
   <!-- JBossInjectionProvider provides resource injection for managed beans. -->
   <!-- See JSF 1.2 spec section 5.4 for details.                             -->
   <context-param>
     <param-name>com.sun.faces.injectionProvider</param-name>
     <param-value>org.jboss.web.jsf.integration.injection.JBossDelegatingInjectionProvider</param-value>
   </context-param>
   <!-- ================== Common filter Configuration ==================== -->
   <!-- ================== Common Listener Configuration ==================== -->
   <!-- Configures JSF 2.0 -->
   <listener>
     <listener-class>org.jboss.web.jsf.integration.config.JBossMojarra20ConfigureListener</listener-class>
   </listener>
</web-app>And of course i've got this error :
org.jboss.web.jsf.integration.config.JBossMojarra20ConfigureListener: java.lang.ClassNotFoundException: org.jboss.web.jsf.integration.config.JBossMojarra20ConfigureListener
I don't know where to find the listener-class, and in fact i don't know to configure this web.xml.
Help or sugestion will be appreciated.
Best regards
couse1

Similar Messages

  • @EJB not working for managed beans in adfc-config

    using adf 11.1.1.3
    We have an application that uses EJB (deployed on the same WLS as our application). We notice that when we create managed beans in the adfc-config and use the @EJB annotation to get an instance of the sessionbean, it is not working.
    The error we get is a simple nullPointerexception pointing to the EJB.
    When we register the bean in faces-config.xml instead of adfc-config.xml, we do get an instance of the EJB.
    I also get a nullpointerException when i add the managed bean to a taskflow instead of the adfc-config.
    This is an example of the bean:
    public class HomeTest {
        @EJB
        MyService service;
        public HomeTest() {
        public List getData(){
          return service.getSomedata();
    }When i register this bean in adfc-config i get a nullpointer on service.
    When i register the same bean in the faces-config, it is working.

    Frank,
    Thanks! I think i managed to implement the workaround:
    This is my bean that has been registered in the faces-config:
    public class BeanHelper {
        @EJB
        private MyEJB myEjB;
        public BeanHelper() {
            super();
        public MyEJB getMyEJB()
              return myEJB;
    }In my adfc managed bean i use
    MyEJB myEJB = (MyEJB)JSFUtils.get("#{BeanHelper.myEJB}");This is working fine.
    This way i no longer need to use a direct lookup and i don't need to know the exact path and so on for the EJB.
    Thanks Frank!
    Is there a way to let Oracle update the bug with this workaround so if other people find the bug, they know how to implement a workaround?

  • Remote start doesn't work in Managed Servers  (Weblogic Portal 10.3)

    Hi,
    I've got problems with starting the managed server from the admin console.
    The message in the managed server output log file is :
    ****CLIP****
    <19.10.2008 14:05:33> <Info> <NodeManager> <Starting WebLogic server with command line: D:\beaportal103\jrockit_160_05\bin\java -Dweblogic.Name=server1 -Dbea.home=D:\beaportal103\ -Djava.security.policy=D:\beaportal103\wlserver_10.3\server\lib\weblogic.security -Dweblogic.management.server=http://xxx.xx.xxx.xxx:7001 -Djava.library.path=D:\BEAPOR~1\WLSERV~1.3\server\bin;.;C:\WINDOWS\system32;C:\WINDOWS;D:\BEAPOR~1\WLSERV~1.3\server\native\win\32;D:\BEAPOR~1\WLSERV~1.3\server\bin;d:\BEAPOR~1\JROCKI~1\jre\bin;d:\BEAPOR~1\JROCKI~1\bin;D:\BEAPOR~1\WLSERV~1.3\server\native\win\32\oci920_8;C:\Program Files\HP\NCU;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Windows Imaging\;C:\Program Files\System Center Operations Manager 2007\ -Djava.class.path=d:\BEAPOR~1\patch_wlw1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;d:\BEAPOR~1\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;d:\BEAPOR~1\patch_wlp1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;d:\BEAPOR~1\patch_cie670\profiles\default\sys_manifes_classpath\weblogic_patch.jar;d:\BEAPOR~1\JROCKI~1\lib\tools.jar;D:\BEAPOR~1\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\BEAPOR~1\WLSERV~1.3\server\lib\weblogic.jar;d:\BEAPOR~1\modules\features\weblogic.server.modules_10.3.0.0.jar;D:\BEAPOR~1\WLSERV~1.3\server\lib\webservices.jar;d:\BEAPOR~1\modules\ORGAPA~1.5/lib/ant-all.jar;d:\BEAPOR~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;D:\BEAPOR~1\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;D:\BEAPOR~1\WLSERV~1.3\server\lib\xqrl.jar -Dweblogic.system.BootIdentityFile=D:\beaportal103\user_projects\domains\test\servers\server1\data\nodemanager\boot.properties -Dweblogic.nodemanager.ServiceEnabled=true -Dweblogic.security.SSL.ignoreHostnameVerification=false -Dweblogic.ReverseDNSAllowed=false -Xms512m -Xmx512m weblogic.Server >
    <19.10.2008 14:05:33> <Info> <NodeManager> <Working directory is "D:\beaportal103\user_projects\domains\test">
    <19.10.2008 14:05:33> <Info> <NodeManager> <Server output log file is "D:\beaportal103\user_projects\domains\test\servers\server1\logs\server1.out">
    Usage: java [-options] class [args...]
    (to execute a class)
    or java [-options] -jar jarfile [args...]
    (to execute a jar file)
    where options include:
    -jrockit     to select the "jrockit" VM
    -client     to select the "client" VM
    -server     to select the "server" VM [synonym for the "jrockit" VM]
    The default VM is jrockit.
    -cp <class search path of directories and zip/jar files>
    -classpath <class search path of directories and zip/jar files>
    A ; separated list of directories, JAR archives,
    and ZIP archives to search for class files.
    -D<name>=<value>
    set a system property
    -verbose[:class|gc|jni]
    enable verbose output
    -version print product version and exit
    -version:<value>
    require the specified version to run
    -showversion print product version and continue
    -jre-restrict-search | -jre-no-restrict-search
    include/exclude user private JREs in the version search
    -? -help print this help message
    -X print help on non-standard options
    -ea[:<packagename>...|:<classname>]
    -enableassertions[:<packagename>...|:<classname>]
    enable assertions
    -da[:<packagename>...|:<classname>]
    -disableassertions[:<packagename>...|:<classname>]
    disable assertions
    -esa | -enablesystemassertions
    enable system assertions
    -dsa | -disablesystemassertions
    disable system assertions
    -agentlib:<libname>[=<options>]
    load native agent library <libname>, e.g. -agentlib:hprof
    see also, -agentlib:jdwp=help and -agentlib:hprof=help
    -agentpath:<pathname>[=<options>]
    load native agent library by full pathname
    -javaagent:<jarpath>[=<options>]
    load Java programming language agent, see java.lang.instrument
    -splash:<imagepath>
    show splash screen with specified image
    <19.10.2008 14:05:33> <Debug> <NodeManager> <Waiting for the process to die: 3464>
    <19.10.2008 14:05:33> <Info> <NodeManager> <Server failed during startup so will not be restarted>
    <19.10.2008 14:05:33> <Debug> <NodeManager> <runMonitor returned, setting finished=true and notifying waiters>
    ****CLIP****
    The message in the nodemanager log file is :
    ****CLIP****
    <19.10.2008 14:05:33> <Info> <test> <server1> <Boot identity properties saved to "D:\beaportal103\user_projects\domains\test\servers\server1\data\nodemanager\boot.properties">
    <19.10.2008 14:05:33> <Info> <test> <server1> <Startup configuration properties saved to "D:\beaportal103\user_projects\domains\test\servers\server1\data\nodemanager\startup.properties">
    <19.10.2008 14:05:33> <Info> <test> <server1> <Rotated server output log to "D:\beaportal103\user_projects\domains\test\servers\server1\logs\server1.out00004">
    <19.10.2008 14:05:33> <Info> <test> <server1> <Server error log also redirected to server log>
    <19.10.2008 14:05:33> <Info> <test> <server1> <Starting WebLogic server with command line: D:\beaportal103\jrockit_160_05\bin\java -Dweblogic.Name=server1 -Dbea.home=D:\beaportal103\ -Djava.security.policy=D:\beaportal103\wlserver_10.3\server\lib\weblogic.security -Dweblogic.management.server=http://xxx.xx.xxx.xxx:7001 -Djava.library.path=D:\BEAPOR~1\WLSERV~1.3\server\bin;.;C:\WINDOWS\system32;C:\WINDOWS;D:\BEAPOR~1\WLSERV~1.3\server\native\win\32;D:\BEAPOR~1\WLSERV~1.3\server\bin;d:\BEAPOR~1\JROCKI~1\jre\bin;d:\BEAPOR~1\JROCKI~1\bin;D:\BEAPOR~1\WLSERV~1.3\server\native\win\32\oci920_8;C:\Program Files\HP\NCU;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Windows Imaging\;C:\Program Files\System Center Operations Manager 2007\ -Djava.class.path=d:\BEAPOR~1\patch_wlw1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;d:\BEAPOR~1\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;d:\BEAPOR~1\patch_wlp1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;d:\BEAPOR~1\patch_cie670\profiles\default\sys_manifes_classpath\weblogic_patch.jar;d:\BEAPOR~1\JROCKI~1\lib\tools.jar;D:\BEAPOR~1\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\BEAPOR~1\WLSERV~1.3\server\lib\weblogic.jar;d:\BEAPOR~1\modules\features\weblogic.server.modules_10.3.0.0.jar;D:\BEAPOR~1\WLSERV~1.3\server\lib\webservices.jar;d:\BEAPOR~1\modules\ORGAPA~1.5/lib/ant-all.jar;d:\BEAPOR~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;D:\BEAPOR~1\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;D:\BEAPOR~1\WLSERV~1.3\server\lib\xqrl.jar -Dweblogic.system.BootIdentityFile=D:\beaportal103\user_projects\domains\test\servers\server1\data\nodemanager\boot.properties -Dweblogic.nodemanager.ServiceEnabled=true -Dweblogic.security.SSL.ignoreHostnameVerification=false -Dweblogic.ReverseDNSAllowed=false -Xms512m -Xmx512m weblogic.Server >
    <19.10.2008 14:05:33> <Info> <test> <server1> <Working directory is "D:\beaportal103\user_projects\domains\test">
    <19.10.2008 14:05:33> <Info> <test> <server1> <Server output log file is "D:\beaportal103\user_projects\domains\test\servers\server1\logs\server1.out">
    <19.10.2008 14:05:33> <Info> <test> <server1> <Server failed during startup so will not be restarted>
    <19.10.2008 14:05:33> <Warning> <Exception while starting server 'server1': java.io.IOException: Server failed to start up. See server output log for more details.>
    java.io.IOException: Server failed to start up. See server output log for more details.
         at weblogic.nodemanager.server.ServerManager.start(ServerManager.java:303)
         at weblogic.nodemanager.server.Handler.handleStart(Handler.java:542)
         at weblogic.nodemanager.server.Handler.handleCommand(Handler.java:119)
         at weblogic.nodemanager.server.Handler.run(Handler.java:66)
         at java.lang.Thread.run(Thread.java:619)
    ****CLIP****
    I just read this thread: Re: Problem starting maneged server FAILED_NOT_RESTARTABLE , but I didn't find any solution to my problem. I really hope that someone can help me, because right now I'm really desperate and hopeless.
    This is my first Oracle Weblogic Portal/Server 10.3 installation.
    I haven't seen this kinds of problems with Bea Weblogic Portal 8.1.6 and my remotestart configurations are very similar between the 8.1 and 10.3 installations.
    br
    Stefan from Finland

    What you mean about that? Do you mean these rows:
    ****CLIP****
    C:\Program Files (x86)\Windows Imaging\;C:\Program Files\System Center Operations Manager 2007\
    ****CLIP****
    If i start managed server with the script there is same spaces and server starts without any problems.
    ****CLIP****
    D:\beaportal103\user_projects\domains\test\bin>startManagedWebLogic.cmd server1 >start.log
    ****CLIP****
    The "message" in the start.log file is:
    ****CLIP****
    JAVA Memory arguments: -Xms256m -Xmx512m
    WLS Start Mode=Development
    CLASSPATH=;d:\BEAPOR~1\patch_wlw1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;d:\BEAPOR~1\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;d:\BEAPOR~1\patch_wlp1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;d:\BEAPOR~1\patch_cie670\profiles\default\sys_manifest_classpath\weblogic_patch.jar;d:\BEAPOR~1\JROCKI~1\lib\tools.jar;D:\BEAPOR~1\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\BEAPOR~1\WLSERV~1.3\server\lib\weblogic.jar;d:\BEAPOR~1\modules\features\weblogic.server.modules_10.3.0.0.jar;D:\BEAPOR~1\WLSERV~1.3\server\lib\webservices.jar;d:\BEAPOR~1\modules\ORGAPA~1.5/lib/ant-all.jar;d:\BEAPOR~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;D:\BEAPOR~1\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;D:\BEAPOR~1\WLSERV~1.3\server\lib\xqrl.jar;;
    PATH=d:\BEAPOR~1\patch_wlw1030\profiles\default\native;d:\BEAPOR~1\patch_wls1030\profiles\default\native;d:\BEAPOR~1\patch_wlp1030\profiles\default\native;d:\BEAPOR~1\patch_cie670\profiles\default\native;D:\BEAPOR~1\WLSERV~1.3\server\native\win\32;D:\BEAPOR~1\WLSERV~1.3\server\bin;d:\BEAPOR~1\modules\ORGAPA~1.5\bin;d:\BEAPOR~1\JROCKI~1\jre\bin;d:\BEAPOR~1\JROCKI~1\bin;C:\Program Files\HP\NCU;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Windows Imaging\;C:\Program Files\System Center Operations Manager 2007\;C:\Program Files\System Center Operations Manager 2007\;D:\BEAPOR~1\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    Starting WLS with line:
    d:\BEAPOR~1\JROCKI~1\bin\java -jrockit -Xms256m -Xmx512m -Dweblogic.security.SSL.trustedCAKeyStore="D:\beaportal103\wlserver_10.3\server\lib\cacerts" -Xverify:none -da -Dplatform.home=D:\BEAPOR~1\WLSERV~1.3 -Dwls.home=D:\BEAPOR~1\WLSERV~1.3\server -Dweblogic.home=D:\BEAPOR~1\WLSERV~1.3\server -Dweblogic.management.discover=false -Dweblogic.management.server=http://XXX.XX.XXX.XXX:7001 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=d:\BEAPOR~1\patch_wlw1030\profiles\default\sysext_manifest_classpath;d:\BEAPOR~1\patch_wls1030\profiles\default\sysext_manifest_classpath;d:\BEAPOR~1\patch_wlp1030\profiles\default\sysext_manifest_classpath;d:\BEAPOR~1\patch_cie670\profiles\default\sysext_manifest_classpath -Dweblogic.Name=server1 -Djava.security.policy=D:\BEAPOR~1\WLSERV~1.3\server\lib\weblogic.policy weblogic.Server
    <20.10.2008 8.29.17 EEST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with BEA JRockit(R) Version R27.6.0-50_o-100423-1.6.0_05-20080626-2105-windows-ia32 from BEA Systems, Inc.>
    <20.10.2008 8.29.18 EEST> <Info> <Management> <BEA-141107> <Version: WebLogic Server Temporary Patch for CR376251 Wed Aug 06 09:19:34 PDT 2008
    WebLogic Server Temporary Patch for CR371247 Sat Aug 09 20:10:38 PDT 2008
    WebLogic Server Temporary Patch for CR377673 Tue Aug 12 20:39:50 EDT 2008
    WebLogic Server Temporary Patch for CR377673 Tue Aug 12 20:39:50 EDT 2008
    WebLogic Server Temporary Patch for CR376759 Thu Aug 14 14:53:02 PDT 2008
    WebLogic Server 10.3 Fri Jul 25 16:30:05 EDT 2008 1137967 >
    <20.10.2008 8.29.19 EEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <20.10.2008 8.29.19 EEST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <20.10.2008 8.29.20 EEST> <Notice> <Log Management> <BEA-170019> <The server log file D:\beaportal103\user_projects\domains\test\servers\server1\logs\server1.log is opened. All server side log events will be written to this file.>
    <20.10.2008 8.29.22 EEST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <20.10.2008 8.29.24 EEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <20.10.2008 8.29.24 EEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <20.10.2008 8.29.24 EEST> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <20.10.2008 8.29.25 EEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <20.10.2008 8.29.25 EEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <20.10.2008 8.29.25 EEST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on XXX.XX.XXX.XXX:7603 for protocols iiop, t3, ldap, snmp, http.>
    <20.10.2008 8.29.25 EEST> <Notice> <WebLogicServer> <BEA-000332> <Started WebLogic Managed Server "server1" for domain "test" running in Development Mode>
    <20.10.2008 8.29.26 EEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <20.10.2008 8.29.26 EEST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    ****CLIP****
    br
    Stefan

  • Programatically set where clause or view criteria not working in managed bean

    I get a view using finditerator then then apply setwhere or view criteria but it does not filter the original rows. code is as follows
    DCIteratorBinding dcIter3 =
    ADFUtils.findIterator("PlanColorsIterator");    
    ViewObject cvo = dcIter3.getViewObject();
    cvo.setNamedWhereClauseParam("Plno","4000");  // not working
       /*   // not working
    cvo.applyViewCriteria(cvo.getViewCriteriaManager().getViewCriteria("PlanColorsCriteria"));
    cvo.ensureVariableManager().setVariableValue("Plno", "4000");
    cvo.executeQuery();
    /* not working
    cvo.setWhereClause("plan_no = :ThePlanType");
    cvo.defineNamedWhereClauseParam("ThePlanType", null, null);
    cvo.setNamedWhereClauseParam("ThePlanType", "4000");
    cvo.executeQuery();

    thanks for reply.
    Jdeveloper version is 11.1.1.4.0.
    Actually the vo on which I am trying to set set where is used as source to act as cursor  to get values from filtered rows using set where and copy the this cursor values to another target vo. I am not showing these source values just getting values.
    DCIteratorBinding dcIter2 =
    ADFUtils.findIterator("PlotDtl2Iterator");     
    ViewObject dvo = dcIter2.getViewObject();
    // colors to copy 
    DCIteratorBinding dcIter3 =
    ADFUtils.findIterator("PlanColorsIterator");    
    ViewObject cvo = dcIter3.getViewObject();
    cvo.setNamedWhereClauseParam("Plno","4000");
    cvo.applyViewCriteria(cvo.getViewCriteriaManager().getViewCriteria("PlanColorsCriteria"));
    cvo.ensureVariableManager().setVariableValue("Plno", "4000");
    cvo.executeQuery();
    cvo.setWhereClause("plan_no = :ThePlanType");
    cvo.defineNamedWhereClauseParam("ThePlanType", null, null);
    cvo.setNamedWhereClauseParam("ThePlanType", "4000");
    cvo.executeQuery();
    int totalCount=cvo.getRowCount();
    cvo.setRangeSize(totalCount);
    Row[] rArray=cvo.getAllRowsInRange();
    for (Row r:rArray){
    NameValuePairs nvp = new NameValuePairs();      
    nvp.setAttribute("Description",r.getAttribute("Description"));
    nvp.setAttribute("PlanNo",r.getAttribute("PlanNo"));
    nvp.setAttribute("MainAcc",r.getAttribute("MainAcc"));
    nvp.setAttribute("Plqty",r.getAttribute("Qty"));
    nvp.setAttribute("Cdkid",r.getAttribute("CdkId"));
    nvp.setAttribute("FabricCode",r.getAttribute("FabricCode"));
    nvp.setAttribute("DyeWash",r.getAttribute("DyeWash"));
    //  nvp.setAttribute("Description","test");
    Row drow = dvo.createAndInitRow(nvp);      
    dvo.insertRow(drow); 

  • RE: Firefox search box - manage search engines - get more search engines.. IT DOESN'T WORK , I now get 1000's of useless irrelevant results, PLEASE FIX THE SITES SEARCH NOW, IT'S COMPLETELY USELESS NOW

    RE: Firefox search box -> manage search engines -> get more search engines..
    IT DOESN'T WORK
    I just want to add youtube + some others to the list of sites in the Firefox search box, I now get 1000's of useless irrelevant results, PLEASE FIX THE SITES SEARCH NOW, IT'S COMPLETELY USELESS NOW

    Hi Kvoter,
    What are you hoping for, firefox to display lists of sites you have visited or bookmarked ?
    *''' it should be able to do that'''
    * my firefox does that
    I am only a fellow ordinary user of Firefox & XP, but maybe the problem is on your machine, rather than needing a fix from firefox. If you take a little time to read this you may be able to sort out the problems yourself.
    I hope you do not mind me covering a few basics:
    * the [[Search bar]] { <-- clickable link -- ] is designed to produce a lot or results, whereas
    *the [[Location bar search|Location Bar]] is a lot more specific and may be [[Location bar autocomplete#w_controlling-behavior|set]] to include or exclude History & or [[bookmarks]]
    If you are getting literally 1000s of totally unrelated results you may need to consider [[Is my Firefox problem a result of malware]]
    Hope to hear that you have solved the problem, or a bit more detail about what still is a problem.
    John

  • Not working Manage bean

    Dear experts,
    Im using JDeveloper 11.1.2.2.0
    I created manage bean for cetain command button in my jsf page.
    This is the code of MB:
    package common.model.view;
    import javax.faces.event.ActionEvent;
    public class abc {
    public abc() {
    public void getSelectedRow(ActionEvent actionEvent) {
    // Add event code here...
    System.out.println("Testing.......");
    But after running the web page, it shows following error when clicking the command button.
    Pls advice me to solve this.
    Thanks
    Charith
    <MethodExpressionActionListener> <processAction> Received 'javax.el.PropertyNotFoundException' when invoking action listener '#{xxxxxxxx.yyyyyyy}' for component 'cb1'
    <MethodExpressionActionListener> <processAction> javax.el.PropertyNotFoundException: //C:/Users/charithk/AppData/Roaming/JDeveloper/system11.1.2.2.39.61.83.1/o.j2ee/drs/LifePolicy/LifePolicyViewCntWebApp.war/LifePolicyPage.jsf @75,117 actionListener="#{xxxxxxxx.yyyyyyy}": Target Unreachable, identifier 'xxxxxxxx' resolved to null
         at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:107)
         at javax.faces.event.MethodExpressionActionListener.processAction(MethodExpressionActionListener.java:148)
         at javax.faces.event.ActionEvent.processListener(ActionEvent.java:88)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcast(UIXComponentBase.java:824)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:179)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:112)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:106)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:787)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1252)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:970)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:351)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:207)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:508)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    It looks like the bean was not found. Did you define it in your adfc-config.xml or a btf config? Ensure the names of the bean defined in one of the former config files match. Otherwise, verify proper scope of the bean.

  • Sunplex Manager Cluster GUI Tool doesn't work

    The Sun Cluster management tool doesn't work, I keep getting the following error on my browser:
    "System Error, An Error was encountered by the system. If you were performing an action when this occurred, review the current system state prior to proceeding"
    The GUI shows Nodes, Resouce Groups, Shared Storage etc in the left hand frame and the error in the right hand frame.
    The command line interface works fine so does the cluster.
    Solaris 8 07/03 SPARC
    Sun cluster 3.1
    Relevant patches loaded: 117950-25, 118626-09, 118671-03
    java -version: 1.4.1_01-b01

    This is now resolved - The machine was set up to use a DNS, the DNS resolved the name correctly but the hosts file did not have the full canonical name of the host.
    I added the full cname of the node to the /etc/hosts file and all is well now.

  • Silent install Oracle BPEL Process Manager 10.1.2.0.2 doesn't work

    We try a silent install of BPEL Process Manager, but it doesn't work. We use this batchfile: setup.exe -nowait -force -responseFile C:\Oracle_BPEL.rsp
    This is our responseFile:
    RESPONSEFILE_VERSION=2.2.1.0.0
    UNIX_GROUP_NAME=<Nicht festgelegter Wert>
    FROM_LOCATION="C:\BPEL\bpel_oc4j\stage\products.xml"
    FROM_LOCATION_CD_LABEL=<Nicht festgelegter Wert>
    ORACLE_HOME="C:\Programme\OraBPEL"
    ORACLE_HOME_NAME="OraBPELPM1"
    We use a German Windows XP SP2.
    The installation starts and creates an "OraInstall"-Directory in the TEMP-DIR. Then the installation stops (fails).
    Is there a possibility to create an error log? The switch "-debug" shows only the just running actions in a "DOS"-Window that closed itsself after the error. So we can't read the error massage.

    Could anybody post a functunaly response file?
    Thanks a lot!

  • Manually managing my music doesn't work

    since i installed the last version of itunes, if i set it to manually manage my music, it doesn't work. i try dragging the files over to the ipod, and itunes says it's updating the ipod. the progress bar goes to the end, but the files never get copied. if i disable it, then files in the library copy over fine.
    what gives?
      Windows XP Pro  

    Hello, stashmore94. 
    Thank you for visiting Apple Support Communities.
    Usually the reason for interrupted, stalled or canceled syncing alerts is a result of either security software interference or TCP/IP modifications.  Also, non Apple cables and low powered USB hubs can cause this issue.  Here are a couple resources that I would recommend going through as they may help resolve the issue.
    iTunes: Troubleshooting security software issues
    http://support.apple.com/kb/ts3125
    Apple software on Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/ts4123
    Cheers,
    Jason H.

  • @EJB annotation in JSF managed beans not working

    Hi all,
    I've been trying to get the @EJB annotation to work in a JSF manged bean without success.
    The EJB interface is extremely simple:
    package model;
    import javax.ejb.Local;
    @Local
    public interface myEJBLocal {
    String getHelloWorld();
    void setHelloWorld(String helloWorld);
    and the bean code is simply:
    package model;
    import javax.ejb.Stateless;
    @Stateless
    public class myEJBBean implements myEJBLocal {
    public String helloWorld;
    public myEJBBean() {
    setHelloWorld("Hello World from myEJBBean!");
    public String getHelloWorld() {
    return helloWorld;
    public void setHelloWorld(String helloWorld) {
    this.helloWorld = helloWorld;
    When I try to use the above EJB in a managed bean, I only get a NullPointerException when oc4j tries to instantiate my managed bean. The managed bean looks like:
    package view.backing;
    import javax.ejb.EJB;
    import model.myEJBLocal;
    import model.myEJBBean;
    public class Hello {
    @EJB
    private static myEJBLocal myBean;
    private String helloWorld;
    private String helloWorldFromBean;
    public Hello() {
    helloWorld = "Hello from view.backing.Hello!";
    helloWorldFromBean = myBean.getHelloWorld();
    public String getHelloWorld() {
    return helloWorld;
    public void setHelloWorld(String helloWorld) {
    this.helloWorld = helloWorld;
    public String getHelloWorldFromBean() {
    return helloWorldFromBean;
    Am I missing something fundamentally here? Aren't you supposed to be able to use an EJB from a JSF managed bean?
    Thanks,
    Erik

    Well, the more I research this issue, the more confused I get. There have been a couple of threads discussing this already, and in this one Debu Panda states that:
    "Support of injection in JSF managed bean is part of JSF 1.1 and OC4J 10.1.3.1 does not support JSF 1.1"
    10.1.3.1 Looking up a session EJB with DI from the Web tier
    But if you look in the release notes for Oracle Application Server 10g R3, it is explicitly stated that JSF 1.1. is supported. So I'm not sure what to believe.
    I've also tried changing the version in web.xml as described here:
    http://forums.java.net/jive/thread.jspa?threadID=2117
    but that didn't help either.
    I've filed a SR on Metalink for this, but haven't got any response yet.
    Regards,
    Erik

  • Changing adobe ID - Adobe Cloud Manager doesn't work

    Hi guys!
    I have on my mac Adobe Creative Cloud Manager with all the app installed in English. All work.
    I changed my ID with new subscription of all the CC product, but the Manager doesn't recognize what i have installed, so when i try to update, install or uninstall the apps, i can't.
    I already try with CC cleaner, but doesn't work...
    I already also delete the OOBE folder...
    Anyone can help me?

    Please refer : http://helpx.adobe.com/creative-suite/kb/troubleshoot-update-issues-cs5-cs5.html#main_Trou bleshoot_Adobe_Application_Manager_problems_or_failures

  • My Ideapad U310 doesn't work and doesn't show me the webcamera in device manager.

    Hello everyone,
    I have a big problem on my Lenovo U310, my wecamera doesn't work, i don't manage to find neither in device manager and i've tried to reinstall all the drivers, even with recovery button but with zero results.
    Could enyone please give a hand with this?
    Solved!
    Go to Solution.

    Hi Tudor_ke,
    Welcome to Lenovo Community!
    I’m sorry to hear that the Webcam is not detecting in device manager even after re-installing the drivers as well as performing OKR (One Key Recovery) in your U310 Laptop, I suggest you to press Fn+Esc keys together and check if the webcam gets listed in Device manager, if the issue persists. I suggest contacting our Technical Support Team to get the details of the nearest Authorized Service Center to get the issue analyzed.
    Click here to open a link where you can select the country and get the exact contact support number. I’m sure they will be a great help.
    Do post us back for further queries.
    Best Regards
    Shiva Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Device Manager ! FN button doesn't work

    Portege R835-P56X Bios updated to Version 3 The laptop came with 64 Bit but I did a clean install with Windows 7 32 Bit because many of my programs and games didn't work with 64 Bit.
    I can't install Toshiba Value Added Package,Toshiba PC Health Monitor and Toshiba eco Utility because they are 64 Bit.Pressing the FN button doesn't work,it does nothing at all using 32 Bit.With 64 Bit it worked fine with screen icons coming up when I pressed it.I wonder if the FN button only work in 64 Bit or maybe Toshiba Value Added Package contains the FN button driver?If anyone knows where to get Toshiba Value Added Package 32 Bit that may fix this problem,please let me know thanks.
    I have a problem in Device Manager where it's showing ! Other Devices PCI Simple Communications Controller.I took a screen shot of Device Manager with 64 Bit installed just incase I ran into problems.Looking at the 2 Device managers side by side 32 vs 64 it looks like Microsoft Virtual WiFi Miniport Adapter is missing from the 32 Bit Device Manager.
    I'm assuming this is Intel Wireless Display but I'm not 100% sure.Because every time I run Intel Wireless Display I get this error message.Unable to load the Intel My WiFi Technology Dll file
    Anyway there is no Intel Display driver for 32 Bit so I had to download that from Intel website.There is however Intel Wireless Display for 32 Bit which I have installed but the ! in device manager remains.So I uninstalled Intel Wireless Display and downloaded the Wireless Display driver 32 Bit from Intel website hoping that might fix the problem.But the ! in device manager remains.
    I have also tried windows update but it can't find any driver for Hardware.I have added 2 screen shots in Attachments
    Attachments:
    2.jpg ‏39 KB
    1.jpg ‏167 KB

    Well after alot of searching on Google I have finally found out what this PCI Simple Communications Controller is.
    It's the Intel Management Engine Interface and lucky for me there is a 32 Bit driver.Now I have no more ! in Device Manager and I have uploaded an updated screen shot.
    But now there are 3 questions.
    1 What happened to the Microsoft Virtual WiFi Miniport Adapter?It was listed twice in 64 Bit but doesn't show up in 32 Bit Device Manager.
    2 Why do I still get the error message when starting Intel Wireless Display?Unable to load the Intel My WiFi Technology Dll file even though I have found the driver for ! in Device Manager
    3 Why doesn't the FN button work?It worked fine in 64 Bit but in 32 Bit it does absolutely nothing.The same goes for the touchpad on/off button which worked fine before in 64 Bit.But now with 32 Bit presing it doesn't turn the touchpad on or off,It does nothing.I hope Toshiba releases drivers for both of these features.
    Attachments:
    Updated Screenshot.jpg ‏49 KB

  • Since the last update yesterday to firefox 4.0.1 my program "asus security protect manager" doesn't work properly. That means, that the saved keys from several websites not remembered for lock in.

    since the last update yesterday to firefox 4.0.1 my program “asus security protect manager” doesn’t work properly. That means, that the saved keys from several websites not remembered for lock in.

    Sorry you are having problems. First of all try Fifrefox's safemode.
    *[[Troubleshoot Firefox issues using Safe Mode]]
    If that works post back for further advice.
    Next step, if safe mode did not work.
    <u>First: Try a clean install, <sub>(you have had a none standard version installed previously)</sub></u><br /> that involves deleting the program files. Then if necessary try troubleshooting by creating and using a clean empty Firefox profile.
    See
    * this recent post [/questions/940399#answer-377134]
    * http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall
    <u>Second: try a New Profile</u>
    *http://kb.mozillazine.org/Profile_Manager#Creating_a_new_profile
    * this will be an additional profile, it is still worth backing up any existing or currently working profile on a regular basis
    **[[Back up and restore information in Firefox profiles]]
    * Until you are absolutely confident about the repercussions I suggest
    ** always use an empty folder when creating a new profile
    ** never delete or rename profiles, just disable or remove shortcuts
    ** after creating a new test profile open it and check for any addons or plugins that may be have been included by default

  • Tiff2icns doesn't work via ssh w/o window manager

    I need to run tiff2icns on a Mac mini (Mac OS X 10.4.6) via a remote ssh connection. Unfortunately this doesn't work if I don't have a window manager session open on the Mac at that time. Is this a bug in tiff2icns, or am I doing something wrong? I want to run tiff2icns without having a window manager open on the remote system.
    Franz
    Mac mini   Mac OS X (10.4.6)  

    any ideas?

Maybe you are looking for