Silverlight - Give generic Error, closes when you click on application storage - Windows 8

Silverlight errors on websites and won't load bubble test.Also if you go into silverlight settings and click on application storage it doesn't open the box below just closes.
I've tried deleting the file that saves silverlight cache, fix-it tool, registry cleaner and reinstall. Silverlight still won't load on windows 8 machine.

Tricky one really.
I work in businesses where the desktop set ups are well known.
I'll try and offer some suggestions since you have zero replies.
Kind of unsurprising though - there should be some sort of consumer orientated support somewhere rather than the only option being developer forums.
If you try that bubble site I posted and it doesn't work then Silverlight is broken or you're using it in a browser it's just not going to work in.  ( That's just a random Silverlight site I found by the way ).
Exactly what error do you see?
The default browser settings for IE 11 stop my Silverlight business apps working, but there's a relatively friendly warning.
You're using the desktop version of internet explorer?    If it doesn't have a house star and cog top right and looks all metro then it's not desktop.
Other browsers are unreliable to fatal.
Sounds like you did this:
https://support.microsoft.com/kb/2608523/en-gb?wa=wsignin1.0
You definitely have windows 8 pro?
It is never going to work on win rt.  I never saw anyone trying to  install on win rt so I don't know what happens but neither the plug in or the Silverlight .net framework work on win rt.
Other than that.
Good luck.
Hope that helps.
Recent Technet articles:
Property List Editing ;  
Dynamic XAML

