Zoom in strange behavior - no results when year = 2009

Hi guys,.

I can't get my head around why responses tells me that there's any year where = 2009 when I just clicked on the year 2009.
Any ideas?

[print sceen | www.metallon.org/test/year.jpg]

Kind regards
metalray

1. do your fact table for 2009 were given
2. How did you join and dim?
3. What are the for the year and date data types in your tables? If they are of type varchar, it might be leader/spaces which result in no matches.

Tags: Business Intelligence

Similar Questions

  • Strange behavior of Vista when using characters of the Cyrillic keyboard.

    Why when I'm on Cyrillic keyboard I can't use the combination of keys like ctrl + c/ctrl + v/ctrl + x. If I close a combination, the result is unpredictable. If I go on the character of English keyboard combination very well all work?
    The physical keyboard is the same and all keys work good :) I only change characters by using the language bar in windows of r in Bulgarian.

    Hello, Radi_r

    Try to use the Russian language pack and check the ToolTip of the Undo function, it must list the good shortcut key.

    Let us know if that helps.

    David
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Issues coming out of "sleep mode" and strange behavior when restarting with GPU

    I use a desktop computer HP P7-1240 completely stock except for a GPU EVGA GeForce GTX 750 TI SC. The GPU works well when the computer is running (which is strange because the forums have several other discussions mentioning the 700 series must be incompatible with my BIOS).

    However, there are two main strange problems that have arisen since the installation of the GPU. One is that, every time that the computer enters mode "sleep", he refuses to wake back up correctly. It seems to me that the computer active but sends all the signals back panel (at the very least, no video because my monitors remain blank). On rare occasions, he wakes back correctly, but at least 90% of the time, it must be restarted. Upon reboot, the same problem sometimes (not), and the computer must be rebooted a second time until it will start again.

    This leads to the second problem. During startup, the computer goes to a black screen, listing the specifications of basic computer skills (see attached photo. In this screen, the computer does not meet any entry.  He proceeds to beep 3 times, all the same length and height spaced about 30 seconds of gap. After the third beep, the screen goes black and then the computer starts normally with no other strange behavior.

    Without the GPU, none of these problems occur. At the very least, not regularly.

    I saw another thread mentioned that, while the HP support for my office page lists not her, there is an update of the BIOS for my motherboard which has fixed issues related to the GPU more modern. By nature it is an update of the BIOS that does not (seem to) officially support Windows 7, I am reluctant to go forward with this potential solution.

    Although I intend to build myself a new computer from scratch at a certain point, I was hoping to get at least another year out of this machine, if not 2.  While this question does not seem to be immediately threatening the stability of the computer, I can't help but think that it is a question should I go quickly to avoid future problems (not to mention it would save me a good amount of electricity to be able to enter the mode 'sleep' on a regular basis).

    Any suggestions would be greatly appreciated!

    Problem has been solved!

    For those of you who have trouble sleeping with the p7-1240 or computers with a card mother identical (MSI Jasmine Ms 7778 ver 1.0), I suggest that you follow this thread:

    http://h30434.www3.HP.com/T5/desktop-hardware/unable-to-boot-with-new-graphics-card/TD-p/3930544/highlight/true

    It is to use an update for your BIOS that is intended only for PC under Windows 8, but that seems to work perfectly well with Windows 7 PC. It solved my problems of sleep and makes the computer to behave at least semi normally while restarting.

    However, as indicated in the wire, an update of the BIOS should be a last resort because it can turn your machine into a very heavy and expensive paperweight if something does not work. Do not forget that you have the worm 1.0 card mother MSI Ms 7778 Jasmine and remember that you update the BIOS version 8.18.

    As I am looking for 2aeo on HP.com currently (according to the thread leading up to), I'm not find the same links I found last week when I went through the update. However, you can find elsewhere.

  • Strange behavior of TM2 recharge battery - only charges when almost dead

    Hi people,

    I have a new 2200 TM2T who exhibits some strange behavior of battery charge.  When plugged in, the battery will say "connected, charge", but the battery does not charge at all, no matter how much time he has left in (reported remaining level remains the same).  However, if I leave the battery discharged completely, it will start loading again, all the way up to 100%.

    It's a kind of weird automatic battery calibration or something?  I am hoping there is a way to solve this problem, because it's really annoying to not be able to keep busy all the time.

    Hi people,

    I just wanted to report on the resolution of my battery problem.  Returned the laptop to HP, and technical support has replaced the motherboard.  Works fine now.

  • Java Fx: strange behavior when trying to write a vertical label

    I've noticed some strange behavior on the rotated texts (Label,...) in JavaFx...

    Originally, I just wanted to be able to display labels vertically in a GridPane. The first problem is that there is no simple way to indicate a label to display its content in one direction and given orientation. It would be nice to have something like the property on the side of the tabPane allowing to easily turn the text...

    In any case, I quit then myself to use the rotation function to turn my Label. It's when the strange thing began to happen... I put my label in a cell of the grid that is not large enough to display the full text if it is not turned, but the text must be able to adapt rotated once. The problem is that the text appears wrapped even when it is turned as if packaging test have been done until the text is actually shot... The problem can be seen on this screenshot http://hpics.li/e210f2f : the text to be displayed is written in the ToolTip and we can see that only the first letter of the rotated text is displayed in the grid of the cell even if there is more than enough space to display all...

    Anyone has an idea on how to solve this? Is this the intended behavior or it's just a small bug?

    Thanks in advance for your answers.

    Another workaround solution seems to be to wrap the labels into groups and spin groups. If you don't have enough space in the grid, although bad things happen.

    import javafx.application.Application;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Control;
    import javafx.scene.control.Label;
    import javafx.scene.layout.GridPane;
    import javafx.scene.layout.RowConstraints;
    import javafx.stage.Stage;
    
    public class RotatedLabelsInGrid extends Application {
    
      @Override
      public void start(Stage primaryStage) {
         final GridPane root = new GridPane();
         root.setHgap(5);
         root.setVgap(5);
    
         final String letters = "ABCDEF" ;
         final int numRows = 4  ;
    
         for (int col = 0; col < letters.length(); col++) {
             for (int row = 1; row <= numRows; row++) {
                 Label label = new Label("Item "+letters.substring(col, col+1)+row);
                 Group group = new Group();
                 group.getChildren().add(label);
                 group.setRotate(90);
                 root.add(group, col, row-1);
             }
         }
    
         final RowConstraints rowConstraints = new RowConstraints(100, Control.USE_COMPUTED_SIZE, 200);
         for (int i=0; i		   
  • 2.1 RC1 - strange behavior when you change the data in the table

    I recently found a new strange behavior of the SQL Developer. On a small table or a table with a filter where all the data is loaded, but not all lines can be displayed on the screen, trying to change the data in the table. When I confirm the editing with the key enter, Developer SQL jumps always until the end of the data. Quite confusing and boring. The cursor seems to remain in the field that I have edited, then moving upward or downward line force SQL developer to this line.

    Appears not to be the case when all the data are loaded instead of punch, but if you force Developer SQL to load all the data, I can reproduce this strange behavior.

    Sven

    Bug 9205959 is fixed.

    -Rambeau

  • Has anyone ever met a strange behavior layer blend modes?

    I use a little photoshop for retouching and photo compositing. Tonight, I met a strange problem. I tried create a vintage photo look and had a number of adjustment layers, including a curves, levels, fill color and there was also that some layers of texture and noise all the value of the different opacities. To the top of all of this I had a layer of tile that was black on the edges and white in the Center, on the mode of multiplication of mixture. Well, when I was clicking on and turned off, I realize that this layer of the tile was certainly lighten the central part of the whole image a little (the part which is white on the layer of the tile), almost like a screen. So I hit the thumbnail by different modes of opacity layer and saw that there was no change in his behavior, each mode has screening white, darker color and multiply. I thought that perhaps he was interacting in a weird way with an other diapers so I have not disabled all the others except the back ground - still no change. Then I dropped the layer to the bottom of the after another until it was less than the background. When I started back up again, he behaved normally for a while until that I moved it to the top of some levels in the stacking order, and then he returned to the behavior of the screen. Anyway, I mixed it autour a bit but there was no thick when it would appear correct opacity and when he wouldn't, so it doesn't seem to be any specific layer interaction. I don't know, but I don't see really no case where white multiply together should produce a lighter result even if it were interacting with a different opacity. In any case it seems to me that there is something to do with the overall calculation of the opacities. I tried to create a new layer black and white and it was also do the same, strange behavior and do not correct opacity.

    I'm tired, so I'm going to bed. I'll turn off the computer and hope it goes further when I reboot, but if it isn't, doesn't that sound familiar to anyone? I'm not a regular visitor to this forum, but I thought I'd put it out there in case someone else has experienced something like this. I did that 5 gigabytes of ram on this computer and I worked there for a while... maybe that photoshop could not keep just up (?) I use Photoshop CS5, space colorimetric RGB Adobe 1998.  I never had something like this happen in the past eleven years, I've been using photoshop. Hmmm... hope I don't have to reinstall or call support or worse. I cross my fingers.

    The layer is in a group of layers have an other than to pass through blending Mode?

  • Strange behavior with the function «Help in command line»

    So I do a little playing with the opening of the files compiled help (.chm) with the command-line help feature, and I saw a strange behavior when trying to index multi-level access keywords. According to the documentation, if you set the 'Key' operation, you can enter a value for ' string to search for "to access this section. The more precise help that:

    If this string contains a keyword index, the string must match the key of the index as it appears in the help index file. To access a topic with a multilevel index keyword, enter the keyword of the top-level index, a colon and the keyword of the second level index. Do not separate the elements with spaces. For example, a chain of error codes: GPIB jumps about a subject with a keyword of top-level index of error codes and a second level keyword index of GPIB.

    All right, seems simple enough. Except that when I tried, I couldn't work, even with the example provided. I tried the following simple test:

    Opens the help file, but it opens to this page, not to the page ' error codes: GPIB "non-descript. I saw this in 8.2 and 8.6. Anyone have any success with access to a multi-level keyword?

    Note - side

    Curiously, the Index for the help lvconcepts.chm file looks like this:

    In other words, the input index text is just "GPIB", but the text that appears in the keyword field is "codes error, GPIB. I'm curious to know how this was accomplished. I decompiled the lvconcepts.chm file and watched the .hhk file, and it is not immediately obvious to me. (By the way, if you try to use "error codes, GPIB" it does not either).

    Hello

    Please contact National Instruments!
    It is a very strange behavior.  I tested out and seen the exact
    same results you are experiencing.  This was reported to R & D (AUTO ID # 130246) for further investigations.
    From what I can tell the a possible workaround solution that we have documented
    in the post of root Canal.  I can't continue to look into this in order
    to see if there is no other workaround solution or a reason why it is
    run in this way.  Thanks much for the feedback!  If
    you have any other questions on this subject please post them here.
    Have a great day!

  • Strange behavior Skillbuilders great lov in 5 APEX

    I've updated our 5 APEX test system.

    Installed the new APEX skillbuilders lov 5 great plugin.

    When I access a searchstring in the super-lov domain and press the searchicon, modal page with the result set is in place as it should.

    When I access a searchstring in the super-lov domain and press ENTER, the modal page displays for a short time, then disappears?

    Why does this happen?

    When I try the DEMO page at https://apex.oracle.com/pls/apex/f?p=102231:110, this strange behavior does not occur.

    Someone at - it an idea how I can fix it.

    Kind regards

    Marinus Verseput

    I found a work around for this behavior.

    Change the field hidden for a text field and a $(«__ITEM_ID").hide (); in the section "Run when the page loads" of the manufacturer.

  • Strange behavior mouse Apple in ESXi VM (Windows Server 2008R2) / ESXi host is of type nested in Fusion Pro 8

    Hello

    my Apple mouse shows strange behavior when I start my VM and click in it.

    Its an ESXi host nested in a virtual machine in Fusion 8 Pro.

    Can someone explain it to me?

    Kind regards

    Roland

    He has always had problems when using nested desktop computers, and it is simply the result of the way the mouse behaves fundamentally and how this position gets interpolated differently with nested windows VMRC.

    I would just connect to the console of the VM (via vCenter) directly from the Mac, with the guest.

    (the 192.168.178.42 would be accessible from the Mac and the VMRC plugin works very well).

  • Apache 2.2 - 12 c WebLogic proxy behavior extremely slow when using SSL

    We find that extremely slow behavior (loading time of 1 + minute) when you try to access a Server WebLogic 12 c behind an Apache 2.2 web server.  We use the latest version of the WebLogic Apache plugin, which is designed for Apache 2.2.  It is under the 1.7.0_21 of Java on a virtual Linux of RHEL6 machine.  If I disable SSL and point the WebLogic plugin to the no - SSL WebLogic port, the page renders in less than 1 second.

    Note: Another machine with the same configuration (almost?) does not exhibit this behavior.  I'll call it the 'work' VM.

    I compared the httpd.conf, httpd-dist and WebLogic console configuration tabs between the two environments, and everything seems to fit.  The only major difference between these two environments is on the 'work' VM we're running WebLogic as a standard user; and Apache on the machine with a strange behavior, WebLogic runs as root.  We have not noticed any problems with such a configuration in the past.

    The delay between the request for page and page rendering is a little over 1 minute.  I turned on SSL debugging extended and looked through the newspaper, and I see the same delay when requesting.  An excerpt from my weblogic - server.log follows.  I don't know if the exception I see below is normal or not; I checked, and I see the same exception on our 'VM work' so I guess that this is probably not the culprit.

    My httpd.conf contains:

    < IfModule mod_weblogic.c >

    WebLogicHost my_host

    WebLogicPort 7004

    Proxysecurise WE

    ConnectTimeoutSecs 20

    WLSSLWallet/appl/apache/certs/my_host-oracle-wallet

    DebugConfigInfo WE

    WLProxySSL WE

    < / IfModule >

    Thanks in advance - any help would be greatly appreciated!

    Here's the log of WebLogic.  The Apache log displays any errors.

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361752 > < BEA-000000 > < [thread [ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer', 5, Thread group to queue]] : "[weblogic.socket.Muxer']] weblogic.security.SSL.jsseadapter: SSLENGINE: try to get the certificates of the SSLSession, SSLPeerUnverifiedException peer: peer not authenticated." >

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361753 > < BEA-000000 > < [thread [ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer', 5, Thread group to queue]] : "[weblogic.socket.Muxer']] weblogic.security.SSL.jsseadapter: SSLENGINE: negotiatedCipherSuite: SSL_RSA_WITH_3DES_EDE_CBC_SHA >.

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361753 > < BEA-000000 > < [thread [ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer', 5, Thread group to queue]] : "[weblogic.socket.Muxer']] weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.getNeedClientAuth (): false >.

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361753 > < BEA-000000 > < [thread [ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer', 5, Thread group to queue]] : "[weblogic.socket.Muxer']] weblogic.security.SSL.jsseadapter: SSLENGINE: peer certificate chain: null >.

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361753 > < BEA-000000 > < [thread [ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer', 5, Thread group to queue]] : "[weblogic.socket.Muxer']] weblogic.security.SSL.jsseadapter: SSLENGINE: weblogic.security.utils.SSLTrustValidator.isPeerCertsRequired (): false >.

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361753 > < BEA-000000 > < validationCallback: validateErr = 0 >

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361753 > < BEA-000000 > < peer certificates are not necessary and are not provided by peer >

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361754 > < BEA-000000 > < user weblogic specified validation trustmanager status 0 >

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361754 > < BEA-000000 > < SSLTrustValidator returns: 0 >

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361754 > < BEA-000000 > < [thread [ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer', 5, Thread group to queue]] [[: 'weblogic.socket.Muxer']] weblogic.security.SSL.jsseadapter: SSLENGINE: no failure of the trust, validateErr = 0. >

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361754 > < BEA-000000 > < [thread [ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer', 5, Thread group to queue]] : "[weblogic.socket.Muxer']] weblogic.security.SSL.jsseadapter: SSLENGINE: successful post-handshake processing.» >

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361755 > < BEA-000000 > < [thread [ExecuteThread: '2' for the queue: 'weblogic.socket.Muxer', 5, Thread group to queue]] : "[weblogic.socket.Muxer']] weblogic.security.SSL.jsseadapter: SSLENGINE: called SSLEngine.unwrap (ByteBuffer, ByteBuffer []): result = Status = BUFFER_UNDERFLOW HandshakeStatus = NOT_HANDSHAKING '.

    bytesConsumed is 0 bytesProduced = 0. >

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '3' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361756 > < BEA-000000 > < [thread [ExecuteThread: '3' for the queue: 'weblogic.socket.Muxer', 5, Thread group to queue]] : "[weblogic.socket.Muxer']] weblogic.security.SSL.jsseadapter: SSLENGINE: called SSLEngine.unwrap (ByteBuffer, ByteBuffer []): result = Status = OK HandshakeStatus = NOT_HANDSHAKING.

    bytesConsumed is 2029 bytesProduced = 2000. >

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '3' for the queue: 'weblogic.socket.Muxer' > < < WLS Kernel > > <><>< 1376085361756 > < BEA-000000 > < certificates of treatment of Exception: peer not authenticated

    javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated

    at sun.security.ssl.SSLSessionImpl.getPeerCertificates(SSLSessionImpl.java:397)

    at weblogic.servlet.provider.WlsSecurityProvider.getSSLAttributes(WlsSecurityProvider.java:203)

    at weblogic.servlet.internal.VirtualConnection.initSSLAttributes(VirtualConnection.java:163)

    at weblogic.servlet.internal.VirtualConnection.init(VirtualConnection.java:74)

    at weblogic.servlet.internal.VirtualConnection.initSSLAttributes(VirtualConnection.java:163)

    at weblogic.servlet.internal.VirtualConnection.init(VirtualConnection.java:74)

    at weblogic.servlet.internal.ServletRequestImpl.initFromRequestParser(ServletRequestImpl.java:300)

    at weblogic.servlet.internal.HttpConnectionHandler.dispatch(HttpConnectionHandler.java:558)

    at weblogic.servlet.internal.MuxableSocketHTTP.dispatch(MuxableSocketHTTP.java:115)

    at weblogic.socket.JSSEFilterImpl.dispatch(JSSEFilterImpl.java:213)

    at weblogic.socket.MuxableSocketDiscriminator.dispatch(MuxableSocketDiscriminator.java:185)

    at weblogic.socket.JSSEFilterImpl.dispatch(JSSEFilterImpl.java:213)

    at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:965)

    at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:897)

    at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:130)

    at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)

    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)

    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:147)

    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:119)

    >

    # < 9 August 2013 4:56:01 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < ExecuteThread: '99' for queue: 'weblogic.kernel.Default' > < < WLS Kernel > > <><>< 1376085361758 > < BEA-000000 > < [thread [ExecuteThread: '99' for queue: 'weblogic.kernel.Default', 5, Thread group to queue: 'weblogic.kernel.Default']] weblogic.security.SSL.jsseadapter : SSLENGINE: SSLEngine.wrap (ByteBuffer ByteBuffer) called: result = Status = OK HandshakeStatus = NOT_HANDSHAKING

    bytesConsumed is 130 bytesProduced = 157. >

    (Note that more than one minute on here with no other journal entries!)

    # < 9 August 2013 4:57:06 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < DynamicJSSEListenThread [DefaultSecure] > < < WLS Kernel > > <><>< 1376085426938 > < BEA-000000 > < [Thread [DynamicJSSEListenThread [DefaultSecure], 9, WebLogicServer]] weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setEnabledCipherSuites (String []): value = TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 ,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256,TLS_DHE_RSA_WITH_AES_128_CBC_SHA256,TLS_DHE_DSS_WITH_AES_128_CBC_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA ,TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDH_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_DSS_WITH_AES_128_CBC_SHA,TLS_ECDHE_ECDSA_WITH_RC4_128_SHA,TLS_ECDHE_RSA_WITH_RC4_128_SHA,SSL_RSA_WITH_RC4_128_SHA,TLS_ECDH_ECDSA_WITH_RC4_128_SHA,TLS_ECDH_RSA_WITH_RC4_128_SHA ,TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA,SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA,SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_RC4_128_MD5 TLS_EMPTY_RENEGOTIATION_INFO_SCSV. >

    # < 9 August 2013 4:57:06 PM CDT > < Debug > < SecuritySSL > < my_host > < CASWEBAdminServer > < DynamicJSSEListenThread [DefaultSecure] > < < WLS Kernel > > <><>< 1376085426939 > < BEA-000000 > < [Thread [DynamicJSSEListenThread [DefaultSecure], 9, WebLogicServer]] weblogic.security.SSL.jsseadapter: SSLENGINE: SSLEngine.setEnabledProtocols (String []): value = SSLv3, TLSv1, SSLv2Hello, TLSv1.1, TLSv1.2. >

    Thank you

    -sam

    Note that the ' javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated ", could indicate the Java has problems with the validation of the certificate.

    VeriSign must be present in the Virtual Machine cacerts keystore Java. What you can do is download the certificate using openssl, for example.

    ECHO | OpenSSL s_client-connect ${HOST}: ${PORT} 2 > & 1 | SED - don't ' / BEGIN-CERTIFICATE - /, / END CERTIFICATE-/ p'

    and then manually import it into the cacerts file, for example (extracts of Middleware: secure the WebLogic Server)

    keytool-import - alias some_alias-file some_certificate.pem - keystore ${JRE_HOME} / lib/security/cacerts

    The slow response may occur, in the sense that Java uses a random generator to slow (OS). Also in the ${JRE_HOME} / lib/security/directory there is a file called java.security. In this file the following line is present

    SecureRandom.Source=file:/dev/urandom

    On a Linux system, this must change for

    SecureRandom.Source=file:/dev/./urandom

    Now, it will recognize as a file and start actually using it, instead of falling back into the slow random file.

  • Strange behavior of PE10 do not ask for disks 2 and 3.

    My computer complies with the system requirements and I have a brand new PE10 "closed". The box has three discs. I installed disc1 and serial number and told me not to install the other two disks. Installation was surprisingly closed. There is a shortcut on the desktop PE10 and PE10 is located in the Program Files folder. I can open PE10 with the shortcut on the desktop and everything seems to be there.

    I felt very uncomfortable so I uninstalled disc1 and reinstalled with the same results. I used PE4 for many years, so I'm used to Adobe Photoshop Elements. I have dozens of files in MY PICTURES, I want to implement PE10 but I didn't in case something is wrong.

    Can someone explain why, I was told not to install dics 2 and 3?  Are they necessary?

    cogleylane

    From: 99jon

    Sent: Thursday, April 12, 2012 14:23

    To: cogleylane

    Re: Strange behavior of PE10 asking only not for disks 2 and 3.

    Re: Strange behavior of PE10 asking only not for disks 2 and 3.

    created by 99jon in Photoshop Elements - discover complete discussion

  • Strange behavior of Tomcat

    Hi all
    I'm working on an application that sends HTTP requests that have XML RPC and then receives the response and analysis. It worked great, except for the newly added application which gives an incomplete response from the server. The strange thing is that the response is finished when I send the application for the first time after deployment (e.g. restart tomcat), otherwise, the answer is always incomplete.
    Here is the method that send readings in the response (called in doGet (HttpServletRequest request, HttpServletResponse response)):

    public String sendUCIPRequest (String xmlRequest) throws IOException {}
    DataOutputStream out = null;
    InputStream inputStream = null;
    Servleturl URL = new URL (UCIPConstants.airUrl);
    URLConnection servletconnection = servleturl.openConnection ();
    servletconnection.setDoInput (true);
    servletconnection.setDoOutput (true);
    servletconnection.setUseCaches (false);
    servletconnection.setDefaultUseCaches (false);
    servletconnection
    .setRequestProperty ("user-Agent", "UGw Server/3.1/1.0");
    servletconnection.setRequestProperty ("Host", "hqminsatAuth");
    servletconnection.setRequestProperty ("Content-Type", "text/xml");
    servletconnection.setRequestProperty ("Content-length", String
    .valueOf (xmlRequest.length () + 4)
    + " ");
    System.out.println("length:"+String.valueOf(xmlRequest.length() + 4));
    servletconnection.setRequestProperty ('permission',
    "Basic U3lzQWRtOlN5c0FkbQ =="); "
    out = new DataOutputStream (servletconnection.getOutputStream ());
    out.writeBytes (xmlRequest);
    out. Flush();
    out. Close();
    inputStream = servletconnection.getInputStream ();
    Byte [] bf = new ubyte [9100]; a 9004
    inputStream.read (bf);
    Response string = new String (bf);
    Return response.toString (); THIS IS WHERE THE PROBLEMS BEGIN
    }

    When I System.out.println (sendUCIPRequest (xmlRequest)); The result is an XML file that is incomplete.

    Note: xmlRequset = ' <? XML version=\"1.0\"? " ' > ' +.
    "< methodCall > +.
    ' < methodName > GetAccountDetails < / methodName > ' +.
    "< params > +.
    "< param > +.
    '< value > ' +.
    "< struct > +.
    "< member > +.
    "< name > originNodeType < / name > ' +.
    "< String > < value > EXT < / string > < / value > +.
    "< / member > +.
    "< member > +.
    "< name > originHostName < / name > ' +.
    "< String > < value > IVR < / string > < / value > +.
    "< / member > +.
    "< member > +.
    "< name > originTransactionID < / name > ' +.
    "< value > < String > 32 < / string > < / value > +.
    "< / member > +.
    "< member > +.
    "< name > originTimeStamp < / name > ' +.
    simpleDateFormat.format (new Date()) + "<>< dateTime.iso8601 > value" + "< dateTime.iso8601 > < / value >" +.
    "< / member > +.
    "< member > +.
    "< Name > Numeroabonne < / name > ' +.
    "value < string > <>' + Numeroabonne [0] +" "< / string > < / value >" + //argument "
    "< / member > +.
    "< member > +.
    "< name > messageCapabilityFlag < / name > ' +.
    '< value > ' +.
    "< struct > +.
    "< member > +.
    "< name > accountActivationFlag < / name > ' +.
    "< value > < boolean > 1 < / Boolean > < / value > +.
    "< / member > +.
    "< member > +.
    "< name > firstIVRCallSetFlag < / name > ' +.
    "< value > < boolean > 1 < / Boolean > < / value > +.
    "< / member > +.
    "< / struct > +.
    "< / value > +.
    "< / member > +.
    "< / struct > +.
    "< / value > +.
    "< / param > +.
    "< / params > +.
    "< / methodCall > ';

    I tried to use buffer but it's the same thing!

    Help, please. I want to know if there is a bug in this code, or it is the server that is causing this strange behavior. Why exactly it runs successfully the first time. I use java 1.5 and tomcat 6. Thanks in advance.

    Read the input stream, taking note of the return value. For each reading that doesn't return - 1, add the bytes returned to a StringBuilder or StringBuffer, again taking into account the actual return value, without so far assume each reading fills the buffer. When you get - 1, convert the SB to a string. It comes in the same way as all other i/o in Java, nothing special, no magic.

  • strange behavior with script times

    Hi all

    I have strange behavior with one of my scripts, and I can't understand where is the problem.

    Before you post the code, here's the principle.

    My form has two fields of time: "Time of Injection" and "Post injection time.

    The script runs when the output of "injection time" event and look if the injection time is before time "post injection.

    Here is my code:

    //get the value of the field "Injection time"
    var injection = this.formattedValue;
    
    //create an new Date object
    var injectionTime = new Date();
    
    //split the string to get the HH MM and SS values of the formattedValue (HH:MM:SS)
    var injectionTimeHoursString = injection.substr(0,2);
    var injectionTimeMinutesString = injection.substr(3,2);
    var injectionTimeSecondsString = injection.substr(6,2);
    
    //parse the strings into integer
    var injectionTimeHoursInt = parseInt(injectionTimeHoursString);
    var injectionTimeMinutesInt = parseInt(injectionTimeMinutesString);
    var injectionTimeSecondsInt = parseInt(injectionTimeSecondsString);
    
    //set the integer values into my Date object
    injectionTime.setHours(injectionTimeHoursInt, injectionTimeMinutesInt, injectionTimeSecondsInt,0);
    
    
    //do the same for the other time field "Post injection time"
    var post = post_injection.post_time.formattedValue;
    var postTime = new Date();
    var postTimeHoursString = post.substr(0,2);
    var postTimeMinutesString = post.substr(3,2);
    var postTimeSecondsString = post.substr(6,2);
    var postTimeHoursInt = parseInt(postTimeHoursString);
    var postTimeMinutesInt = parseInt(postTimeMinutesString);
    var postTimeSecondsInt = parseInt(postTimeSecondsString);
    postTime.setHours(postTimeHoursInt, postTimeMinutesInt, postTimeSecondsInt,0);
    
    
    //calculate the difference between both
    var diff = postTime.getTime() - injectionTime.getTime();
    
    //if the difference gives a negative result, display a message, empty the fields and set focus
    if(diff<0) {
         xfa.host.messageBox("The time of injection should be sooner than the time of post-injection activity measure.\n\nPlease re-enter correct times.","Incompatibility of times");
         this.rawValue = "";
         post_injection.post_time.rawValue = "";
         xfa.host.setFocus(post_injection.post_time);
    }
    

    The code seems to run pretty well... except with certain values.

    If postTime is 12:00

    and injetion is 12:04

    I get the error message and everything, so it's OK

    BUT

    When postTime is 12:00

    and injectionTime is 12:08

    No message! as if the difference was not negative! (the difference is zero...)

    When I display the time in a messagebox, 12:04 12:04:00 GMT blah blah... gives but 12:08 gives 12:00:00 GMT etc...

    same problem with 12:09, but not 12:10 for example...

    Any thoughts?

    Thank you.

    Thank you, but since I'm used to javascript, I'll stick to it.

    I understand the problem. It's a javascript with the ParseInt method bug!

    Check here: http://www.breakingpar.com/bkp/home.nsf/0/87256B280015193F87256C85006A6604

    parseInt("08") = 0.

    How to lose 2 hours for a stupid bug...

  • Firefox crashes (and other strange behaviors) due to gifs

    From a recent update Firefox displayed a strange behavior that surrounds the gifs. Sometimes, after viewing pages with a large number of gifs or several very large gifs, Firefox will do things like not animate gifs, or even do not load the images at all, an and will not stop until I have restart Firefox. What's more concerning is that sometimes in these situations, Firefox will simply hang and stop responding, forcing me to kill the process.
    This page shows the behavior of hanging fairly regularly: http://www.neogaf.com/forum/showthread.php?t=1021843 & page = 21
    It seems more likely to happen when I scroll the page quickly. The behavior persists when I restart Firefox mode without failure.

    39 of Firefox seems to have solved the problem.

