Custom Focus Manager implementation

Is there an example anywhere that demonstrates creating your
own Focus Manager for a container so that you can control focus
management at the conatiner level?

cat8888,
In general, tab-order is usaually the order you've added to the Panel / JPanel. When Panel is added to Panel and that to Panel and so on, sometimes the order can become less clear. When "trapped" inside a TextArea / JTextArea, the tab key takes on it's own meaning and now it wants to tab inside the TextArea. For this, you'll need special coding. For example, you might try adding code like this:
myTextAreaObject.addKeyListener( new KeyAdapter() {
public void keyPressed(KeyEvent ke) {
if ( ke.getKeyCode() == ke.VK_TAB ) {
myNextButtonObject.requestFocus();
... which effectively forces focus on - in this case - the JButton following the JTextArea.
Not sure if this is what you mean, but HTH. And by the way, if someone has a neater way t odo this, I'd also like to know.
~Bill

Similar Messages

  • How to create a custom focus manager in jdk1.4

    Dear All,
    I'm now trying to create a form for user to submit data. The key tab are easily to tab between textfields in html, you can set whatever order you want. But when I tried to create a form using java, I found very hard to do so. Any reference link and examples are appreciate.
    Thanks in advance
    Kitty

    cat8888,
    In general, tab-order is usaually the order you've added to the Panel / JPanel. When Panel is added to Panel and that to Panel and so on, sometimes the order can become less clear. When "trapped" inside a TextArea / JTextArea, the tab key takes on it's own meaning and now it wants to tab inside the TextArea. For this, you'll need special coding. For example, you might try adding code like this:
    myTextAreaObject.addKeyListener( new KeyAdapter() {
    public void keyPressed(KeyEvent ke) {
    if ( ke.getKeyCode() == ke.VK_TAB ) {
    myNextButtonObject.requestFocus();
    ... which effectively forces focus on - in this case - the JButton following the JTextArea.
    Not sure if this is what you mean, but HTH. And by the way, if someone has a neater way t odo this, I'd also like to know.
    ~Bill

  • How to use a custom Persistence Manager

    I'm experimenting with implementing a custom Persistence Manager for CRX/CQ5. How the underlying implementation works is not important, the issue I'm having seems instead to be related to classloading or OSGi inside CQ5.
    I've implemented a custom Persistence Manager (implements org.apache.jackrabbit.core.persistence.PersistenceManager) and a custom FileSystem (implements org.apache.jackrabbit.core.fs.FileSystem).
    I've verified that both implementations function correctly with plain Apache Jackrabbit (version 2.4.0, the same version used internally by CQ5.5).
    I've packaged my implementation and all its dependencies as an OSGi bundle and installed it to CQ5.5. All dependencies as resolved and the bundle status in the OSGi console is "Active".
    I then followed these instructions for configuring the CQ 5.5 repository to use my PersistenceManager and FileSystem implementations:
    http://dev.day.com/docs/en/cq/current/core/administering/persistence_managers.html#The%20T ar%20Persistence%20Manager
    The configuration seems to be read just fine but I get the following exception when restarting CQ:
    23.04.2012 09:20:23.714 *ERROR* [FelixStartLevel] com.day.crx.sling.server [com.day.crx.sling.server.impl.jmx.ManagedRepository]
    The activate method has thrown an exception (org.apache.jackrabbit.core.config.ConfigurationException:
    Configured class com.example.XXFileSystem does not implement org.apache.jackrabbit.core.fs.FileSystem. Please fix the repository configuration.) org.apache.jackrabbit.core.config.ConfigurationException: Configured class com.example.XXFileSystem does not implement org.apache.jackrabbit.core.fs.FileSystem. Please fix the repository configuration.
        at org.apache.jackrabbit.core.config.BeanConfig.newInstance(BeanConfig.java:179)
        at org.apache.jackrabbit.core.config.RepositoryConfigurationParser$6.getFileSystem(RepositoryConfigurationParser.java:1077)
        at org.apache.jackrabbit.core.config.VersioningConfig.getFileSystem(VersioningConfig.java:94)
        at com.day.crx.core.CRXRepositoryImpl.createVersionManager(CRXRepositoryImpl.java:841)
        at org.apache.jackrabbit.core.RepositoryImpl.<init>(RepositoryImpl.java:305)
        at com.day.crx.core.CRXRepositoryImpl.<init>(CRXRepositoryImpl.java:283)
        at com.day.crx.core.CRXRepositoryImpl.create(CRXRepositoryImpl.java:258)
        at com.day.crx.core.CRXRepositoryImpl.create(CRXRepositoryImpl.java:243)
        at com.day.crx.sling.server.impl.jmx.ManagedRepository.activate(ManagedRepository.java:164)
        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 org.apache.felix.scr.impl.helper.BaseMethod.invokeMethod(BaseMethod.java:227)
        at org.apache.felix.scr.impl.helper.BaseMethod.access$500(BaseMethod.java:38)
        at org.apache.felix.scr.impl.helper.BaseMethod$Resolved.invoke(BaseMethod.java:591)
        at org.apache.felix.scr.impl.helper.BaseMethod.invoke(BaseMethod.java:472)
        at org.apache.felix.scr.impl.helper.ActivateMethod.invoke(ActivateMethod.java:146)
        at org.apache.felix.scr.impl.manager.ImmediateComponentManager.createImplementationObject(ImmediateComponentManager.java:226)
        at org.apache.felix.scr.impl.manager.ImmediateComponentManager.createComponent(ImmediateComponentManager.java:118)
        at org.apache.felix.scr.impl.manager.DelayedComponentManager.createRealComponent(DelayedComponentManager.java:95)
        at org.apache.felix.scr.impl.manager.AbstractComponentManager$Registered.getService(AbstractComponentManager.java:1296)
        at org.apache.felix.scr.impl.manager.DelayedComponentManager.getService(DelayedComponentManager.java:88)
        at org.apache.felix.framework.ServiceRegistrationImpl.getFactoryUnchecked(ServiceRegistrationImpl.java:310)
        at org.apache.felix.framework.ServiceRegistrationImpl.getService(ServiceRegistrationImpl.java:221)
        at org.apache.felix.framework.ServiceRegistry.getService(ServiceRegistry.java:292)
        at org.apache.felix.framework.Felix.getService(Felix.java:3010)
        at org.apache.felix.framework.BundleContextImpl.getService(BundleContextImpl.java:329)
        at org.osgi.util.tracker.ServiceTracker.addingService(ServiceTracker.java:442)
        at org.apache.aries.jmx.whiteboard.Activator$MBeanTracker.addingService(Activator.java:101)
        at org.osgi.util.tracker.ServiceTracker$Tracked.customizerAdding(ServiceTracker.java:896)
        at org.osgi.util.tracker.AbstractTracked.trackAdding(AbstractTracked.java:261)
        at org.osgi.util.tracker.AbstractTracked.track(AbstractTracked.java:233)
        at org.osgi.util.tracker.ServiceTracker$Tracked.serviceChanged(ServiceTracker.java:840)
        at org.apache.felix.framework.util.EventDispatcher.invokeServiceListenerCallback(EventDispatcher.java:871)
        at org.apache.felix.framework.util.EventDispatcher.fireEventImmediately(EventDispatcher.java:733)
        at org.apache.felix.framework.util.EventDispatcher.fireServiceEvent(EventDispatcher.java:662)
        at org.apache.felix.framework.Felix.fireServiceEvent(Felix.java:3765)
        at org.apache.felix.framework.Felix.registerService(Felix.java:2877)
        at org.apache.felix.framework.BundleContextImpl.registerService(BundleContextImpl.java:251)
        at org.apache.felix.scr.impl.manager.AbstractComponentManager.registerService(AbstractComponentManager.java:456)
        at org.apache.felix.scr.impl.manager.AbstractComponentManager.registerComponentService(AbstractComponentManager.java:508)
        at org.apache.felix.scr.impl.manager.AbstractComponentManager$Unsatisfied.activate(AbstractComponentManager.java:1157)
        at org.apache.felix.scr.impl.manager.AbstractComponentManager.activateInternal(AbstractComponentManager.java:334)
        at org.apache.felix.scr.impl.manager.AbstractComponentManager.enable(AbstractComponentManager.java:158)
        at org.apache.felix.scr.impl.config.ImmediateComponentHolder.enableComponents(ImmediateComponentHolder.java:313)
        at org.apache.felix.scr.impl.BundleComponentActivator.loadDescriptor(BundleComponentActivator.java:241)
        at org.apache.felix.scr.impl.BundleComponentActivator.initialize(BundleComponentActivator.java:147)
        at org.apache.felix.scr.impl.BundleComponentActivator.<init>(BundleComponentActivator.java:111)
        at org.apache.felix.scr.impl.Activator.loadComponents(Activator.java:274)
        at org.apache.felix.scr.impl.Activator.bundleChanged(Activator.java:192)
        at org.apache.felix.framework.util.EventDispatcher.invokeBundleListenerCallback(EventDispatcher.java:807)
        at org.apache.felix.framework.util.EventDispatcher.fireEventImmediately(EventDispatcher.java:729)
        at org.apache.felix.framework.util.EventDispatcher.fireBundleEvent(EventDispatcher.java:610)
        at org.apache.felix.framework.Felix.fireBundleEvent(Felix.java:3754)
        at org.apache.felix.framework.Felix.startBundle(Felix.java:1780)
        at org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1156)
        at org.apache.felix.framework.StartLevelImpl.run(StartLevelImpl.java:266)
        at java.lang.Thread.run(Thread.java:662)
    Anyone have any idea how to get past this?
    My FileSystem class most certainly does implement org.apache.jackrabbit.core.fs.FileSystem, as verified by that it works just fine with Jackrabbit.
    I've also made sure that I use the exact same jackrabbit-core jar file in my bundle that is included in the com.day.crx.sling.server bundle.

    I would do that, but none of the bundles in CQ5.5 export the jackrabbit-core interfaces, so I get an unsatisfied dependency (or whatever the OSGi term is) then.
    So that's why I tried including it in my bundle as well.
    The only place that I can see jackrabbit-core in the provided bundles is loaded internally in the Bundle Classpath of the com.day.crx.sling.server bundle.
    Should I try modifying that manifest so that it gets exported?

  • SAP Strategy Management implementation :BOOK

    Dear Gurus,
    I have searched SAP Press and Amazon but didn't find a suitable book for SAP Strategy management implementation.
    Could you please mentioned a cook book or ISBN number or any help is appericiatble.
    I am looking for Business as well as technical detail.
    Thanks & Regards
    Arif.

    Qureshi,
    As previously mentioned, there isn't any books about Strategy Management implementation. There are three areas that seem to get the most attention, but as SSM is changing in features, functionality and connectivity, it's moving faster than anything that could be published. The best documentation on implementation of SSM is the guides available on the Service Marketplace. These are regularly updated, so you always have access to the latest information.
    1) PAS - You build your multi-dimensional models in PAS. PAS has some amazing flexibility, especially how it handles time. Understanding how to use PAS seems to be a big challenge - as you can tell by the many questions on the Forum regarding models. There is no published book on PAS that I know of and even the PAS training in the SAP Education class is aimed as an overview. My suggestion here is at the very least try to take a SAP Education class on SSM that includes PAS training.
    2) Connectivity with SAP BW - Because of some fundamental differences between how PAS and BW deal with data, there is a tool - called the BICA - that SSM uses to harmonize BW and SSM data. There is a paper available on the EPM BPX on best practices with BICA.
    3) Wrangling KPIs - Strategy Management is about focusing on the essential areas of a business. Since this is YOUR business, your strategic objectives will be necessarily different - how else can you differentiate your products or services if you are doing everything the same as your competitors? This is not a situation of seeming how many more measures you can include, it's is trying to focus on doing those things that really are going to be game-changers for your organization.
    This business side aspect of Strategy Management is actually the area that will show the most success - and ROI - in the organization, although the typical focus is on the technical aspects of the application. Strategy Management continues to change the application to help address the different ways that people construct their organizational strategy and how they communicate it as well as monitor it. Do not underestimate the importance of the business side of this application.
    All three of these areas really strongly recommend Consulting Services. There are both SAP and 3rd Party consultants available for these areas. Why should you spend the money on a consultant?
    A) You will get implemented and running more quickly - less delays, less problems, more success. I have witnessed several projects where the organization wanted to DIY and faltered because there was no expertise on the team. Projects these days HAVE to be successful -right out of the gate - so get experienced help.
    B) Knowledge Transfer - There aren't any books and your boss isn't going to pay for a 5 day offsite training course. Bring in a consultant and work with them to learn what they do, how they do it, so you can become self-sufficient. It's much easier to build a consultant into a project budget than training. Although training is essential, I just never understand why executives neglect this important area.
    C) Personalized Help - The needs you have for your implementation and successful operation are going to be unique because it's going to revolve around your current technical architectural, your company's practices, as well as the structure of your organization. Having a consultant allows you to better use your time and the project's time by focusing on the needed areas and getting through the typical bumps that always accompany a new program's rollout.
    I am NOT a consultant, so I have no alterior motives. I DO want organizations to be successful with SSM implementations and from what I have witnessed the difference between success and merely muddling through is how willing the organization is to bring in either a SAP consultant or work with a knowledgable 3rd party consultant.

  • Access to IPortalComponentRequest in custom security manager

    Hi All,
    I am implementing a custom security manager. For my requirements, I need IPortalComponentRequest object in the security manager class. Can anyone give me a clue to get the request object in security manager implementation.
    Regards,
    Yoga

    Hi Romano,
    I tried this. Its returning mysapsso2 cookie and authentication_schema cookie. But not retuning any custom cookies added to the response from any other application.
    What I have tried to achieve is:
    1. When a user login and authentication suceeds, I will add a custom cookie to the response.
    2. Get the custom cookie added in the security manager class and do manipulations to check whether the user is authenticated.
    Using the method you have suggested, I was not able to get any custom cookies added in other applications.
    I tried the code using resource context(resource context obtained form IUser) as suggested in other threads,
    HttpServletRequest request = (HttpServletRequest) resourceContext.getObjectValue("http://sapportals.com/xmlns/cm/httpservletrequest");
    But this API returns null.
    Any way to achieve?
    Regards
    Yoga

  • Cannot assign custom security manager to repository

    Hello,
    I've been following the details on how to implement a read-only security manager (https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e2ddd63d-0b01-0010-46bb-e092790068cb) and I have run into the following problem:
    After following the instructions for option B in the document (creating a security manager only) and  deploying my project, the new security manager appears in the list of managers on the admin screen (Content Management -> Repository Managers -> Security Manager) but it is not available in the drop down list of security managers for my repository. Without that entry I cannot apply the new security manager to my repository.
    According to the document, the new security manager should be part of this list but it is not even after I've restarted the J2EE engine.
    The document is dated May 2006 so perhaps there have been some changes to the system that are not covered in the document. We are running NW 7.0 SP14.
    Any help in determining why my custom security manager is not part of the security manager drop down list would be appreciated.

    Ok, after much decompiling and inspection of the standard KM security manager implementations I found the answer to my question.
    Basically I found that the security manager tutorial only applies if you plan on using your custom security manager with your own custom repository manager. You cannot apply a security manager created using that document to a standard KM repository manager.
    In my case I want to apply a custom security manager to a standard KM File System Repository. By inspecting the SFSRepositoryManager.cc.xml file I found the following entry:
    <attribute name="securitymgr.ref" type="ref" refType="/cm/repository_managers/security_managers/SecurityManager" mandatory="false" hotReload="true" />
    The refType value defines which security managers are displayed in the drop down list of available Security Managers at runtime for the repository manager. In order to get a custom security manager to be available you must define the cc.xml for your custom security manager so that it extends "SecurityManager" not "SecurityManagerMi" as the tutorial describes.
    Changing the extension means your security manager implementation must also change so that it extends com.sapportals.wcm.repository.manager.AbstractRepositorySubManager and implements com.sapportals.wcm.repository.manager.ISecurityManager.
    Now if only I could figure out how to reward points to myself .....

  • Setting up Custom Development Management Cockpit (CDMC)

    Hi Gurus,
    Custom Development Management Cockpit (CDMC) available from Solution Manager 7.0 EHP1 SP19 as part of SAP Enterprise Support tools to allow to manage customer changes to support EhP/SPS/ Upgrade projects by determining what custom changes will be impacted by SAP changes.
    Question is How to setup Custom Development Management Cockpit (CDMC)? Please help me if anybody already implemented this and any docs will be helpful.
    Appreciate your help.
    Sincerely yours
    Saru

    Hi
    Follow the links,
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/d3/4b21cf15464589b84bc63f0da54530/frameset.htm
    https://websmp210.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700000308632009E
    https://websmp210.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700002008602008E
    https://websmp210.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700002008602008E
    Hope it solves ur prb
    Regards
    Prakhar

  • Custom Security Manager or Security Event Interception from WebLogic Console

    Hello,
    I have built my own Security Manager and implemented custom preference/property mechanism for every Principal, so when I use my Swing client to create new User and new Group, as well as addMember to a Group, I know what to do with those properies/preferences.
    Now, I want to use WebLogic Console to manage users and groups. I want to intercept events in my Security Manager about new User or Group creation or changing their memberships as Principals in order to handle their Preference/properties stuff myself...
    I wonder what should I "listen" in order to understand that someone has changed membership of Users or Groups or about creation of new User or Group?
    I use Weblogic Server 6.0 sp2
    serge

    Hi Daniel,
    > a custom security manager for the standard CM Repository
    And this dictates you indeed to use the old API, as the CMRepositoryManager itself is using the old API.
    The standard AclSecurityManager is implemented by com.sapportals.wcm.repository.manager.generic.security.AclSecurityManager. If you check out Configuration - Content Management - Repository Managers - Security Manager, you will see "ACL Security Manager" (the one from above) and "ACL Security Manager (for new Manager-API)". This is implementing / using the new API, but needs also a RM using the new API.
    > java.lang.NoSuchMethodException: MySecurityManager.<init>
    This exception only complains about a missing constructor!? Have you implemented a default constructor?!
    > If this is the case, where can I find the API for IUMPrincipal? It is not included in any provided API because of deprecation.
    The methods of the old EP5 user management are more or less similar to the new UME, so using the old deprecated API should be more or less straight forward.
    There are also transformer methods for example to transform a "new" user object to an old EP5 one, see https://forums.sdn.sap.com/thread.jspa?threadID=235656&tstart=0
    Hope it helps
    Detlev

  • Funds Management Implementation -Middle of FY

    Hi friends,
    Im doing implementation of funds management implementation in 4.7 in middle of the fiscal year.
    I wanted to know if we implement FM in middle of the year what are the implications because as suggested by SAP ...its not recommended to implement FM in middle of the yr.
    How to treate the existing data in the system?In both the cases like if client want old data or not to use.
    I came to know some data conversion is required to be done but im new to Funds management so wanted to know that tequnique also.
    Please help.
    Thanks
    Deepa

    Hi Deepa,
    You can implement the funds management in the middle of the year, but many suggets that, if it implemented at the beginning year there is problem.
    Still you can implement as said by Eli.
    1. You need to activate the "public services"
    2. Make the required customizing settings like FM area, budget structure, tolerence profile and actual data settings
    3. Run the programs to convert the old data into funds management by using the programs FMCN and FMCH
    4. First it will take the PRs then POs and then accounting documents
    5. Then check the report for budget consumption and account assignment elements
    Finally I can say that, if you take some risk it is possible in the mid year and you will get very good knowledge once this process is completed successfully
    Raka

  • Training and Event Management Implementation based on competencies

    Dear Friends,
    My client is going ahead for Training and Event Managment Implementation. They have a basic requirement to start with and that is :
    1) They have done competency mapping for all its employees and they want that the competencies of each employees(along with the skill levels) to be recorded in the system and that has to be the starting point of using Training and Event Management module.
    2) They want, if the competencies can flow based on Job/ Position.
    3) Some identifier to the competencies, whther it has flowed from Appraisal or any other sources in the Final Training Needs.
    Kindly provide me help, as to how I will be able to achieve that and in what Infotypes the data pertaining to Training and Event Managment will be stored.
    If u all can kindly share with me the User Manuals and Configuration Docs of Training and Event Management, it will be of great help.
    Thank you all.

    Hi,
    Competencies can be stored as qualifications in PD and then by activation of PD PA intergration can be seen from pa30 infotype 24.
    Qualifications can be stored against a Job/Position and are called as the Requirements. They are seen as a separate Tab and to which ever position the person is linked to the corresponding qualifications of the position will appear in the requirements tab.
    You can maintain the proficiency and a note along with the qualification when assigned to a person.
    Also Appraisals can have qualifications in the template rather than criteria and criteria groups.
    Also after training is completed during the follow up we can create an appraisal and transfer the qualifications or simply transfer the qualifications to the employee.
    Regards,
    Divya

  • AR Report Requirement - Customer Credit Management - 0FI_AR_9

    HI There,
    We have a requirement in AR report to add the below fields from Customer Credit Management Datasource 0FI_AR_9
    KNKLI - Credit Control Account- 0CRED_ACCNT     
    KLIMK - Credit Limit - 0CRED_LIMIT
    CTLPC - Risk Category     -  0RISK_CATEG     
    Except KNKLI (Credit control account), remaining two fields are master data.
    Can we use the data from 0FI_AR_9 by writing look up? Please suggest.
    Thanks
    Vandana

    Hi,vandana_ir
    i don't know what's your requirement else,if you wanna add those fields to the report
    those below solution may be can help you
    1.data loading into InfoObject etc.0customer
    2.using virutal key figure tech to read customer value from infoObject.

  • Session broker and custom conversion manager

    I'm having some problem using session broker and a custom conversion manager. I just moved from using single session to using a session broker in the sessions.xml. I'm using a custom conversion manager as shown in this tech. tips URL
    http://www.oracle.com/technology/products/ias/toplink/technical/tips/customconversion/index.html
    Here's my conversion manager set up code -
    public class JpmiConversionManagerSetup extends SessionEventAdapter
    * During the pre-login event the new MyConversionManager must be installed
    * @see oracle.toplink.sessions.SessionEventAdapter#preLogin
    * @param event
    public void preLogin(SessionEvent event) {
    ConversionManager cm= new JpmiConversionManager();
    ConversionManager.setDefaultManager(cm);
    event.getSession().getLogin().getPlatform().setConversionManager(cm);
    My session broker manages 2 sessions. In sessions.xml for one session I have the <event-listener-class> entry where I need some conversion, another session I don't have any such entry as I don't need any conversion.
    Now when I try to run a named query using session broker the conversion part blows up, throws a ConversionException. Any idea? Do I need to configure the session broker instead of session in the preLogin or anything like that?

    I think sessions editor is not available in 10.1.3dp4 yet. So I have to write the sessions.xml by hand. But the parser throwing me an error saying that <session-broker> is not allowed in sessions.xml.
    SessionLoaderExceptions:
    org.xml.sax.SAXParseException: <Line 41, Column 18>: XML-24534: (Error) Element 'session-broker' not expected.
         at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:415)
         at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:284)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:302)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:199)
         at oracle.xml.jaxp.JXDocumentBuilder.parse(JXDocumentBuilder.java:155)
         at oracle.xml.jaxp.JXDocumentBuilder.parse(JXDocumentBuilder.java:111)
         at oracle.toplink.platform.xml.xdk.XDKParser.parse(XDKParser.java:160)
         at oracle.toplink.platform.xml.xdk.XDKParser.parse(XDKParser.java:190)
         at oracle.toplink.tools.sessionconfiguration.XMLSessionConfigLoader.loadDocument(XMLSessionConfigLoader.java:191)
         at oracle.toplink.tools.sessionconfiguration.XMLSessionConfigLoader.loadDocument(XMLSessionConfigLoader.java:151)
         at oracle.toplink.tools.sessionconfiguration.XMLSessionConfigLoader.load(XMLSessionConfigLoader.java:88)
         at oracle.toplink.tools.sessionmanagement.SessionManager.getSession(SessionManager.java:364)
         at oracle.toplink.tools.sessionmanagement.SessionManager.getSession(SessionManager.java:331)
         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:324)
    Any idea how to or where to write sessions broker in sessions.xml for 10.1.3dp4???

  • I can no longer edit my custom content management system using Firefox

    Hello,
    I work for the University of North Carolina. We have a very old custom content management system that is built in Oracle (UCM). When logged in, it has little edit buttons that allow you to click on items and launch edit windows. I don't know what's behind that -- it's not Java. I'm thinking javascript? All I know is that since the Firefox upgrade to 13.0.1, the edit buttons no longer display, and the sites are not editable.
    So far, the only way we've been able to allow people to edit their sites is by forcing them to use IE9 in compatibility mode. All other browsers fail for various reasons. Firefox is our workhorse browser, but we're desperate to have Firefox back.
    I understand we also have some problems with our Remedy application -- not sure what's happening, but it's also no longer functional in Firefox. I'm wondering if there is a patch in the works that will address these issues?
    BTW, it sounds a lot like this issue here: http://support.mozilla.org/en-US/questions/930042

    Drat... So, we tried taking out the javascript entirely. No real change, except lightbox actions would not function. Then, we tried referencing a different javascript version. No difference, except that lightboxes and Carousels still would not function.
    To see if the $ error was universal across all of our sites, I logged into four or five other UCM sites. None of them threw the $ error, only the Art site. What's interesting is that for all sites, you can see editable areas if you look for them (e.g. mouse randomly around the areas where there used to be buttons to click on), but the icons continue to not show up.
    The warnings coming from the console seem fairly benign, and it's only the Art site that throws a definite error. The only thing that seems consistent across all sites is the warning: "server does not support RFC 5746, see CVE-2009-3555".
    Any other thoughts? I'm not sure a guest logon would help, but I can certainly pursue that line of action if you'd like to dig a little deeper.
    Thanks in advance,
    - Veda

  • Document Types for Case Management Implementation

    Hii,
    Can any one provide what document types should be used for Case Management Implementation. If possible please describe what is a queue and how it relates to provider group. What is Scripting and how it relates to solution advisor.
    Thanks in Advance.
    Best Regards!
    Deepak P

    i got it..for case management..document types will be CAL CL, E-Mail EM, FAX FX, Mail ML. you can create more as per your business needs...

  • How do I automate a custom component not implementing UIComponent?

    I have tried using Adobe's instructions for automating custom components by creating a delegate class to use as a mixin, but
    1)  the super() statement in the delegate of the constructor is not recognized by the compiler,
    2) I am not able to use a DisplayObject as an argument to init(),
    3) I am not able to return the custom component as a IAutomationObject from the parent component's getAutomationChildAt method.
    Is it simply not possible to automate a custom component not implementing UIComponent?

    If you look in the library panel, there should be an entry for your custom component - probably something like CustomComponent1.mxml. Drag this out onto the artboard to create a new instance of the component.
    In the case of a custom component, you can't change much on the second instance. If you have something like a text input skin though, you can change the text it is displaying for each instance.
    We are working on making this sort of thing easier in the future, so stay tuned