Similar Messages

  • Why doesn't Skype not close when you click the X b...

    I'd like to get some input as to why Skype does not close when you click the red X button on the top right corner but rather only gets minimized. It's frustrating and makes no sense at all. The only way to close Skype is to right click the icon in the tray and choose "Quit Skype."
    I'd like to understand why this useless feature exists. It renders the minimize button ( - ) useless, which is only two squares away from the X button. 
    Please don't proceed to list other programs that do this (i.e. some antivirus software) as that was not what I asked. It's standard for programs to close when the X button is clicked, as will happen momentarily when I click the X button on my Chrome browser window when I'm done typing this quation. Thanks

    What he was talking about was setting it to ""run as administrator" in the shortcut/executable as you should know that would run the application in a true administrator mode (like Windows XP) vs. the default crippled administrators group in Windows.  I personally have not had to do this since I have not run into the issue but for those that have, people claimed it has helped/resolved the issue.  In regards to following UI interaction rules, it does as it actually closes the form.    Skype doesn't send an additional closure to the resident system tray icon form because it's a memory resident communication program.  Some programs give you that option, others don't.   Geforce Experience is one of the latest programs I use, that doesn't.  Nobody forces anything on you.  If you feel your family is "forcing" something on you, you always have the option of "forcing" something on them or suggesting another method you prefer  in order to stay in contact with you.  In the end that's a family issue, not a Skype one.
    If you want to close Skype down in one click you can do so using the provided shortcuts in the following thread.  You can also assign those shortcuts hotkeys or assign them to a key on your keypboard/mouse using additional key mapping software to completely close Skype with the press of a single button.
    http://community.skype.com/t5/Windows-desktop-client/How-to-quit-Skype-with-keyboard-shortcut-on-Win...

  • DW CS6 - Spry collapsible panels - How to have panel close when you click away from it?

    I know typically onmouseout is used to close other items, but I could not figure it out with the spry collapsible panel. I have the panel opening onclick and closing onclick, but I would really like for it to close when you click anything else on the page outside of the panel.
    Thank you!

    Sorry, I did not mean other collapsing panels close when you click away from it. I simply meant in general for the closing after clicking away function, you can use onmouseout. I was working on something with collapsing panels and I wanted it to show the information when you clicked on it, but when you click on another panel, they both remain open. I really want both to close. I believe accordion does this, but not quite what I am looking for either.
    Here is a better example of what I would prefer: Houston Public Library
    If you visit their page and click "Find it" a box pops down with information and then when you click anywhere else on the screen, it closes that box. When you click "Research," it closes the "Find It" box and opens the "Research" box. There is likely a much better way to do this, but I am pretty new to this.
    Any assistance is very much appreciated.
    Thank you!

  • What does iTunes error code (-45054) mean?     iTunes quits itself when you click on "OK"

    iTunes error code (-45054) comes up when trying to download a M4b file to our computer to synch with an Ipad.  We get this error code when we try to open this audiofile in iTunes and when we click on the OK button on the error code box, iTunes quits itself.  Won't open without the error box showing: "An unknown error occurred (-45054)" and quits itself when you click on OK to close the error message box.  Uninstall?  How?  Any ideas or suggestions?

    Still have the same issue ? I have it too ! Trying to re install iTunes but the issue is always the same !   ??

  • Accordion throwing an error when you click in it

    Hi All,
    I've got an Accordion (code at end of message) that (when you click in it) throws the following error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at mx.containers::Accordion/focusInHandler()[E:\dev\4.0.0\frameworks\projects\framework\src\ mx\containers\Accordion.as:1357]
    I looked into it, and here's the code that's throwing the error:
        override protected function focusInHandler(event:FocusEvent):void
            super.focusInHandler(event);
            showFocusIndicator = focusManager.showFocusIndicator;
            // When the accordion has focus, the Focus Manager
            // should not treat the Enter key as a click on
            // the default pushbutton.
            if (event.target == this)
                focusManager.defaultButtonEnabled = false;
    The line that's bombing is "showFocusIndicator = focusManager.showFocusIndicator" -- the problem is that focusManager is null.
    This is how I create and show the component that has the accordion when the user clicks on an "Instructions" button:
         public var instructionsDialog:InstructionsDialog;
         protected function instructionsButton_clickHandler(event:MouseEvent):void
              if(this.instructionsDialog == null)
                   this.instructionsDialog = new InstructionsDialog();
              PopUpManager.addPopUp(this.instructionsDialog,this,true);
              PopUpManager.centerPopUp(this.instructionsDialog);
    And here's the component:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="400">
         <fx:Script>
              <![CDATA[
                   import mx.events.CloseEvent;
                   import mx.managers.PopUpManager;
                   protected function mainTitleWindow_closeHandler(event:CloseEvent):void
                        PopUpManager.removePopUp(this);
              ]]>
         </fx:Script>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <s:TitleWindow left="0" top="0" right="0" bottom="0" id='mainTitleWindow'
                           close="mainTitleWindow_closeHandler(event)" title="Instructions">
              <mx:Accordion id="accordion" color="0x323232" width="100%" height="100%">
                   <!-- Define each panel using a VBox container. -->
                   <s:NavigatorContent label="Header 1">
                        <mx:Text width="100%">
                             <mx:text>
                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce a magna non urna ultrices facilisis. Aenean venenatis volutpat enim eget vehicula. Suspendisse eu diam tortor, sed tincidunt augue. Vestibulum interdum sem eget dui suscipit rutrum. In hac habitasse platea dictumst. Fusce ullamcorper ipsum sed elit tempor eget interdum ipsum tempus. Nulla convallis eleifend mattis. Donec nec hendrerit dui. Vivamus nec urna eget lectus gravida porttitor quis ut lacus. Fusce rutrum, justo a vestibulum tempus, eros tellus vestibulum sem, laoreet consequat lectus urna vitae eros. Ut pulvinar porttitor quam, ut scelerisque arcu pharetra vel. Praesent leo felis, eleifend quis tempor vitae, venenatis at erat. Donec nec risus sed enim dapibus pretium quis vitae velit. Nulla pulvinar semper magna non pulvinar. Proin dictum tristique lacus. Morbi eget urna velit. Aliquam massa dui, dapibus pretium interdum sit amet, ultrices sed lorem. Vestibulum et eros a dolor sagittis pretium at ut mauris.
                             </mx:text>
                        </mx:Text>
                   </s:NavigatorContent>
                   <s:NavigatorContent label="Item 2">
                        <mx:Text width="100%">
                             <mx:text>
                                  Sed ultricies elit vel dui aliquam faucibus faucibus lacus ullamcorper. Phasellus odio est, tristique quis lacinia id, accumsan at lacus. Pellentesque consectetur, libero quis dignissim interdum, mi velit semper nunc, nec auctor metus nulla non lorem. Nunc scelerisque eros nec libero elementum pellentesque. Maecenas et dolor libero, non ornare libero. Curabitur ante nunc, eleifend eget imperdiet facilisis, venenatis nec urna. Nullam nulla magna, ultricies at vestibulum non, auctor quis eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. In nunc nunc, dapibus quis posuere ut, tristique in dui. Curabitur at tincidunt turpis. Cras molestie quam nec lacus viverra fermentum. In bibendum varius augue id feugiat. Quisque id pretium turpis. Cras et velit nisi. Nunc sodales libero ut magna convallis interdum adipiscing magna vehicula. Phasellus elementum turpis vitae ipsum ultrices dictum. Aenean porttitor nibh sit amet est ullamcorper vitae rutrum dolor molestie.
                             </mx:text>
                        </mx:Text>
                   </s:NavigatorContent>
                   <s:NavigatorContent label="Item 3">
                        <mx:Text width="100%">
                             <mx:text>
                                  Quisque cursus posuere porttitor. Mauris eros eros, sagittis et ultricies vitae, scelerisque ac neque. Integer vel diam id nisl lacinia auctor ac quis orci. Quisque consectetur elementum orci. Etiam mollis dui id urna commodo vel porta neque tincidunt. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Curabitur odio urna, tincidunt in volutpat ut, lobortis nec quam. Integer et est at ante pharetra dapibus. Mauris tempus laoreet euismod. Nunc luctus tincidunt augue, quis iaculis mauris scelerisque nec. Nulla laoreet viverra ipsum, vitae gravida arcu pharetra nec. In rutrum ligula ut massa egestas in varius tortor suscipit. Cras posuere nibh ligula.
                             </mx:text>
                        </mx:Text>
                   </s:NavigatorContent>
                   <s:NavigatorContent label="Item 4" >
                        <mx:Text width="100%">
                             <mx:text>
                                  Duis urna libero, suscipit ut laoreet a, consequat sit amet tortor. Vestibulum accumsan purus viverra mauris fermentum elementum. Vivamus quis lacus mi, quis mollis mauris. Praesent interdum ornare nulla eget scelerisque. Etiam et nibh metus. Vivamus ante tellus, gravida accumsan congue vel, commodo vel nibh. Maecenas placerat pellentesque blandit. Nunc nec faucibus quam. Fusce facilisis risus non nisi blandit eget commodo eros vehicula. Proin pharetra, tellus vel ultrices rutrum, metus libero pulvinar felis, non vulputate orci sem vitae dui. Proin sodales, purus vitae aliquam ultrices, elit mi rhoncus tellus, at dictum magna quam non massa. Phasellus tincidunt augue ut urna scelerisque in posuere mi vulputate. Ut porttitor, ipsum non ornare laoreet, augue tortor imperdiet turpis, sit amet blandit arcu turpis eu leo. Vivamus fringilla, nulla quis porta placerat, ante augue pellentesque leo, in mattis felis ante ac dui.
                             </mx:text>
                        </mx:Text>
                   </s:NavigatorContent>
                   <s:NavigatorContent label="Item 5" >
                        <mx:Text width="100%">
                             <mx:text>
                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur eget diam ipsum, nec malesuada elit. Mauris in placerat lectus. Quisque nec nulla elit. Donec ultrices turpis ac magna accumsan commodo. Aliquam blandit libero sed massa pulvinar eu aliquam ante feugiat. Pellentesque odio velit, ullamcorper posuere tristique et, pretium at enim. Curabitur vulputate metus a eros elementum pulvinar. Curabitur augue tellus, dignissim quis sodales ut, gravida in dolor. Suspendisse consectetur, neque eget iaculis feugiat, dui turpis fermentum enim, sit amet mattis leo elit a felis.
                             </mx:text>
                        </mx:Text>
                   </s:NavigatorContent>
                   <s:NavigatorContent label="Questions?" >
                        <mx:Text width='100%' textAlign="left">
                             <mx:htmlText><![CDATA[<div style='text-align: left;'><a href='mailto:[email protected]'>Email <u>[email protected]</u></a></div>]]></mx:htmlText>
                        </mx:Text>
                   </s:NavigatorContent>
              </mx:Accordion>
         </s:TitleWindow>
    </s:Group>

    Flex harUI wrote:
    Popups that need focus should be in a container that implements
    IFocusManagerContainer.
    As I was thinking about it, I figured that must be the solution... but the problem is, I have no idea which container is the right one to use.  I tried SkinnableComponent, but it wouldn't even compile, saying that I couldn't have TitleWindow as a child of SkinnableComponent since TitleWindow didn't implement mx.core.IUIComponent.
    So, I tried SkinnableContainer, and now it seems to be working.  I'm guessing that implements IFocusContainerManager in a satisfactory fashion for the Popup system, then, yes?
    Anyway, hopefully this will be useful to somebody else if they run into this same issue!

  • Please help. My facebook app will not open on my iphone 4. I deleted it,numerous times and downloaded it again. It uploads, but when you click on the icon, it flickers then closes.  Help.

    Please help. My facebook app will not open on my iphone 4. I deleted it,numerous times and downloaded it again. It uploads, but when you click on the icon, it flickers then closes.
    Help.

    Then the next step would be to restore your phone.  My advice is that prior to restoring you import your photos and videos to your computer and back up your contacts (by syncing them with iCloud or to a supported program on your computer using iTunes) as a number of users report losing these when restoring their device.

  • This copy of Microsoft Office 2013 cannot be used on a computer running Terminal Services" error message when you try to open the Click-to-Run version of an Office 2013 program or suite on a terminal server

    Hi All,
    I have Citrix VDI (Virtual Desktop Infrastructure) Implemented
    in my company and installed few Applications on App Server lets say.... MS Office 2013, filzialla, putty, etc...
    I assigned these apps to the users through CITRIX STUDIO, when I try to use these apps. on VDI everything is working fine only when i tried to open Word, Excel or Powerpoing, outlook it throws error as 
    ""This copy of Microsoft Office 2013 cannot be used on a computer running Terminal Services" error message when you try to open the Click-to-Run version of an Office 2013 program or suite on
    a terminal server"" and apps gets closed.
    Please help me on this ASAP.
    Thanks & Regards,
    Sachin Shinde

    Hi,
    As mentioned in ths article below, run for Office 365 products on to a Remote Desktop Session Host server is not supported. You can install Office products for Office 365 to a virtual desktop, but the virtual desktop must be assigned to a single user.
    http://technet.microsoft.com/en-us/library/jj219423(v=office.15).aspx
    Regards,
    Melon Chen
    TechNet Community Support

  • HT4623 keep getting a generic error message when updating

    I keep getting a generic error message when trying to update my iphone3gs.  I have done it while connected to the computer and through wifi.  When I am connected to the computer it stated, check your connectivity as the update timed out (I did a check and everything worked fine) when I tried through wifi, it just said it failed to update.  Um, no help there.

    I received this email from Apple and this corrected the problem for me...  I only had to reset the iTunes cache
    1) Open iTunes
    2) At the top menu, click File > Preferences (iTunes > Preferences on a Mac)
    3) In the Preferences menu, click the Advanced tab
    4) In the Advanced menu, you should see a button that says "Reset Cache". Please click this button.

  • I'm on a website that usually when you click on the open chat(popup) link it opens a certain now, but now they are opening maximized all the time. How do I get them to open the proper size?

    It was opening the proper size and now it doesn't

    Works normally for me. The script that runs when you click the link will check to see if it already opened a window and try to switch to it, but if you are starting from scratch, this shouldn't be an issue.
    There probably are quite a few add-ons that affect popup window behavior. To see whether an add-on could be responsible, you could test the page in Firefox's Safe Mode.
    First, I recommend backing up your Firefox settings in case something goes wrong. See [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, close Firefox, hold the Shift key, then restart Firefox. You will get a [https://support.mozilla.com/kb/Safe+Mode Safe Mode dialog]. Just click "Continue in Safe Mode" and do not "reset" anything just yet.
    If the window displays at the specified size in Safe Mode, one of your other add-ons (especially in the Extensions category) may be overriding it.

  • Since i upgraded to FF4 Beta. The suggestion bit in my Google toolbar, works but not when you click on a suggestion?

    It gives suggestions but when you click on them nothing happens they just disappear.

    Hi satorilori-
    You might try this:
    -> Clear Cookies & Cache
    https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    -> Clear the Network Cache
    -> Reload web page(s) and bypass the cache.
    Press and hold Shift and left-click the Reload button.
    Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    Press "Cmd + Shift + R" (MAC)
    Check and tell if its working. Hope that helps!

  • Why do I get "generic error" message when trying to upload a self-created, 1hr .wmv file?

    I went through the forums and made sure that any blocks or copywrites weren't triggered by the file, it's clean and can be opened using a media player and other video editing software like windows MovieMaker. I keep getting "The importer reported a generic error" message and have no idea how to proceed. Can someone please help?

    Re: Why do I get "generic error" message when trying to upload a self-created, 1hr .wmv  file?
    This ARTICLE starts with a checklist on setting up a computer to run PrE best, then goes into a series of links for tuning up one's computer and OS, and then links on troubleshooting.
    There is also a link on posting all necessary info, to help others help you.
    Without knowing much more about your system, it is impossible to say much beyond that WMV's are tough assests to work with, requiring a lot of CPU horsepower.
    Good luck,
    Hunt

  • Display the second report as modalform and filter with primary key value of first report when you click on first report column link

    Hi All,
    I have two reports.
    1. order report
    2. order detail report
    when you click on the order report column it display the order detail report as a modal form.
    i was done below steps.
    1. In page header i was written the below code
    <link rel="stylesheet" href = "http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/
    redmond/jquery-ui.css" type="text/css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"> </script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"> </script>
    <script type="text/javascript">
    $( function() {
    $('#ModalForm1').dialog(
    autoOpen : false ,
    width :470,
    height: 500,
    resize :false,
    function openForm1()
    $('#ModalForm1').dialog('open');
    function closeForm()
    $('#ModalForm1 input[type="text"]').val('');
    $('#ModalForm1').dialog('close');
    </script>
    2. order report.
    3. order detail report
       select * from order_details where order_id = p_order_id;
    region header
    <div id="ModalForm1" title="Ordered Items" style="display:none">
    <p class="msg"></p>
    footer
    </div>
    4. created the hidden item in order detail report.
    5. in order report column attributes i was given link like below.
    javascript:$s('p_order_id','#order_id#');openForm1();
    when i click on the order report column link it passing the row primary key value to hiddent and open the report as modal form. however it is not filter the report with hidden item. it showing the no data found.
    problem is hidden item value is not submitting. once we submit that value it showing the 2nd report with filter data.
    can any help me to achieve above requirement.
    apex: 4.2
    oracle 11g
    Regards,
    Vijay.

    Vijay,
    Issue 1: Your usage of $s() JavaScript API seems to be wrong. For the first parameter, you need to use the name of the hidden page item and not p_order_id.
    javascript:$s('P1_ORDER_ID','#ORDER_ID#');openForm1();
    Issue 2: Seems like you are not setting the hidden page item's value in session state. Assuming your hidden page item is called P1_ORDER_ID, Under "Region Definition" tab of your "Order Detail Report" under "Source" tab, for page items to submit, enter the name of the hidden page item P1_ORDER_ID.
    Thanks!
    JMcG

  • Ver. 9.4.2 error msg when I click Attach to email: "No profiles have been created...

    My Acrobat Ver. 9.4.2 has the following error msg when I click Attach to email: "No profiles have been created.."
    I have created the profile in Windows 7 and it works fine with all of the Microsoft Office programs. I use Thunderbird email.
    I've followed the corrective measures listed by Adobe to no avail. Can anyone offer some help?
    Thanks.

    Hi,
    It is possible that even though you are using Thunderbird, Windows might have made outlook your default email client once you installed Microsoft Office. Since there is no email profile set in Outlook, it throws an error "No profiles have been created".
    A work around can be to make create an email profile in Outlook and make sure that it is set as default email client by selecting it as default in "Default Programs".
    Hope that helps.
    PS: Adobe does not officially support Thunderbird.
    Thanks,
    Abhilasha

  • Consistently does not open, gives the error: "C:\Program Files (x86)\Mozilla\firefox.exe Windows cannot access the specified device, path, or file. You may no

    Installed FF 16, 17, 18. Will not open in normal administrator login, nor with "Run as administrator" but will in W7 safe mode. Changed permissions (had to do it in W7 Safe Mode, normal login would not allow (logged in as an administrator) could not delete the Mozilla files in normal login. On rare occasions, with a new install, I could get it to open once, then not again. Searched the reg for any mention of Mozilla or FF and cleaned it. Tried FF safe mode, no luck. Checked permissions after taking ownership and propagating full ownership rights to all FF files, many reboots, no luck. Chrome, IE and SeaMonkey work fine. Using a fairly new install of W7 Professional 64 bit, on a Dell Optiplex 990 i7, 16GB ram. Had the same problem with another user on an identical box. No problem on other computers No other program problems.

    I should have been a bit more definitive.
    I have uninstalled FF, with the windows uninstaller, by manually cleaning the files and the registry of any mention of FF or Mozilla, and by running Revo uninstaller - always rebooting and checking to see if the files are indeed gone. (I have set windows file preferences to see all files, including system files.) I have run 4 AV/malware scanners and found nothing but a few tracking cookies. I download, from Mozilla.org, (http://download.cdn.mozilla.net/pub/mozilla.org/firefox/releases/18.0/win32/en-US/Firefox%20Setup%2018.0.exe) a fresh copy of the Firefox Setup 18.0.exe each time and install when logged in as an administrator and choose "Run as Administrator". I get the same result each time I try to open Firefox. Consistently does not open, gives the error: "C:\Program Files (x86)\Mozilla\firefox.exe Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item." This happens even when I run the .exe file from the x86 program directory. I have also attempted to run in XPsp3 compatibility mode to no avail,
    I make the following assumptions:
    The system is not infected
    I am doing clean installs
    There is no existing trace of FF on the system
    I get identical results on one other W7 64 bit Optiplex 990 system with an i7 processor and 16 GB or ram.
    I CAN run in windows safe mode with networking.
    I have no other software or hardware issues.

  • I bought this os four days before,but unfortunately havent succed to download it,before it give me error and when i go back to my purchase order i cant find its link to download again

    I bought this os four days before,but unfortunately havent succed to download it,before it give me error and when i go back to my purchase order i cant find its link to download again

    You buy one and only one download.
    As it should have been transferred to your computer when you synced, you can contact itunes support and ask for an exception.
    http://www.apple.com/support/itunes

Maybe you are looking for

  • Brand new ipod classic won't sync to itunes 11.

    I just got a brand new 160gb ipod classic for Christmas, and when I tried to sync it with itunes it wouldn't work. I ran the diagnostics and it failed the sync tests, and apple's help/troubleshooting page does not give any solutions to this problem.

  • Trouble importing pre-existing videos on my computer into iTunes?

    I'm having trouble importing pre-existing videos on my computer into my iTunes library? For example, I've tried adding a home video and opening it with iTunes, etc, and no error comes up or anything, it just doesn't show up in my iTunes library, not

  • MFE (Mail For Exchange) for N72

    Hi, Nokia business software site shows that N72 is supported for MFE but there is no download link for the same like other phones. Is N72 really supported for MFE? If yes, can anybody pass on the link for the same. Thanks, Ashley 

  • Printing to Greyscale only

    I've changed my printer settings to print only in greyscale, but when i use the eprint function, it prints in colour. The HP eprint site isn't accepting my code / ID details. How do I change it?

  • OAS 4.0.8.1 for RH Linux 6.1

    Installation completed w/ no errors. Web Gui working... DAD setup... App setup... Then I run: owsctl start I get this: Starting ORB process... waiting for ORB to be ready... ORB is not responding. Please restart manually... OWS-20214: The OAS process