Integration with Resource Managers such as Solaris Resource Manager

Hi,
are there any plans in the Diablo release of WLS and/or any other release for integrating WLS with Solaris Resource Managers and/or any other vendor resource managers ?
Where can I find more details ?
thanks

Abhishe,
Cisco has a repository of tested integrations using Cisco Unified Border Element to bridge different PBX systems as well as integrate with SIP PSTN providers.  Avaya, Nortel, Siemens are all in there.
Raw URL:
http://www.cisco.com/en/US/solutions/ns340/ns414/ns728/networking_solutions_products_genericcontent0900aecd805bd13d.html
-Steven

Similar Messages

  • How Transaction Manager work with Resource Manager, like Connection pool?

    hi,
    I'm using BEA Webloigc8.1 Stateless Session Bean/DAO/Oracle stored proc.
    but I'm not quite clear how Transaction Manager work with Resource Manager, like Connection pool.
    my understanding is that, in a weblogic transaction, a stateless session bean interact with several DAOs, and for each method of DAO a connection is acquired from connection pool. I've heard that the connection will not return to pool until the transaction commits.
    My question is that, does it mean that for a weblogic transaction, multiple connections might be allocated to it? and if multiple connections are allocated, then how many oracle transactions would be started? or multiple connections share the same oracle transaction?
    I didn't feel it make sense to start multiple oracle transactions, cause deadlock might be incurred in a single weblogic transaction.
    any help appreciated!

    Xin Zhuang wrote:
    hi,
    I'm using BEA Webloigc8.1 Stateless Session Bean/DAO/Oracle stored proc.
    but I'm not quite clear how Transaction Manager work with Resource Manager, like Connection pool.
    my understanding is that, in a weblogic transaction, a stateless session bean interact with several DAOs, and for each method of DAO a connection is acquired from connection pool. I've heard that the connection will not return to pool until the transaction commits.
    My question is that, does it mean that for a weblogic transaction, multiple connections might be allocated to it? and if multiple connections are allocated, then how many oracle transactions would be started? or multiple connections share the same oracle transaction?
    I didn't feel it make sense to start multiple oracle transactions, cause deadlock might be incurred in a single weblogic transaction.
    any help appreciated!Hi. If you configure your WLS DataSource to use keep a connection for
    the duration of a tx, it will do that, and in any case there can be
    no deadlock however many connections operate for a given XA transaction.
    Here is the best coding form for DAOs or any other user-written code
    for using WebLogic DataSources. This is important for two reasons:
    1 - Thread-safety is maintained as long as the connection is a
    method-level object.
    2 - It is crucial to notify WebLogic that you are done with a connection
    ASAP, by your calling close() on it. We will then put it back in the
    pool, or keep it under the covers for your next request if it's in a
    transaction etc. The pool is optimized for quick get-use-close scenarios.
    public void one_of_my_main_JDBC_Methods()
    Connection con=null; // Must be a method level object for thread-safety
    // It will be closed by the end of the method.
    try {
    con = myDataSource.getConnection(); // Get the connection in the try
    // block, directly from the WebLogic
    // datasource
    // do all the JDBC within this try block. You can pass the
    // connection to subordinate methods, but not to anywhere
    // that thinks it can use the connection later.
    rs.close(); // close any result set asap
    stmt.close(); // then close any statement asap
    // When you're done with JDBC
    con.close(); // close the connection asap
    con = null; // nullify it so the finally knows it's done
    catch (Exception e) {
    // do whatever catch stuff you want. You don't
    // need a catch block if you don't want one...
    finally {
    // It is important to close a JDBC connection ASAP when it's not needed.
    // without fail, and regardless of exit path. Do everything in your
    // finally block in it's own try-catch-ignore so everything is done.
    try { if (con != null) con.close();} catch (Exception ignore){}
    return ret;
    }

  • How to reduce priority of processes with resources management

    Hi,
    Here is what I want to do. In my global zone, I have Veritas Cluster Server and Oracle that are running. I want to reduce the priority of every Oracle process to be sure that VCS will go first. I have an entry in the /etc/project file for Oracle processes:
    group.dba:100:Oracle default:::process.max-sem-nsems=(privileged,256,deny);project.max-shm-memory=(privileged,68719476736,deny)
    Now, how do I reduce the priority of the Oracle processes?

    Hi,
    Here is what I want to do. In my global zone, I have Veritas Cluster Server and Oracle that are running. I want to reduce the priority of every Oracle process to be sure that VCS will go first. I have an entry in the /etc/project file for Oracle processes:
    group.dba:100:Oracle default:::process.max-sem-nsems=(privileged,256,deny);project.max-shm-memory=(privileged,68719476736,deny)
    Now, how do I reduce the priority of the Oracle processes?

  • Telephony Integration with WD4A

    Hi experts,
      I am currently investigating the feasability of re-writing and updating our 3rd party direct order entry system using Web Dynpro for Abap.  One of the features of our current system written in visual basic is the telephone integration, ie incoming call details pop up on screen, interrupting the program and starting a new process.
      I have been investigating how to achieve this through the events framework of WD4A applications.  Ideally I would like to subscribe to an 'incoming call' event which will trigger upon recieving a call.  Whilst looking through sdn and help pages I have found a lot of information on ICI, ANI and such but nothing yet on how I might actually implement a system described above.
    Has anyone attempted such a scenario within WD4A or can suggest how such a result might be achieved?

    There are a number of ISV solutions available for CTI integration with Dynamics CRM, such as
    mscrm-addons and c360. Beyond those, there are a number of VoIP providers that offer a Dynamics CRM CTI integration, such as
    Cisco, Genesys, and Avaya. Finally, Microsoft has released their own Customer Care Accelerator:
    http://dynamics-crm.pinpoint.microsoft.com/en-US/applications/customer-care-accelerator-for-microsoft-dynamics-crm-2011-12884914795
    --Dodd

  • CCME integration with Microsoft Business Contact Manager

    Hi,
    Can anyone tell me, if a CCME can be integrated with Microsoft BCM such that when a call comes in details of the client pop up, should they exist in the Business Contact Manager.
    Finding exact information is like find a needle in a hay stack.
    Regards
    LN

    Hi Swinster,
    Apologize for the late reply.
    What is your current situation? As JS2010 stated, also in this KB article:
    http://support.microsoft.com/kb/2101557
    During the 'Specialize phase' of Sysprep, Sysprep.exe looks at the Last Modified Date of the ntuser.dat file for each user profile to determine which user profile to copy to the default user profile. However, the earlier cleanup functions of sysprep.exe
    loads each Ntuser.dat file to make security ID (SID)generalizations. You cannot predetermine which user profile will be copied if more than one user profile exists.
    How about we skip the copyprofile option?
    Further, see if the following article would help to customise the user profiles settings:
    Configuring Default User Settings – Full Update for Windows 7 and Windows Server 2008 R2
    http://blogs.technet.com/b/deploymentguys/archive/2009/10/29/configuring-default-user-settings-full-update-for-windows-7-and-windows-server-2008-r2.aspx
    Or we may consider seek help at the office outlook forum for the BCM deployment.
    Best regards
    Michael Shao
    TechNet Community Support

  • Service desk integration with 3rd party tool

    Hi all,
    I've problems understanding the setup of connecting a 3rd party service desk tool with solman itsm.
    So far it's clear that I need to activate and configure the service provider and consumer in soamanager.
    The webservice then will be called by the 3rd party tool with corresponding data.
    However, according to spro I need to define a value mapping for incoming/outgoing calls.
    I do not understand this mapping... the WSDL of webservice ICT_SERVICE_DESK_API contains lots of fields, but in spro -> value mapping I can only define the following fields (which are hard coded in type pool AIICT):
    SAPCategory
    SAPComponent
    SAPDatabase
    SAPFrontend
    SAPIncidentID
    SAPIncidentStatus
    SAPInstNo
    SAPOperatingSystem
    SAPSoftwareComponent
    SAPSoftwareComponentPatch
    SAPSoftwareComponentRelease
    SAPSubject
    SAPSystemClient
    SAPSystemID
    SAPSystemType
    SAPUserStatus
    What about attachments, priority etc.?
    Will the interface parameters mapped to these ones?
    For what purpose do I need to maintain the value mapping?
    Can you give me a hint?
    Regards, Richard Pietsch

    can you please check the WIKI Solution manager Service Desk Integration with third party service desk - SAP Solution Manager - Security and Authorizat…

  • Staffing of Project Roles with Resources

    Hi PPM Gurus,
    We have some gaps when designing workflow email to Resource Line manager in cProject (Project Management) in PPM. We working on scenario where,-
    1.       1. Project Manager (PM) knows only roles required for project, but not resources
    2.       2. Important Question: How PM will inform by SAP workflow to Resource Manager (RM) or Line Manager (LM) to update resource in cProject.
    3.       3. Then we can use standard SAP workflow process as mentioned in 1013736 – cProject soft booking and hard booking approval workflow which is,
    1) The process of approval of a Soft Booking of a Resource to a Project Role and the subsequent conversion of the booking from 'Soft Booked' to 'Hard Booked' is controlled by means of a workflow.
    2) This workflow will be triggered when a Resource is assigned to a Project Role or an old booking is changed and the booking type of a resource is marked as 'Soft Booked' by a Resource Manager. A Resource can be soft booked by checking the 'Res.' checkbox within the staffing table against the resource which is being booked to a role.
    3) The Line Manager of the resource which was soft booked will receive a mail containing a link to his SAP Business Workplace from where he/she can approve/reject the booking.
    4) In the SAP Business Workplace of the Line Manager a work item would be present which will have the booking details, 'Approve Booking' and 'Reject Booking' buttons which shall be used to make the respective decisions.
    5) If the booking is approved then the workflow will try to automatically convert this booking from 'Soft Booked' to 'Hard Booked' in the background. If it succeeds then the process will move forward; if not (say, because of reasons like Project/role being locked) then the Line Manager will get another mail informing him/her about the failure and would have to re-execute the booking through a new work item. Once the booking type is successfully converted from 'Soft Booked' to 'Hard Booked' then the Resource Manager(s), Project Manager(s) and the Resource himself/herself will receive a mail notifying the confirmation of the booking.
    6) If the booking is rejected then the booking type will remain unchanged ('Soft Booked') and the Resource Manager(s), Project Manager(s) will receive a mail notifying the rejection of the booking.
    Bottom of Form
    Regards, Diana

    Hi Diana,
    Your questions can be answered through staffing type 'Resource manager via responsible organisation' known as extended staffing process in PPM-Project management.
    There are many staffing types
    1) Project lead
    2) Resource manager via authorisation
    3) Resource manager via responsible organisation (Extended staffing process)
    4) Multi-Resource Scheduling (MRS) (If MRS is integrated).
    Except the first one, all other staffing type involves resource managers to staff the project roles and these staffing types are cross-project view for resource managers. The first one is project-centric and it is always staffed by the project lead/Project manager.
    Resource manager via authorisation: Here the staffing is carried out based on the authorisation the resource manager has for specific resource pools with staffing/candidate manager authorisation to a single/multiple projects.
    Resource manager via responsible organisation: In this process, the responsible staffing/candidate manager is identified through the HR organisation unit assigned by the project manager to a project role. This extended staffing process has 3 steps–
    1)     Staffing in preparation (Where the project manager select the suitable department/functions(org. unit) for staffing the resource manager)
    2)     Staffing in process ( The responsible staffing manager of the org. unit staff resources from his org. unit)
    3)     Staffing closed (The project manager closes the staffing process).
    MRS staffing is also similar to the above with its own extra features.
    Considering this, I feel that ‘Extended staffing process’ is more suitable for your scenario.
    Regards,
    Ravi

  • Resource Management and Solaris Zones Developer Guide

    Solaris Information Products ("Pubs") is creating a
    developer guide for resource management and Solaris Zones.
    The department is seeking input on content from application
    developers and ISVs.
    We plan to discuss the different categories of applications
    that can take advantage of Solaris resource management
    features, and provide implementation examples that discuss
    the particular RM features that can be used.
    Although running in a zone poses no differences to most
    applications, we will describe any possible limitations and
    offer appropriate workarounds. We will also provide
    information needed by the ISV, such as determining
    the appropriate system calls to use in a non-global zone.
    We plan to use case studies to document the zones material.
    We would like to know the sorts of topics that you would
    like to see covered. We want to be sure that we address
    your specific development concerns with regard to these
    features.
    Thank you for your comments and suggestions.

    Hi there, i'm using solaris resource management in a
    server with more thant 2thousand acounts.
    Created profiles for users, defaul, staff, root and
    services.Seeing the contents of your /etc/project file could be helpful.
    But while using rctladm to enable syslog'ing, I set up
    global flags of "deny" and "no-local-action" in almos
    everything.The flags on the right hand side of the rctladm(1M) output are read-only:
    they are telling you the characteristics of the resource control in question (what
    operations the system will allow the resource control to take).
    Now, many aplications don't work because they are
    denied enough process.max-stack-size and
    process.max-file-descriptor for them to work.
    Applications such has prstat.If prstat(1) is failing due to the process.max-file-descriptor control value, that's
    probably a bug. prstat(1) is more likely bumping into the limit to assess how many file
    descriptors are available, and then carrying on--you're just seeing a log message since
    prstat(1) tested the file descriptor limit, and you've enabled syslog for that control. Please
    post the prstat(1) output, and we'll figure out if something's breaking.
    I don't find a way to disable the global flags. You can't. I would disable the syslog action on the process.max-stack-size control first;
    there is an outstanding bug on this control, in that it will report a false triggering event--
    no actual effect to the process. (If you send me some mail, I will add you as a call record
    on the bug.)
    Can anyone tell me:
    how to disable global flags?
    how to disable and enable solaris resource management
    all together?You could raise all of the control values, but the resource control facility (like the resource
    limit facility it superseded) is always active. Let's figure out if you're hitting the bug I mentioned,
    and then figure out how to proceed.
    - Stephen
    Stephen Hahn, PhD Solaris Kernel Development, Sun Microsystems
    [email protected]

  • Solaris Resource Management.

    Hi there, i'm using solaris resource management in a server with more thant 2thousand acounts.
    Created profiles for users, defaul, staff, root and services.
    But while using rctladm to enable syslog'ing, I set up global flags of "deny" and "no-local-action" in almos everything.
    Now, many aplications don't work because they are denied enough process.max-stack-size and process.max-file-descriptor for them to work.
    Aplications such has prstat.
    I have warnings like this all over dmesg:
    Sep 21 16:01:13 thor genunix: [ID 883052 kern.notice] basic rctl process.max-file-descriptor (value 256) exceeded by process 15080
    Sep 21 16:01:13 thor genunix: [ID 883052 kern.notice] basic rctl process.max-stack-size (value 8388608) exceeded by process 15081
    Sep 21 16:01:13 thor genunix: [ID 883052 kern.notice] basic rctl process.max-file-descriptor (value 256) exceeded by process 15081
    Sep 21 16:01:13 thor genunix: [ID 883052 kern.notice] basic rctl process.max-stack-size (value 8388608) exceeded by process 15082
    Sep 21 16:01:13 thor genunix: [ID 883052 kern.notice] basic rctl process.max-stack-size (value 8388608) exceeded by process 15083
    Sep 21 16:01:13 thor genunix: [ID 883052 kern.notice] basic rctl process.max-file-descriptor (value 256) exceeded by process 15083
    Sep 21 16:01:14 thor genunix: [ID 883052 kern.notice] basic rctl process.max-stack-size (value 8388608) exceeded by process 15084
    Sep 21 16:01:14 thor genunix: [ID 883052 kern.notice] basic rctl process.max-file-descriptor (value 256) exceeded by process 15084
    Sep 21 16:01:17 thor genunix: [ID 883052 kern.notice] basic rctl process.max-stack-size (value 8388608) exceeded by process 15085
    Sep 21 16:01:17 thor genunix: [ID 883052 kern.notice] basic rctl process.max-stack-size (value 8388608) exceeded by process 15088
    Sep 21 16:01:17 thor genunix: [ID 883052 kern.notice] basic rctl process.max-stack-size (value 8388608) exceeded by process 15089
    Sep 21 16:01:17 thor genunix: [ID 883052 kern.notice] basic rctl process.max-stack-size (value 8388608) exceeded by process 15090
    Sep 21 16:01:17 thor genunix: [ID 883052 kern.notice] basic rctl process.max-stack-size (value 8388608) exceeded by process 15091
    Sep 21 16:01:24 thor genunix: [ID 883052 kern.notice] basic rctl process.max-stack-size (value 8388608) exceeded by process 15092
    Sep 21 16:01:24 thor genunix: [ID 883052 kern.notice] basic rctl process.max-file-descriptor (value 256) exceeded by process 15092
    I don't find a way to disable the global flags.
    Can anyone tell me:
    how to disable global flags?
    how to disable and enable solaris resource management all together?

    Hi there, i'm using solaris resource management in a
    server with more thant 2thousand acounts.
    Created profiles for users, defaul, staff, root and
    services.Seeing the contents of your /etc/project file could be helpful.
    But while using rctladm to enable syslog'ing, I set up
    global flags of "deny" and "no-local-action" in almos
    everything.The flags on the right hand side of the rctladm(1M) output are read-only:
    they are telling you the characteristics of the resource control in question (what
    operations the system will allow the resource control to take).
    Now, many aplications don't work because they are
    denied enough process.max-stack-size and
    process.max-file-descriptor for them to work.
    Applications such has prstat.If prstat(1) is failing due to the process.max-file-descriptor control value, that's
    probably a bug. prstat(1) is more likely bumping into the limit to assess how many file
    descriptors are available, and then carrying on--you're just seeing a log message since
    prstat(1) tested the file descriptor limit, and you've enabled syslog for that control. Please
    post the prstat(1) output, and we'll figure out if something's breaking.
    I don't find a way to disable the global flags. You can't. I would disable the syslog action on the process.max-stack-size control first;
    there is an outstanding bug on this control, in that it will report a false triggering event--
    no actual effect to the process. (If you send me some mail, I will add you as a call record
    on the bug.)
    Can anyone tell me:
    how to disable global flags?
    how to disable and enable solaris resource management
    all together?You could raise all of the control values, but the resource control facility (like the resource
    limit facility it superseded) is always active. Let's figure out if you're hitting the bug I mentioned,
    and then figure out how to proceed.
    - Stephen
    Stephen Hahn, PhD Solaris Kernel Development, Sun Microsystems
    [email protected]

  • Calling Glassfish jdbc Datasorce in EJB 3.0 with @Resource annotation.

    I tried EJB 3.0 with netbeans and glassfish and "{color:#ff0000}+_ORACLE_+{color}". I wanted to link the oracle database to GLASSFISH server and I followed the instructions.After I clicked 'ping' button, it displayed as *{color:#339966}'PING SUCCEED".{color}*
    But I couldn't call my datasource from the eje stateless session bean with @Resource annotation.It resulted a dependency injection exception. Can some one tell me how to do this properly.
    {color:#ff0000}Thanks in Advance!!!!{color}

    Frank, yes, I can modify if it is necessary the datasource but, how can I say in the xxxx-jdbc.xml not to use JTA transactions when this data source is called inside a ejb 3.0 method?
    I'm using Jdev11g and the integrated Web Logic Server.
    Thank's

  • Oracle Resource Manager function with SAP BI7

    Hi,
    Have anyone considered or using Oracle Database Resource Manager (Oracle 10.2) feature for SAP BI application in your site? I dont see a single OSS hit on this feature.
    We have a SAP BI system that has few power users (who can run large STAR_TRANSFORMATION queries that analyzes large volume of data) and the main user community (our sales force > 3000+ users) who can run smaller queries of such nature or queries of different types.
    We want to see if there is any way we can control the resource utilization on the database server.
    Thanks in advance,
    Raj

    > Of course, this would require an additional specifications such as SERVICE in the TNS and Listener files.
    Yes - but I'm not sure if that would give the necessary effect. Once the statement reaches the database kernel engine, it gets processed, no matter if you limit the TNS/listener usage because TNS is no more involved when the statement reaches the OLAP engine.
    > In the BI environment, I'm thinking you need this db feature to control database resources when loads and reports overlaps or even several small and large queries run concurrently despite however many app server a system has, all these come to the database.
    I think SAPs answer is: Buy a bigger box (or use RAC to distribute the load)
    > The big question is whether SAP would support such a setup.
    The feature is not listed explicitly in note 105047 - Support for Oracle functions in the SAP environment. I'd make a call at BC-DB-ORA and ask what they think about that.
    I understand your problem very well but I doubt, that there's an easy way of accomplishing this with standard tools.
    Markus

  • File Server Resource Manager will not load WMI Objects on Windows 8.0/8.1 Preview with Hyper-V and Server Tools Loaded

    Hi Folks,
    I have a problem getting "File Server Resource Manager" to start properly because WMI objects are not loading??? I don't understand this at all because I am able to access them with other Apps, etc. I have been over my Services list as well but
    have not yet discovered which Service turns on/off "File Server Resource Manager". I have looked in Windows\System32\ and I can not find SrmSvc. I found other Srm's there though. I also found the FSRM Snapin which generates the Figure below but I
    can not find it in the WMI Browser. I believe the Firewall is OKAY since I have been over that thoroughly. I do have the Server Tools Installed for Windows 8.0 or Windows 8.1 Clients as well as the Windows Updates applied, which is where I got "File Server
    Resource Manager" in the first place. I have had WMI and Powershell 3.0 Package, installed since Windows 7 but I run a repair on them anyway.
    I have read through "File Server Resource Manager could not load WMI objects on Windows Server 2012
    Article ID: 2831687" but since I don't seem to have SrmSvc the solution doesn't help me. I haven't been able to find a similar one for the Windows Client.
    If there is anything you could share on this problem I would be much obliged.
    Thanks again,
    Crysta
    PhotM Phantom of the Mobile

    Hello,
    The Windows Desktop Perfmon and Diagnostic tools forum is to discuss performance monitor (perfmon), resource monitor (resmon), and task manager, focusing on HOW-TO, Errors/Problems, and usage scenarios.
    As the question is off topic here, I am moving it to the
    Where is the Forum... forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • What are the steps for a NEWBIE with no experience in SAP, to become a SAP professional (Energy & Env. Resource Management) ?

    I am a QA & ISO Compliance professional with no knowledge and experience in SAP, but i am looking forward to become a SAP professional. Based on my experience with ISO 14001 (Environment Management) & ISO 50001 (Energy Management) i am interested in ENERGY & ENVIRONMENTAL RESOURCES MANAGEMENT option, but i am not curious to know about the path towards the mentioned goal. I also have a degree in mechanical engineering. I have following questions:
    Is an IT background or knowledge of programming a pre-requisite ?
    What module would "ENERGY & ENVIRONMENTAL RESOURCES MANAGEMENT" be under ?
    Before going in for training and certification, what i should study or be prepare with ?
    Is the road-map (Below) all i have to follow ?
    https://training.sap.com/ca/en/curriculum/ehs_compliance-sap-ehs-management--environmental-compliance-g-en
    Any help and information will be immensely appreciated !

    have you checked personnel profile? with CONFIGPROFILE = EDIT? http://help.sap.com/erp_hcm_ias_2012_01/helpdata/en/92/b073fb42b347af9cb19299881b379d/content.htm http://help.sap.com/erp2005_ehp_05/helpdata/en/48/164bbbb68a4b37b62ad9777b9b449f/content.htm?frameset=/en/48/164bbbb68a4b37b62ad9777b9b449f/frameset.htm&current_toc=/en/4f/b9088db1034075a337c537083539da/plain.htm&node_id=141 No you cant make changes unless you have a WF step in your processes and forms which allows you to  make changes during the cycle of approval Once completed, you can only reinitiate and it ll trigger WF etc. ie HR admin step, where they check all the information is there in the form and then only allows it to be updated to the Infotype and complete the process. did you check scase with the required roles as indicated above? run su53 for missing any authorization?

  • RH8 hangs with 100% CPU when closing a topic. Resource Manager to blame?

    Please refer to the following thread for background information: http://forums.adobe.com/thread/734972?tstart=0
    I'm re-listing this issue, as it has rasied its ugly head again, and I've no resolution this time.
    Summary:
    The original issue was that RH8 would hang whenever I closed a topic for anywhere between 15-30 seconds before allowing me to interact with the application again. Attempting to interact with the GUI during this freeze would result in the 'Not Responding' message at the upper-left of the application window (suffice it to say I'm on a PC with Windows).
    After much investigation it was suggested to me that my profile may be corrupt, and in order to test this, another user should log on and see whether they experienced the same problem. As it is, they did not. So I had my Systems Admin recreate my domain profile, and everything worked just fine.
    ...until now.
    Last week we all upgraded from Windows XP to Windows 7 (32 bit). We also changed our anti-virus software. The awful hanging issue in RH has returned.
    We've attempted the solution from last time, by recreating my profile on the domain, to no avail. We have in fact gone to the extent of reformatting the hard drive and reinstalling Windows, the anti-virus software and RH8 (plus all available patches) from scratch. In case anyone is wondering, we've tried running RH without the antivirus installed, and when installed have also tried excluding the RH application folder and all my project folders, just in case it was the anti-virus software at fault. Regardless, the RH problem exists.
    I can't understand why I'm now having this problem. Truth be told, I never really understood why recreating my domain profile in the first place resolved the problem last time.
    However, I have now discovered something else...
    In my RH Resource Manager I have a few thousand images in the Image folder. Not much I can do about this - the applications I write Help for have many screens users can access, and I write the Help for half a dozen applications. When I delete the contents of the images folder within the Resources Manager, RH works perfectly - no hanging whatsoever. As soon as I import the images into this folder again, the hanging is back. I have tested this a few times now, and have rebooted and had another user log on to confirm, and it happens every time. I'm dumbfounded of course, particularly because the same set of images has been sitting in the Resource Manager for months (since my original post about this issue, last year), and RH has been working perfectly.
    I've also tried Peter Grainge's suggestion to create an empty BaseCSS_res.dll file (http://www.grainge.org/pages/authoring/rh8/using_rh8.htm), but as I've installed all the RH8 updates, this shouldn't be an issue.
    I've also tried deleting the CPD file without success.
    Thanks in advance.

    It seems this has been resolved!
    Many thanks for all the suggestions. Peter ultimately forwarded the solution - something that he'd sourced from a rep at Adobe, as follows:
    Every file/folder change in the root folder of RH8 Resource Manager triggers a rescan of all the sub-folder/files. That is why in case of thousand image it will take time. Like xxxx said we may ask user for root folder, it should not be project folder or frequently changing folder.
    Probably he is using the default path given in the root folder and RoboHelp changes a temporary css file in that folder very frequently, in fact with every topic close.
    That is causing the slowness and it should be easy to reproduce in the default scenario. This is RH8 only issue.
    So, to fix my issue:
    Open the Resource Manager Pod.
    Click the Add/Edit Categories icon. The Add/Edit Categories window appears.
    Within this window, change the 'Root Folder' path to something other than the default. In my case, I create a new folder on my root hard drive, outside of the Robohelp folder, just to be sure.
    So far this is working perfectly - no 'hanging'. I'll keep an eye on it.
    I love the comment "This is RH8 only issue."
    Oh?! Is it? Was it fixed in a patch, Adobe? Please don't tell me that it was fixed in RH9, because there's no way known I should have to pay for an upgrade to resolve something that certainly looks like a bug. As happy and grateful I am to have this resolved, it has cost me a week's work.

  • Af:setActionListener not working properly with resource bundle value

    Hi,
    I am making a ADF-BC JSF project in which I have a commit button a page. On click of this Commit button I am setting some value (Status) through setActionListener. But as this value(Status) is subject to change, so I have stored it in the resource properties file and I'm assigning it from the resource properties file.
    Now when I hardcode the value, it works properly but when I give it from the properties resource file it sets this value to NULL. Here is my code.
    <af:commandButton text="Commit" action="some action”}>
    <af:setActionListener to="#{bindings.SP11DeliveryWarrantView1WarrantStatus.inputValue}"
    from="#{res['warrantstatus.InProcess']}"/>
    </af:commandButton>
    If I write #{'Some hardcoded value'} instead of #{res['warrantstatus.InProcess']}. It works fine. May I know what is wrong here or is it a bug?
    Neeraj.

    Hi,
    I had the same problem and many thanks Frank - yes this does work. Just for clarity here is what I did with my implementation:
    In my session level managed bean (SystemState) I added the relevant values from the bundle:
    public class SystemState
      public static final String RESOURCE_BUNDLE = "gpl.viewcontroller.resources.UIResources" ;
      private HashMap<String,String> formTypeStatuses = new HashMap<String,String>() ;
      public SystemState()
        formTypeStatuses.put("live",JSFUtils.getResourceBundleValue("home.menu2.livestatus.value",RESOURCE_BUNDLE)) ;
        formTypeStatuses.put("archive",JSFUtils.getResourceBundleValue("home.menu2.archivestatus.value",RESOURCE_BUNDLE)) ;
        formTypeStatuses.put("all",JSFUtils.getResourceBundleValue("home.menu2.allstatuses.value",RESOURCE_BUNDLE)) ;
      public HashMap<String, String> getFormTypeStatuses()
        return formTypeStatuses;
    }I then referenced these values from my jspx page:
                <af:commandLink actionListener="#{bindings.ExecuteWithParams1.execute}"
                                action="ExecuteWithParams1"
                                text="#{res['home.menu2.livestatus.text']}"
                                disabled="#{!bindings.ExecuteWithParams1.enabled}">
                  <af:setActionListener from="#{session_system_state.formTypeStatuses.live}"
                                        to="#{requestScope.status}"/>
                </af:commandLink>
                <af:commandLink actionListener="#{bindings.ExecuteWithParams1.execute}"
                                action="ExecuteWithParams1"
                                text="#{res['home.menu2.archivestatus.text']}"
                                disabled="#{!bindings.ExecuteWithParams1.enabled}">
                  <af:setActionListener from="#{session_system_state.formTypeStatuses.archive}"
                                        to="#{requestScope.status}"/>
                </af:commandLink>
                <af:commandLink actionListener="#{bindings.ExecuteWithParams1.execute}"
                                action="ExecuteWithParams1"
                                text="#{res['home.menu2.allstatuses.text']}"
                                disabled="#{!bindings.ExecuteWithParams1.enabled}">
                  <af:setActionListener from="#{session_system_state.formTypeStatuses.all}"
                                        to="#{requestScope.status}"/>
                </af:commandLink>Dave

Maybe you are looking for

  • Why does "other" take up so much space on my iPhone?

    I got an iPhone 5s 16 GB at the end of June 2014.  I keep running out of memory and when I recently plugged my phone into iTunes, I noticed that "other" is taking up around 3 GB of space. I know the usual delete pictures and browsing history spiel, a

  • My homepage button is not working for my iphone 4 after installing ios 5

    my homepage button is not working for my iphone 4 after installing ios 5 has anyone got any suggestions please

  • Server 4.0.3 unable to log in

    I have just installed the update server app 4.0.3 When it installed all my users were missing, and i am no longer able to join the server on a client computer. I have rebuilt my DNS and restarted all my services. I am running a MacMini (10.10.2) serv

  • GRN Notification Mail to Outlook

    Dear SAP MY OLD SAP ECC 6.0 Store Person Create GRN and Save then below All Details GRN Notification Sent to Requisitioner Outlook Mail Same GRN Notification releted Setting Req My Upgraded SAP ECC 6.0 GRN Notification Details exp... Dear Sir This is

  • Disk Utility: Cloning to larger disk?

    I would like to clone the content of a 256GB drive (specifically a TimeMachine archive) onto a 1TB drive in order to increase the available space. A file copy of the archive does not capture all of the necessary hidden files and other information. As