Exceptions with JEditorPane setPage() method (Catching not possible)

hi all
if anyone can help me...please help
I got serious exceptions with the JEditorPane()'s setPage() method
I have written the try & catch still i could not catch the exception..(those exceptions are not displaying any of my program lines)..setPage() mehod was executed properly and the page was displyed on the editorpane..and then exceptions r coming..
--------my code--------
java.net.URL fileurl =LongTask.class.getResource(modifiedfilename);
editorpane.setPage(fileurl);
---------------------exceptions
java.lang.NullPointerException
at java.util.Hashtable.put(Hashtable.java:393)
at javax.swing.text.SimpleAttributeSet.addAttribute(SimpleAttributeSet.java:176)
at javax.swing.text.html.CSS.translateHTMLToCSS(CSS.java:687)
at javax.swing.text.html.StyleSheet.translateHTMLToCSS(StyleSheet.java:491)
at javax.swing.text.html.StyleSheet$ViewAttributeSet.<init>(StyleSheet.java:2476)
at javax.swing.text.html.StyleSheet.getViewAttributes(StyleSheet.java:312)
at javax.swing.text.html.BlockView.getAttributes(BlockView.java:275)
at javax.swing.text.html.StyleSheet$ViewAttributeSet.getResolveParent(StyleSheet.java:2609)
at javax.swing.text.html.StyleSheet$ViewAttributeSet.doGetAttribute(StyleSheet.java:2589)
at javax.swing.text.html.StyleSheet$ViewAttributeSet.getAttribute(StyleSheet.java:2569)
at javax.swing.text.ParagraphView.setPropertiesFromAttributes(ParagraphView.java:105)
at javax.swing.text.html.ParagraphView.setPropertiesFromAttributes(ParagraphView.java:87)
at javax.swing.text.html.ParagraphView.setParent(ParagraphView.java:60)
at javax.swing.text.CompositeView.replace(CompositeView.java:200)
at javax.swing.text.BoxView.replace(BoxView.java:164)
at javax.swing.text.CompositeView.loadChildren(CompositeView.java:97)
at javax.swing.text.CompositeView.setParent(CompositeView.java:122)
at javax.swing.text.html.BlockView.setParent(BlockView.java:55)
at javax.swing.text.CompositeView.replace(CompositeView.java:200)
at javax.swing.text.BoxView.replace(BoxView.java:164)
at javax.swing.text.html.TableView$RowView.replace(TableView.java:1414)
at javax.swing.text.CompositeView.loadChildren(CompositeView.java:97)
at javax.swing.text.CompositeView.setParent(CompositeView.java:122)
at javax.swing.text.CompositeView.replace(CompositeView.java:200)
at javax.swing.text.BoxView.replace(BoxView.java:164)
at javax.swing.text.html.TableView.replace(TableView.java:864)
at javax.swing.text.CompositeView.loadChildren(CompositeView.java:97)
at javax.swing.text.CompositeView.setParent(CompositeView.java:122)
at javax.swing.text.html.TableView.setParent(TableView.java:768)
at javax.swing.text.CompositeView.replace(CompositeView.java:200)
at javax.swing.text.BoxView.replace(BoxView.java:164)
at javax.swing.text.View.updateChildren(View.java:1126)
at javax.swing.text.View.insertUpdate(View.java:710)
at javax.swing.text.View.forwardUpdateToView(View.java:1217)
at javax.swing.text.View.forwardUpdate(View.java:1192)
at javax.swing.text.BoxView.forwardUpdate(BoxView.java:222)
at javax.swing.text.View.insertUpdate(View.java:716)
at javax.swing.plaf.basic.BasicTextUI$RootView.insertUpdate(BasicTextUI.java:1487)
at javax.swing.plaf.basic.BasicTextUI$UpdateHandler.insertUpdate(BasicTextUI.java:1726)
at javax.swing.text.AbstractDocument.fireInsertUpdate(AbstractDocument.java:184)
at javax.swing.text.DefaultStyledDocument.insert(DefaultStyledDocument.java:201)
at javax.swing.text.html.HTMLDocument.insert(HTMLDocument.java:232)
at javax.swing.text.html.HTMLDocument$HTMLReader.flushBuffer(HTMLDocument.java:3254)
at javax.swing.text.html.HTMLDocument$HTMLReader.addContent(HTMLDocument.java:3196)
at javax.swing.text.html.HTMLDocument$HTMLReader.blockClose(HTMLDocument.java:3128)
at javax.swing.text.html.HTMLDocument$HTMLReader$BlockAction.end(HTMLDocument.java:2334)
at javax.swing.text.html.HTMLDocument$HTMLReader.handleEndTag(HTMLDocument.java:2233)
at javax.swing.text.html.parser.DocumentParser.handleEndTag(DocumentParser.java:217)
at javax.swing.text.html.parser.Parser.parse(Parser.java:2072)
at javax.swing.text.html.parser.DocumentParser.parse(DocumentParser.java:106)
at javax.swing.text.html.parser.ParserDelegator.parse(ParserDelegator.java:78)
at javax.swing.text.html.HTMLEditorKit.read(HTMLEditorKit.java:230)
at javax.swing.JEditorPane.read(JEditorPane.java:504)
at javax.swing.JEditorPane$PageLoader.run(JEditorPane.java:551)
please share ideas to solve this problem

