Bizzare resource loading problem

I'm working with an API that utilizes a Java to COM bridge. During the execution of the API methods a Windows DLL is loaded and used. I have written a test program that calls one of the APIs methods without an exception.
So what does this have to do with Swing? Everything works fine until I port my code into a Swing application. Then after the UIManager.setLookAndFeel() call when I call my API method again I get an exception from the COM object that a necessary DLL cannot be found. I have a suspicion that this has something to do with the class loader. Any ideas would be appreciated. Here's a code snippit to help you understand the order of things:
    QBXMLTest qbtest = new QBXMLTest();
    System.out.println(qbtest.getClass().getClassLoader());
    qbtest.go();
    try {
      UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    catch(Exception e) {
      e.printStackTrace();
    QBXMLTest qbtest2 = new QBXMLTest();
    System.out.println(qbtest2.getClass().getClassLoader());
    qbtest2.go();Thanks,
Jack

Hi,
do the following
InputStream in = Mainclass.class.getResourceAsStream("filename");
DataInputStream din = new DataInputStream(in);
int i = -1;
ByteArrayOutputStream bos = new ByteArrayOutputStream();
byte data[] = new byte[1024];
while((i = din.read(data)) != -1)
   bos.write(data, 0, i);
bos.flush();
din.close();
data = bos.toByteArray();

Similar Messages

  • Problem installing Circuit Design Suite - "Error while initializing resource loader"

    I am attempting to install v 10.0.1 of the Circuit Design Suite (Education and Student Edition).  Immediately after starting the install process I get the message "Error while initializing Resource Loader!" and the installer exits.  My computer meets the minimum system requirements (512 MB RAM, 20 GB free hard drive space, Windows XP, etc).
    Any suggestions for how to work around this problem so I can get Multisim installed?

    Hi John,
    I'm not sure if you still have issues with the Multisim installer. But just in case here are some comments:
    Are you using a CD to install Multisim? If yes, try copying the installer to your hard drive.
    Try installing Multisim on a different machine.
    Apparently the Resource Loader is related to Java, try un-reinstalling it, upgrading to the latest release, etc.
    Let us know how it works,
    Fernando D.
    National Instruments

  • Velocity template loading problem.

    Hello,
    I want to run first velocity servlet and I can't do this from 2 days
    I tried many combination.
    I use Netbeans 5.5 on linux
    So in this moment I have
    new project of netbeans in
    /home/marcin/3ROK/1SEM/java1/ul/Velocity/
    [root@zet Velocity(0)]# ls -R
    build  build.xml  catalog.xml  dist  nbproject  src  test  web
    ./build:
    web
    ./build/web:
    index.jsp  META-INF  WEB-INF
    ./build/web/META-INF:
    context.xml  MANIFEST.MF
    ./build/web/WEB-INF:
    classes  hello.vm  lib  templates  velocity.properties  web.xml
    ./build/web/WEB-INF/classes:
    HelloTest.class  hello.vm
    ./build/web/WEB-INF/lib:
    velocity-1.5.jar  velocity-dep-1.5.jar  velocity-tools-1.3.jar  velocity-tools-view-1.3.jar
    ./build/web/WEB-INF/templates:
    hello.vm
    ./dist:
    Velocity.war
    ./nbproject:
    ant-deploy.xml  build-impl.xml  genfiles.properties  private  project.properties  project.xml
    ./nbproject/private:
    private.properties  private.xml
    ./src:
    conf  java
    ./src/conf:
    MANIFEST.MF
    ./src/java:
    HelloTest.java  hello.vm
    ./test:
    ./web:
    index.jsp  META-INF  WEB-INF
    ./web/META-INF:
    context.xml
    ./web/WEB-INF:
    hello.vm  templates  velocity.properties  web.xml
    ./web/WEB-INF/templates:
    hello.vmHelloTest.java
    import org.apache.velocity.Template;
    import org.apache.velocity.servlet.VelocityServlet;
    import org.apache.velocity.app.Velocity;
    import org.apache.velocity.context.Context;
    import javax.servlet.http.*;
    import java.util.Properties;
    import org.apache.velocity.exception.ParseErrorException;
    import org.apache.velocity.exception.ResourceNotFoundException;
    import javax.servlet.ServletConfig;
    public class HelloTest extends VelocityServlet {
        public Template handleRequest( HttpServletRequest request,
                                       HttpServletResponse response,
                                       Context context ) {
            Properties p = new Properties();
            p.setProperty( "resource.loader", "class" );
            p.setProperty( "class.resource.loader.class", "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader" );
            p.setProperty( "resource.loader", "file" );
            p.setProperty( "file.resource.loader.class", "org.apache.velocity.runtime.resource.loader.FileResourceLoader" );
            p.setProperty( "file.resource.loader.path", "/home/marcin/3ROK/1SEM/java1/ul/Velocity/build/web/WEB-INF/templates");
            p.setProperty( "file.resource.loader.cache", "true");
            p.setProperty( "file.resource.loader.modificationCheckInterval","2");
            try{
                Velocity.init(p);
            catch(Exception e){
                System.err.println("ZET 1 Exception caught: " + e.getMessage());
            Template template = null;
            try {
                context.put("name", "Velocity Test");
                System.out.println("Before gettemplate");
                template = Velocity.getTemplate("hello.vm");
                System.out.println("After Getting the Template"+template);
            } catch( Exception e ) {
              System.err.println("ZET 2 Exception caught: " + e.getMessage());
            return template;
    }When I tried localhost:8082/Velocty/HelloTest in netbeans in tomcat window
    i see this:
    Before gettemplate
    ZET 2 Exception caught: Unable to find resource 'hello.vm'
    2007-04-29 18:44:11 org.apache.velocity.runtime.log.JdkLogChute log
    SEVERE: ResourceManager : unable to find resource 'hello.vm' in any resource loader.

    Hi,
    Even iam facing the same problem..
    here is my code:
    try
                   System.out.println("*****************LOADING CONTEXT OBJECTS");
                   Properties p = new Properties();
                   p.setProperty( "resource.loader", "class" );
                   p.setProperty( "class.resource.loader.class", "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader" );
                   //Velocity.init(p);
                   //Template template = Velocity.getTemplate( "report_email_html.vm" );
                   Velocity.init(p);
                   VelocityContext ctx = new VelocityContext();
                   ctx.put("myObject", new TestContext());
                   Template template = Velocity.getTemplate("/WEB-INF/DefaultTemplate.vm");
                   BufferedWriter writer = writer = new BufferedWriter(new OutputStreamWriter(System.out));
                 if(template != null)
                         template.merge(ctx, writer);
                writer.flush();
                writer.close();               
              catch(Exception e)
                   e.printStackTrace();
              }     Pls help me out

  • Free resource loading tutorial available

    Hi,
    I wrote up a free resource loading tutorial for Java Web Start/JNLP.
    You can find it here http://www.geocities.com/vamp201/tutorial.html
    You can browse the source here http://www.geocities.com/vamp201/tutorial/crossref/index.html
    And finally you can launch the example app here http://www.jenomics.de/vamp/tutorial.jnlp
    Enjoy.
    - Gerald

    I have tried both options. Configuring the proxies didn't help. Make it to use no proxy didn't help either.
    I have posted this problem before, but no one answered.
    I use JWS 1.0.1.
    If I don't specify proxies, the loading screen just loops. If i do, an error come up saying bad mime type returned by the server. Which is non-sense, since otherwise JWS wouldn't launch at all!

  • Flat-File Loading problem

    Hi Friends,
    I am struggling with flat-file loading problem. I am trying to load a .csv file into data target. I took all pre-cautions while loading data. I look into preview and simulate the data. Everything is ok, but when i schedule the data, i found 0 records in the monitor. The following is the STATUS message of the above problem:
       No data available
    Diagnosis
    The data request was a full update.
    In this case, the corresponding table in the source system does not
    contain any data.
    System response
    Info IDoc received with status 8.
    Procedure
    Check the data basis in the source system.
             Can anybody help me what is the problem and procdure to resolve it?
    Regards,
    Mahesh

    Hi Eugene,
    Thanks for the quick reply. The following screen-shot tells you the messages of detail tab;
    OVER ALL STATUS MISSING WITH MESSAGES OR WARNINGS
    REQUEST: MISSING MESSAGES
    EXTRACTION
    EVERYTHING IS OK
    DATA REQUEST RECEIVED
    NO DATA AVAILABLE DATA ELECTION ENDED.
    PROCESSING
    NO DATA
               The above message was shown in details tab. Pls guide me to locate the problem.
    Regards,
    Mahesh

  • App keeps loading problem solve

    Anyone with an app still loading problem can get rid of it by going into the app store. tap on "updates"- bottem right corner. tap on purchased where you get a list of your downloads then tap on the cloud with the arrow, enter your pin. hit ok for app over 20mb. go back into the app store and to your purchased list and wait for it to reload. once done come out of the app store and hopefully all the loading apps are gone. hope it works for you.

    I had this same problem when trying to download some training app. I could not delete or get it to upload completely either. Very frustrating. What I did was plug it into my computer, went to Itunes and searched the same app. I was able to download it here and then it starte to sync with my Iphone. You can remove the app after it finishes the download if u want. Hope this works!

  • Loader-Problem mit I.Explorer / FireFox ist OK

    Die Domain "http://woopi.net"
    enthält eine "site", die nur mit Flash generiert wurde.
    Teste ich diese "Site" mit Firefox, dann gibt es keine Probleme, alles OK.
    Teste ich mit dem Internet-Explorer, dann muß dieser erst lernen mit den LoaderKomponenten umzugehen,
    nach dem 2. oder 3. "rollOver" werden dann diese Elemente richtig angezeigt.
    Ziel-Beschreibung:
    beim Aufruf von "woopi.net"  wird auf dem Bildschirm die Bundesrepublik dargestellt.
    Ein Klick auf die BRD öffnet ein Navigationsfeld mit 7 Button.
    Der Klick auf den Button "Alle Banken in Deutschland" öffnet ein Navigationsfeld, in welchem bei einem RollOver
    unten links auf dem Bildschirm ein Bild angezeigt wird, in einer LoaderKomponente.
    Der InternetExplorer zeigt diese Bilder falsch an, erst nach dem 2., ev. nach dem 3. RollOver wird das Bild richtig angezeigt.
    Unten rechts auf dem Bildschirm gibt es den Zugang zu einem weiteren Navigationsfeld, "WebKatalog 2".
    Die Darstellung in diesem Navigationsfenster ist geradezu scheußlich.
    Hinweis:
    auch die Html-Seiten in denen die Flash-Seiten eingebettet sind,  wurden mit Flash-Cs4 generiert.
    Es wurden keine ProgrammErweiterungen verwendet.
    Wer kennt die Problemlösung?
    mfG, Jochen

    danke für die Information:
    "you have incomplete swf embedding code"
    Die Kompelation der html-Datei erfolgt unter Flash automatisch, ich habe leider
    "fast keine" html-Kenntnisse, kann also nur laborieren. Können Sie mir einen Hinweis geben ?
    cue.fla     "wurde kompelliert". Ergebnis:
    cue.swf
    cue.html
    Hier das, was ich vorfand:
    <body bgcolor="#e7e7e7">
    <!--Im Film verwendete URLs-->
    <a href="./cue/queue2.swf"></a>
    <a href="./cue/queue3.swf"></a>
    <a href="javascript: end("document.cue");"></a>
    <a href="http://www.basiszins.de"></a>
    <a href="http://www.onvista.de"></a>
    <!--Im Film verwendeter Text-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
        AC_FL_RunContent(
    Es müßte vielleicht so aussehen:
    <body bgcolor="#e7e7e7">
    <!--Im Film verwendete URLs-->
    <a href="./cue/queue1.swf"></a>     //das Script in  cue.swf:   loadMovieNum("./cue/queue1.swf", 1);
    <a href="./cue/queue2.swf"></a>    //d.Script in queue1.swf:  on (release){loadMovieNum("./cue/queue2.swf",2);}
                                                        //d.Script in queue2.swf:   loadMovieNum("./cue/queue10.swf", 3);
    <a href="./cue/queue3.swf"></a>    //d.Script in queue1.swf:   on (release){loadMovieNum("./cue/queue3.swf",2);}
                                                       //d.Script in queue3.swf:    loadMovieNum("./cue/queue30.swf", 3);
    <a href="javascript: end("document.cue");"></a>
    <a href="http://www.basiszins.de"></a>
    <a href="http://www.onvista.de"></a>
    <!--Im Film verwendeter Text-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
        AC_FL_RunContent(
    Das "Loader-Problem" zeigt sich aber schon in der "queue1.swf" Datei, welche nach _level1 geladen wird.
    Es wird hier nur Actionscript 2 eingesetzt. Bemerkenswert ist, daß sich Firefox ohne Probleme sehr stabil verhält.
    Vielleicht können Sie hiermit etwas anfangen. Wenn ein SreenShoot eine bessere Analyse ermöglicht, schiebe ich ein Bild gerne nach.
    mfG. Jochen

  • XSD Loading problem

    I got this error from bpel console .. Can any one please update on this.. Why this this error should occur?.
    <messages><input><InvokePlanningOrderRoadshowProducerInputVariable><part name="PlanningOrderRequest" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><PlanningOrderRequest xmlns:ns0="http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder" xmlns="http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder">
    <ns0:PlanningOrderHeader>
    <ns0:OrderId>10215568</ns0:OrderId>
    <ns0:BookingId/>
    <ns0:OrderType>Standard</ns0:OrderType>
    <ns0:CustomerName>MRS JUNE OCKWELL</ns0:CustomerName>
    <ns0:ClientAccountId>EMP</ns0:ClientAccountId>
    <ns0:ClientPreAdviceNumber/>
    <ns0:Title/>
    <ns0:ClientOrderNumber>W3221000-36</ns0:ClientOrderNumber>
    <ns0:Latitude>53.526969</ns0:Latitude>
    <ns0:Longitude>-2.657221</ns0:Longitude>
    <ns0:Street/>
    <ns0:HouseNumber>8 Bentinck Street</ns0:HouseNumber>
    <ns0:Postcode>WN3 6RB</ns0:Postcode>
    <ns0:Town>WIGAN</ns0:Town>
    <ns0:Status/>
    <ns0:PhoneCallRequired>Y</ns0:PhoneCallRequired>
    <ns0:Phone1>01942202596</ns0:Phone1>
    <ns0:Phone2>07584651731</ns0:Phone2>
    <ns0:SlotPeriodStart/>
    <ns0:SlotPeriodEnd/>
    <ns0:SlotLength/>
    <ns0:StopDuration/>
    <ns0:PlanningOrderLines>
    <ns0:PlanningOrderLine>
    <ns0:OrderLineId>443405</ns0:OrderLineId>
    <ns0:OrderId>10215568</ns0:OrderId>
    <ns0:ItemNumber>EMP-TC750</ns0:ItemNumber>
    <ns0:ItemDescription>RICHMOND KING BED</ns0:ItemDescription>
    <ns0:NoOfPieces>03</ns0:NoOfPieces>
    <ns0:ServiceString>01000</ns0:ServiceString>
    <ns0:ShipsetId>01</ns0:ShipsetId>
    <ns0:ClientUPI>009707300553D094</ns0:ClientUPI>
    <ns0:OrderLineType>Delivery</ns0:OrderLineType>
    <ns0:OrderLineNumber>01</ns0:OrderLineNumber>
    <ns0:SpecialInstruction>IF NOT IN GO TO NUMBER 6 FOR KEY</ns0:SpecialInstruction>
    <ns0:DeliveryVolume/>
    <ns0:DeliveryWeight/>
    <ns0:CollectionWeight/>
    <ns0:CollectionVolume/>
    <ns0:Status>LOADED</ns0:Status>
    </ns0:PlanningOrderLine>
    </ns0:PlanningOrderLines>
    </ns0:PlanningOrderHeader>
    </PlanningOrderRequest>
    </part></InvokePlanningOrderRoadshowProducerInputVariable></input><fault><bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>file:/SOA2M01/app/oracle/product/10.1.3/bpel/domains/operations/tmp/.bpel_PlanningOrder_1.0_06bcbd311b9a0d44d808edcbcee42770.tmp/PlanningOrderRoadShowProducer.wsdl [ Produce_Message_ptt::Produce_Message(PlanningOrderRequest) ] - WSIF JCA Execute of operation 'Produce_Message' failed due to: Could not instantiate InteractionSpec oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec due to: XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    ; nested exception is:
    ORABPEL-12537
    XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    ; nested exception is:
    org.collaxa.thirdparty.apache.wsif.WSIFException: Could not instantiate InteractionSpec oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec due to: XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    ; nested exception is:
    ORABPEL-12537
    XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    </summary>
    </part><part name="detail"><detail>org.collaxa.thirdparty.apache.wsif.WSIFException: Could not instantiate InteractionSpec oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec due to: XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    ; nested exception is:
    ORABPEL-12537
    XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    </detail>
    </part></bindingFault></fault></messages>

    You remove xmlns:ns0 attribute from PlanningOrderRequest and the prefix ns0: from xsd tags. When you declare xmlns:ns0 means it is looking for that ns0 namespace in the project directory or oracle server global directory.

  • PSE 12 trial version - loading problems

    I have been trying for 3 days to load the 30 day trial of PSE12 on my new computer. My computer is loaded with Windows 8.  I have encountered problems over and over again with loading PSE12, but never the same problem.
    For example: after one download the start menu would open but it wouldn't go to the organizer or editor.  So I deleted that program and re-loaded it BUT -
    then , it went straight to the organizer - and froze, so I clicked out - tried to click back in, and NOTHING> >> not even the start menu.
    THIS IS SOOO FRUSTRATING! Makes me really second guess whether I should purchase this or not
    Please help!!!

    I think it said error 101, but not totally sure that I recall it 
    correctly.  I deleted everything and reinstalled and then it  worked.
    Haldis
    In a message dated 12/31/2013 11:27:15 A.M. Pacific Standard Time, 
    [email protected] writes:
    Re:  PSE 12 trial version - loading problems
    created by Jeff A Wright (http://forums.adobe.com/people/JeffAWright) 
    in  Trial Download & Install - View the full  discussion
    (http://forums.adobe.com/message/5969733#5969733)

  • Adobe Captivate 8 projects published to HTML 5 shows major loading problems and stops

    Adobe Captivate 8 projects published to HTML 5 cause major loading problems in most browsers(IE 11, Chrome v. 35.0, Firefox v. 31). Loading… (screen)
    The view stops after a while and only the Loading… (icon) can be seen on the page.
    Is this a known problem with Captivate projects published to html5 and is there a way to fix it? What is wrong?
    Test the html5 version of this project at: http://kurs.dokker.no/captivate/
    and see for yourself what happends.

    I changed the Preferences/Project/Start and End  Preloader % to 25 and published the projects again. The course: http://kurs.dokker.no/captivate/elev/
    stopped like before on one of the first slides, loading… screen like before in IE11.
    In Chrome v. 37.0 the course worked badly, would not run, sound missing and buttons not working.
    In Firefox 31.0 the course worked to a degree even if the program was advising to use another browser for this content.
    In Opera 23.0 sound was missing and else working as bad as IE.
    All this testes is done on a PC using Windows 8 connected på internet via ethernet, download speed: 66.57.
    I would like to use the HTML5-format since it has a cleaner view than swf-files that appear to be jagged, but there is a lot missing before Adobe Captivates html5 publish is where it needs to be. Her are the complete html5 course and here are the swf based course for comparison.

  • Flex 1.5 loader problem

    Hi previous we wore having some loader problem. Now it is
    cleared. but now our problem is,
    In our home page, we are having one loader. In to that we
    are loading our applicaions by clicking different links. It was
    also fine. By clicking But1 we will get app1 in our loader. By
    clicking But2 we will get app2 in our loader. Up to now OK. But
    when i click the But1 again, we are able to load app1 but the
    cursor is not stopping with its clock symbol. This is become a very
    big problem for us. Can anybody know how to recover tis. I am
    attacing my sample code.
    <mx:GridItem horizontalAlign="center"
    vScrollPolicy="off">
    <mx:Loader id="mainpage_content_loader" width="700"
    horizontalAlign="center" showBusyCursor="false" />
    </mx:GridItem>
    .as file:
    function f1()
    //getURL("../growthchart/userchart.mxml");
    mainpage_content_loader.width="700";
    mainpage_content_loader.height="2500";
    mainpage_content_loader.contentPath = app1.mxml.swf";
    function f2()
    mainpage_content_loader.width="700";
    mainpage_content_loader.height="500";
    mainpage_content_loader.contentPath = "app2.mxml.swf";
    function f3()
    mainpage_content_loader.width="700";
    mainpage_content_loader.height="500";
    mainpage_content_loader.contentPath = "app3.mxml.swf";
    Thanks

    With the free developer's license, all swfs generated by Flex
    will expire in 24 hours.
    You can put the Flex server (developer's license) on the
    network server. It is limited to the first 5 IP addresses that hit
    the site until you restart the Flex server.
    Tracy

  • Mail loading problem

    Hi all
    I've got this mail loading problem,
    whenever the mail is loading I always scroll down to read the text first
    but it always to back to the top, I scroll down again it scroll back up.
    this happen only during the images are loading.
    it is very annoying, though it might be fix in 10.5.7
    but it was not.
    any plan to solve this?

    I have the same problem. Did you get any answers?

  • Macbook Pro/Mozill​a Firefox --Page Loading Problems

    I experience 'page loading' problems when going from one page to another. Sometimes the page takes a long time to load. Sometimes it times out and never does load.
    Does anyone else with this combination of laptop and browser experience these problems? Any suggestions for overcoming this lag?

    I know OS X used to have some problems with the way some routers do DNS.  There was this topic a while ago:
    http://forums.verizon.com/t5/FiOS-Internet/DL-page​-load-speed-great-but-browser-quot-looking-up-quot​...
    For our Mac we had to set the router to send external IP addresses of a DNS system (either verizon's or something like OpenDNS which we use).
    You could manually change the DNS settings on the Mac to see if that fixes the problem and then you could mac the change the settings at the router level if you like.

  • IMac, sudden extremely slow webpage loading problem

    Hi guys,
       I had this problem all of a sudden, not sure whether it was caused by malware, my own python scripts or the 10.8.2 update. However all the other devices in my wifi network work just fine. And also my iMac is not disconnected from the internet, ping "www.google.com" is fine, and other IM apps are working properly too.
       I tried different browswers (chrome, firefox, safari) since then, and all the other suggested solutions (resetting DNS, using static ip address, clear cache and etc.) None of them actually solved the problem.
      My friend told me to reinstall a clean OS X, which could be a huge pain for me.
      However, I accidently found out some softlinks and permissions are messed up in my superuser directories. So I did a "repair disk permission" , now the browsers are back on the horse. That actually makes sense to me.
      Long story short, verify/repair disk permissions (in Utilities/disk utility) might solve your browser page loading problem! I just wanna to share with you guys if you are struggling on the same issue as I was.
    Regards,
    candyquicksort

    Thanks for the report & sharing!

  • Free resource loading pdf booklet released

    Hi,
    I converted my resource loading html pages to docbook.
    The pdf booklet for printing and offline consumption entitled "Resource Loading Tutorial and Rachel Open Source Toolkit for Java Web Start/JNLP" can be found online at
    http://www.geocities.com/vamp201/download/resources.pdf
    In case the site is temporarily unavailabe, you can use this alternate link:
    http://www.jenomics.de/vamp/doc/resources.pdf
    You can browse the resource loading tutorial online at
    http://www.geocities.com/vamp201/tutorial.html
    and you can browse the open source resource loading toolkit user documentation online at
    http://www.geocities.com/vamp201/resources.html
    Enjoy
    - Gerald

    Hi,
    the booklet is now also available for download at
    http://briefcase.yahoo.com/vamp201
    - Gerald

Maybe you are looking for