Maybe you are looking for

  • Mac Mail - send unknown sender / not applicable

    On one of the Mac Mail e-mail accounts stopped view my e-mails. The displayed e-mail activity showed that emails have been received. When I ran the account information on this mail box there were several mails, labeled with the unknown sender and SUB

  • Accidentally bought an app got a refund but still there

    so I just accidentally bought an app and got a refund but it shows more than mine? What should I do coz I don't want it incase it charges me again

  • BIOS reset to the Satellite M30X

    Hello I own a Satellite M30X and its start not more after soldering a new D/C. It turns on and the fan starts to operate. But the screen remains black and after 2 seconds, the fan stops and everything is frozen (can not turn off by pressing the power

  • HP p6 - 2117c error my start-up after installation of the Passport ext drive missing entry:-RunDLLEntry@16

    Hi, I get always this error message at startup, it does not seem to affect what anyone. I installed a Passport external drive, but when I noticed this error message. Missing DLL error running in C:\Windows\system32\spool\DRIVERS\x64\3\LXCGtime.dll en

  • How to remove the stand on the Aspire Z3-710

    The 710 - AZ3 with its metal support is too large for our desired location.  We are looking to remove the support and supports unity on along its edge base with wooden supports.  Has anyone removed the metal support?  Hinge/spring support has three v