Problem with display of scatterplot

Hello

In the joint Test TCP host read three peaks New (events) .vi I try to view a data file in a series of point clouds trace. The data is read in a global, then functional shape based on the selection of the axis and displayed.

Each parcel allows you to choose the x and is the axis in a menu drop-down. I spent a lot of time troubleshooting the following software bug: everything I do, the program keeps displaying the old data and Econometrics again.

The program is part of a larger application, where new data are constantly fed to the scatterplots and displayed with the old data.

I'd appreciate your this application troubleshooting assistance. Thank you.

Best regards

Peter

Oops. I think I answered before I had my coffee. You're right about the shift registers. Back to the problem at hand: the clear Plot.VI indeed work properly when used on a simplified code? For example, the VI does not erase a conspiracy when nothing else is happening in addition to tracing and then erase? Keep in mind, that we cannot really run your code, because're missing us several VI as the clear Plot.vi.

Tags: NI Software

Similar Questions

  • my computer recently crashed and when I tried to use photoshop, then I got the message: - message - problem with display driver, temporarily disabled the improvements. Does that mean, they will return when the problem is solved?

    My computer recently crashed. A fixed it but! When I then tried to use photoshop I got the message: - message - problem with display driver, temporarily disabled the improvements. Does that mean, they will return when the problem is solved?

    Update or restore your graphics driver.

  • Problems with display of text and images from adobe

    I'm a non-techie has a terrible problem with Adobe Acrobat 8 Professional.  Even my group of office tech support can't fix, and they have reinstalled the program twice.  When I receive PDFs with a picture or a graphic, the image/picture comes through as an opaque grey square.  Sometimes the entire document (same text) comes through as an opaque grey square, with only the border area that appear in white.  If I try to print the document, the gray part prints.  Other people in my office who has received the same document do not have this problem.

    I have encountered this problem after that I used Adobe Acrobat Professional for the first time to 'clean up' a document I had scanned a photocopy.  I changed some settings on Adobe to see if I could get a clean version of the document, and it is perhaps the origin of the problem.

    I would be eternally grateful to anyone who has any advice on how to solve this problem!

    Susanne

    PS I have attached a few screenshots in Word that will help illustrate the problem.

    Try going to edit > Preferences > Page Display > Page content and information and make sure the "Show large images" checkbox is checked.

  • AF:panelTabbed - problem with displaying a popup on tab switching

    Hello

    I am facing a problem with disclosureEvent using clientListener of handling. I'm going to show a popup Ok/cancel whenever a user leaves a tab in panelTabbed.


    Here's the code: (this is the same code provided on the Oracle ADF code corner)

    < af:resource type = "javascript" >

    function alertTabSwitch (disclosureEvent) {}

    tab var = disclosureEvent.getSource ();

    {if (Tab.getDisclosed () == false)}

    popup var = tab.findComponent ('p1');

    Popup.Show ();

    popup.setProperty ("tabToOpen", tab.

    disclosureEvent.cancel ();

    }

    }

    function handlePopupOkCancel (actionEvent) {}

    popupButton var = actionEvent.getSource ();

    var butPressed = popupButton.getProperty ('popupAction');

    var = popupButton.getParent () dialog box;

    popup var = dialog.getParent ();

    If (butPressed == 'OK') {}

    var tabToFindAndFocusOnString = popup.getProperty ("tabToOpen");

    If (tabToFindAndFocusOnString.length > 0) {}

    var tab = AdfPage.PAGE.findComponentByAbsoluteId (tabToFindAndFocusOnString);

    tab.setDisclosed (true);

    actionEvent.cancel ();

    Popup.Hide ();

    }

    }

    else {}

    Close the pop-up window and stay on the page

    actionEvent.cancel ();

    Popup.Hide ();

    }

    }

    < / af:resource >

    < af:panelStretchLayout id = "PSL1" >

    < f: facet name = "center" >

    < af:panelTabbed id = "pt1" >

    < af:showDetailItem text = 'TAB 1' id = 'sdi1"disclosed ="true"stretchChildren ="first ".

    clientComponent = "false" >

    First tab

    < af:clientListener method = "alertTabSwitch" type = "Disclosure" / >

    < / af:showDetailItem >

    < af:showDetailItem text = 'TAB 2' id = 'sdi2' stretchChildren = 'first' clientComponent = "false" >

    Second tab

    < af:clientListener method = "alertTabSwitch" type = "Disclosure" / >

    < / af:showDetailItem >

    < / af:panelTabbed >

    <!-id = "af_one_column_stretched"->

    < / f: facet >

    < f: facet = 'Start' name >

    < af:popup = "deferred" autoCancel childCreation = "disabled" id = 'p1' clientComponent = 'true '.

    contentDelivery = "immediate" >

    < af:dialog id = "d1" title = "Tab switch Alert" type 'none' = >

    < f: facet name = "buttonBar" >

    < af:panelGroupLayout id = "g1" >

    < af:commandButton text = "OK" id = "cb1" partialSubmit = "true" >

    < name af:clientAttribute = "popupAction" value = "OK" / >

    < af:clientListener method = "handlePopupOkCancel" type = "action" / >

    < / af:commandButton >

    < af:commandButton text = 'CANCEL' id = "cb2" partialSubmit = "true" >

    < name af:clientAttribute = "popupAction" value = "CANCEL" / >

    < af:clientListener method = "handlePopupOkCancel" type = "action" / >

    < / af:commandButton >

    < / af:panelGroupLayout >

    < / f: facet >

    < af:outputText value = "Do you really want to switch tabs?" id = "ot1.

    inlineStyle = "do-size: medium;" Color: Red; "/ >

    < / af:dialog >

    < name af:clientAttribute = "tabToOpen" value = "" / >

    < / af:popup >

    < / f: facet >

    < / af:panelStretchLayout >

    Everything is done on the client side. When I click on a tab, first the "Unselect" event is fired for the selected tab and the value disclosed in this tab becomes false. After the value is changed, the listener is called.

    So in javascript, the same tab is released again after clicking OK.

    The value was not changed before calling the af: clientListener, this problem would not have arisen.


    Can someone help me with this?


    Kind regards

    Frédéric

    Change the as follows:

    The following has been tested against JDeveloper 11.1.1.7

    
    
        var theTabToClose;
        var theTabToOpen;
        function alertTabSwitch(disclosureEvent){
            var tab = disclosureEvent.getSource();   //This is the tab to close
            if(tab.getDisclosed()==false){
               theTabToClose = tab;
               theTabToOpen = disclosureEvent.getDisclosureCounterpart();
               var popup = tab.findComponent('p1');
               disclosureEvent.cancel();
               popup.show();
            }
        }
    
        function handlePopupOkCancel(actionEvent){
            var popupButton = actionEvent.getSource();
            var butPressed = popupButton.getProperty('popupAction');
            var dialog = popupButton.getParent();
            var popup  = dialog.getParent();
    
            if(butPressed == 'OK'){
                theTabToOpen.setDisclosed(true);
            }else{
                theTabToClose.setDisclosed(true);
            }
                actionEvent.cancel();
                popup.hide();
        }
        
    
  • problems with display screen & icon after installing an update

    Since a update for windows install everything on the screen, icons, screen etc are extra-large and normal pages do not enter normal views for example in internet explore like on face book or any what page of the normal display mode that fits into the screen doesn't work, everything is improved, it has nothing to do with the zoom feature. And the icons on the screen are also very large, how to set this back to normal? I searched everywhere and can not find answers! Help, please!

    Hello

    Right click on desktop - customize - display settings - top left adjust font size (DPI)

    Right click on desktop - customize - display settings - Set resolution.

    Your system also has a magnifier built in which could be a problem - it can also often be programmed to work
    on mouse/keyboards.

    How to turn on the Magnifier On or Off in Vista
    http://www.Vistax64.com/tutorials/125037-Magnifier-turn-off.html

    To see if your mouse/touchpad is set to Magnify use Control Panel - mouse.

    ================================================

    You can also try restoring the system to a point before it happened or try to uninstall the update.

    Control Panel - Windows Update - lower left Installed Updates - uninstall

    How to make a Vista system restore
    http://www.Vistax64.com/tutorials/76905-System-Restore-how.html
    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • Problem with display properties.

    Original title: internet explorer 8, windows xp, hdmi connection works. Cannot get parameters with two screens no. 1 and 2 more.

    I sent this problem recently, I got a response that has not fixed the problem as I don't think that they read my question properly. I sent a reply thank you and said what is the current problem.

    I get the same email back me time and time again.

    PROBLEM. When I go to view/settings. I no longer get the icon with two blue screens, numbered 1 and 2. If I did, I could fix my problem.

    Instead, I get a box entitled display properties, which deals with the screen resolution and color quality.

    where is my box with two blue screens went, how do for her?

    Thank you for any input,

    Jerry.

    Hi Jerry,

    I'm sorry for the inconvenience that has happened. I will certainly help the question of fixing.

    I may need a few more details to better understand the issue.

    1. What is the number of brands and models of computer?

    2. did you of recent changes on the computer before this problem?

    Method 1:
    I suggest you to update the latest display drivers on the manufacturer's Web site and check if it helps.

    Method 2:
    If the problem is not resolved, you can try to create a new user account and check if you are faced with the same question.

    How to create and configure user accounts in Windows XP
    http://support.Microsoft.com/kb/279783

    If the problem is resolved in the new user account, you may have corrupted user profile. See link below for troubleshooting a corrupted profile.

    How to copy data from a corrupted to a new profile in Windows XP user profile: http://support.Microsoft.com/kb/811151

    Get back to us and let us know the State of the question, I'll be happy to help you. We, at tender Microsoft to excellence.

  • Oracle ADF: Problem with display with component LOV selectManyChoice/CheckBox values

    Hi all

    I use Oracle JDeveloper 11.1.1.7. I want to use the selectManyChoice component in my requirement. When you use the same thing, I have observed that selectMany components as a component of selectManyChoice/selectManyCheckBox are not filling LOV VO values in drop-down list. Instead it displays the value VO destination attribute values.

    For example,.

    I have EmpVO and DeptVO. Now, I want to join LOV "DepartmentId" attribute of EmpVO using DeptVO as sourceVO. After this operation, if I drag and attribute DepartmentId of Drop EmpVO as consisting of selectOneChoice , when running, we will be able to see DepartmentName from drop down list I chose DepartmentName as attribute and departmentId as ListAttribute in LOV.

    To create the SelectManyChoice link, if I drag and drop the EmpVO instance to the page, we can find SelectManyChoice option under the "Multiple Sélection" option. As soon as the SelectManyChoice option, we will be able to see the window of EditListingBinding as shown below where we are asked to map baseAttr and displayattribute for this component. This means that he has not considered LOV which we show you. To view Department name in the drop-down list, we can select departmentVO instance 'Source database', while in the Base and display attribute we can map the DepartmentId and departmentName. By doing this, we can achieve my schenario for display in the menu dropdown. The problem is that this element of will will bind with DepartmentVOIterator and no matter what I select component selectMany, I take and wherever I need to set the value on the target attribute programmatically.

    ListBinding.png

    Is there a declarative way to display the selectMany component that uses LOV as a source in the view of value in drop-down list? Please suggest.

    Thanks in advance.

    Praveen.

    Hi William,.

    Thank you for your response. one who shared is related to the display of values such as MultiSelect component. But my requirement is to have combination of InputText and SelectManyChoice so that the user will have two entry key in place. So whenever we enter the code value in InputText, the corresponding value in the SelectManyChoice box should be checked [some]. This combination both annd InputText SelectManyChoice I need to create a component.

    I created the component as described below.

    I created DeclarativeComponent which is having an InputText and component SelectManyChoice. Component of SelectManyChoice I'm filling ViewObject value programmatically. On the selection of any value in the drop-down list SelectManyChoice value changeListener I get selected value and conversion Stringg and affecting InputText to show the selected value. Also in reverse ie. case, whenever I enter the correct value in the InputText, valueChangeEvent, I am taking and convert these values to the list and setting the value property of SelectManyChoice in order to make the selection.

    And to make this component as a single component, I used contentStyle = ' width: 0px "to hide the box InputText of SelectManyChoice as shown below.

    Thank you, regards,

    Praveen.

  • problem with displaying index RH11

    Hello

    I use RH11 Responsive HTML5 output 4 help make projects with layout theme2-_Government (in Dutch and French).

    All projects start correctly with the TOC pane open and overall indexfile displayed. Even my first indexsearch is OK.

    However, no respons with the second index only search because the program maintains, loading and loading... the securities index.

    All 4 projects have the same problem.

    What is going on? Thanks for your help!

    Paul

    Hello

    I know that in some situations, the table of contents is strange and somehow, that also affects the Index. Peter Grainge was an update for it and it can help you too.

    DOWNLOAD: ring of https://drive.google.com/a/wvanweelden.eu/file/d/0B97LY22mEkjqMEJOTFk5QzFFRnc/edit?usp=sha

    When you get out, go to model/scripts. Replace the file toctree.js with the file that you downloaded and see if that makes a difference. It did for me.

    Note: This file is not released by Adobe, so use at your own risk.

    Kind regards

    Willam

  • P10 554: problems with display power management

    It is not possible to reactivate the display (mouse movements, pressing certain keys, pressing the key) when it is turned off by the power management system. The motherboard has already been replaced by a service representative Toshiba, I even reinstalled the system, but the problem persists. The behavior is not reproducible. Sometimes it works, sometimes it doesn't.

    Anyone out there have the same problem? Is this a configuration problem or may be a hardware defect? It is already a known issue?

    Any ideas appreciated.

    Thanks in advance
    Karl Jost

    Hi Karl

    It is not easy to say, but it is possible that there is some malfunction of the equipment. In my opinion the last try to check this is to reinstall the operating system. If the problem persists there are certainly a hardware problem.

    Good bye

  • Satellite A200-25Z: problem with display driver

    Hello

    I am trying to install WIN XP on an A200 25Z. In the beginning, everything seemed to work fine, but now I constantly receive a blue screen before loading xp building saying something like memory issue on pilot ati2mtag.dll

    Sometimes it starts but then when I have to restart the next time it starts again...

    I reinstalled xp now several times, extend the bios to version xp but still the problem remains the same.

    Anyone else had a similar experience like this?

    Best

    > The problem is now, as a first step, that it seemed to work. But about two weeks later after I installed a game that at the next restart came with a blue screen. The game itself was no problem. Just on the next reboot. And since then all I try doesn't really help.

    It seems that the error with you graphic driver appears only after the installation of the game. To me, this looks like a compatibility issue with the graphics driver and the game installed.

    I noticed that some other series of laptops use the same Mobility Radeon X 2600 graphics card.
    So try to use the ATI page European Toshiba driver graphics driver:

    Satego P200 PSPBBE
    Equium A200 PSAE8E
    PSAENE satellite A210
    Satellite A200 PSAE6E
    Satellite A210 PSAELE
    Satellite P200 PSPB6E
    Satellite P200D PSPBQE
    Satellite Pro A200 PSAE7E
    Satellite Pro P200 PSPB7E

    Good bye

  • iMessage problem with display left column

    I'm under EC 10.11.1.  Recently iMessage started behaving wonky.  Normally I have the spectacle of the left column of all information (name, phone number and a photo) of a person I communicate regularly with.  For reasons that I am unclear on the subject, the left column has been reduced to nothing, but either an icon of an image or a picture of the person - no phone number, no other information - and it's really annoying, trying to figure out who the message is from without going through the number of name and/or phone.   (Mac Pro 2013, if necessary).

    How can I get the column to display ALL relevant information on my communicants?

    Thank you.

    Hello

    Click and hold the divider and drag it to the right.

    21:49 Saturday. December 5, 2015

     iMac 2.5 Ghz i5 2011 (Mavericks) 10.9
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro (Snow Leopard 10.6.8) 2 GB
     Mac OS X (10.6.8).
     a few iPhones and an iPad

  • Problem with display number

    Hello

    I wrote the following code:

    screen_create_context(&m_screen_cxt, SCREEN_APPLICATION_CONTEXT);
    screen_get_context_property_iv(m_screen_cxt, SCREEN_PROPERTY_DISPLAY_COUNT, &count);
    

    I am surprised because when I run the present with the phone not attached to an external display, the value of count is always 2. AFAIR, it was 1 in 10.0.9 SDK. I wrote a code that take advantage of dual display with cascade. How can I be sure that a second screen is attached to the camera?

    Thanks for any help.

    Fred

    Yes, I could discover whether or not the screen is fixed.

    What puzlles me is that I don't see any use to this call, if it always returns 2. And my code was working in the previous version, I had to check if the screen is attached or not.

  • Problem with display as the brightness function does not work

    Cleaned keyboard & screen. Now the screen is not as bright. Tried the buttons Sun but no difference.

    Hello

    Thanks for posting your question on the Microsoft Community.

    I understand the inconvenience you encountered.

    In order to understand the issue more clearly, I would ask that kindly provide me with the following information.

    • What is the number and the model of the computer?

    I would suggest trying the following steps and check if it helps.

    Note: Windows chooses the best settings of your PC based on your monitor screen. If you want to adjust your display settings, or if they have been changed and you want to restore the default settings, you can follow the above given below.

    Get the best display on your monitor.

    http://Windows.Microsoft.com/en-us/Windows-8/get-best-display-monitor

    I hope this information is useful.

    Please let us know if you need more help, we will be happy to help you.

    Thank you.

  • Problem with 'Display the resources' - Summary tab

    Hello forum!

    I am with a problem, it is not critical, and I think that it is simple to solve. I have 3 servers ESXi 5.1, and I got these 3 with vCenter. When I try to check the memory and processor in the Summary tab, 2 servers show me 0% (see attached), only 1 of the 3 show me the correct information. If I use a simple vSphere client, that is to say, one by one, the memory and CPU is OK, the Summary tab.

    Can someone help me with this?

    THX!

    Hello and welcome to the community,

    Depending on your version of build you ESXi 5.1, and you must update your ESXi 5.1 U1a.

    Check this kb for more information:http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2038686

    Kind regards

    Julien.

  • Problem with display of reports in 3.1 beta, error stack trace

    I get this error when I try to run a report, any ideas what could be the problem?

    org.hyperic.hq.common.SystemException: java.text.ParseException: date of: "21 August 2007, at com.hyperic.hq.ui.action.reporting.ReportingAction.getReportParametersFromJSON(ReportingAction.java:211) at com.hyperic.hq.ui.action.reporting.ReportingAction.execute(ReportingAction.java:88) at org.hyperic.hq.ui.action.BaseRequestProcessor.processActionPerform(BaseRequestProcessor.java:63) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at javax.servlet.http.HttpServlet.service(HttpServlet.java:810) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter) ApplicationFilterChain.java:252) to org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) to org.hyperic.hq.ui.AuthenticationFilter.doFilter(AuthenticationFilter.java:110) to org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) to org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) to org.hyperic.hibernate.filter.SessionFilter$ 1.run(SessionFilter.java:59) at org.hyperic.hq.hibernate.SessionManager.runInSessionInternal(SessionManager.java:79) at org.hyperic.hq.hibernate.SessionManager.runInSession(SessionManager.java:68) at org.hyperic.hibernate.filter.SessionFilter.doFilter(SessionFilter.java:57) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter (ApplicationFilterChain.java: 202) to org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at org.hyperic.hq.product.servlet.filter.JMXFilter.doFilter(JMXFilter.java:324) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) at org.apache.catalina.core.StandardContextValve.invoke (StandardContextValve.java:178)) to org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39) at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159) at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856) at org.apache.coyote.http11.Http11Protocol$ Http11ConnectionHandler.processConnection (Http11Protocol.java:744) to org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) to org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112) at java.lang.Thread.run (unknown Source) caused by: java.text.ParseException: date of: "21 August 2007, at java.text.DateFormat.parse (unknown Source) at com.hyperic.hq.ui.action.reporting.ReportingAction.getReportParametersFromJSON(ReportingAction.java:184).... 38 more java.text.ParseException: date of: "21 August 2007, at java.text.DateFormat.parse (unknown Source) at com.hyperic.hq.ui.action.reporting.ReportingAction.getReportParametersFromJSON(ReportingAction.java:184) at com.hyperic.hq.ui.action.reporting.ReportingAction.execute(ReportingAction.java:88) at org.hyperic.hq.ui.action.BaseRequestProcessor.processActionPerform(BaseRequestProcessor.java:63) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196) at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at javax.servlet.http.HttpServlet.service(HttpServlet.java:810) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter) ApplicationFilterChain.java:252) to org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) to org.hyperic.hq.ui.AuthenticationFilter.doFilter(AuthenticationFilter.java:110) to org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) to org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) to org.hyperic.hibernate.filter.SessionFilter$ 1.run(SessionFilter.java:59) to org.hyperic.hq.hibernate.SessionManager.runInSessionInternal(SessionManager.java:79) to org.hyperic.hq.hibernate.SessionManager.runInSession(SessionManager.java:68) to org.hyperic.hibernate.filter.SessionFilter.doFilter(SessionFilter.java:57) to org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) to (org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at org.hyperic.hq.product.servlet.filter.JMXFilter.doFilter(JMXFilter.java:324) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at org.apache.catalina.core.StandardWrapperValve.invoke) StandardWrapperValve.java:213) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39) to org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159) to org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59) to org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) to org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) to org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) to org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) to org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856) to org. Apache.Coyote.http11.Http11Protocol$ Http11ConnectionHandler.processConnection (Http11Protocol.Java:744) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112) at java.lang.Thread.run (unknown Source)

    The problem is the analysis of this date with a local non-American.  This is a bug and will be fixed for the next beta version of EE.

    Thanks for the report,
    -Ryan

Maybe you are looking for