2 frames in same VM cause problem when one frame sleeps

Hi,
I need to have 2 frames within the same application. At one stage one thread needs to sleep for app. 5 seconds. During this period the other frame fail to repaint itself. I have tried lots of different things like starting the frames in different threads - but nothing work. Has even tried JDK1.5 update 5.Has anybody experienced something similiar? I've attached some code that creates 2 JFrames. One holds a label, and the other is one big button which causes a sleep. When this button is pressed the label on the other frame fail to paint.
import javax.swing.JFrame;
import java.awt.BorderLayout;
import javax.swing.JLabel;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.awt.Frame;
import java.awt.Toolkit;
public class Main {
  public Main() {
    JFrame frame1 = new JFrame();
    frame1.getContentPane().setLayout(new BorderLayout());
    JLabel label = new JLabel("Frame 1");
    frame1.getContentPane().add(label, BorderLayout.CENTER);
    frame1.setSize(Toolkit.getDefaultToolkit().getScreenSize());
    frame1.setExtendedState(Frame.MAXIMIZED_BOTH);
    frame1.show();
    new Thread(new Runnable() {
      public void run() {
        JFrame frame2 = new JFrame();
        frame2.getContentPane().setLayout(new BorderLayout());
        JButton button = new JButton("Go to sleep");
        button.addActionListener( new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            try {
              Thread.currentThread().sleep(5000);
            catch (InterruptedException ex) {
        frame2.getContentPane().add(button, BorderLayout.CENTER);
        frame2.setSize(Toolkit.getDefaultToolkit().getScreenSize());
        frame2.setExtendedState(Frame.MAXIMIZED_BOTH);
        frame2.show();
    }).start();
  public static void main(String[] args) {
    Main main1 = new Main();
}

You are sleeping in the Event Dispatch Thread - this will prevent all Swing events from being processed (including as you have discovered, painting).
I suggest you do some reading on the subject.
To solve your problem, you will need to thread the sleep outwith the event dispatch thread, and have your sleeping frame wait for the sleep to end before continuing (eg disable components before & re-enable after - whatever it is you need to do).
General rule of thumb - never perform time consuning work in the Event Dispatch Thread.

Similar Messages

  • TS1702 I have an iphone and my 2 children have ipods.  all 3 on the same apple id.  when one of their ipods gets a face time call , all 3 devices ring. i dont want to get these face time calls on my iphone or the other ipod .  what is the solution to this

    i have an iphone and my 2 children have ipods. all 3 on the same apple id.  when one ipod gets a facetime call, all 3 devices ring.  how do i prevent all three devices getting the facetime call as it is intended for only one of the ipods?

    You can all have independent AppleIDs for iCloud or iMessage etc, but share the same one for iTunes Store / AppStore purchases.

  • Problem when waking from sleep

    Hi all, my mbp has real problems when waking from sleep - I hear the dvd drive do something, the screen comes on but remains black, and then nothing else - no keys work, only holding the power button has any effect.
    I have a screensaver password on.
    Anyone heard of this before or have any ideas?
    Thanks!

    It might also be worth trying the following:
    Reset PRAM and NVRAM: http://support.apple.com/kb/HT1379
    Reset SMC: http://support.apple.com/kb/HT1411

  • JTree + FK with same value causing problems

    Hi
    I can't figure this out. If I create biz components for 2 tables having a parent-child relationship and a jTree with appropriate rules, things are ok only if the parent's id are of different values than the child. When parent.id and child.id have the same values the jTree seems to recursively fire valueChanged() at strange times.
    Example:
    CREATE TABLE PARENT
    PARENT_ID NUMBER CONSTRAINT PARENT_ID_NN NOT NULL,
    PARENT_NAME VARCHAR2(40 BYTE),
    CONSTRAINT PARENT_C_ID_PK
    PRIMARY KEY
    (PARENT_ID)
    CREATE TABLE CHILD
    CHILD_ID NUMBER CONSTRAINT CHILD_ID_NN NOT NULL,
    CHILD_NAME VARCHAR2(40 BYTE),
    PARENT_ID NUMBER,
    CONSTRAINT CHILD_C_ID_PK
    PRIMARY KEY
    (CHILD_ID)
    ALTER TABLE CHILD ADD (
    CONSTRAINT PARENT_FK
    FOREIGN KEY (PARENT_ID)
    REFERENCES PARENT (PARENT_ID));
    INSERT INTO PARENT VALUES (1, 'Parent 1');
    INSERT INTO PARENT VALUES (2, 'Parent 2');
    INSERT INTO PARENT VALUES (3, 'Parent 3');
    INSERT INTO CHILD VALUES (100, 'Child A', 1);
    INSERT INTO CHILD VALUES (200, 'Child B', 2);
    INSERT INTO CHILD VALUES (300, 'Child C', 3);
    I use the JDev 10.1.2 wizard to create biz components and test the AppMod to make sure the link works. Now I create a blank panel and drag over the ParentView data control. Using the jTree tree binding editor I create two rules:
    1) DataCollectionDef.ParentView - DisplayAttribute.ParentName - BranchRuleAccessor.ChildView
    2) DataCollectionDef.ChildView - DisplayAttribute.ChildName
    Now I add a tree selection listener:
    jTree1.addTreeSelectionListener(new TreeSelectionListener()
    public void valueChanged(TreeSelectionEvent e)
    DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode)jTree1.getLastSelectedPathComponent();
    if (selectedNode != null)
    System.out.println(selectedNode.getUserObject().toString());
    When I run my panel and watch in JDev everything is fine, i.e. nothing is printed to the screen when it first loads and when I click a node, the correct UserObject prints.
    Here's the rub, now I close the panel and update my child table as follows:
    UPDATE pdssuser.child SET child_id = 1 WHERE child_id = 100;
    UPDATE pdssuser.child SET child_id = 2 WHERE child_id = 200;
    UPDATE pdssuser.child SET child_id = 3 WHERE child_id = 300;
    This time, when I run my panel, the console shows that valueChanged() has been fired 3 times on load:
    Parent 1
    Parent 2
    Parent 3
    This behavior is causing problems with my real tree.
    I haven't had any luck finding threads about this. Any ideas?
    Thanks
    John

    ok, last one (i hope)
    The same issue occurs with 10.1.2.1
    ...but changing the location where I add the treeSelectionListener to after setBindingContext() seems to fix the problem.
    The second call to panelBinding.refreshControl() in setBindingContext() (the one after the call to jbinit()) is what fires the valueChanged events. Somewhere in there, DCBindingContainer.java or DCIteratorBinding.java, the treeSelectionListener is hearing that a value changed (maybe due to a query execution?). I guess the jTree1.setModel(...) call in jbinit() simply sets up the tree but the VO queries described in the Branch Rule accessors are executed on the refreshControl.....i'm out of my comfort zone here and may be confusing you with my "troubleshooting" so I'll just tell you my work-around.
    So to fix it I add the treeSelectionListener in my main method (not jbinit()) after the setBindingContext() has been called.
    I still have no idea why the FK triggers this behavior...but at least it's working.
    * the main method
    public static void main(String [] args)
    try
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    catch(Exception exemp)
    exemp.printStackTrace();
    Panel1 panel = new Panel1();
    panel.setBindingContext(JUTestFrame.startTestFrame("DataBindings.cpx", "null", panel, panel.getPanelBinding(), new Dimension(400, 300)));
    panel.revalidate();
    // Now add the treeSelectionListener
    panel.addSelectionListener();
    * the JbInit method
    public void jbInit() throws Exception
    this.setLayout(borderLayout1);
    this.add(jTree1, BorderLayout.CENTER);
    jTree1.setModel((TreeModel)panelBinding.bindUIControl("ParentView1", jTree1));
    // DON'T ADD treeSelectionListener here
    * Add the selection listener to the tree
    public void addSelectionListener()
    jTree1.addTreeSelectionListener(new TreeSelectionListener()
    public void valueChanged(TreeSelectionEvent e)
    DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode)jTree1.getLastSelectedPathComponent();
    if (selectedNode != null)
    System.out.println(selectedNode.getUserObject().toString());
    }

  • I deleted the 4oD app from my iPad but it still appears in the list in Settings. How do I get rid of that? It is causing problems when they issue updates as it apparently thinks I still have it when I don't.

    Can any one help me get rid of a deleted app 4oD that still appears in the Settings list. I deleted it from the home screen and Spotlight search confirms it has gone. It is causing problems because I get notified of updates and I cannot get rid of them either. I have tried re-downloading via my MacBook because there isn't a download option from the iPad (App Store clearly think I still have it when I don't) then deleting again but the listing in Settings remains.
    It is really irritating me.
    Thanks.

    Have you tried deleting the App within the Settings menu (rather than from the Home Screen)?
    Settings>General>Usage>
    From the Apps list, find the App (press "Show all Apps" if the app is not in the immediately shown list), tap on the app you wish to delete, then tap "Delete App"

  • Firewire device causing problems when connected to Mini via LaCie ExtHD/Bus

    Hello there..
    Just bought LaCie 300GB Ext.HD/Bus(Firewire &USB). It was recognized by my Mini no problem. I have used the firewire connection between The HD and the mini. The problems begin when I try to connect my M-Audio firewire audio interface (it's mains powered, by the way) to one of the firewire bus inputs of the LaCie - then every action gets the dreaded spinning beachball and I have to shut down etc. The connection of this device has even prevented the HD being recognized by my system, in the case where I have tried having it already connected and powered up before switching on and connecting the HD to the Mini.
    I've tried other things such as PMU reset, to no lasting avail.
    This is the same firewire audio interface that has worked fine for months when plugged directly into the Mini, so why should there be a problem when it's connected to the bus port of the HD?
    Now, as a temporary solution, I have changed the connection between the Mini and the HD/Bus from Firewire to USB - this means I can now use the FW port on the Mini to connect my audio interface (as before). The problem with this is that I work alot with video as well as audio, and have learned that it's very advisable to use firewire drives when working on video...but there is only one FW input on my Mini, so if the La Cie HD is using that, there is no port for audio interface to go in...that's why I bought this particular HD - more storage on a FW HD which has extra FW bus ports for such things as audio interfaces!
    I hope I've explained the problem OK, thank you in advance for any advice.
    Jimmy

    You don't mention which model you have, but this is from the M-Audio Firewire 410 Manual Troubleshooting section:
    The FireWire 410 has been designed to give you high performance and professional quality audio. It has been tested under a wide range
    of systems and operating conditions. In the real world, however, there is a nearly infinite number of possible operating scenarios, any of
    which could affect your system’s performance. Much like owning an automobile, “your mileage may vary.” This section can not begin to
    cover all possible issues you may encounter, however we want to give you some suggestions on common problems you may experience.
    One thing to avoid is connecting too many devices. The FireWire bus is a dependable, high-speed, high-bandwidth protocol which is ideally
    suited for digital audio. Nonetheless, it’s important to remember that audio and multimedia streaming places considerable demands on
    your processor and the FireWire bus. Although it is theoretically possible to chain many multiple FireWire devices in series, doing so may
    potentially degrade your audio performance.
    I guess this degradation could also affect the Firewire HD. Maybe there is a simple fix, but it sounds like the M-Audio people have been down this road before.

  • Website structure causing problems when creating livecopy based on a blueprint

    Hi,
    Our website structure goes like this:
    company/
         products/
         services/
         contact us/
         etc...
    Our site is single language and hence the structure. Now we have a problem when creating a livecopy (for mobile site) based on a blueprint.
    It seems that for the livecopy (based on a blueprint) to work, the site structure needs to be like this:
    company/
         en/
              products/
              etc...
    It's too late for us to include another layer. What's the best way to create a livecopy based on a blueprint? Or should we just go with livecopy without the blueprint? But then are we missing out on the sync benefit from the blueprint?
    Thanks!!

    Hi Chaack,
    Thanks for this idea. I have tried this before but couldn't get the livecopy to sync.
    I tried to do it through the blueprint by right click and select 'rollout'. But nothing happens. The 'blueprint' tab on the page properties on the livecopy site is grayed out. I think the blueprint I created is not associated with the livecopy and that's why the rollout does not work. If the livecopy was created through 'Create site' then the blueprint is available to choose on step1. But not when you 'create live copy'. Is there anyway to link the blueprint to the livecopy if the livecopy was created through 'create live copy'?
    Thanks!!!

  • 2.2 update causes problems when fastforwarding through streamed videos

    Has any else exprienced problems when trying to fast forward or skip to later sections of a large movie file (>1 gig) that is being streamed from a shared network folder? After the 2.2 update the file often not play after FFwarding but rather continuously tries to 'load' the file - the loading bar usually gets to about 99% but never to 100%. This problem was not existent for me with the 2.1 software.

    After doing a factory re-install of ATV 2.1 software (from 2.2) the streaming worked just fine again with my mac mini and router. There are reasonable seek delays but not like in 2.2 where the delay is indefinite. My iTunes library is being streamed from a USB harddrive attached to my mac mini. My LAN setup is wired so the problems I am experiencing is not due to wifi lag.
    All of my files that I am attempting to stream are large, single chapter videos. I doubt it is a chapter issue, however, as even fast forwarding hangs the video playback after a few seconds of seeking.

  • My wife and I each have an Ipad and only one mail account. Both of us receive the same e-mails but when one of us deleates an e-mail it also deleates on the other Ipad. How can I stop this? I might delete an e-mail she wants to read. Thanks

    My wife and I each have an Ipad and use only one mail account. Both Ipads therefore get the same mail and when either one of us deleates an email it also deleates on the other Ipad and this can be a problem if one of us doesn't want that e-mail deleted. Obviously our Ipads are synced and I don't know how to correct this. Any advice ?

    If you both have the same email account, there's no setting on iPad you can use.  When a message is deleted, it's deleted from the mail account server, which will happen on both devices. 

  • My external hard drives are causing problems when i capture DV in FCP

    We have external hard drives (2 different brands lacie and WD) are causing dropped frames when I capture DV in FCP. This only happens when they are connected via firewire 800. When I connect them using USB everything works great. Any ideas why this could be? We have 2 of each drive and 2 older mac pros and they both have this issue with every combination of drives I try. I've also tried reseting the ports with no luck...

    Connecting your camcorder to even 1 FW drive constitutes daisy-chaining.  Even if you have two FW ports in your Mac, connecting a drive to one port and your camcorder to the other is the same as daisy-chaining as far as  your Mac is concerned.
    Try capuring from your camcorder with no exernal FW drives attached.  Verify that works before trying anything else.
    Also, I noticed your profile says you have a Mac Pro.  You might consider adding a FW card in order to get extra FW ports that are not on the same FW bus as the built-in FW ports.  Then you could connect your external FW drives to the card; and your camcorder to the built-in ports and it should work.

  • Photoshop CS6  transparent mask causing problems when saved as RGB Tiff and placed into CS5 Indesign

    Is anyone aware of a gray/black halo around feathered transparency objects. The halo occurs where the solid area of pic feathers to the transparent.
    NOTE: Image looks fine in Photoshop(CS6) but when placed as an RGB TIFF into Indesign (CS5) a black halo appears on page. See visual explanation below.
    This only happens when image is an RGB Tiff and layer mask is used to create transparency. If image is saved as .psd then it is fine. Also when RGB tiff is converted to CMYK then this is also ok.
    Is
    I look forward to anyone's suggestions.
    Ideally I could just start using psd format, but I have to handle alot of images that are already in RGB tiff and it is time consuming to have to open and re-save all of these.
    Adobe Photoshop CS5 RGB tiffs are still working fine.
    Thanks.
    Colourjam.
    (Pre-Press Production  Digital Image Operator)

    Yes the halo is does appear on the final PDF used for printing, and therefore does unfortunately print.
    Why would RGB Tiffs in Photoshop CS6 suddenly cause this to happen. If we revert back to placing Photoshop CS5 files into Indesign,  all is good.
    Also it is not just an isolated event as my colleague has the same thing happening on his workstation.
    Could it be that that Indesign 5  cannot colour manage the new CS6 RGB Tiff files? 
    CMYK tiff works well, as does PSD (CMYK and RGB)
    Also please note, that if you were trying to recreate this to see if you get the samed problem, the halo occurs as soon as you create transparency with a layer mask and feather the edge of mask, and then save as RGB tiff.  It will not be visible if you have a hard line or a vector edge.
    Just for the record here is our set up.
    Indesign CS5 (PC)
    Photoshop CS6 (PC)

  • My group box is causing problems when searching for a text line in a text file.

    I am developing a booking system, so for this I need to ensure that no two clients can book the same appointment slot. So, on testing my code which prevents double booking, the system doesn't seem to find the text line being searched for in the text file
    when it (purposefully) should.
    I have tried isolating the problem using breakpoints, and I've found that when the 'SearchLine' (referring to my code below) does not include the 'TimeComboBox.text' piece and instead this value is written into the code, the system is able to find the SearchLine
    without any problems. But, when assigning the group box's value to a variable and using this in the SearchLine instead, or without even using a loop and just doing a simple line by line search, the program can't find this line of text in the file.
    I'm lost for ideas. I have tried everything I can think of. Could anyone make any suggestions as for what is the problem with my group box? (I'll explain the code beneath it).
    'Setting the value of the SearchLine (which is a String)
    SearchLine = String.Concat(DateTimePicker1.Value.Date & " " & TimeComboBox.text)
    Dim FoundApp As Boolean
    Dim objReader As New System.IO.StreamReader(basicfilepath & "Text Files\Client Booked Appointment DatesTimes.txt")
    FoundApp = False
    'Reading the file's contents and checking for the SearchLine
    Do While (objReader.Peek() <> -1) or (FoundApp = True)
    If (TextLine = SearchLine) Then
    'Line contains SearchLine. Appointment already exists.
    FoundApp = True
    Else
    'Line doesn't contain SearchLine. Carry on searching.
    Msgbox("Line not found.")
    End if
    Loop
    Explanation
    When the line is searched for, the 'FoundApp' value must be set to 'True' when it is found. If it is not found, it remains false.
    To isolate the problem, I've displayed the SearchLine in a message box in the past to make sure that the correct line of text is being searched for.
    In basic terms, my program is searching for the exact line of text which exists in the text file, but for some reason it is not coming up as 'Found'. The error occurs when the group box's value is used. The text file which is being read is
    definitely correct. Please help, any suggestions would be appreciated.
    Thank you

    Hi
    It would appear that your snippet doesn't actually read the file at all.
    Here is my test which works fine.
    Option Strict On
    Option Infer Off
    Option Explicit On
    Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles Me.Load
    Dim SearchLine As String = "18:09:38 : XTaskSettings.Load PARAMS: begin"
    Dim FoundApp As Boolean = False
    Dim TextLine As String = Nothing
    Dim objReader As New IO.StreamReader(Application.StartupPath & "\Data\Report Q1.txt")
    FoundApp = False
    Do While (objReader.Peek() <> -1) Or (FoundApp = True)
    ' this was missing
    TextLine = objReader.ReadLine
    If (TextLine = SearchLine) Then
    'Line contains SearchLine. Appointment already exists.
    FoundApp = True
    MsgBox("Line found.")
    Else
    'Line doesn't contain SearchLine. Carry on searching.
    MsgBox("Line not found.")
    End If
    Loop
    End Sub
    End Class
    Regards Les, Livingston, Scotland

  • VERY SENSITIVE TOUCHPAD CAUSING PROBLEMS WHEN TYPING MESSAGESS IN WINDOWS LIVE MAIL

    The laptop was recently purchased new. Windows Live Mail was installed and a mouse is used.
    In respondng to an email, new email or typing a message in a forum setting such as this, the entire text would disappear which was often before a complete sentance could be typed and could not be retrieved. This process would repeat itself over and over again.
    A technical representative from the company that sold the laptop concluded that combined with a very sensitive touchpad,
    a moving cursor arrow, shadow from the typing hand and lightly brushing the touchpad with the typing hand either singularly or in any combination were the likely causes of the problem. He then, using the software in the laptop, deactivated the tap function in the touchpad leaving all other functions in the touchpad in place.  This resolved the problem.
      -  Is there a device or software in the laptop that adjusts the sensitivity of the touchpad so that the tap function can be restored?
       - Is it possible that the combination of Windows 8.1 and Windows LIve Mail  is really the problem  and if so, how is this  determined and if necessary resolved?
       -Is there a hardware / software malfunction in the laptop causing this problem?
    Any advice and comments would be appreciated

    Hi @unfinished ,
    Welcome to the HP forum!
    It is a fantastic place to find answers and suggestions!
    I see that your new HP notebook's touchpad is very sensitive and you would like to be able to alter that.  Here is a link to
    Using and Troubleshooting the TouchPad or ClickPad (Windows 8).  There is a link to how to adjust the sensitivity.
    As it is a new purchase you should be in warranty and can contact HP support for assistance if this did not help.
    Please call our technical support at 800 474 6836. If you live outside the US/Canada Region, please click the link below to get a support number for your region.
    World Wide Phone Support
    Best of Luck and
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Bright blue cast causing problems when adjusting blacks on RAW files

    Just recently, I'm seeing bright blue in the darkest areas of my RAW images when working in Elements 8.  It's very distracting, as you can imagine.  Of course, when I adjust the blacks with the Alt key and the slider it just gets worse.  If I complete the adjustments to the RAW file, save it as a PSD and then open it in the regular Elements workspace, the bright blue colors disappear and the photo looks normal.  Any idea what might be causing this and how do I fix it?

    Thank you to a fellow photog who answered my question via Facebook!  Apparently one of my assistants mistakenly made adjustments in the Libray tab to the "Saved Prest" which saved her settings as "Custom" as well as saved the Whitebalance change she made there and the Tone Control section.  I hit the "reset all" button under Tone Control and all is right with the world again! WHEW!

  • ITunes causing problems when downloaded to windows 8

    I downloaded iTunes to my new Toshiba which came with Windows 8.  It recognized my iPad no problem, however, the next day my computer kept turning itself off and then restarting every 3 or 4 minutes.  The Toshiba tech help said it was because Windows has made Windows 8 incompatible with iTunes.  We did a factory reset on my computer but I would really like to have iTunes on it.  I haven't heard anything else like this, has anyone here?

    Sorry I found this so late, its March 5th 2013 and yes the issue is the same. Basically iTunes and Windows 8 are incompatable.
    I had to so the same and spent the next 2 days re-installing everything. I made this same mistake twice, thinking" oh no thats not possible, Apple would never relase that" ..well they did and it needs to be fixed. I will email them and bring this to their attention.
    Basically after I installed iTunes and my DVD drives ( I have 3) disappeared and my registry was corrupted.
    Fortunately I have  True Image and had a back up image.
    So folks, out there if you have Windows 8 Pro and an Intel chipset, what has been your experience after installing the latest iTunes??
    For my part, I have dual boot with Windows 7 on it, , the latest iTunes works fine.

Maybe you are looking for

  • No sound from tv speakers connected to mac mini (toslink/digital out)

    Hi there, I followed this guide: http://www.tuaw.com/2009/08/21/ultimate-mac-mini-htpc-guide-hardware/ and bought a toslink to get audio from the mac mini to the tv speakers (sony bravia kdl40v5100). However, I can't hear any audio coming out from th

  • Can't retrieve voicemail with the 4.2 "update"

    i've got the iphone 3g and updated to the ios 4.2 and now with this "update" i can't retrieve voicemails. i get a password prompt, but i never set up a password to retrieve voicemails. does anyone have a solution? i'd like to avoid setting an appoint

  • IN clause in DB Adapter  - Problem in retrieving results

    Query builder in the Oracle Database Adapter doesn't give an option to include IN clause in the SQL. If I include that in the SQL directly say like the following SELECT XREF_CODE, SOURCE_VALUE, TARGET_VALUE FROM XREF_LOOKUP WHERE (XREF_CODE IN ( #XRE

  • BPC 10 version for SAP NetWeaver & Dashboards/Xcelsius

    Hi All, We are currently trying to integrate an Xcesius dashboard within a BPC 10 workspace however the documentation is rather 'thin' in this area. While trying to follow the BPC 7.5 documentation there are some clear differences in the steps you ne

  • SAP router IP address

    i am confused with what should be my SAP router Machine IP. my WAN IP is 115.186.139.38 the Live IP pool or public IP address which i have purchased from by ISP: 115.186.151.200/30 115.186.151.201 115.186.151.202 115.186.151.203 and the machince on w