Maybe you are looking for

  • Itunes wont open/ immediate "send error report message"

    So I had a problem with me trying to install itunes 7.3 because of a missing itunes.msi. I followed the instructions i found from this forum as follows "1. Go to http://www.ccleaner.com/ and download and install CCleaner. Run this program and click R

  • MyFaces not rendering, ADF faces IS rendering

    I'm installing my app on the websphere application server, Version 6.1 After having issues of both adf and myfaces not working, I came accross this link which helped me somewhat. http://wiki.apache.org/myfaces/Websphere_Installation . By "not working

  • Photoshop 13 wont install off disc.  Can I download it and still use the serial number off the box?

    Tried everything to install Photoshop Elements 13.  Sits at 11%.  There is a C++ issue even though there is no issue!!  My question is can I download it from Adobe and use the serial number off the box?

  • RAM for K9N4 SLI (MS-7325)

    I already had two gigs (1x2) of RAM installed on my computer.  So today, I went out and bought two more gigs (1x2) of Corsair DDR2 PC6400 (800MHz) RAM.  I had to have one of the people at Tiger Direct help me decide which to buy (I didn't know exactl

  • Was told not to report off transaction planning cubes

    Hello there, we recently implemented Hyperion Planning and have 3 Essbase cubes: Planning, Capex, and workforce. We want to hook OBIEE up to the cubes for reporting. We have been told it is not best practice to report off the same cubes we're transac