AxQTOControlLib.AxQTControl.URL Hangs

I have an application that opens up m4a files and gets tag information from those files (artist, album, etc).  I'm finding that when I start to process several of these files my application will hang setting the AxQTOControlLib.AxQTControl.URL parameter (either to a file name or "").  It doesn't happen on the same file, but it will always happen, usually by the 4th or 5th file.
Any ideas?

No. Within the same class, the following DOES work:
DOMParser dp = new DOMParser();
dp.setErrorStream(new PrintWriter(errs));
// Set Schema Object for Validation
dp.setXMLSchema((XMLSchema)((new XSDBuilder()).build(schema.location)));
Note that schema.location is a String like "http://www.wherever.com/file.xsd" which points to the web server that is hanging on DOMParser.parse(URL);

Similar Messages

  • DOMParser.parse(URL) hangs

    Anytime I call DOMParser.parse(URL) where URL is of type "http://", the parse call hangs (as near as I can tell) indefinitely. Are URLs of this type not supported? Is there a work around to this problem?

    No. Within the same class, the following DOES work:
    DOMParser dp = new DOMParser();
    dp.setErrorStream(new PrintWriter(errs));
    // Set Schema Object for Validation
    dp.setXMLSchema((XMLSchema)((new XSDBuilder()).build(schema.location)));
    Note that schema.location is a String like "http://www.wherever.com/file.xsd" which points to the web server that is hanging on DOMParser.parse(URL);

  • Program to check existence of a url hangs!!!

    Here is my code to check whether a url exists ...
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class urlExists
         urlExists()
         public int exists(String urlname) throws IOException
              URL url=null;
              try
                url=new URL(urlname);
              catch(Exception e)
                HttpURLConnection connexion = (HttpURLConnection)(url.openConnection());
                if(connexion.getResponseCode()==HttpURLConnection.HTTP_NOT_FOUND)
                        return(0);
                else return(1);
    }I am using this class many a times but it keeps on hanging for some reason or another. Could anyone please explain me the reason?
    Thanks in advance.
    Regards
    kbhatia

    you will have to use a Socket:
    public String getResponse(String url) throws Exception{
            int timeout   = 30000; // 30 second timeout
            String inputLine = null;
            Socket socket    = null;
            BufferedReader reader = null;
            Writer writer    = null;
            StringBuffer buf = new StringBuffer();
            try{
                URL server = new URL(url);
                int port = server.getPort();
                if (port < 0)
                    port = 80;
                socket = new Socket(server.getHost(),port);
                writer = new OutputStreamWriter(socket.getOutputStream(), "US-ASCII");
                writer.write("GET " + server.toExternalForm() + " HTTP/1.0\r\n");
                writer.write("Host: " + server.getHost() + ':' + port + "\n\n");
                writer.flush();
                socket.setSoTimeout(timeout);
                reader = new BufferedReader(new InputStreamReader(socket.getInputStream(),"UTF-8"));
                String line = reader.readLine();
                if (line != null && line.startsWith("HTTP/")){
                    int space = line.indexOf(' ');
                    String status = line.substring(space + 1,space + 4);
                    if (!status.equals("200")){
                        throw new Exception("HTML Error: + " status);
                    while((line = reader.readLine()) != null)
                        buf.append(line).append("\n");
                else{
                    throw new Exception("Bad protocol");
            catch (InterruptedIOException e) {
                throw new Exception("Read timeout expired");
            finally{
                // close the reader, writer, and socket here
            return buf.toString();      
    }

  • BPEL url hangs on Node2 in ACTIVE/PASSIVE setup

    Hi All,
    First of all, thanks in advance for your help!!!
    Question:
    =======
    a) What are files I need to change in BPEL for ACTIVE/PASSIVE setup?
    b) What are the exact entries to be changed?
    Background:
    =========
    HOST A and HOST B connected to shared device.
    Env --> Sun Solaris 10
    Database repository --> HOST C and 10.2.0.3.0
    BPEL hosts --> HOST A and HOST B, using BIG IP for VIP
    BPEL version --> 10.1.3.1.0
    1) Created BPEL repository on 10.2.0.3.0 -- Went fine
    2) Install J2ee and Web Services on shared device @ HOST A -- Went fine
    3) Install BPEL on shared device @HOST A--> went fine
    4) Able to do opmnctl startall/stolall on HOST A
    5) Able to access EM/BPELAdmin/BPELConsole on HOST A
    6) Able to do opmnctl startall/stopall on HOST B
    Issue
    ====
    The url on HOST B hangs for EM and BPELConsole, however BPELAdmin workks fine.
    For EM and BPELConsole it asks for usernamer and password and the next screen hangs for ever.
    Question:
    =======
    a) What are files I need to change for ACTIVE/PASSIVE setup?
    Note:
    ====
    I read stuff in Metalink and google, however there are NO exact steps for ACTIVE/PASSIVE setup/
    I changed the file jgroups-protocol.xml, but in Vain
    Thanks
    Regards
    Natrajan

    Anyone is using Active-Passive in BPEL environment??

  • ActionScript URL hangs on loading

    Hi,
    I am working with a DRM installation on a dev server. When I try to access http://xxxxx/drm-web-client/Forms/ActionScripts/FileActionScript.aspx the web page seems to hang with a loading message displayed. We've tried a service restart without any success.
    Does anyone have any recommendations for fixing this bug?
    Regards,
    Ben Ong

    I was using mozilla firefox and the javascript kept hanging. I moved to IE7 with IE7 compatibility and the problem was solved. Thanks for the recommendations though.
    Regards,
    Ben Ong

  • Error while posting xml file to URL using URLConnection

    Hello everyone,
    I am facing an issue from long time related to URLConnection. If this would be resolved by your help then I would be very grateful to you.
    One application which posts xml file to URL hangs and after waiting for 5 mins it throws 504 error:
    java.io.IOException: Server returned HTTP response code: 504 for URL: http:hostname.
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:715)
    Same application is running fine without error on another environment from last 5 years. But on another env it is erroring out from the day 1.
    We have many workarounds in place none worked.
    I tried to use HttpClient from apache but that too hanged at URLConnection.getInputStream() method call.
    App is running on iPlanet web server 6.1 using JDK 1.4.0_03
    We still dont know why this program hangs at that particular line in only one env but many times it runs fine. That means 30% of the times it posts xml file without error but 70% times it errors out. So our program logic is to retry until post is successful.
    Once this issue is resolved we will remove the logic of trying again and agian.
    Please provide inputs.
    Thanks,
    Nitin

    The HTTP response 504 means that the server, acting as a gateway, has not received a response from an upstream server in the time it expected.
    I think this is problem is due to the remote server that receives the XML and takes too long to return a response to the local application that posted the XML.
    Try HttpClient and set the timeout variable of the HttpClient instance used.
    Here http://svn.apache.org/viewvc/jakarta/commons/proper/httpclient/trunk/src/examples/PostXML.java?revision=480424&view=markup
    a Post XML sample.
    NB: HttpClient > setTimeout method is deprecated. See : http://jakarta.apache.org/commons/httpclient/apidocs/index.html for an alternative
    Hope That Helps

  • R12 DMZ login page hangs after some time

    Node 1: Database 10.2.0.3
    Node 2: internal Application
    Node 3: External Application - currently not exposed to the internet, we are testing opening the URL internally.
    Followed DOC I: 380490.1 - in order to achieve the External node.
    The Database and Application are working fine. The instance works perfectly fine.
    However, when we open the External URL, it hangs on the re-direct page. it does not give any error.
    Once we bounce the External services, the URL does show up for 2-3 attempts.
    Even though the URL hangs, we are able to ssh, run traceroute, sqlplus, perform adadmin tasks etc - from the External node. we do not have any issues performing the activities mentioned.
    Solutions tried:
    We increased the OHS timeout parameter - in the XML file and ran autoConfig.
    We increased the keepalive parameter in the httpd.conf and mod_oc4j.
    Please let us know what else we can try.
    Doubt: Our Internal Application and Database server are 32 GB RAM each. However, the External Node, is 3 GB.
    Could this be a possible issue.
    Internal application and Database are seperated by a single frewall from each other. Wherein, the External Application is seperated from these servers with 3 firewalls.
    The 3rd firewall is used to URL filtering. Could this be a possible issue.
    Error in Apache Error Log:
    [Wed Nov 11 16:48:39 2009] [warn] [client *.*.*.*.*] oc4j_socket_recvfull timed out
    [Wed Nov 11 16:48:39 2009] [error] [client *.*.*.*.*] [ecid: 1257943417:*.*.*.*:27189:0:487,0] mod_oc4j: request to OC4J ERPWeb.*.ae:21500 failed: recv failed (errno=4)
    We increased - Timeout 1500 - Default 300 (apps/tech_st/10.1.3/Apache/Apache/conf)
    Bounced Services.
    adapcctl.sh stop adoacorectl.sh stop adformsctl.sh stop adoafmctl.sh stop adopmnctl.sh stop
    Started in the reverse order.
    rm -fr $INST_TOP/ora/10.1.3/j2ee/oacore/persistence/*
    rm -fr $INST_TOP/ora/10.1.3/j2ee/oafm/persistence/*
    rm -fr $INST_TOP/ora/10.1.3/j2ee/forms/persistence/*
    XML file - we made the following changes: <ohstimeout oa_var="s_ohstimeout">1200</ohstimeout>
    changed from 300 to 1200
    s_long_runing_jvm = false - true by default.
    AutoConfig
    cat $IAS_ORACLE_HOME/Apache/Apache/conf/mod_oc4j.conf
    # Oracle iAS mod_oc4j configuration file: mod_oc4j.conf #
    LoadModule oc4j_module libexec/mod_oc4j.so
    <IfModule mod_oc4j.c>
    </IfModule>
    Checked - $INST_TOP/ora/10.1.3/j2ee/oacore/config/oc4j.properties
    LONG_RUNNING_JVM=false (should be false after autoconfig)
    Compiled jsps
    $FND_TOP/patch/115/bin - perl ojspCompile.pl –-compile –-flush -p 2
    cat /oracle/dmzappl/inst/apps/ERPPROD_erpweb01/logs/ora/10.1.3/j2ee/oacore/oacore_default_group_1/application.log
    09/11/11 17:26:57.72 html: chain failed
    javax.servlet.ServletException: java.lang.RuntimeException: Cannot get Connection to the Database
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.EvermindPageContext.handlePageThrowable (EvermindPageContext.java:780)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.EvermindPageContext.handlePageException (EvermindPageContext.java:727)
    at AppsLocalLogin.jspService(_AppsLocalLogin.java:304)
    at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.0.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:335)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ResourceFilterChain.doFilter (ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.EvermindFilterChain.doFilter (EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke (ServletRequestDispatcher.java:610)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal (ServletRequestDispatcher.java:359)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest (HttpRequestHandler.java:870)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest (HttpRequestHandler.java
    We got a doscument which said:
    Submit 'Compile Security' concurrent request - with parameter "yes" - However, we have not run this request.
    cat /oracle/dmzappl/inst/apps/ERPPROD_erpweb01/logs/ora/10.1.3/opmn/oacorestd.err
    09/11/11 17:21:52 Caused by: oracle.apps.jtf.base.resources.FrameworkException: Failure in CacheLoader: oracle.apps.jtf.base.resources.FrameworkException
    09/11/11 17:21:52 at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:830)
    09/11/11 17:21:52 at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4802)
    09/11/11 17:21:52 at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4624)
    09/11/11 17:21:52 at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216)
    09/11/11 17:21:52 ... 23 more
    09/11/11 17:21:52 Caused by: oracle.apps.jtf.base.resources.FrameworkException
    09/11/11 17:21:52 at oracle.apps.fnd.cache.GenericCacheLoader.load(GenericCacheLoader.java:222)
    09/11/11 17:21:52 at oracle.apps.fnd.cache.GenericCacheLoader.load(GenericCacheLoader.java:189)
    09/11/11 17:21:52 at oracle.apps.fnd.cache.GenericCacheLoader.load(GenericCacheLoader.java:166)
    09/11/11 17:21:52 at oracle.apps.fnd.cache.GenericCacheLoader.load(GenericCacheLoader.java:141)
    09/11/11 17:21:52 at oracle.apps.jtf.cache.GenericCacheLoader.load(GenericCacheLoader.java:87)
    09/11/11 17:21:52 at oracle.ias.cache.CacheLoader.callLoad(Unknown Source)
    09/11/11 17:21:52 at oracle.ias.cache.CacheHandle.findObject(Unknown Source)
    09/11/11 17:21:52 at oracle.ias.cache.CacheHandle.locateObject(Unknown Source)
    09/11/11 17:21:52 at oracle.ias.cache.CacheAccess.get(Unknown Source)
    09/11/11 17:21:52 at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:771)
    09/11/11 17:21:52 ... 26 more
    09/11/11 17:21:52 Caused by: oracle.apps.jtf.base.resources.FrameworkException: Io exception: Connection timed out
    09/11/11 17:21:52 at oracle.apps.jtf.base.resources.FrameworkException.convertException(FrameworkException.java:607)
    09/11/11 17:21:52 at oracle.apps.jtf.base.resources.FrameworkException.addException(FrameworkException.java:585)
    09/11/11 17:21:52 at oracle.apps
    We ran Concurrent manger job "Synchronize Workflow Local Tables" as sysadmin.
    cd $INST_TOP/ora/10.1.3/opmn/conf
    $ grep Xmx opmn.xml
    <data id="java-options" value="-server -verbose:gc -*Xmx512M -Xms128M* -XX:MaxPermSize=160M -XX:NewRatio=2 - XX:+PrintGCTimeStamps -XX:+UseTLAB -XX:+UseParallelGC -XX:ParallelGCThreads=2 -Dcom.sun.management.jmxremote - Djava.security.policy=$ORACLE_HOME/j2ee/oacore/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false - Doracle.security.jazn.config=/oracle/dmzappl/inst/apps/ERPPROD_erpweb01/ora/10.1.3/j2ee/oacore/config/jazn.xml"/>
    <data id="java-options" value="-server -verbose:gc -Xmx512M -Xms128M -XX:MaxPermSize=160M -XX:NewRatio=2 - XX:+PrintGCTimeStamps -XX:+UseTLAB -XX:+UseParallelGC -XX:ParallelGCThreads=2 - Djava.security.policy=$ORACLE_HOME/j2ee/oacore/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false"/>
    <data id="java-options" value="-server -verbose:gc -Xmx256M -Xms64M -XX:MaxPermSize=128M -XX:NewRatio=2 - XX:+PrintGCTimeStamps -XX:+UseTLAB -XX:+UseParallelGC -XX:ParallelGCThreads=2 - Djava.security.policy=$ORACLE_HOME/j2ee/oacore/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false - Doracle.security.jazn.config=/oracle/dmzappl/inst/apps/ERPPROD_erpweb01/ora/10.1.3/j2ee/forms/config/jazn.xml"/>
    <data id="java-options" value="-server -verbose:gc -Xmx256M -Xms64M -XX:MaxPermSize=128M -XX:NewRatio=2 - XX:+PrintGCTimeStamps -XX:+UseTLAB -XX:+UseParallelGC -XX:ParallelGCThreads=2 - Djava.security.policy=$ORACLE_HOME/j2ee/oacore/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false"/>
    <data id="java-options" value="-server -verbose:gc -Xmx256M -Xms64M -XX:MaxPermSize=128M -XX:NewRatio=2 - XX:+PrintGCTimeStamps -XX:+UseTLAB -XX:+UseParallelGC -XX:ParallelGCThreads=2 - Djava.security.policy=$ORACLE_HOME/j2ee/oacore/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false - Doracle.security.jazn.config=/oracle/dmzappl/inst/apps/ERPPROD_erpweb
    Would changing: -Xmx512M -Xms128M to -Xmx1024M -Xms256M help ?.
    Please help.
    Navas

    Hi,
    The application was working fine when the network admin opened all the ports on Firewalls.
    Now he is asking for the specific list of ports to be opned from DMZ Server -> Database, DMZ Server -> Internal Application node and Internal Application node -> Database so that he can close the remaining ports. Is there any document in metalink which lists this ports ?
    Regards
    Safaras

  • Safari will not load in Leopard

    HelP:
    I had a devil of a time installing Leopard on a newly installed internal Seagate 500 GB in my G-4 933 MHz Quicksilver. I finally resolved that with someone who posted a response which took me to the terminal mode to resolve the user "log in" screen issue which I had.
    Now I have Leopard working--so far so good--and now I have been trying to install some of the programs from the original CDs/DVs.
    However, when I try to access Safari it does not complete the auto "log in" screen.
    The auto URL hangs at the following:
    http://livepage.apple.com
    I can access my e-mail and access software updates so apparently I can get to the internet.
    However I can not use Safari to confirm the proper updates for the respective programs which I want to download. I have to "force quit" the Safari browser.
    Then I have to reboot my computer and then go to Tiger which I have installed on a separate internal HD.
    In order to access one operating system, or the other, I start up with Option key depressed and select one of the start up disk.
    Are there any good suggestions for me to employ to access Safari in Leopard.

    In attempt to fix my Safari hanging up problem in Leopard I tried installing the new 10.5.1 version update to my existing installed Mac OS 10.5 version of Leopard on a newly installed 500 GB HD. No improvement occurred in accessing Safari.
    Then I went to the Safari Preference files in the Library>preferences and removed the com.apple.Safari plist preferences and re-started. Same problem occurred in trying to access Safari. Those two preferenes were updated but no change in to accessing Safari in Leopard.
    I repaired permissions from the install disk in with disk utility. Lot of permissions were changed. No change in performance with Safari.
    What is going on here with Leopard and the script to access is programed site.
    I can access my internet mail--and I can send reports to Apple on my DSL Internet connection. The issue has to be somewhere in Safari or some similar issues within Leopard.
    When I access Safari in Tiger, which is on a different HD, I have no issues.
    bobg

  • Notification of successful deployment to production server from within

    How can code running on a production server be notified that a successful deployment (of new/changed catalogs) has completed to that server? A side affect is the catalog schema switches from CATA to CATB or vice versa. Another way to phrase the question is how to be notified of catalog schema switches at the time they occur?
    Thanks.

    That URL hangs but I think I found the spot in the Programmer's Guide. It talks about a DeploymentManager but only vaguely.
    I found some code that uses the DeploymentEvent and DeploymentEventListener mechanism. You register your listener with the DeploymentAgent (via config) and then receive all the deployment events. The only question is which of the many events/states that are reported is the one that means the catalog data source has switched?
    http://docs.oracle.com/cd/E22630_01/Platform.1002/apidoc/atg/deployment/common/event/DeploymentEvent.html

  • Parameter passing and forwarding issues with 10.1.4 JSR 168 portlets

    Hi,
    I'm using version 10.1.4 version of Oracle Portal Server, and am trying to move a JSP web application to a JSR 168 compliant portlet.
    I am experiencing these issues:
    1. There are <form> tags in my JSPs. I've set the action attribute to "<portlet:actionURL>". This works okay and I can see the parameters in my processAction properly. However, if I modify the action attribute to "<portlet:renderURL>", I do not see any parameters in my doView(). Is this expected or a known bug?
    2. As a workaround of the issue #1, in my processAction, I'm using response.setRenderParameter(). This works but has a serious side effect: the first set of values set are set permanently for the session. Subsequent submissions of my JSP fail to alter the values. Is this expected? This problem is not there if setRenderParameter() is not used.
    3. My JSPs use request.setAttribute() and request.getSession().setAttribute(). I don't see these attributes in my processAction using request.getAttributeNames(). Is there another way of retrieving them?
    4. In my JSP, I have this code in a method declaration:
    String forwardPage = "hello.jsp";
    RequestDispatcher forwarder = request.getSession().getServletContext().getRequestDispatcher(forwardPage);
    forwarder.forward(request, response);
    This results in an exception on the server:
         06/05/07 00:25:10 AnupamPortlets: JspServlet: unable to dispatch to requested page: java.lang.NullPointerException
         at com.evermind.server.http.HttpApplication.isLegalFileSystemPath(HttpApplication.java:1298)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:502)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:253)
         at opportunity_detail____contacts__view._Controller.processRequest(_Controller.java:2516)
         at opportunity_detail____contacts__view._Controller._jspService(_Controller.java:2592)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
         at com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:121)
         at oracle.webdb.wsrp.server.RequestDispatcherImpl.include(Unknown Source)
         at mypackage1.Portlet1.doView(Portlet1.java:158)
    I've tried moving the page around and using request.getContextPath() and getNamedDispatcher(), but same error.
    This is supported, right? I saw some old messages about this being a bug on the PDK side.
    Actually, using forwarder.include() works, but causes other issues
    Any ideas what I can try of any of these will be greatly appreciated. Thanks.

    Hi Anupam,
    I can help you with question #2.
    2. As a workaround of the issue #1, in my processAction, I'm using response.setRenderParameter(). This works but has a serious side effect: the first set of values set are set permanently for the session. Subsequent submissions of my JSP fail to alter the values. Is this expected? This problem is not there if setRenderParameter() is not used.
    I believe that the issue is an artifact of the interpretation of the JSR-168 specification by Oracle. I discovered that the setRenderParameter basically ends up sending a redirect back to the browser with the render parameters in the URL. This raised security concerns as you may have wanted to pass some sort of internal data from your action to your render request. The parameters in the url "hang around" once they are there so your portlet keeps recieving them. Based on this behavior I have decided to not use setRenderParameter in Oracle portal.
    -sean
    Solutions Architect
    www.sagelogix.com

  • Can ssh to my home MBP from work, but cannot make outbound connections

    Details:
    I have a MBP with a wired ethernet connection on my home network, and a 24/7 file server that I can access via SSH from outside my firewall, so I can ssh to my fileserver, then ssh to my MBP from it:
    (I use a python script on the fileserver to send WakeonLAN packets to the MBP to rouse it from sleep before ssh'ing to it.)
    WORK --ssh--> Fileserverbehindfirewall --ssh--> MBP
    Once signed onto my MBP I can do normal unix stuff and I can ping external addresses, but any application that tries to access external addresses hangs.
    For example, running wget {URL} hangs, and 'sudo gem update' hangs as well.
    I figure that there is some kind of application firewall blocking going on, but I don't know enough about OS X internals to have an idea where to look.
    When I get home and log on locally, I can run these same apps from Terminal with no problems, so I figured that connections from Terminal.app are allowed, but those from a raw tty session via SSH are not???
    Any pointers or ideas very welcome.
    Tom P. (Old Linux guy, new Mac Guy)

    "deh2k" is correct. Ssh or using Terminal local should see the same behavior.
    I would very much suspect LittleSnitch. This is a case where you might try something from the local terminal and see if LittleSnitch displays a pop-up asking if you want to allow the action. You would not see this pop-up from a remote location.
    And of course turning off LittleSnitch is another way to go.
    Or as part of establishing your ssh connection, you also create a Screen Sharing/VNC tunnel
    ssh -L 5901:localhost:5900 [email protected]
    this of course assumes you have started the Screen Sharing on your remote Mac.
    Now you connect using Finder -> Go -> Connect to Server...
    vnc://localhost:5901
    and now if LittleSnitch is going to complain, you should see it via the Screen Sharing session.
    Of course, you could also use the Screen Sharing session to just do what you want via a GUI interface

  • Has anyone used "Maintain" to improve network connection?

    I have been having problems of URL hanging for minutes in the browser before connecting to the requested website and other network speed issues under 1.4.5 on an Intel Mac. Sometone told me a donation software called "MAintain" can partially tweak network settings and make the whole thing smoothier. Has anyone tried it? It looks very complicate to me.

    Hi Steven, thanks for getting back to me on this. I only had the Library downloaded from the NI site. I have now installed the library from the TZM site also. (there is a problem with the link to the Library on that page, but the link can be found on the printer friendly page). When I downloaded the files and read some of the documentation, I have spotted another problem I may have. My flexcard is the Cyclone, and the documentation only mentions the Cyclone II and Cyclone II SE. Do you know if the Cyclone card will work with Labview?
    I also found some example Flexray vi's but there doesnt appear to be any config files with it. Is there anywhere else I could find a sample config file for Flexray?
    Thanks again 
    Brian 

  • Intermittent QuickTime ActiveX control crash

    I embeded QT ActiveX control into .Net application. I call "axQTControl.QuickTimeInitialize();" when my form is loaded. Then I point QT ActiveX to a URL:
    axQTControl.URL = "http://location of my movie clip";
    Depending on the network load it either plays the movie or crashes with the following COM exception: "Oops! An error occurred." It is very sensitive to the network conditions: it fails when there are only 2 users hitting the URL. We tested Mac version of our application with 13 simultanious users with no problem. It also never fails if the clip is located on my local drive.
    Is there any workaround? Some settings to try? Please help.

    > Does anyone know how I may obtain developer assistance with this issue?
    Log a case with Adobe Acrobat Developer Support.

  • Url link with target="_blank" hangs in Internet Explorer 7 BUT works fine in IE6, FF, Safari?

    Okay, so I have a SWF embedded on a page, which has a link to a target="_blank" url, and it works in every other browser, INCLUDING the notorious ie6, but NOT in IE7?
    IE7 just opens a blank page (without the address in the address field) and displays 'connecting...' and stays there forever.
    • I even manually typed in the adress of the site I'm trying to access with the link, and the page opened just fine in IE7.
    But when I click on the link from the SWF, it hangs again and doesn't open. I manually typed in both addresses with and without the 'www' (i.e. http://somewebsite.com and http://www.somewebsite.com) and both opened in IE7.
    But the link from the SWF ONLY opens a blank page with the 'connecting...' and stays there forever.
    • I feel like it was working previously, but I could be wrong. Besides that, it is working in ie6, of all things. So I don't get it?
    • This also happens with other website that have a link with target="_blank" in IE7, so it's not only my site.
    As always any leads are greatly appreciated.
    Site with the SWF with the link with target="_blank":
    http://solarinkgraphics.com/web.htm          • clicking on the IMAGE or the "ENLARGE" link should take you to a target="blank" url
    Site it should go to:
    http://thehoneymoonphase.com

    adobe1kenobe066 wrote:
    Site with the SWF with the link with target="_blank":
    http://solarinkgraphics.com/web.htm          • clicking on the IMAGE or the "ENLARGE" link should take you to a target="blank" url
    Site it should go to:
    http://thehoneymoonphase.com
    First off that first link to the graphics site does not work.  Getting a page not found error.  Although I was able to do a quick lucky guess and added an "l" to the end of the address and it worked.
    Second, because the link is embedded within a Flash document, your problem will lie within the ActionScript code as opposed to the HTML.  Thus you would be better off posting this in the Flash forum with your ActionScript code to get better troubleshooting responses.
    http://forums.adobe.com/community/flash

  • How do i make the tabs attach on bottom (the "page") instead of hanging from the top (the URL bar).

    Last time i restarted FF, the tabs, which are under the URL bar, are "hanging from" the URL bar, with a space under the tabs before the page starts. I want it attached on bottom, with the space on top of the tabs.
    I do not know if this is an option, or from some addon that i am or am not using. Please help me.

    I only have one theme, the default. I do not use other toolbars. I started in safe mode, all add-ons disabled.

Maybe you are looking for

  • Do I need a power converter to run my Macbook pro in czech republic?

    It appears that i would not need one since power rting is 110-240mhz, but need to know for sure.

  • My iPhone 4 has broken screen, how can I reset it with iTunes

    My iPhone 4 has a broken screen. The lock button sometimes works. I need to reset it, can I do this with iTunes. Also, how can you get onto the screen that shows you what phone is connected

  • Ipod classic and connecting to my TV

    Hi, I'm really confused as to what cable I need, to connect my Ipod Classic to television, either via component video etc. I have a belkin cable I had with my previous ipod and it worked fine with that - but not this one!

  • Change Right Alt/Option Key Shortcut

    Hi, I can't figure out how to turn off the shortcut when I press the Right Alt key by itself. Right now when I press the key it puts the window I'm using to the background. The problem is I can't use any of the multi-key shortcuts with the Right Alt

  • Address book folder missing

    Address book contacts were missing but tyhe folder was there till yesterday (Library->application support). But today is mising and on teh top is missing from all time ma