Moving to JSF 1.2_12 causing misc problems in my app

I have an app that was running nicely with JSF 1.2_04.p02. But when I moved to JSF 1.2_12, I started having several problems..
(1) h:selectOneMenu was not rendering my onchange event (I was able to resolve this by fixing my classpath. See http://forums.sun.com/thread.jspa?threadID=5409440)
(2) a4j:support does not appear to be working with h:selectOneMenu. The a4j:support action is no longer being invoked.
(3) ui:include does not appear to be working. For example, this code
                    <div id="terminalSelectionDiv" class="divClear">
                     <ui:include src="virtualPOSTopNav.xhtml" />
                    </div>... renders as ...
                    <div id="terminalSelectionDiv" class="divClear">
                    </div>What am I missing? I was able to fix #1 by adjusting my classpath. Are #2 & #3 classpath issues as well?
The am currently trying to use JSF-API 1.2_12, JSF-IMPL 1.2_12, Facelets 1.1.14, Richfaces 3.3.2.CR1, JBoss EL 1.0_02.CR4 (plus other misc APIs). But, as I mentioned, I did not modify my code. All I did was started trying to run my code with newer versions of JSF, Facelets and Richfaces. As I try different versions of these APIs, the problems seems to appear when I start using JSF 1.2_12 and the goes away when I revert back to an older version.
Here's a rundown of the jar files in my classpath...
My ear contains the following jar files...
com.echo.myapp.web-1.0.0-SNAPSHOT.war
com.echo.myapp.ejb-1.0.0-SNAPSHOT.jar
com.echo.myapp.jmx-1.0.0-SNAPSHOT.sar
My ear's APP-INF/lib directory in the ear file contains the following jar files (All jar files are in the ear's APP-INF/lib dir. No jar files are in the war file.)
com.echo.myapp.domain-1.0.0-SNAPSHOT.jar
com.echo.myapp.util-1.0.0-SNAPSHOT.jar
com.echo.common.myappremoteapi-1.0.0-SNAPSHOT.jar
com.echo.common.web-1.0.0-SNAPSHOT.jar
commons-beanutils-1.7.0.jar
commons-codec-1.2.jar
commons-digester-1.8.1.jar
commons-fileupload-1.1.1.jar
commons-httpclient-3.1.jar
commons-io-1.4.jar
commons-lang-2.2.jar
commons-logging-1.0.4.jar
gwt-user-1.4.60.jar
hibernate-search-3.1.0.GA.jar
itext-2.1.2.jar
itext-rtf-2.1.2.jar
jboss-el-1.0_02.CR4.jar
jboss-seam-2.2.0.GA.jar
jboss-seam-debug-2.2.0.GA.jar
jboss-seam-jul-2.2.0.GA.jar
jboss-seam-pdf-2.2.0.GA.jar
jboss-seam-remoting-2.2.0.GA.jar
jboss-seam-ui-2.2.0.GA.jar
jcifs-1.3.5.jar
jcommon-1.0.9.jar
jfreechart-1.0.9.jar
jibx-bind-1.1.5.jar
jibx-extras-1.1.5.jar
jibx-run-1.1.5.jar
jsf-api-1.2_12.jar
jsf-facelets-1.1.14.jar
jsf-impl-1.2_12.jar
lucene-core-2.4.0.jar
quartz-1.6.1-RC1.jar
richfaces-api-3.3.2.CR1.jar
richfaces-impl-3.3.2.CR1.jar
richfaces-ui-3.3.2.CR1.jar
slf4j-api-1.4.2.jar
slf4j-log4j12-1.4.2.jar
stax-api-1.0.1.jar
wstx-asl-3.2.1.jar
xpp3_min-1.1.3.4.O.jar
xstream-1.1.3.jar
JBOSS_HOME/lib contains...
commons-codec.jar
commons-httpclient.jar
commons-logging.jar
concurrent.jar
getopt.jar
jboss-common.jar
jboss-jmx.jar
jboss-system.jar
jboss-xml-binding.jar
log4j-boot.jar
PwdSetter.jar
JBOSS_HOME/lib/endorsed contains...
serializer.jar
xalan.jar
xercesImpl.jar
JBOSS_HOME/server/default/lib contains...
activation.jar
antlr.jar
autonumber-plugin.jar
bcel.jar
bindingservice-plugin.jar
bsf.jar
bsh-deployer.jar
bsh.jar
cglib.jar
classes12-10.2.0.2.0.jar
commons-codec.jar
commons-collections.jar
commons-httpclient.jar
commons-logging.jar
dom4j.jar
ehcache-1.6.2.jar
ejb3-persistence.jar
el-api.jar
hibernate-annotations.jar
hibernate-entitymanager.jar
hibernate3.jar
hsqldb-plugin.jar
hsqldb.jar
javassist.jar
jaxen.jar
jboss-cache-jdk50.jar
jboss-common-jdbc-wrapper.jar
jboss-ejb3x.jar
jboss-hibernate.jar
jboss-j2ee.jar
jboss-jaxrpc.jar
jboss-jaxws.jar
jboss-jca.jar
jboss-jsr77.jar
jboss-jsr88.jar
jboss-management.jar
jboss-monitoring.jar
jboss-remoting-int.jar
jboss-remoting.jar
jboss-saaj.jar
jboss-serialization.jar
jboss-srp.jar
jboss-transaction.jar
jboss-vfs.jar
jboss.jar
jbossjta-integration.jar
jbossjta.jar
jbossmq.jar
jbosssx.jar
jbossts-common.jar
jbossws-common.jar
jbossws-framework.jar
jbossws-jboss42.jar
jbossws-spi.jar
jmx-adaptor-plugin.jar
jnpserver.jar
joesnmp.jar
jpl-pattern.jar
jpl-util.jar
jsp-api.jar
jtds-1.2.2.jar
log4j-snmp-appender.jar
log4j.jar
mail-plugin.jar
mail.jar
properties-plugin.jar
quartz.jar
scheduler-plugin-example.jar
scheduler-plugin.jar
servlet-api.jar
xmlentitymgr.jar
The classpath in the manifest of my war file contains references to the following jar files...
APP-INF/conf
APP-INF/lib/com.echo.common.web-1.0.0-SNAPSHOT.jar
APP-INF/lib/jsf-facelets-1.1.14.jar
APP-INF/lib/jboss-seam-2.2.0.GA.jar
APP-INF/lib/xstream-1.1.3.jar
APP-INF/lib/xpp3_min-1.1.3.4.O.jar
APP-INF/lib/jboss-el-1.0_02.CR4.jar
APP-INF/lib/jboss-seam-ui-2.2.0.GA.jar
APP-INF/lib/jboss-seam-2.2.0.GA.jar
APP-INF/lib/jboss-seam-jul-2.2.0.GA.jar
APP-INF/lib/commons-beanutils-1.7.0.jar
APP-INF/lib/commons-lang-2.2.jar
APP-INF/lib/jboss-seam-pdf-2.2.0.GA.jar
APP-INF/lib/itext-2.1.2.jar
APP-INF/lib/itext-rtf-2.1.2.jar
APP-INF/lib/jfreechart-1.0.9.jar
APP-INF/lib/jcommon-1.0.9.jar
APP-INF/lib/jboss-seam-debug-2.2.0.GA.jar
APP-INF/lib/gwt-user-1.4.60.jar
APP-INF/lib/hibernate-search-3.1.0.GA.jar
APP-INF/lib/commons-logging-1.0.4.jar
APP-INF/lib/lucene-core-2.4.0.jar
APP-INF/lib/slf4j-api-1.4.2.jar
APP-INF/lib/com.echo.myapp.util-1.0.0-SNAPSHOT.jar
APP-INF/lib/commons-httpclient-3.1.jar
APP-INF/lib/commons-codec-1.2.jar
APP-INF/lib/jcifs-1.3.5.jar
APP-INF/lib/commons-io-1.4.jar
APP-INF/lib/commons-fileupload-1.1.1.jar
APP-INF/lib/richfaces-api-3.3.2.CR1.jar
APP-INF/lib/richfaces-impl-3.3.2.CR1.jar
APP-INF/lib/commons-digester-1.8.1.jar
APP-INF/lib/richfaces-ui-3.3.2.CR1.jar
APP-INF/lib/jsf-impl-1.2_12.jar
APP-INF/lib/jsf-api-1.2_12.jar

