Problem with graphics with SSL active

Hi guys,.
IIS with SSL server on. Everything works well except the graphics. I get a warning signal in the middle of the graph in two - dashboards and responses. Has anyone seen this?
Thank you

The standard yellow triangle with the brand scream, you get when your host of Java is down?

Tags: Business Intelligence

Similar Questions

  • I have a problem with the active WiFi Seagate GoFlex TV Media Player asking for a net user ID and a password.

    Original title: Net User ID & Net password

    After the upgrade from Vista to W7-64 CV, I have a problem with an active WiFi Seagate GoFlex TV Media Player asking for a "Net User ID & Net password" to log.  I used all imaginable combinations of IDs & passwords, but they all lead to logon fails. I'm almost certain that it is a W7 security problem because others with the same players who went to W7 face the same problem.  I found many supposed fixes online, but none works.

    I am aware that MS W7 works as it should and Seagate is not their problem, but if anyone can recommend a change of security to help this issue, I guarantee a pass towards the sky.

    PS: All the sharing, etc. continuously.  are installed as they should be.

    The only reference to Net User ID and password I can find is on page 46/47 of the User Guide. If this is not the user name and password of the Windows account that you want to share files with, I don't know what it is.

    I guess patches that you tried to include those that are mentioned here:

    http://forums.Seagate.com/T5/FreeAgent-theater-and-GoFlexTV/logon-fail-home-network-Windows-7/TD-p/70540

    I would have suggested the registry change.

    It might be worth checking that you have the latest firmware, just in case.

    http://knowledge.Seagate.com/articles/en_US/FAQ/216931en?language=en_US

  • Problem with ssl on ISA Server 2004 traffic shaping

    Hello

    I use "Bandwidthsplitter" addon for ISA Server 2004 (Enterprise Edition) for shaping traffic and quota control. I have a serious problem with it. This addon does not take into account the ssl traffic user, and I need to restart the Microsoft ISA Server priodically Control Service or allow the users to be connected via ssl until they themselves kill their session.

    I will be grateful if someone help me to solve this problem.

    Thanks in advance

    Bijan

    Hello

    The question you posted would be better suited to the TechNet community. Please visit the link below to find a community that will support what ask you

    http://social.technet.Microsoft.com/forums/en-us/Forefrontedgegeneral/threads

  • I have a problem with the Activation of the key window expiring.

    Original title: recovery partition

    Hello

    My Windows 7 ultimate activation code has expired, I was wandering if, in case I do a restore system from the recovery partition on my PC I could get it to work again for another year. Thank you.

    Hi Casperthe,

    If you had a real computer of Windows 7, or a valid Windows 7 product key, try these steps and check if it helps. A recent hardware change can cause this problem. I suggest you activate Windows 7 manually (activate by phone) and check if it helps.

    a. click Startand in the search for box type: slui.exe 4
    b. press the 'ENTER' key
    c. Select your 'country ' in the list.
    d. Select the "Phone Activation" option.
    e. stay on the phone and wait for a person to help you with the activation.

    Check out the link for more information:

    How to activate Windows 7 by phone

    http://support.Microsoft.com/default.aspx/KB/950929/en=us

    Hope this information helps. Answer the post with an up-to-date issue report to help you further.

  • Problem with Windows activation.

    My PC with windows 8.0 PRO is installed has been works well, but all of a sudden, I get a screen come in saying - activate windows and offering a link to access the settings of PC - when I get to the screen, it says cannot activate Windows now, please try later.

    Is it a virus or what?

    PC seems to work ok.

    Graham LB

    [Original title: activate Windows]

    1. press the Windows key + X , and then clickrun, and then type: slui.exe 4


    2. then press the ENTER"" key.

    3. Select your "country" in the list.

    4. choose the option "activate phone".

    5. stay on the phone (do not select/press all options) and wait for a person to help you with the activation.

    6. explain your problem clearly to the support person.

  • Problem with the activation of the Muse

    I have a valid license for Creative cloud (until October 2016). After Muse update tell me, that I have the trial version of 7 days. Before the update, everything was in order. Please help with the activation of Muse (AE give me the same information )

    Please refer to:

    Stop Creative Cloud 2015 to return to the mode of trial

    You run applications after the update is complete?

    I believe that, after an update for Creative Cloud Application Manager, you must open at least one of the apps and let it re - link to its registration information, that has been my experience at least opening one of the applications, it behaves as if it is opened for the first time after such update.

    Concerning

    Stéphane

  • Problem with the activation of the scrolling features

    Hi all:

    I write a game application that takes advantage of two menus api normal (for the initial screen), as well as related graphical rendering tips, once the game is in progress.  One of the menus I have is a statistics screen, implemented as follows:

    class StatisticsScreen extends MainScreen
    {
    
     public StatisticsScreen(SpyderMainApplication p, long style)
      {
        super(style);
    
        parent = p;
        prof = parent.getProfile();
    
        VerticalFieldManager vfm = new VerticalFieldManager(
            Manager.VERTICAL_SCROLLBAR | Manager.VERTICAL_SCROLL);
    
        LabelField title = new LabelField("Statistics", LabelField.FIELD_HCENTER);
        setTitle(title);
    
       // add total statistics
        LabelField totalTitle = new LabelField("Overall Statistics",
            LabelField.FIELD_LEFT);
        vfm.add(totalTitle);
        SeparatorField sft = new SeparatorField();
        vfm.add(sft);
    
        vfm.add(new BasicManager(20)); ... adds a number of other fields inside of vfm, so that it *should* enable scrolling (the whole screen isn't visible) ...
    
        add(vfm);
    
        updateLayout();
        }
    
      protected void sublayout(int width, int height)
      {
        super.sublayout(width, height);
      }
    }
    

    The base Manager is implemented as follows:

    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.*;
    import net.rim.device.api.system.*;
    
    //import net.rim.device.api.ui.container.*;
    
    class BasicManager extends Manager
    {
            int _managerHeight; // Total height of the manager
    
            // Pass in desired height.  Scrolling is turned off in both directions.
            public BasicManager(int passHeight)
            {
                    super(Manager.NO_HORIZONTAL_SCROLL | Manager.VERTICAL_SCROLL);
                    _managerHeight = passHeight;
            }   
    
            protected void sublayout(int width, int height)
            {
                    BasicTextField field;
    
                    // Loop through all the fields contained with the layout manager
                    for (int lcv = 0; lcv < getFieldCount(); lcv++)
                    {
                            //Get the field.
                            field = (BasicTextField)getField(lcv);
    
                            //Obtain the custom x and y coordinates for
                            //the field and set the position for
                            //the field.
                            switch (field.getCustomStyle())
                            {
                            // Custom style 1 is for the left side of the text to be at 1/8th the width
                            // of the screen
                            case 1:
                                    setPositionChild(field, width / 8 , field.getY());
                                    break;
    
                                    // Custom style 2 is for the right side of the text to be at 7/8ths the width
                                    // of the screen
                            case 2:
                                    setPositionChild(field, width * 7 / 8 - field.getPreferredWidth(), field.getY());
                                    break;
    
                                    // Any other custom style gets position strictly from X,Y
                            default:
                                    setPositionChild(field, field.getX(), field.getY());  
    
                            }
    
                            //Layout the field.
                            layoutChild(field, width, height);
                    }
    
                    //Set the manager's dimensions
                    setExtent(width, _managerHeight);
            }
    }
    
    class BasicTextField extends LabelField
    {
            int _xPos, _yPos, _customStyle; // coordinates and style
    
            // We pass in the coordinates and the custom style
            BasicTextField(String passLabel, int passStyle, int passX, int passY)
            {
                    super(passLabel);
                    _xPos = passX;
                    _yPos = passY;
                    _customStyle = passStyle;
            }    
    
            // Getters for position and style
            int getX() { return _xPos; }
            int getY() { return _yPos; }
            int getCustomStyle() { return _customStyle; }
    
            public int getPreferredWidth()
            {
                    return Display.getWidth();
            }
    
            public int getPreferredHeight()
            {
                    return Display.getHeight();
            }
    }
    

    Now, the problem I have is that on any platform (curve 8330, pearl 8130, etc...), he will not allow the user to scroll to the bottom of the page.  I did something wrong in my application?  I can't get to allow scrolling...

    Thanks in advance for any help!

    ~ Scott

    A quick response - it's late for me.  Default LabelField is not active, so the BB has no place where to focus on when you try to scroll down.  The fastest solution is to be the subject of the LabelField FOCUS.  Otherwise, announces a few NullFields that are focusable.  Let us know if you need more.

  • T60 - problems with long active standby

    Hi all

    Hopfully, can someone point me in the right direction with a problem I encounter with one of the ThinkPad T60.

    Here's the run down:

    We did 3 of the T60 (type 6369-A56) last December (online sales of web). 1 of the three displays problems when dealing with the day before. If the laptop goes into sleep mode during more than anywhere between 30 minutes to 1 hour that the laptop is not repeated mode standby when you open the lid of the laptop or use the Fn function key. When two approaches to bring the laptop leaves standby mode the Moon cresent LED stays on, the HARD Drive LED turns on for a brief second and then turns off, the power light and strong say, the screen remains blank at any time. When this happens, you can hear/feel the disk HARD turns to the top and doing something and you can also hear the CPU fan spin in the action as if it came out the day before. Does not seem to have taken power to make a difference with this problem.

    I already talked to Lenovo support RELATIVE to this subject and they believe it's a software problem. I did a few more tests to try to determine that this is what I did...

    I took a Norton Ghost image of one of the 2 working T60 HDD (Eve works perfectly on two other laptops) and used this Image for ghost in the T60 defective HARD drive, this gave me two identical laptops (hardware and software). Power for laptop mode is as follows, turn off the display @ 5 minutes, switch Mode suspend @ 15 minutes. I left computers laptops only at exactly 09:05, 5 minutes later so empty screens, @ 15 minutes later, the two went in standby mode. 45 min after sleep mode had struck I returned to two laptop computers and for laptops (at the same time), use the Fn key and the defective T60 does not return from the day before and the same symptoms as mentioned earlier it happened.

    After this I decied to see what would happen if I changed the HARD drive between laptops (from the laptop failed drive in the laptop to work), failed hard drive of the laptop working in laptop. After the passage of the HARD drive, I ran the same tests as above. Yet once, 45 minutes after the day before had been very active, I used the Fn key to get out of sleep mode and the laptop with the failed hard drive from the laptop worked directly at the exit of the batt, but the hard drive of the laptop from work to the faulty laptop displayed the same problems as mentioned above thus excluding the software as the cause of the problem.

    My question is, knowing all this, where is the problem likely to be? Is - it's going to be RAM related or associated with Board?

    The result of likley going to be back to Lenovo for repair?

    See you soon
    Chris

    Hello

    Yes, after trying one number of other things I determinined it was the motherboard at fault. Introduced a job guaranteed with Lenovo and returned to the unit for repair. Less a week we had it back, running without problem (they replaced the sys Board).

    See you soon
    Chris

  • Problems with the activation of Windows XP 2002

    Help!

    Is there someone out there who can help me solve this problem?

    I have a PC with Windows XP Professional 2002, Service Pack 2, control my LC - MS instrument that uses the MS Xcalibur software.  Four weeks ago, I had a PC crash and re installed Windows XP by using the CD of Installation Re.  On Thursday last week, he came a message that Windows must be enabled.  I tried by phone, but my install ID has not been accepted.  This PC came with Win XP is already installed.  I find it very strange that it should be a problem to activate it once more!

    Can someone please help me solve this problem?

    It is very important to me, because the PC is to control the instrument SM - which is the work horse in my business.

    Best regards

    Gunnar Hagelin

    Aquila Pharma Services AS

    Norway

    Moved to other/unknown install, upgrade and activate Forum.

    Hi Gunnar,

    Apologize for the delay in response. You can get the XP operating system correctly using the Activation of phone as described in the following article:

    How to activate a Microsoft product using Microsoft Product Activation Center

    Back to us for assistance.

  • problem with the activity indicator

    Hi, I can show activity indicator. But the problem is that I do not know how to deal with another task. I have a screen that show activity indicator and then the application displays this screen is run an initial process to build the database in the SD card. I tried with a thread, but did not work and I have seen other examples, but without success

    Thank you

    You might find this useful:

    http://supportforums.BlackBerry.com/T5/Java-development/sample-quot-Please-wait-quot-screen-part-1/t...

    Look for the update in the commentary.  I think the approach that corresponds to what you are looking for.

  • easconsole problems with SSL

    Hello

    We install and configure an EPM v11.1.2.2 system. We have configured the OSH as the SSL transcoder and it works perfectly for the Shared Services administration console and SmartView:

    https://mycompany.com/interop/index.jsp -works perfectly

    https://mycompany.com/workspace/SmartViewProviders -works perfectly.

    Problem comes at the launch of easconsole via the web: https://mycompany.com/easconsole/console.html. Receive a «cannot start the application»

    We can see he's trying to start the application from https://mycompany.com:80 , which is obviously not correct, because the standard SSL port is configured in OSH (443). A little, jnlp is not well "created" and selecting port 80 instead of just.

    We don't have any problems at the launch of the easconsole with non - ssl to http://mycompany.com:19000/easconsole/console.html

    What is important, we also applied the latest updates of patches:

    11.1.2.2.303 for Oracle Enterprise Performance Management 11.1.2.2 (Patch)

    HYPERION ESSBASE ADMINISTRATION SERVICES SERVER 11.1.2.2.106 (Patch)

    HYPERION ANALYTIC PROVIDER SERVICES 11.1.2.2.106 (Patch)

    HYPERION ESSBASE SERVER 11.1.2.2.106 (Patch)

    HYPERION ESSBASE RTC 11.1.2.2.106 (Patch)

    Any ideas?

    Thanks in advance

    Edit: The platform is W2K8 (x 64)

    Take a look at the doc Oracle Support - "Essbase Administration Services (EAS) does not open when using SSL (Secure Sockets Layer) to the load balancer or Web/SST (Doc ID 1346806.1) server layer"

    Workaround says 11.1.2.1 but it is still valid on later versions

    See you soon

    John

    http://John-Goodwin.blogspot.com/

  • problem with the activation of the lists?

    I continue to enjoy to find and collaborate with ICE. It works very well with the customer, with the fact that I'm testing.

    I encountered a small problem that I can't solve. Initially, I didn't create ordered and unordered for my client lists. But they wanted to create lists bulleted on a particular page, so I checked the box for this and uploaded to the page with the parameters of ice published. However, the bulleted in the ice button is always disabled and a list cannot be created on the page.

    The clues why? I have re-uploaded and connected to several times to be sure I was working with an outdated version of the page.

    Dig and experiment a little solved the mystery. For anyone who runs into the same problem...

    There was a project already in process at the time wherever I activated this ice editing capability. I guess that the project is based on the editing at the time parameters wherever the project was done. That's why when you edit a project, it uses the same parameters. Rejecting the project and re - download page with the updated ice settings and then do a new edition worked in adding a list.

  • Problems with the Activation of Windows 7 Professional

    Hello, for a long time, my windows was genuine, but then I ran SpyHunter 4 to end a virus in my computer. But then I had to reset the computer, and then, the windows became a pirate and showing 7601 compilation and I started getting messages that I might be victim of falsification of software. Then, I clicked on the link to activate the window again. And then, I downloaded the WindowsActivationUpdate.exe, and when it ended, I have zero crashed my computer and I received this message, but the windows was always not authentic. Then I went to microsoft.com/genuine and tried to launch the legitcheck.hta, it starts and says that the validation of the window is current and recommended that I do not have to navigate beyond this page. But then, after awhile, it gets with and shows the following script errors:

    Line 14

    Character 41318

    Line 11

    Character 102675

    Line 1

    Character 15126

    Line 6

    Character 31

    Line 0

    Character 0

    Line 2

    Character 1

    And then it becomes white forever. I tried to run the MGADiag.exe and here is my diagnosis:

    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->

    Validation code: 50
    Validation caching Code online: n/a, hr = 0xc004f012
    Windows product key: *-* - CM74G - RPHKF-PW487
    Windows product key hash: 71BRYMECVaSXedfumfu8zryHJVY =
    Windows product ID: 00371-177-0000061-85051
    Windows product ID type: 5
    Windows license type: retail
    The Windows OS version: 6.1.7601.2.00010100.1.0.048
    ID: {163752C2-0AB7-4A81-9190-57AC32A7D366} (1)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Professional
    Architecture: 0 x 00000009
    Build lab: 7601.win7sp1_ldr.160408 - 2045
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 109 n/a
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program Files (x86)\Opera\launcher.exe
    Download signed ActiveX controls: allowed
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->

    Other data-->
    Office details: {163752C2-0AB7-4A81-9190-57AC32A7D366}1.9.0027.06.1.7601.2.00010100.1.0.048x 64*-*-*-*-PW4875S-1-5-21-1838812046-2382835335-2825030358the system manufacturer,System Product NameAmerican Megatrends Inc. 00371-177-0000061-85051 3604 20120223000000.000000 + 0001EEC3907018400FE04160416Hora oficial Brasil(GMT-03:00)03109

    Content Spsys.log: 0 x 80070002

    License data-->
    Versão Serviço licença software: 6.1.7601.17514

    Name: Windows 7 Professional edition
    Description: operating system Windows - Windows (r) 7, retail channel
    Identificacao da Ativacao: e838d943-63ed-4a0b-9fb1-47152908acc9
    Identificacao da size: 55c92734-d682-4d71-983e-d6ec3f16059f
    Estendido PID: 00371-00170-177-000006-00-1046-7601.0000-0242016
    Identificacao da Instalacao: 011474361013629363953701508091790880199835132104999472
    Do Certificado Processador URL: http://go.microsoft.com/fwlink/?LinkID=88338
    URL Certificado da Máquina: http://go.microsoft.com/fwlink/?LinkID=88339
    Da licença of Uso of the URL: http://go.microsoft.com/fwlink/?LinkID=88341
    URL do Certificado da Chave Produto (product key): http://go.microsoft.com/fwlink/?LinkID=88340
    Chave Produto (product key) Parcial: PW487
    Status da licença: calculated
    Razão da calculated: 0xC004F009 (o periodo Armony expirou).
    Contagem remaining rearmacao do Windows: 0
    Confiavel Hora: 14/07/2016 13:31:27

    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: 0xC004C532
    Beyond: 0 x 0000000000000000
    Event timestamp: 7:14:2016 13:23
    ActiveX: Registered, Version: 7.1.7600.16395
    The admin service: recorded, Version: 7.1.7600.16395
    Output beyond bitmask:

    --> HWID data
    Current HWID of Hash: PAAAAAEABgABAAEAAQADAAAAAgABAAEAln36/sIWNidiNErd9OPg2 + oC4DRyVhqAumU + k7dYSBLGni5z

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes, but no SLIC table
    Windows marker version: N/A
    OEMID and OEMTableID consistent: n/a
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    ALASKA APIC HAS M I
    FACP ALASKA A M I
    HPET ALASKA A M I
    ALASKA MCFG A M I
    SSDT IdeRef IdeTable
    SSDT IdeRef IdeTable
    SSDT IdeRef IdeTable
    ADELINE ALASKA A M I

    And I can't press the button 'solve '. Could you help me please?

    PS: I downloaded all of the Opera browser, also, I am of the Brazil.

    My father lost the key. But I managed to post anyway. I did this: before, my computer has lost its properties of activation, I saved the installer of Windows 10 and then, I got a Windows 10 key program necessary to update to Windows 10, and now she's authentic. But thanks for the help guys! Should I delete this post or something like that?

  • problems with the activation of the product

    Hello, I pay the annual plan of photoshop and the receipt of electronic mail of confirmation of order but don't know the next step. I expect a protudo activation code?

    Some general information for a subscription of cloud

    Cloud programs don't use serial... numbers you, connect you to your cloud account paying to download & install & activate... you may need to sign out of the cloud and restart your computer and log into the cloud for things to work

    Your subscription to cloud shows correctly on your account page?

    If you have more than one email, you will be sure that you use the right Adobe ID?

    https://www.adobe.com/account.html for subscriptions on your page from Adobe

    .

    If Yes

    Sign out of your account of cloud... Restart your computer... Connect to your paid account of cloud

    -Connect using http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html

    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html

    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html

    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html

    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp

    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html

    .

    If no

    This is an open forum, Adobe support... you need Adobe personnel to help

    Adobe contact information - http://helpx.adobe.com/contact.html

    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

    -Select your product and what you need help with

    -Click on the blue box "still need help? Contact us. "

  • Problems with the activation of the creative cloud.

    I registered the creative cloud with Photoshop and Lightroom. I signed up with my Adobe, ID but they continue in trial version of 30 days be able to expire. I'm unable to solve the problem, anyone know any solution.

    Already, thank you.

    Check your subscription payment has been processed and your adobe id is correct, https://www.adobe.com/account.html

    log out and then back to your office to cc using the same adobe id allowing you to check your subscription is current, https://helpx.adobe.com/creative-cloud/help/sign-in-out-activate-apps.html

Maybe you are looking for