CTI Stress!

     Duh..
Two CTI groups on UCCX Version 9.   They are both configured with the same settings.  The two groups exist only to provide MOH from the CUCM, one stream in English the other in French.    If I take the Trigger for French as an example, I can call in no trouble.   When it goes to connect to an Agent however, it puts all agents in a Not ready mode.   If I take the Trigger and move it back to the English CTI group, all is well.   Same Script, Same Trigger just different CTI group.   Both groups have the same CSS and are configured identically.   The only difference I can see is I use a 10 digit Trigger on the Spanish CTI group, but I have always done this and have it on other CTI groups.( I like to get my number plan way out of the way and use a E164 format that does not really exisit like 3009991000) 
Duh...        

you need to verify that the CTI Group is in a CCS that can see your agents.   The fact that your agents are reserved indicates that Script, CSQ and Skill are configured correctly.  If you see your agents Reserved, then put into Not Ready with a 32XXX type reason code, and you see the entire Agent pool in that CSQ go through this sequence, yiou must definietly have a CCS issue.   You will not find a clearly stated reason in the MIVR logs, nothing that will be easy to read anyway.  Since we do not have an index of Error Codes, you might have to go to TAC.   Any way, change your CCS and make sure it can see the Agents and test, you will see that your problem is resolved!
Peter Buswell (aka DrVoIP)
http://blog.drvoip.com