But how can I cause GUI thread to run in my thread
group? As I suppose GUI thread is started by JVM and
is something separate from my code - I can get a
reference to GUI thread but don't know how to
manipulate or replace it...One alternative is to completely separate the GUI code from your code.
Your code, which is wrapped in appropriate try/catch blocks, runs on its own thread and does its own processing. When it's done with that processing, it queues the results on the event thread for display. If an exception occurs during your processing, then you queue something that notifies the GUI.
The simplest way to implement this is to spawn a new thread for each operation. The Runnable that you give to that thread looks like the following:
public MyOperationClass implements Runnable
    public void run()
        try
            // do your exception-generating code here
            SwingUtilities.invokeLater( new MyGUIUpdateClass(param1, param2));
        catch (Exception e)
            SwingUtilities.invokeLater(new MyExceptionReporter(e));
}This is only a bare-bones solution (and hasn't been compiled). Since it separates the GUI from actual processing, you'll probably want to display a wait cursor while the processing thread is doing its thing. You'll probably end up implementing a class that implements this pattern. You may also want to create a producer-consumer thread, so that the user won't invoke, say, a dozen different operations at once.
However, this sort of code is absolutely essential to Swing programming. Most apps do extensive non-GUI processing, such as database queries. If you run such queries in the GUI thread, your GUI will freeze.
Sun has named this pattern "SwingWorker", although I don't think they've fleshed it out very fully: http://java.sun.com/products/jfc/tsc/articles/threads/threads2.html

Similar Messages

  • Parse method is not possible for this type Exception in web dynpro

    I have a file upload component and one button in a view.
    I have created a binary type context element and mapped it with fileupload component.while clicking the submit button I am getting " Parse method is not possible for this type" exception.
    help me out.

    Hi sridhar,
    Use this code for Upload
    context u create one attribute(up),u assign the data type as "Resource"(which is dictionary type)
    InputStream text = null;
        int temp = 0;
        try
             File file = new File(wdContext.currentContextElement().getUp().getResourceName());
             FileOutputStream op = new FileOutputStream(file);
             if(wdContext.currentContextElement().getUp()!=null)
                  text = wdContext.currentContextElement().getUp().read(false);
                   while((temp=text.read())!=-1)
                                                                       op.write(temp);
             op.flush();
             op.close();
        catch(Exception e)
         e.printStackTrace();   

  • Parse method is not possible for this type

    I have a file upload component and one button in a view.
    I have created a binary type context element and mapped it with fileupload component.while clicking the submit button I am getting " Parse method is not possible for this type" exception.
    help me out.
    Thanks In advance

    Hi,
    Thanks for your response. I have written the following code in wddoinit():     
    IWDAttributeInfo attributeinfo = wdContext.getNodeInfo().getAttribute(IPrivateSubstanceDocView.IFileUpload02Element.DATA);
        attributeinfo.getModifiableSimpleType();
    fileUpload02 is my context.
    but I am getting a null pointer exception over here.
    can ypu please help it.
    Actually the case is this is a window, which is opening on click of a hyperlink on another View.
    With the action method I am calling this View.
    Thus on click of a hyperlink just I am opening a new  View then here I am a browse button etc...
    PLease help if you can

  • Adobe Offline Form - Parse method is not possible for this type

    Hi All,
    I have developed an application for the offline scenario of interactive adobe form. I tried to load the adobe form from my desktop. After pressing the button "Display form" it throws an error "Parse method is not possible for this type".
    If I include wdContext.getNodeInfo().getAttribute("pdfObject").getModifiableSimpleType() in the doInit() method of the view I receive this error -
    com.sap.tc.webdynpro.progmodel.context.ContextException: MappedAttributeInfo(UploadView.pdfObject): must not modify the datatype of a mapped attribute
    When I comment it out and upload I receive the error enclosed -
    Parse method is not possible for this type
    Can someone please help me with a step by step solution to this problem?
    Any help is highly appreciated.
    Many thanks,
    Divya

    Hi Divya,
    Please try to do it as stated below:
         IWDAttributeInfo attInfo = wdContext.getNodeInfo().getAttribute("pdfObject");
         ISimpleTypeModifiable type = attInfo.getModifiableSimpleType();
         IWDModifiableBinaryType binaryType = (IWDModifiableBinaryType)type;
    Try putting the code in wdInit() or wdDoModifyView().
    Let me know if you still face the issue.
    Regards,
    Arafat

  • Posting with transaction type 160 is not possible at MR8M

    MODERATOR:  Do not post (or request) email address or links to copyrighted or confidential information on these forums.  If you do, the thread will be LOCKED and all points UNASSIGNED.  If you have some information, please consider posting it to the [Wiki|https://wiki.sdn.sap.com/wiki/display/ERPFI/Home] rather than sharing via email.  Thank you for your assistance.
    Hi All,
    We raised  a PO w.r.t CWIP asset and posted GRN (MIGO - Transaction typr:100) and Invoice (MIRO).
    Here, Invoice posted wrongly, So we are trying to reverse the invoice with MR8M (which is posted thru MIRO).
    But system populating one message as per the following:
    Posting with transaction type 160 is not possible here, see long text
    Message no. AAPO 177
    Diagnosis:
    Transaction type 160 has a depreciation limitation, although posting is not mandatory in all of the depreciation areas entered However, it is not possible to select depreciation areas in the current transactions.
    Procedure:
    Check the specification of transaction type 160 or use transaction MR8M to enter the transaction
    Please help
    Sairavi
    kumarfi9gmailcom

    Welcome to the forum.
    As a newbie you should understand the forum rules where you are not suppose to post any basic or repeated question.  To avoid this, you should make a search here
    [Forum Search|http://forums.sdn.sap.com/search!default.jspa?objID=f327]
    Type the same error text in Search Terms so that you will find the solution.
    thanks
    G. Lakshmipathi

  • F-02 with asset retirement: Trans. type not possible - No affil. company

    Hello Gurus,
    I am struggling with the following, I hope you can help me:
    We want to sell an investment using a trading partner. When entering the asset retirement transaction type 230, I get error message AA 389 Trans. type not possible (No affiliated company specified). I however enter the trading partner through 'More data' but when coming back to the asset retirement, T. type 210 is written and changing it to 230 gives me the error.
    I am using document type DR for which the flags 'enter trading partner' and 'Inter co. postings' are set. I tried without the flag 'Inter co. postings', no success.
    I have tried with Trans. type 210 and changing the line item after simulation, no success as well.
    The target document is:
    Pos. Posting Key       Account       Amount      Trading Part.
    1      01                      1195914       4,320.00
    2      50                      610720         4,320.00-   CI09
    After simulate:
    Pos. Posting Key       Account       Amount     Trading Part.
    1      01                      1195914       4,320.00
    2      50                      610720         4,000.00-  CI09
    3      50                      204010         320.00-     CI09
    4      75                      18678 0        0.01-
    5      40                      9740150       4,0000.00
    6      50                      9740100       3,9999.99-
    Many Thanks in advance.
    Alex-

    Hello Alex,
    Try F-92, on the screen for creating the revenue line item, i.e. the credit side, you must activate the indicator "asset retirement." > Next, press 'Enter' key, after which the screen 'Create Asset Retirement' appears and in this dialog box screen enter the appropriate 'Transacion Type' instead.
    Hope the above helps.
    Kind regards,
    John Chin

  • Dual Boot with Snow Leopard and Mavericks not possible?

    I have a Early 2011 Macbook Pro with 2,3 GHz i7 Quad and two 512 GB SSDs (the secondary disk in an optical drive bay enclosure). This Macbook Pro can run Snow Leopard and Mavericks on the primary disk without problems. When I try to set up a dual boot system however, problems appear and it looks like it is not possible. When I start from Snow Leopard, I cannot select Mavericks as a start volume and vice versa. The error message says something like "Bless tool" cannot use this disk, i.e. unmount and boot from it. The problem remains when I exchange the disks (putting the primary disk in the drive enclosure and vice versa). When I put the secondary drive in an external case however, it is possible to boot from it -  but strange things happen when the system starts: My computer clock is reset to 1/1/2001, WiFI passwords are not remembered for more than one session, disk permissions are reported as "repaired" but do apear as not repaired when I check them again - and other issues). I have verified both disks already and repaired permissions but that does not change the situation. So my experience is different from what is said in https://discussions.apple.com/thread/566781. It looks like the latest Mavericks cannot coexist with Snow Leopard on neiter a secondary internal drive nor on an external drive. This is strange since both disks and systems work flawless when run alone. Any suggestions to solve this problem?

    When I check the Mavericks disk in the optical drive with disk utility after booting / running Snow Leopard on the primary disk I get som errors, see below ("disk utility Info"). So after all, I decided to erase the disk and install Mavericks new. But even erasing the disk is not possible when it is in the optical drive enclosure. I get this error message:
    "Volume Erase failed with the error:
    Could not unmount disk"
    When I put this disk into an external case connected via USB however, it starts and runds MAvericks without any Problem. Same happens when I put thie Mavericks disk into the internal primary hard disk place.
    "disk utility Info" when verinfying the secondary drive in the oprical bay:
    Verifying volume “Samsung SSD Daten”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Checking extents overflow file.
    Unused node is not erased (node = 40)
    Checking catalog file.
    Unused node is not erased (node = 30)
    Checking multi-linked files.
    Checking catalog hierarchy.
    Checking extended attributes file.
    Unused node is not erased (node = 8)
    Checking volume bitmap.
    Volume bitmap needs minor repair for orphaned blocks
    Checking volume information.
    The volume Samsung SSD Daten was found corrupt and needs to be repaired.
    Error: This disk needs to be repaired. Click Repair Disk.
    Verify and Repair volume “Samsung SSD Daten”
    Error: Could not unmount disk

  • With iTunes 11, it is not possible to sync my iPhone, and my iPod with my computer

    Whith the new iTunes 11, it is not possible to sync my iPhone and my iPod with my computer.
    1. the iPhone AND iPod are not detected by iTunes, they don't appear any more on iTunes. (for eg with iTunes 10, we see clearly that an iPod/iPhone is connected)
    2. There is no possibility (page, button, etc) to sync and to see what is on the iPhone/iPod
    Why?
    How can i sync my iPhone and my iPod with iTunes 11?
    How can i manage what is to sync between iTunes 11 and the iPhone/iPod?

    Im using a PC, and yes i tried everything, turning my phone off, my pc off, plugging the phone on another computer, but nothing works

  • TS3297 Why I can't download a free game I get a message that there's a problem with my payment method but not what it is this is a free app I tried support and got nowhere help

    Why can't I down load a free app  I get a message that there is a problem with my payment method but I gave all information correctly , I did recently change my card no because I lost my old one .i did change the no. On my account      HOPE YOU HAVE SOME SUGGESTIONS  I DON'T SEE WHY THEY HAVE TO CHECKMY PAYMENT METHOD FOR A FREE GAME

    Contact iTunes customer support.
    We're all users like yourself and as such have no access to your account.

  • Why global var can be initialized with a static method and not by other static global var declared after its usage

    Take this:
    class test
    static int i=j;
    static int j=10;
    this will give illegal forward reference ....
    but this will compile successfully ..
    class test
    static int i=test1();
    static test1()
    return 20;
    plz assume we have main method in both cases ..
    java would be loading all static members first and would be assigning default values .. and then will be running all the initializers from to bottom ..
    Why second case is a compile success and not first .. as in second also test1 method is declared after its usage ..
    Plz help.
    Thanks
    Abhishek Roshan

    Why second case is a compile success and not first .. as in second also test1 method is declared after its usage ..
    Because the implementors of Java intentionally chose to do it that way.
    There are TWO stages to the process: preparation (which occurs first) and initialization.
    See the Java Language Spec section 12.4.1 'When Initialization Occurs
    The intent is that a class or interface type has a set of initializers that put it in a consistent state, and that this state is the first state that is observed by other classes. The static initializers and class variable initializers are executed in textual order, and may not refer to class variables declared in the class whose declarations appear textually after the use, even though these class variables are in scope (§8.3.2.3). This restriction is designed to detect, at compile time, most circular or otherwise malformed initializations.
    Note the clause beginning 'may not refer to class variables'. And the authors give the reason for that restriction in the last sentence: detect circular initializations.
    Then if you check that referenced section 8.3.2.3 you will find this
    http://docs.oracle.com/javase/specs/jls/se7/html/jls-8.html#jls-8.3.2.3
    8.3.2.3. Restrictions on the use of Fields during Initialization
    The declaration of a member needs to appear textually before it is used only if the member is an instance (respectively static) field of a class or interface C and all of the following conditions hold:
      The usage occurs in an instance (respectively static) variable initializer of C or in an instance (respectively static) initializer of C.
      The usage is not on the left hand side of an assignment.
      The usage is via a simple name.
      C is the innermost class or interface enclosing the usage.
    When a method is used (your example 2) no circular initialization can occur because methods are not 'initialized'.

  • Exception With JEditorPane

    For some reason I sometimes get an exception when displaying an HTML page in a JEditorPane. Heres the exception:
    java.lang.ArrayIndexOutOfBoundsException: 0
            at javax.swing.text.html.BlockView.layoutMinorAxis(BlockView.java:244)
            at javax.swing.text.BoxView.setSpanOnAxis(BoxView.java:326)
            at javax.swing.text.BoxView.layout(BoxView.java:682)
            at javax.swing.text.BoxView.setSize(BoxView.java:379)
            at javax.swing.plaf.basic.BasicTextUI$RootView.setSize(BasicTextUI.java:1598)
            at javax.swing.plaf.basic.BasicTextUI$RootView.paint(BasicTextUI.java:1317)
            at javax.swing.plaf.basic.BasicTextUI.paintSafely(BasicTextUI.java:635)
            at javax.swing.plaf.basic.BasicTextUI.paint(BasicTextUI.java:769)
            at javax.swing.plaf.basic.BasicTextUI.update(BasicTextUI.java:748)
            at javax.swing.JComponent.paintComponent(JComponent.java:541)
            at javax.swing.JComponent.paint(JComponent.java:808)
            at javax.swing.JComponent.paintChildren(JComponent.java:647)
            at javax.swing.JComponent.paint(JComponent.java:817)
            at javax.swing.JViewport.paint(JViewport.java:707)
            at javax.swing.JComponent.paintChildren(JComponent.java:647)
            at javax.swing.JComponent.paint(JComponent.java:817)
            at javax.swing.JComponent.paintWithOffscreenBuffer(JComponent.java:4771)
            at javax.swing.JComponent.paintDoubleBuffered(JComponent.java:4724)
            at javax.swing.JComponent._paintImmediately(JComponent.java:4668)
            at javax.swing.JComponent.paintImmediately(JComponent.java:4477)
            at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:410)
            at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueueUtilities.java:117)
            at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:448)
            at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)I'm not sure if this is even my fault. It loads the exact same HTML page everytime, but only sometimes gives the exception. Any thoughts?

    it's because they don't care and don't have enough time/money/ability to fix the problem. I too get that error and have seen about 7 bug reports all pointing to the same problem. Half have been closed due to duplicates, the others they say are due to synchronization problems.
    Bottom line: they won't fix it and Swing is dying quickly. They've put all their effort in trying to head off M$ with their Web Services and so something has poorly built as Swing does not get any attention. Some people are reverting back to AWT whereas some are going with that SWT thing.
    As for me, I'm really starting to enjoy C#. It's sooooo easy to use, and the irony is that ..... there are very few bugs as compared to Java.
    ;o)

  • My ipad is telling me it is synced with another computer which is not possible.

    I was trying to sync my bookmarks between safari on my computer and my ipad. I plugged my ipad into my computer to check the settings in itunes. I then noticed that i had not set my books to be synced between itunes and my ipad. When i tried to sync them, i got the error that my ipad is synced with itunes on another computer and can only be synced to one computer.
    I dont understand why it would tell me this when i used this computer for my ipad. I setup my new ipad 3, i then plugged in my ipad 1 into my computer to make a backup. Then while going through the setup on my ipad 3 it gave me the option to recover from a backup on my computer. I chose that option and havent messed with my settings since. I might have plugged it into my other computer to charge, but i originally set it up with this computer, i never have touched anything on the other computer when ive plugged in my phone or ipads, and my phone does not encounter this issue, nor does my original ipad.
    Why is it telling me i need to have it synced to only one computer, when this is the only computer its ever been synced to? What can i do about this, i dont want to wipe my ipad and then recover from a back up again when this error shouldnt even be popping up in the first place.
    I have not done any drastic changes to my computer like reinstall the OS or recover from a backup. Im not even using a different user, i have no need to.
    Anyone have any idea what i should do? Is wiping my ipad and syncing it with the computer it was synced to before my only option?

    What exactly will this do? This wont reset my stuff will it? I have some stuff saved on my ipad that i believe wont get transfered over if i wipe my ipad. Please lemme know because im affraid to try this until i know its not gonna reset my ipad.
    @Demo, i plugged it in and itunes auto launched form the other computer, i think it was barely charging it or just holding it at the charge level the battery was at. I did this after i had gone through the setup steps where it asked if i wanted to recover from a backup. This is when i plugged it into a computer for the first time and i restored from a backup of my ipad one on this computer. The other computer was the one i plugged the new ipad into for a short period of time. Idk how auto sync works other than on my main itunes, my phone for example will auto sync videos i have. But i didnt really set anything up on my ipad. Also the original ipad was syncing to this computer as well.
    Thanks

  • Cold migration of old LDoms with slice-based system disks - not possible?

    We have a couple of older T5120s that we would like to upgrade both the firmware and LDoms software on.
    Currently they both run LDoms 1.2; we'd like to go to 2.0 or hopefully 2.1.
    cas2:1:1006 [root] # ldm -V
    Logical Domain Manager (v 1.2_patch)
    Hypervisor control protocol v 1.4
    Using Hypervisor MD v 1.1
    System PROM:
    Hypervisor v. 1.7.4. @(#)Hypervisor 1.7.4.a 2009/09/21 08:25\015
    OpenBoot v. 4.30.4 @(#)OBP 4.30.4 2009/08/19 07:23
    We thought we would clear out our other "sandbox" T5120 (with LDoms 2.0) and migrate the client LDoms in the machines to be updated over to the sandbox, so if anything went wrong we could clear out the old 1.2 machine and then re-migrate the LDoms back over to it.
    Well, it turns out the client LDoms on the 1.2 system were made with paired slices as the system disks instead of files :-(
    vdisk0@casdev c1t0d0s3
    vdisk1@casdev c1t1d0s3
    vdisk0@casray c1t0d0s1
    vdisk1@casray c1t1d0s1
    In one of the client LDoms it has (as you would expect, given this setup)
    NAME STATE FLAGS CONS VCPU MEMORY UTIL UPTIME
    casdev active -n---- 5000 12 4G 0.1% 414d 18h
    DISK
    NAME VOLUME TOUT ID DEVICE SERVER MPGROUP
    vdisk0 c1t0d0s3@primary-vds0 0 disk@0 primary
    vdisk1 c1t1d0s3@primary-vds0 1 disk@1 primary
    The control LDom for these client LDoms has 2 disks and slice 0 of each disk (~ 20 GB) is used for the control LDom, and there are these other slices (slice 1, 3, ... also each ~ 20 GB) for the client LDoms.
    The target "sandbox" system we wanted to migrate to also has 2 disks, but slice 0 of each is a single, disk-spanning partition - since we're using files as virtual disks for the client LDoms that were previously on that system (since wiped out), there was no need for multiple slices.
    I'm guessing that with this setup there is no way to even do a cold migration of the old LDoms 1.2 client LDoms to the newer LDoms 2.0 sandbox system, short of a complete reinstall of the sandbox to create a similar slice-based setup. :-(
    (Unless it involved somehow re-slicing the control LDom's disks and making identically-sized partitions to match the old system's and then - somehow - "dd"'ing the source system's client LDom disk slices over into the target system's)
    Am I right?
    Edited by: Riot Nrrrd™ on Oct 28, 2011 3:30 PM

    I'm guessing that with this setup there is no way to even do a cold migration of the old LDoms 1.2 client LDoms to the newer LDoms 2.0 sandbox system, short of a complete reinstall of the sandbox to create a similar slice-based setup. :-(
    (Unless it involved somehow re-slicing the control LDom's disks and making identically-sized partitions to match the old system's and then - somehow - "dd"'ing the source system's client LDom disk slices over into the target system's)If you are not using SAN-disks, then it is a bit difficult to do the migration. If you are using ZFS on LDoms 2.0 sandbox, you could try to create ZFS volumes for guest domains and send data on those volumes from LDoms 1.2 system, after creating guest domains from exported XML configurationg files.
    Does this sound tryable solution?

  • Client access from W7 to Server 2008 with SQL Express 2008 R2 not possible anymore (since installing yesterdays patches)

    Hi everyone!
    We are suddenly having Problems to access our SQL Express Server from our Clients (SBS 2008 with W7 clients).
    Till yesterday evening everything was working fine. At night we installed the latest MS patches für our Server 2008 (SBS2008).
    Since then we are not able to connect to the SQL Express Server over the Network. Locally (on the Server) it runs fine.
    Switching the Windows Firewall off on the Server also lets the clients connect ...
    The Windows Firewall still has all the ports open needed for SQL Server, we havn't changed anything.
    All the incoming rules that worked for years are still there (untouched).
    We just deinstalled all the latest patches, but problem still is here ... not sure if this was just a coincidence ...
    Any ideas what could be the Problem?
    Thanks in advance for your help
    Best regards
    Thomas

    Check firewall rules
    enable traffic on TCP 1433 and UDP 1434 (if isn't a named instance) or check sql using ports.
    Check Sql Server Browser in Configuration Manager and also net protocols.
    let's know about it
    Best regards,
    P.Ceglie
    Questo post è fornito "così com'è". Non conferisce garanzie o diritti di alcun tipo. Ricorda di usare la funzione "segna come risposta" per i post che ti hanno aiutato a risolvere il problema e "deseleziona come risposta" quando
    le risposte segnate non sono effettivamente utili. Questo è particolarmente utile per altri utenti che leggono il thread, alla ricerca di soluzioni a problemi similari. ENG: This posting is provided "AS IS" with no warranties, and confers no rights.
    Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • I have buy some product from the Store in PC my wife with my account and after i want download the product in my iPHONE with my PC this in not possible.

    Hi all,
    last day i buy some products from the APPLE Store with the PC Wife. My iPHONE was connect with the PC. After when i connect the iPHONE with my PC the itunes didn't sync the product and delete in my iPHONE the old application. Now i want in my iPHONE the old product and the new. Can you hel me? Have you a suggest.. During the start of the sync iTunes identify the all application in but not sync with iPHONE.
    Help Me
    Max

    I had this problem too and my roommate solved it!
    Go to 'Settings'
    'Music'
    Scroll to the bottom and enter your password to log onto your home sharing
    Then connect to iTunes and sync!

Maybe you are looking for

  • Create PDF from Infopath 2003 form?

    Hello all: New to this forum, and not experienced in Adobe at all. I have used "CutePDF" to generate PDF versions of Microsoft Infopath 2003 forms. However, I have a colleague who needs to do this, but IT won't permit installation of "CutePDF". She *

  • Error after checking our webdynpro DC from DTR

    We have recently upgraded our JDI to SP 16 including our development and production servers. Now when we create a new DC of webdynpro type, everything works fine. We have also tested the simple webdynpro application on Local WAS. Then the activities

  • Where can I get a users manual for my EOS 600

    I have searched everywhere but can't get any info on my Canon EOS 600 .Every time I enter EOS 600  I get info on a Rebel or a Rebel Ti or Elan or some other Canon camera. Canon does have info on a 620 , a 630 , and a 650 but nothing on a EOS 600 , Th

  • Where can I get Client for Win95?

    Hi. Maybe who know where can I get Client for Win95? I use client from Oracle73. But It'doesn't work properly. Thnak You in advise. null

  • Problems with Oracle 9i installation on Linux

    Hi guys I am trying to install oracle 9i enterprize edition on Linux server 9.0, everything goes smooth until at the very last when it comes to installing the tools, it gets stuck there and does not go ahead. I gave it over 6 hours of time but no res