Which JAR's exactly have you added/replaced? And how does the WEB-INF/lib look like?
Here's some technical background information which may be of use:
In case of an EAR there are basically four places where classes will be looked up for classloading (they are all covered by the classpath).
1) JRE/lib (where you installed Java SE)
2) appserver/lib (in your case JBOSS_HOME/*).
3) APP-INF/lib (of your EAR)
4) WEB-INF/lib (of your WAR)
To start, there should in fact be no duplicates of the same libs in the mentioned locations. If a duplicate is really necessary for some reasons, then ensure that the versioning is the same and/or that you understand the classloading policy. The JRE/lib and appserver/lib should be kept default all the time and in no way be changed nor duplicated in other places. The APP-INF/lib less or more denotes a shared library for all EJB's and WAR's inside the same EAR. The WEB-INF/lib should contain webapp-specific libraries only.
It depends on the (usually limited configureable) classloading policy of your appserver in which order the mentioned classpath paths will be scanned for the classes to be loaded. Usually, when the appserver starts up and does all its in-house initialization, it will look for classes in appserver/lib and JRE/lib only. Usually, when you request your webapp which is deployed as an EAR, the WEB-INF/lib will first be scanned and then APP-INF/lib and then appserver/lib and then JRE/lib. So if you for example upgraded a lib in APP-INF/lib only while there's still an older one in WEB-INF/lib, your app will break. The appserver's classloading policy is usually only configureable to swap APP-INF/lib and WEB-INF/lib in the search order for classes.

Similar Messages

  • Adobe acrobat causing repaint problems in swing app

    Hello,
    I am launching an external PDF browser from my swing desktop application using Process.exec(String[],String[],File) .
    The problem is that once the adobe screen is visible (on top of my application's frame), moving it around causes the contents of my own frame to become "greyed out". The frame does not repaint itself until adobe is closed.
    I have searched for similar problems on this forum with no success. Any ideas would be appreciated.
    Thanks.

    That is usally an indicator that you have thread locked the Event thread.
    Are you by chance calling
    process.waitFor() on the returned process?

  • I am using itunes 10 and trying to consolidate my files.  I keep getting the error "Copying files failed.  The file name was invalid or too long".  How can I indentify what file is causing this problem or resolve this issue?

    I am using itunes 10 and trying to consolidate my files.  I keep getting the error "Copying files failed.  The file name was invalid or too long".  How can I indentify what file is causing this problem or resolve this issue?

    BUMP
    Yes, I just get that message. I don't see how I could investigate this problem.
    I didn't mention that this happened when I was consolidating my library, not copying files to another computer.
    In other words, I'm using a "normal" itunes procedure, itunes won't complete it, and won't tell me exactly why or how to figure out how to fix it...
    Is there at least some easy way to tell which files were successfully copied to my itunes music folder so I can work on moving the uncopied files?
    Can anybody help me?

  • Can switching from CRT to LCD monitors cause system problems?

    My 9.1 locks up periodically (but the cursor still moves) since I replaced two 20" CRT monitors with two Samsung 19" LCD monitors. Could this affect the performance of my machine? I've tried everything else to address the freeze problem but recall the issue started when I installed the LCD monitors. Anything I can do?

    Studedot,
    You may have issues with the amount of video memory depending on the resolutions of the new LCD screens.
    I find LCD screens go up to insane resolutions, way more than the corresponding size CRT monitor, ie. a 17in Dell LCD monitor with higher resolution than a 21in CRT.
    It shouldn't cause crashes or freezes, but may cause -redraw problems when closing / moving windows in 2D and playing 3D games.

  • After osx software reinstalled if I pause for 30 minutes will it cause a problem?

    after osx software reinstalled if I pause for 30 minutes will it cause a problem?

    For us to help you we have to understand your problem. That means you have to provide an explanation of it as though we are all Martians. I don't know to what "macro" you are referring nor the "software" you had reloaded. However, from what you did describe I would like to infer you are talking about OS X. That your computer is not starting up, hence you get a startup gray screen with a folder icon that has an "X" in it.
    That means the system software is not working properly or that you may have a bad hard drive. So, what you need to do is reinstall your OS X software. You will need either the original installer discs that came with the computer or a retail full Tiger installer disc-set.
    You will need to boot from the installer and do the following:
    How to Perform an Archive and Install
    An Archive and Install will NOT erase your hard drive, but you must have sufficient free space for a second OS X installation which could be from 3-9 GBs depending upon the version of OS X and selected installation options. The free space requirement is over and above normal free space requirements which should be at least 6-10 GBs. Read all the linked references carefully before proceeding.
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger, Leopard or Snow Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • Why h:commandlink action not get fired after upgrading to JSF-1.2_12?

    Hi,
    One strange behavior that I'm facing right now after upgrading to JSF version1.2_12, is that the action method for hidden commandlink which should get fired on changing the value of a comboBox are not getting fired. Note that I was initially using the JSF1.2_07 version and it worked fine.
    Any help would be much appreciated.
    Here is a sample code of what I have in my app.
    <h:panelGroup>
                   <h:selectOneMenu id="nav-menu" value="#{customBean.rowName}"
                   onchange="submitOnMenuChange(this.form,'id-link', 'nav-menu');">
                   <f:selectItem itemLabel="Select:" itemValue="" />
                   <f:selectItem itemLabel="rowName1" itemValue="rowName1"/>
                   <f:selectItem itemLabel="rowName2" itemValue="rowName2"/>
                   </h:selectOneMenu>
                   <h:commandLink id="id-link" value=" " action="#{customBean.updateAction}" style="display: none;"/>
    </h:panelGroup>
    Inside submitOnMenuChange() I'm using below technique to submit the form
    var idclValue = formId + JSF_ID_SEPARATOR + elementId;
    jsfcljs(document.forms[formId],idclValue+','+idclValue,'');
    So, ideally on changing the value from above comboBox it should invoke the updateAction method, bit it doesn't.
    Thanks,
    Umesh
    Edited by: Umesh_S on Oct 7, 2009 4:47 AM

    Here is a small simple example which could help replicate the problem
    There are mainly three files: 1. displayPage.jsp 2. CustomBean.java 3. faces-Config.xml
    1. displayPage.jsp (content)
    <%@ page session="true" contentType="text/html;charset=utf-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <f:view>
    <html>
    <head>
    <script language="javascript">
    function submitLinkAction(formId, elementId) {
         if (document.forms[formId] != null) {
              var idclValue = formId + ":" + elementId;
    jsfcljs(document.forms[formId],idclValue+','+idclValue,'');
         } else {
              throw "Form with id [" + formId + "] is null.";
         return false;
    function submitOnMenuChange(thisForm, linkId, menuId) {
         var fullMenuId = thisForm.id + ":" + menuId;
         var menu = document.forms[thisForm.id][fullMenuId];
         var selectedValue = menu.options[menu.selectedIndex].value;
         if (selectedValue.length > 0) {
              try {
                   return submitLinkAction(thisForm.id, linkId);
              } catch (errorMsg) {
                   alert("Error occurred: " + errorMsg);
         return false;
    </script>
    </head>
    <body>
    <h:form id="edit-form">
                             <h:panelGroup>
                                  <%-- show select drop-down--%>
                                       <h:selectOneMenu id="nav-menu" value="#{customBean.rowName}"
                                            enabledClass="grid"
                                            onchange="submitOnMenuChange(this.form,'nav-link', 'nav-menu');">
                                            <f:selectItem itemLabel="Select:" itemValue="" />
                                            <f:selectItem itemLabel="Row1" itemValue="Row1"/>
                                            <f:selectItem itemLabel="Row2" itemValue="Row2"/>
                                       </h:selectOneMenu>
                                       <h:commandLink id="nav-link" value=" " action="#{customBean.updateAction}" style="display: none;"/>
                             </h:panelGroup>
    </h:form>
    </body>
    </html>
    </f:view>
    2. CustomBean.java
    public class CustomBean {
    private String rowName;
         public CustomBean() {
         public String getRowName() {
              return this.rowName;
         public void setRowName(String value) {
              System.out.println("** Inside set row name**");
              this.rowName = value;
         public void updateAction() {
              System.out.println("************This is action method for hidden command link************* ");
    3. faces-config.xml (content)
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
         <managed-bean>
         <managed-bean-name>customBean</managed-bean-name>
         <managed-bean-class>com.examples.CustomBean</managed-bean-class>
         <managed-bean-scope>request</managed-bean-scope>
         </managed-bean>
    </faces-config>
    So, if we run above example on JSF 1.2_07, on changing the value of nav-menu, it should submit the form and the action method (updateAction()) defined for commandlink "nav-link" should get fired (one could see the System.out coming on the console) but the moment the JSF jars are upgraded to 1.2_12 the action method no more gets invoked.
    Thanks,
    Umesh

  • Agent installed, added entry to PATH, causing application problems

    Hi everyone,
    I am in the process of rolling out OEM 10g Grid Control. I have a test server running OEM, and I am installing the agent on a few of our development servers to test things out. I was able to get the agent up and running on one of our dev servers with no problems. However, it introduced some new issues - suddenly the server was having some problems, certain apps weren't working, and the server would even reboot itself periodically (can you guess - Windows 2003 Server). After a lot of finger-pointing yesterday, it turned out to be the fact that the agent install had added 2 new entries into the system PATH environment variable:
    d:\oracle\product\10.1.0\agent10g\jlib
    d:\oracle\product\10.1.0\agent10g\bin
    This was causing problems with the apps, which subsequently was causing the server to reboot. The person who found this issue yesterday just went in and removed those 2 entries from the PATH, and now things seem to be good. The applications are working again, and the agent continues to run just fine as well.
    Has anyone else noticed this? Am I OK to just remove these entries from the path after installing the agent on every server?
    Thanks,
    Brad

    Quick update, if anyone is interested - I created an SR on Metalink to help with this issue. Here is what they came back with:
    "This values in Path variable are added in order to allow the Agent to perform all kind of tasks (diferent targets-type discovery, patching, configuring).
    It is not grave to have this values removed, but in order to avoid later unexpected behaviour, from Oracle Management Agent point of view it is recommended to re-add this values AT THE END of the Path variable."
    So that is exactly what I did - I moved the 2 entries to the END of the path variable, then rebooted the server, and now things seem to be good - the application is working normally again, and I can see everything in OEM.
    --Brad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Dual Monitor Causing System Problems?

    Hi, I'm new to this site, so I hope this is where I ask this question! My design group switched to G5/Cinema Display screen from old g4 setups mid 2005. I retained my Mitsubishi Diamond Pro 2020u monitor to use as a secondary display for pallettes, extra files, etc. It's hooked up using a dvi-vga adapter.
    My new G5 had hiccups from the start, but around March 2006 I started getting Kernel Panics almost every week, serious slow-downs, Adobe app crashes, etc. It got to the point that I was troubleshooting every week, but could never put a finger on exactly what was happening. IT archive-installed 10.4.4 after we discovered the system had been updated to 10.4.6 and we thought that would solve the problem. While that solved the issues that were relevant to 10.4.6 glitches, it didn't fix everything and little, persistent problems remained, including stalls, crashes and kernel panics. After removing suspect fonts, wallpaper, icons, updating software, repairing permissions, tossing preferences, and other troubleshooting over and over, we (I.T.) finally switched my cpu to another one in the department using data migration (just my user information, not software or other files). Still the same hiccups and even new glitches appeared (InDesign crashing on spellcheck, Photoshop not granting me access to save changes to files, etc.), including two more Kernel panics (within 5 minutes of each other) in the two weeks since we switched hardware. More troubleshooting fixed the app-specific problems, but there are still the persistent annoyances occurring.
    I again did all the troubleshooting mentioned above and finally someone mentioned that I'm the only designer in our group using a dual display set-up. Could there be validity to the non-cinema display monitor causing these problems and if so, what is the solution? I've disconnected the second monitor for now, but would love to have it back. Also, we work with a server (for instance, the kernel panics only happen when I try to place a file from the server into InDesign CS2 using the place command, so there's another avenue to go down if the monitor isn't the issue.)Thanks!
    G5 Mac OS X (10.4.4) graphic design applications
    G5 Mac OS X (10.4.4) graphic design applications
    G5   Mac OS X (10.4.4)   graphic design applications

    I only just disconnected the monitor, so it will take time to tell if that's a factor. As for the kernel panics, although it's always the same scenario (placing images from server through InDesign) they happen very randomly; it's not happening every single time I place a file. In fact, I just placed an image on the server into an ID doc I have on my desktop, no problem. So I can't say for sure that it has happened when working from my desktop or only when working on the server.
    G5 Mac OS X (10.4.4) graphic design applications

  • Firefox 5.0 is supposed to have a separaret Twitter tab, but I noticed today that that tab is missing. What is causing this problem?

    Firefox version 5.0 has a separate Twitter tab built into this web browser. However, today I have been having problems with launching the Firefox browser. An error message appears, after attempting to launch the browser, which states that the Firefox browser is already running, and that the process needs to be closed or that the computer needs to be restarted. After restarting my computer and launching the Firefox browser, I noticed that the built-in Twitter tab ( near the upper left-hand corner of the browser ) was missing. What is causing these problems?

    I'm pretty sure that Firefox version 5.0 has a built-in Twitter tab. Whatever the case may be, I downloaded Firefox version 5.0.1 this morning. I learned that if you right-click on a tab, that a menu box will appear on the screen. One of the options in that menu box is "Pin as App Tab." If I go to the http://twitter.com web site, and then right-click on the corresponding Twitter tab, and then select "Pin as App Tab," then a small Twitter tab will appear to the right of the orange-and-white "Firefox" tab ( in the upper left-hand corner of the Firefox web browser screen ). Then I can click on that Twitter tab and go directly to the http://twitter.com web site. However, when I exit the Firefox version 5.0.1 web browser, and then immediately re-launch it, the separate Twitter tab is gone. Is there any way, within Firefox version 5.0.1, that I can make the separate Twitter tab permanent after selecting "Pin as App Tab"? Thank you for your assistance regarding this matter.
    ''Edited by a moderator due to inappropriate content.''

  • TS1627 I Can no longer synch my iPhone and iPad to Outlook using iTunes on a Win 7 Pc.  I updated to iTunes 11.1.4.62 a few days ago.  Don't know if that caused my problem. I've reset the Synch History, deleted any Notes in Outlook that don't have a subje

    I Can no longer synch my iPhone and iPad to Outlook using iTunes on a Win 7 Pc.  I updated to iTunes 11.1.4.62 a few days ago.  Don't know if that caused my problem. I've reset the Synch History, deleted any Notes in Outlook that don't have a subject. Grateful for any help.

    You might have better luck in the iTunes for Windows community. I'll ask the hosts to relocate your post.
    iTunes for Windows

  • I suddenly have this error message on FireFoxthis message pops up: "Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no re

    I suddenly encounter this error message from Fire Fox.
    Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features.
    I uninstalled the browser and download a new version but it does not resolve the issue.
    I know my hard disc has ample space. I do NOT know where to find the Profile directory to fix the read restriction box.
    == This happened ==
    Every time Firefox opened
    == After something about security add-on of Norton pop up by itself. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MSN Optimized;US)

    This link shows things to check - https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component

  • What is causing this problem and what are you doing to fix it? Should I just go back to Internet Explorer?

    Every single day, Firefox crashes and sometimes in the most inopertune time. This is very frustrating as some of the times I can not go back in and correct what I was not able to do due to your site crashing. What is causing this problem and what are you doing to fix it? Should I just go back to Internet Explorer?

    First, you must use a specific [[Managing profiles|profile]] for Firefox 4.0 Beta and keep your current one for Firefox 3.6 to prevent interferences between the two versions.
    For your problem:
    # [[Troubleshooting extensions and themes]] could be a cause.
    # If not 1. and if it does not happen in [[Safe Mode]], you must disable HW acceleration in Options > Advanced > General. If it solves your issue, your graphic driver is out-of-date and must be updated. Go to your computer manufacturer support site.

  • Dynamic Calc processor cannot lock more than [100] ESM blocks during the calculation, please increase CalcLockBlock setting and then retry(a small data cache setting could also cause this problem, please check the data cache size setting).

    Hi,
    Our Environment is Essbase 11.1.2.2 and working on Essbase EAS and Shared Services components.One of our user tried to run the Cal Script of one Application and faced this error.
    Dynamic Calc processor cannot lock more than [100] ESM blocks during the calculation, please increase CalcLockBlock setting and then retry(a small data cache setting could also cause this problem, please check the data cache size setting).
    I have done some Google and found that we need to add something in Essbase.cfg file like below.
    1012704 Dynamic Calc processor cannot lock more than number ESM blocks during the calculation, please increase CalcLockBlock setting and then retry (a small data cache setting could also cause this problem, please check the data cache size setting).
    Possible Problems
    Analytic Services could not lock enough blocks to perform the calculation.
    Possible Solutions
    Increase the number of blocks that Analytic Services can allocate for a calculation:
    Set the maximum number of blocks that Analytic Services can allocate to at least 500. 
    If you do not have an $ARBORPATH/bin/essbase.cfg file on the server computer, create one using a text editor.
    In the essbase.cfg file on the server computer, set CALCLOCKBLOCKHIGH to 500.
    Stop and restart Analytic Server.
    Add the SET LOCKBLOCK HIGH command to the beginning of the calculation script.
    Set the data cache large enough to hold all the blocks specified in the CALCLOCKBLOCKHIGH setting. 
    Determine the block size.
    Set the data catche size.
    Actually in our Server Config file(essbase.cfg) we dont have below data  added.
    CalcLockBlockHigh 2000
    CalcLockBlockDefault 200
    CalcLockBlocklow 50
    So my doubt is if we edit the Essbase.cfg file and add the above settings and restart the services will it work?  and if so why should we change the Server config file if the problem is with one application Cal Script. Please guide me how to proceed.
    Regards,
    Naveen

    Your calculation needs to hold more blocks in memory than your current set up allows.
    From the docs (quoting so I don't have to write it, not to be a smarta***:
    CALCLOCKBLOCK specifies the number of blocks that can be fixed at each level of the SET LOCKBLOCK HIGH | DEFAULT | LOW calculation script command.
    When a block is calculated, Essbase fixes (gets addressability to) the block along with the blocks containing its children. Essbase calculates the block and then releases it along with the blocks containing its children. By default, Essbase allows up to 100 blocks to be fixed concurrently when calculating a block. This is sufficient for most database calculations. However, you may want to set a number higher than 100 if you are consolidating very large numbers of children in a formula calculation. This ensures that Essbase can fix all the required blocks when calculating a data block and that performance will not be impaired.
    Example
    If the essbase.cfg file contains the following settings:
    CALCLOCKBLOCKHIGH 500  CALCLOCKBLOCKDEFAULT 200  CALCLOCKBLOCKLOW 50 
    then you can use the following SET LOCKBLOCK setting commands in a calculation script:
    SET LOCKBLOCK HIGH; 
    means that Essbase can fix up to 500 data blocks when calculating one block.
    Support doc is saying to change your config file so those settings can be made available for any calc script to use.
    On a side note, if this was working previously and now isn't then it is worth investigating if this is simply due to standard growth or a recent change that has made an unexpected significant impact.

  • Does anybody know if Windows 8 is causing a problem with iTunes?   Many songs on my old iPod are now missing in my iTunes library and I can't find them anywhere.  Also, I have a new iPod and am afraid of using it for fear of something else going wrong.

    Does anybody know if Windows 8 is causing a problem with iTunes?  Many songs on my old iPod are now missing in my iTunes library and I can't find them anywhere.  .  Also, I have a new iPod and am afraid of using it for fear of something else going wrong.

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

  • The upgrade to Firefox 4 is causing massive problems with my computer. How do I uninstall it and go back to using the previous version?

    Firefox 4 is absolutely awful - it is causing massive problems with my computer. How do I uninstall Firefox 4 and go back to the previous version of Firefox?

    According to the instructions given on the Norton Community forum under "Other Norton Products/Comcast-Customers - Norton Toolbar Problem in Firefox 10", I have done everything necessary. And I do have a Norton toolbar (Safe Web and Identity Safe) when I open Firefox 10. As was mentioned in the previous posts here, you need to run manual LiveUpdate then reboot until you have version 5.2.0.13. Then reboot and run manual LiveUpdate again and reboot once more. One thing that I noticed is that Norton never told me that it had updated the patch for Firefox 10, so I didn't know. I guess if you have the toolbar when you run Firefox 10, then you have done it all.

Maybe you are looking for

  • How do I remove my credit card from my iTunes

    I need to know how to remove my credit card from iTunes

  • Acrobat reader mouse and  pointer change by keyboard press

    Hey i need to change mouse and  pointerby keyboard press. When i have "pointer" and press "space" i can't move page... but the mouse shows up. 9.5.0

  • Still waiting for my downloading email

    Hi I bought un upgrade online for creative suite CS6. I received an email that confirms my order and explains that I will receive another one with downloading instructions. But until now I've got nothing and when I tracked my order NO 24523046724 I f

  • Install Problem - Error Writing to file

    I am getting the following error when I try to Install the demo of 3.4.1:   Error 1304. Error writing to file   C:\ProgramData\Adobe\Cameraraw\CameraPRofiles\Camera\Nikon d40X\Nikon D40X Camera D2X Mode 2.dcp.  Verify that you have access to that dir

  • W500 compatible with Windows XP 64bit?

    Hello All. I have installed Windows 64 bit OS on a brand new W500 laptop.  Has anyone attempted this?  If so, can you supply me with the link for the drivers.  I am searching high and low right now for them. thanks in advance B