Similar Messages

  • Database base storage stress test

    Hi,
    I have a ucm 11g instance up and running with SSO.
    I need to test database storage against filesystem storage.
    Does anyone have any suggestions on how to test this?
    Also I'm sure I read somewhere (but I can't find it now) that once I go in one direction I can't go back, does anyone have any details about this?
    Many thanks
    James

    First of all, take a look at File Store Provider (here: http://download.oracle.com/docs/cd/E14571_01/doc.1111/e10792/c02_settings005.htm#CSMSP445)
    In general, filesystem storage is always used even if you store data in the database, in the end. It is, though, understood as a temporary storage. In theory, you can keep your files in both locations and I see no reason why you should not be able to go from FS to DB and back, BUT you have to consider consequences (you might have to rebuild indexes or even migrate data from one storage to the other).
    As for stress tests, first you have to decide WHAT you want to test. Potential candidates are:
    - checkin of a single item (wasted effort: since FS is always used as an intermediate storage it will always be a bit faster)
    - mass checkin (e.g. from Batch Loader - especially if you use Fast Checkin settings, db can be a bit faster, but you will need a real lot of small files)
    - search
    - update (metadata - wasted effort: should be the same)
    - backup
    - migration of content
    Then, you will have to setup two environments with more-or-less the same conditions (CPU power, memory, disk speed).
    And finally, you will have to create and run you test cases. I'd suggest to automate stress tests via writing a program calling the same services with the same data. Use WebServices (if non-Java) or RIDC (if Java).
    Alternatively, if your task is "to get results" rather than "perform stress tests", you could try to approach consulting services or project managers to provide some normalized results for you. Something can be obtained in this whitepaper: http://www.oracle.com/us/products/middleware/content-management/ecm-extreme-performance-wp-077977.pdf

  • Jabber for Mac CTI DX650 issues

    Hello,
    I have a user who had Jabber for Mac setup using CTI for control of a 7942.  Everything was working, then we switched it out with a DX650.  Made all the changes needed in Call Manager same as some other users.  However, it will not connect to the DX650 for this one user.  We have checked all the roles and ownership tracking for the phone to the user account and it appears to be setup correctly, however it will not connect.  Anyone have this setup that could help?  Trying to figure out if I am missing something magical that Cisco added in.
    Thanks

    Can you confirm that under cucm admin \ user management\ end user configuration section; do you have the following permissions incorporated for this test user;
    Standard CTI Allow Control of Phones supporting Connected Xfer and conf
    Standard CTI Allow Control of Phones supporting Rollover Mode
    If not can you include the same for this end user and then retest the CTI control.
    - please rate if this helps.

  • Noise from hard disk when stressed

    Hi all,
    I experienced a scratching noise coming from the hard disk (?) when the computer is stressed (e.g. iWeb, Photoshop, etc.).
    I checked the CPU usage and the fan rpm but the noise continues even though the fan is swirling very low and the CPU is at its minimum value so I think it is a hard disk related issue.
    Has anyone already experienced (and solved) the same problem?
    MacBook 2.6 GHz   Mac OS X (10.4.10)  

    Hi all,
    I experienced a scratching noise coming from the hard disk (?) when the computer is stressed (e.g. iWeb, Photoshop, etc.).
    I checked the CPU usage and the fan rpm but the noise continues even though the fan is swirling very low and the CPU is at its minimum value so I think it is a hard disk related issue.
    Has anyone already experienced (and solved) the same problem?
    MacBook 2.6 GHz   Mac OS X (10.4.10)  

  • Exception only occuring during stress test

    We are trying to get ready to release a beta version of the software I'm working on.. so part of getting ready for that was to try set up some stress tests and hit the server with multiple requests for the same page....
    Not sure exactly how many it is taking but we are getting the following exception.
    2005-06-10 13:20:23 StandardWrapperValve[action]: Servlet.service() for servlet action threw exception
    java.lang.NumberFormatException: For input string: "200044.E2000444E"
            at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
            at java.lang.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:1207)
            at java.lang.Double.parseDouble(Double.java:220)
            at java.text.DigitList.getDouble(DigitList.java:127)
            at java.text.DecimalFormat.parse(DecimalFormat.java:1070)
            at java.text.SimpleDateFormat.subParse(SimpleDateFormat.java:1386)
            at java.text.SimpleDateFormat.parse(SimpleDateFormat.java:1156)
            at java.text.DateFormat.parse(DateFormat.java:333)
            at com.xxxxx.xxxxx.struts.adapter.BrowseBaseAdapter.formatYyyyMMddToLocaleStr(BrowseBaseAdapter.java:194)I can only assume that something was not thread safe and somehow something is getting confused....
    this is the method that produced the error and the code that it runs.
    I know absolutely nothing about making something thread safe.... can anyone give me good link to refer to or point something out in the below code that might be a no no.
    private static final SimpleDateFormat xxxxxxxxDateFormat =
              new SimpleDateFormat("yyyyMMdd");
         protected String formatYyyyMMddToLocaleStr(
              String  xxxxxxxxDt,
              Locale locale) {
              String result = "";
              if ( xxxxxxxxDt != null &&  xxxxxxxxDt.length() == 8) {
                   try {
                        Date tempDate =  xxxxxxxxDateFormat.parse( xxxxxxxxDt);
                        result = javaDataTypeToString(tempDate, locale);
                   } catch (ParseException ex) {
              return result;
    public String javaDataTypeToString(Object data, Locale locale) {
              String returnType = data.getClass().getName();
              String result = null;
              if (returnType.equals("java.lang.String")) {
                   result = (String) data;
              } else if (returnType.equals("java.lang.Float")) {
                   NumberFormat formatter = NumberFormat.getNumberInstance(locale);
                   formatter.setMaximumFractionDigits(6);
                   formatter.setGroupingUsed(false);
                   result = formatter.format((Float) data);
              } else if (returnType.equals("java.lang.Double")
                        || returnType.equals("java.math.BigDecimal")) {
                   NumberFormat formatter = NumberFormat.getNumberInstance(locale);
                   formatter.setMaximumFractionDigits(13);
                   formatter.setGroupingUsed(false);
                   StringBuffer buffer = new StringBuffer();
                   result = formatter.format(data, buffer, new FieldPosition(0))
                             .toString();
              } else if (returnType.equals("java.lang.Integer")) {
                   Integer inte = (Integer) data;
                   int intVal = inte.intValue();
                   if (intVal != 0)
                        result = String.valueOf(intVal);
                   else
                        result = "";
              } else if (returnType.equals("java.util.Date")) {
                   java.util.Date date = (java.util.Date) data;
                   SimpleDateFormat dateFormatter = getDatePattern(locale);
                   result = dateFormatter.format(date);
              } else if (returnType.equals("com.sungard.stnweb.utility.Time")) {
                   Time time = (Time) data;
                   result = time.asString();
              } else if (returnType.equals("java.lang.Boolean")) {
                   Boolean dataBool = (Boolean) data;
                   if (dataBool.booleanValue())
                        result = "1";
                   else
                        result = "";
              return result;

    From the API on java.text.SimpleDateFormat
    Synchronization
    Date formats are not synchronized. It is recommended to create separate
    format instances for each thread. If multiple threads access a format
    concurrently, it must be synchronized externally. Being static, your date format object will be accessed by multiple threads.
    Solution: Don't make the date format object static.
    I would suggest like this:
    private static final String dfString  ="yyyyMMdd";
    protected String formatYyyyMMddToLocaleStr(String  xxxxxxxxDt, Locale locale) {
      String result = "";
      SimpleDateFormat xxxxxxxxDateFormat = new SimpleDateFormat(dfString );
      if ( xxxxxxxxDt != null &&  xxxxxxxxDt.length() == 8) {
      try {
        Date tempDate =  xxxxxxxxDateFormat.parse( xxxxxxxxDt);
        result = javaDataTypeToString(tempDate, locale);
      catch (ParseException ex) {}
              return result;
    Ok, so it is constructing a DateFormatting object for each method call, but I don't see it as that big a deal. Its not a huge hit. You might get away with making it an instance variable - I don't know how you use the enclosing class. Start with this, and see if it works.
    Cheers,
    evnafets

  • JTAPI / CTI Connection problems CUCM 9.1.2 and AndTek 4.8.5

    Hi All,
    we have a problem with JTAPI Connection to AndTek. The colleagues, they use AndTek, can login / logout, but after it, the actual status doesn't change by the others. If they restarts the phones (cable out, cable in), status will be changed. Other solution, restart Callmanager (sometimes the restart of the service "CTI Manager" can help too). 
    With AndTek we tried to find the problem, what they found: the phones are losing the connection to the  AndTek service, and Application Users cannot control the phones.
    Questions:
    - How can I stay under control, investigate the connection of the JTAPI at side of CUCM
    . Which trace / debug can help to find the problem by Application Users

    You can monitor CTIConnectionActive under Performance tab in RTMT for a real-time number of JTAPI connections.
    CTIManager SDL traces from CUCM and JTAPI logs from Genesys should help diagnose the exact JTAPI messaging and see what is closing the connection.  There's a keep-alive process as part of JTAPI that Genesys should be using.
    Lastly, a packet capture may help if there are network interruptions causing the issue.

  • I can't add a DN to a CTI route point on Call manager due to...

    Hello,
    I'm trying to add a DN to a CTI route point which routes to Unity directly. This allows me to have a voicemail box be reachable that is not tied to a phone. So I can dial XXXX and leave a message for this person directly. The reason we have this setup is because 2 people share a phone and we have a call handler on the phone extension to route messages to person 1 or person 2 by pushing 1 or 2 if know one picks up the phone. The caller then obviously can leave the private message for person 1 or person 2 depending on who they wanted to talk to. I have the CTI route point up and running, and it works for 2 DNs that are set up on it. I'm adding a 3rd and 4th DN to this route point.
    The error message I receive says:
    "Add failed. Sum of device's line appearance values for maxNumCalls exceed device limitation". On the Multiple Call/Call Waiting Settings on Device ROUTE_TO_VM section(the name I gave the CTI ROUTE POINT) I keep changing the Max number of calls to 1 and busy trigger to 1 to see if this resolves it but it does not. I had to do this on the other DNs tied to this route point and that fixed the issue. This time it will not let me.
    Any ideas?

    Do you mean I should be adding a new separate CTI Route Point for each DN? I didn't think I had to because we have a separate one called FORWARDtoUnity and there 4 DNs tied to this one and underneath association information, it says "Line {5} - Add a new DN"...so it seems I can keep adding more. (Unless there is a limit of DNs per route point). So since this one has 4 DNs, I thought I could have 4 DNs on this new route point I created. I was wondering if I'm missing a step somewhere.

  • How to make a good stress test for webapplication

    Hi all,
    i should test my webapplication.
    What's, in your opinion, the best way to make the test, using, maybe JMeter.
    In case i use JMeter how can i understand the lines on the graphs; in which way the bandwidth of the client influences the test ?
    Does anybody use another kind of web stress tool ?
    Cheers.
    Stefano

    I used JMEter, but I don't use the graph listener...I use the table as well as the tree listener. The table will tell inform me the average and median time it take for the application to finish. It also report to me if the request made was sucessful or not. It also report how long it take for each individual thread to finish the request.
    I also use log4j to log any necessary information while running the test
    And it's free..so what can you say.

  • Error in running Jasper Reports for more than 100 users in stress test

    I have created a web application with Jasper reports. during the stress test, we were able to run the same report simultaneously for 100 concurrent users, after that we get the following error. I hope there is no problem in my code (correct me if i am wrong)
    We use Web Sphere
    The error we get is as follows:
    java.io.FileNotFoundException: /apps/HewittProjects/installedApps/TBIA/workforce_CUR.ear/workforceServer4.16.4.war/reports/timesheet_mgr2.jasper (Too many open files)
               at java.io.FileInputStream.open(Native Method)
               at java.io.FileInputStream.(FileInputStream.java:106)
               at com.wily.introscope.agent.probe.io.ManagedFileInputStream.(ManagedFileInputStream.java:89)
               at net.sf.jasperreports.engine.util.JRLoader.loadObject(JRLoader.java:85)
               at net.sf.jasperreports.engine.util.JRLoader.loadObject(JRLoader.java:64)
               at com.workforcesoftware.servlets.ReportServlet2.getCompiledReport(ReportServlet2.java:712)
               at com.workforcesoftware.servlets.ReportServlet2.doPost(ReportServlet2.java:423)
               at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
               at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
               at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
               at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
               at com.ibm.ws.webcontainer.servlet.ServicingServletState.service(StrictLifecycleServlet.java:333)
               at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
               at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
               at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
               at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
               at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:61)
               at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:1009)
               at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:529)
               at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:208)
               at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:134)
               at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:321)
               at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
               at com.ibm.ws.webcontainer.cache.invocation.CacheableInvocationContext.invoke(CacheableInvocationContext.java:120)
               at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:250)
               at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
               at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
               at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:652)
               at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:448)
               at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:937)
    NESTED BY :
    net.sf.jasperreports.engine.JRException: Error loading object from file : /apps/HewittProjects/installedApps/TBIA/workforce_CUR.ear/workforceServer4.16.4.war/reports/timesheet_mgr2.jasper
               at net.sf.jasperreports.engine.util.JRLoader.loadObject(JRLoader.java:92)
               at net.sf.jasperreports.engine.util.JRLoader.loadObject(JRLoader.java:64)
               at com.workforcesoftware.servlets.ReportServlet2.getCompiledReport(ReportServlet2.java:712)
               at com.workforcesoftware.servlets.ReportServlet2.doPost(ReportServlet2.java:423)
               at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
               at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
               at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
               at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
               at com.ibm.ws.webcontainer.servlet.ServicingServletState.service(StrictLifecycleServlet.java:333)
               at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
               at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
               at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
               at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
               at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:61)
               at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:1009)
               at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:529)
               at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:208)
               at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:134)
               at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:321)
               at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
               at com.ibm.ws.webcontainer.cache.invocation.CacheableInvocationContext.invoke(CacheableInvocationContext.java:120)
               at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:250)
               at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
               at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
               at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:652)
               at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:448)
               at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:937)
    if this really cannot find the file, then how could it run successfully for 100 users?
    Have anyone experienced this problem?
    Thanks for your help.

    ummm seems odd to have 100 users making a report.. that can be the limitation of your application..

  • Genesys CTI  Driver-Unable to create Driver for GplusVoice

    I have a 8.0.0.4 and Genesys 7.5 integration. We are receiving the following error messages in our CommSessionMgr and Scomm Logs when we attempt to make a connection from Siebel to the Genesys CTI Server. There are no firewall ports blocking any traffic between Siebel and Genesys and then are on the same subnet and VLAN. Also, we can establish a basic connection to the Genesys T-Server without Siebel in place. We think that it may be a configuration issue somewhere but we are not sure where to look. I was just wondering if anyone on this board had any basic ideas to troubleshoot this issue besides looking through the log files and the Comm Drivers and Profiles section etc.
    Thanks for anyone’s help on this matter!!!
    CommSessionMgrLog:
    ServerLog     LstnObjPrivCreate     3     0004fd49499b1400:0     2009-02-19 10:31:31     Created port 49192 for Communications Session Manager
    ObjMgrLog     Error     1     00000b92499c1228:0     2009-02-19 11:10:38     (mediamgr.cpp (497)) SBL-CSR-00500: Unable to create a Driver
    SCommLog:
    SComm[02/20/2009 09:36:45:615]:ERROR:Error on invoke media manager method(StartAllDriver), input args={
    DriverProfileInfoArray = 2#2385#9#5#Voice5#Voice11#Gplus voice7#1-5I5JR15#VATaxCallCenter14#GenCommDrv.dll11#GenComm.GIF2289#2#1722#66#26#Service:UsePendingWorkmode22#Service:OCSCancelScope27#Service:KwPiProtocolVersion17#Driver:ServerPort20#Driver:RemoteTimeout18#Driver:LibraryNa .... (message is too long) ...
    LanguageCode = ENU
    }, error=7537140), msg='Unable to create a Driver object from driver GenCommDrv.dll with Media-Type-String Gplus voice(SBL-CSR-00500)'
    SComm[02/20/2009 09:36:45:615]:ERROR:Failed to invoke method(StartAllDriver) at media manager, detail error = Unable to create a Driver object from driver GenCommDrv.dll with Media-Type-String Gplus voice(SBL-CSR-00500)
    RSCHELLE_25165941[02/20/2009 09:36:45:615]:ERROR:Communication Agent failed on prcoessing request(StartAllDriver0, input-args={
    DriverProfileInfoArray = 2#2385#9#5#Voice5#Voice11#Gplus voice7#1-5I5JR15#VATaxCallCenter14#GenCommDrv.dll11#GenComm.GIF2289#2#1722#66#26#Service:UsePendingWorkmode22#Service:OCSCancelScope27#Service:KwPiProtocolVersion17#Driver:ServerPort20#Driver:RemoteTimeout18#Driver:LibraryNa .... (message is too long) ...
    LanguageCode = ENU
    }, errcode(7537140), errmsg(Unable to create a Driver object from driver GenCommDrv.dll with Media-Type-String Gplus voice(SBL-CSR-00500))
    RSCHELLE_25165941[02/20/2009 09:36:45:615]:ERROR:Failed on invoking ClientConnect in Comm. Server Svc., err=7537140, msg=Unable to create a Driver object from driver GenCommDrv.dll with Media-Type-String Gplus voice(SBL-CSR-00500), input= ClientHost = NG00060492
    ClientIP = 10.172.20.128
    Simulate = 0
    SiebelMobileClient = 0

    Figured it out on my own

  • CA-ICI-CTI version in CRM 5.0

    Hi Gurus,
    We are upgrading CRM 4.0 to CRM 5.0 SR3. After the upgrade we would like to connect Cisco Telephone system to IC Webclient to handle the calls.
    Bucher-Suter is the third party provider for Cisco. They need the following versions & features to integrate the Cisco Unified crm connector for SAP.  .
    SAP Interface and Release Level Requirements:
    1. CA-ICI-CTI 6.2 - Integrated Communications Interface u2013 CTI 6.20
    2. SAP NetWeaver Application Server 6.10, 6.20, 6.30, 2004, 7.0
    3. SAP ICI Free Seating feature is required
    I am trying very hard to find out the CA-ICI-CTI version that comes with CRM 5.0 but no luck.
    Please let me know how can we find the ICI version? Your help is highly appreciated and well rewarded
    Thanks in advance
    Regards,
    Ravi

    Hi Friends,
    Thank you very much for your reply. I have gone through the link
    SAP CRM Integrated Communication Interface (CA-ICI) [original link is broken]
    but it tells about the certification details.  I didnot find any information on the versions. In one of the document
    The Integrated Communication Interface is implemented as part of the SAP Web Application Server (WAS). The following table shows the correspondence between the WAS release and the Integrated Communication Interface versions:
    WAS release WAS patch level Integrated Communication Interface
    6.20 SP 5 2.08
    6.20 SP 7 3.00
    6.30
    Our target system  application details are
    Software Comp             Release          Patch level
    BBP CRM                       500                   11
    SAP_IP                          700                   11
    ST-PI                          2005_1_700           5
    SAP_BW                       700                    16
    PI_BASIS                   2005_1_700           14
    SAP_ABA                      700                    14
    SAP_BASIS                   700                    14        
    Kernel Version : 700
    Patch Level      : 139

  • User is thrown from the Application under Cluster stress test

    Hi All,
    i have ADF/ADF faces application running on WLS 10.3.5.0 Cluster Environment (with 2 nodes).
    I'm running application using in memory Session replication.
    The problem which i have is that under the stress test (about 10-20 users) sometimes user suddenly is presented with Login Screen (more rare with session expired message) ! This also can happens immediately after user login .
    That happens randomly on different part of the System. In more of the cases user is thrown independently from other users but
    sometimes all the users are thrown simultaniously.
    When the System is tested with only one user this effect appears very rare.
    What i have done is to enable Cluster and Replication debugging to see if there some errors within Http Session Replication. However there isn't any errors appeared. From the application part everything seems fine.
    I suspect that the proxy could cause a problem (by forwarding the request to secondary instead of primary server). Currenltly i'm using HttpClusterSerlvet installed by default from WebLogic Configurator on dedicated Managed Server.
    Can somebody give any advice with this ?
    Thanks in advance,
    Krasimir

    Krashmir,
    Did you find any solution for this problem. I am also facing the similar issue.
    Thanks,
    Ram

  • MTS - Shared servers die when stressed...

    RedHat 6.2, Oracle 8.1.5, Running MTS
    MTS is up and running, but when I start to stress the box, the background processes and the shared servers just die. This doesn't happen with dedicated servers, only with shared servers. When it happens, it happens fast...boom their dead! I am low on memory, but I have plenty of swap space. I heard there was a problem with MTS on Linux...anyone know the details?
    Thanks,
    Craig.
    null

    Craig,
    I am using MTS, RH 6.2, and 8.1.6.
    After stress testing with my max number of connections for a prolonged period my servers
    die. Instance crash.
    My test includes connections from a web and telephony server. I'm not totally convinced its a sole MTS issue. My only common denominator in testing is java, so I'm looking further here.
    8.1.7 is due for release soon.
    What type connections are you making (e.g any web servers ?)
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Craig Shallahamer ([email protected]):
    RedHat 6.2, Oracle 8.1.5, Running MTS
    MTS is up and running, but when I start to stress the box, the background processes and the shared servers just die. This doesn't happen with dedicated servers, only with shared servers. When it happens, it happens fast...boom their dead! I am low on memory, but I have plenty of swap space. I heard there was a problem with MTS on Linux...anyone know the details?
    Thanks,
    Craig.<HR></BLOCKQUOTE>
    null

  • How can I reset the CTI for each clip to 00:00?

    I'm brand new to this - got Premier Elements 12 yesterday, so please bear with me.
    I have clips from a soccer game, each of which starts with 00:00. I have written notes about key scenes in each clip using the time that scene occurs in each clip. But when I add clips to the timeline, each clip's CTI begins at the point where the last clip's left off. So, say I wanted to get to a scene in clip 2 at 0:44. But clip 1, with a duration of 4:30, precedes clip 2 in the timeline . To get to the scene I was looking for in clip 2, I'd have to add the 4:30 from clip 1 to the 0:44 in clip 2 to find my scene in the timeline at 5:14 . Obviously, the problem only gets worse with each additional clip. And near impossible when I trim clips.
    One "workaround" I can use is to make a copy of the original clip in project assets, adjust the in and out points in the copy to get the scene I want, save/rename that scene and add it to the timeline instead of the original clip. Each scene would then be renamed and would show it's specific duration in the timeline. But that seems like a lot of work, to have to make copies of original clips in assets, trim them there and take them to the timeline. Back and forth, back and forth.
    Is there a way to keep the start and end times of each original clip when I add it to the timeline, so I can isolate each scene in that clip and trim out the unwanted portions without having to do math or spend time making and trimming copies? To be more succinct, Can I reset the CTI at the start of each clip to 00:00 within the timeline?
    I hope I've described my issue in a clear way that doesn't cause confusion. If not, please let me know what other questions you have or additional info you need to understand the issue I'm describing. Thanks, and sorry for the long post.

    mascott2300
    Please take a look at the blog post that I wrote about the gathering, assembling, organizing, and management of clips in a large project.
    ATR Premiere Elements Troubleshooting: PE11: Project Assets Organization for Scene and Highlight Grabs from Collection o…
    See if any of the details work for you in your planned Premiere Elements projects.
    Also, from the point of view of leaving informational notes in the program, consider the "Comments" opportunities of the unnumbered markers when you place unnumbered markers in the Timeline.
    ATR Premiere Elements Troubleshooting: PE11: Forget Me Not Clip Details and Timeline Unnumbered Markers
    Please do not hesitate to ask questions or to ask for clarification on anything written.
    Thank you.
    ATR

  • How to make the CTI respond to the work area again?

    Hello,
    i suddenly have a unusual problem (4 me). I  work on a project and i noticed today that the CTI dose not  act according to my work area when i RAM preview. After pressing 0 it just  goes after the end of the work area continuing to render
    . (green line)
    And also it does not start to render at the  beginning of the work area.  It uses somehow the comp's lenght...
    Please advise.
    Thanks!
    I attached a photo so you can see what is it about.

    If you leave "From current time" enabled, you can use 0 to audio preview from the current position or shift-0 to audio preview from the beginning of the comp.

Maybe you are looking for