Sending HTTP request to an unknown URL

How to set timeout and continue the flow in plsql when a http request is sent to an unknown ip(fake ip). I am sending request using utl_http package. i tried setting timeout using utl_http.set_transfer_timeout but no luck.I would like to know some suggestions on this. im really bugged on this for the past 2 weeks. I posted this twice. But there was no satisfactory answers.
please help.

Here's what i tried using exception handlers. but it does not work
IF (cou > 0) THEN
          DECLARE
                l_url            VARCHAR2(256) ;
                l_http_request   UTL_HTTP.req;
                l_http_response  UTL_HTTP.resp;
                    l_url := hostname;
                    UTL_HTTP.set_transfer_timeout(5);
                        l_http_request  := UTL_HTTP.begin_request(l_url);
                     l_http_response := UTL_HTTP.get_response(l_http_request);
                  UTL_HTTP.end_response(l_http_response);
CASE WHEN l_http_response.status_code = 200  THEN
            proc('Success')
            WHEN l_http_response.status_code in(401,403,500,503) THEN
      proc('Error')
        END CASE;
                EXCEPTION WHEN OTHERS THEN
            Result := 'continue';
           END;
      END IF;

Similar Messages

  • Error: 'Unable to send the request.  Verify the URL ... is valid and the...

    Hello,
    I'm attempting to connect to Essbase from Visual Studio 2005 with the use of the DataServer component.
    I'm using a URL;
    http://<myserver>:13080/aps/APS
    This URL seems to be valid if I plug it into a browser in that it returns a page listing the following information;
    Hyperion Provider Services
    Hyperion Provider Services - Release 9.3.1.0.0 Build 168
    ESS_ES_HOME: C:\Hyperion\AnalyticProviderServices
    domain file: C:\Hyperion\AnalyticProviderServices/data/domain.db
    essbase.properties: C:\Hyperion\AnalyticProviderServices/bin/essbase.properties
    log console enabled: false
    log file enabled: true
    log level: WARN
    log file name: C:/Hyperion/AnalyticProviderServices/bin/apsserver.log
    is trace enabled: false
    However, if I try and use this same URL in the DataServer component (using the 'Sign On' task) I'm shown the following error;
    'Unable to send the request. Verify the URL "http://<myserver>:13080/aps/APS" is valid and the servlet is running'
    So, any suggestions are much appreciated!
    Many thanks.

    Hi John,
    Yes, you're right. I've now installed the habnet server on the machine hosting Essbase and can access it via browser using;
    http://<myserver>::22080/EssbaseObjects/Servlet
    and this seems to be showing signs of life as it returns the following to the browser;
    =============================================================================
    Hyperion Habnet Servlet, Release 9.2.0
    Copyright 1997-1998, 2001-2006 Hyperion Solutions Corporation. All rights reserved.
    Hyperion Essbase Java API version 9.0.2
    Configuration:
    printXML=false
    printRequests=false
    connectionTimeout=300000
    checkInterval=60000
    forceMetadataCaching=false
    cacheTimeout=300000
    cacheInterval=60000
    EDSUrl=http://localhost:11080/eds/EssbaseEnterprise (optional)
    defaultEDSServer=localhost
    defaultDomain=Essbase
    defaultORBType=URL
    defaultPort=8080
    defaultUseConnectionPool=false
    defaultConnectionPerOperation=false
    defaultUseCluster=false
    defaultConnectionReadOnly=false
    netRetryCount=20
    netRetryInterval=1000
    testing configuration of required Java libraries:
    Essbase Java API (ess_japi.jar) *** OLDER VERSION ***
    Essbase Java API version detected - 9.0.0
    Java memory configuration:
    Maximum: 63 (Mb)
    Allocated: 31 (Mb)
    Free: 28 (Mb)
    XML (xerces.jar) is subject to:
    Apache Software License, Version 1.1
    Copyright (c) 1999-2001.
    The Apache Software Foundation.
    All rights reserved.
    SOAP (soap.jar) is subject to:
    Apache Software License, Version 2.0
    Copyright (c) 1999-2004.
    The Apache Software Foundation.
    All rights reserved.
    =============================================================================
    However.... when I try to connect using the DataServer I'm shown the same error message as beofre except for the change of URL. Can you remember if there were any other settings that needed to be made?
    I've also noticed the line above ' EDSUrl=http://localhost:11080/eds/EssbaseEnterprise (optional) ', this says 'the page cannot be displayed' if i try to access it from the habnet machine but I'm really not sure if this is relevant or not.
    Many thanks again for your time.
    Steve

  • Problem in sending HTTP request to the server.

    Hi,
    i dveloped an ant script for sar deployment.
    i deployed a sar to my local soa server with ant script. it got deployed succesfully..
    but when i try to deploy to a remote server, getting the below error..
    "Problem in sending HTTP request to the server. Please make sure the server is up and/or check standard HTTP response code for 404"
    but the server is up and runnig and i am able to ping it from my machine and also access the console...
    below is my script
    build.properties
    wn.bea.home=C:/Oracle/Middleware
    all.needed.jars.path=D:/SourceCode/neededJAR
    oracle.soa.home=C:/Oracle/Middleware/Oracle_SOA1
    java.passed.home=C:/Oracle/Middleware/jdk160_24
    #Deployment environment
    deployment.plan.environment=DEV
    #Deploy Action
    deployAction =redeploy
    #credentials
    user=weblogic
    password=welcome1
    #For Composite deployment
    serverURL=http://10.177.154.6:7001
    forceDefault=true
    server=10.177.154.6
    port=7001
    sarLocation=D:/SourceCode/JAR
    build.xml
    <?xml version="1.0" encoding="iso-8859-1"?>
    <project name="soaDeployAll" default="deployAll">
         <echo>basedir ${basedir}</echo>
         <property environment="env"/>
    <echo>current folder ${basedir}</echo>
         <property file="${basedir}/build.properties"/>
         <taskdef resource="net/sf/antcontrib/antlib.xml">
         <classpath>
              <pathelement location="${all.needed.jars.path}/ant-contrib.jar"/>           
         </classpath>
         </taskdef>
         <target name="init">
              <tstamp>
                   <format property="timestamp" pattern="yyyy-MM-dd_HH-mm-ss"/>
              </tstamp>
              <property name="build.log.dir" location="${basedir}/buildlogs"/>
              <mkdir dir="${build.log.dir}"/> <property name="build.log.filename" value="build_${timestamp}.log"/>
              <record name="${build.log.dir}/${build.log.filename}" loglevel="verbose" append="false"/>
              <echo message="Build logged to ${build.log.filename}"/>
         </target>
         <target name="deployAll" depends="init">
         <echo>Deploy for environment ${deployment.plan.environment}</echo>
         <antcall target="deployAllComposites"/>
    </target>
    <!-- Following Actions are performed for Composite files in Managed Server - Deploy,Redeploy -->
         <target name="deployAllComposites" depends="init">
         <foreach target="deployComposites" param="Files">
              <fileset dir="${sarLocation}" casesensitive="no" includes="*.jar"/>
         </foreach>
         </target>
         <target name="deployComposites" depends="init">
         <basename file="${Files}" property="basename"/>
    <echo>Deploy Project ${basename} for environment ${deployment.plan.environment}</echo>
              <if>
                   <equals arg1="${deployAction}" arg2="deploy" />
                   <then>
                        <echo message="Deploying composites in Managed server........." />
                        <ant antfile="${oracle.soa.home}/bin/ant-sca-deploy.xml" inheritAll="true" target="deploy">
                             <property name="serverURL" value="${serverURL}"/>
                             <property name="user" value="${user}"/>
                             <property name="password" value="${password}"/>
                             <property name="overwrite" value="false"/>
                             <property name="forceDefault" value="${forceDefault}"/>
                             <property name="sarLocation" value="${sarLocation}/${basename}"/>
                        </ant>
                   </then>
                   <else>
                        <echo message="ReDeploying composites in Managed server........." />
                        <ant antfile="${oracle.soa.home}/bin/ant-sca-deploy.xml" inheritAll="true" target="deploy">
                             <property name="serverURL" value="${serverURL}"/>
                             <property name="user" value="${user}"/>
                             <property name="password" value="${password}"/>
                             <property name="overwrite" value="true"/>
                             <property name="forceDefault" value="${forceDefault}"/>
                             <property name="sarLocation" value="${sarLocation}/${basename}"/>                         
                        </ant>
                   </else>
              </if>
    </target>
    </project>
    please help....

    Hi,
    Give the serverURL as http://<host>:<managed.server.port>/soa-infra/deployer and try.
    e.g . http://10.177.154.6:8001/soa-infra/deployer
    Regards,
    Neeraj Sehgal

  • ExecutorService creating tasks to send HTTP requests - time out

    In my java application, I have introduced ExecutorService to create tasks. The tasks consist of sending HTTP requests to an application server, to process transactions. The ExecutorService will process about 1000 requests.
    The executor process the transactions and terminates OK, but some of the transactions timed out (before introducing ExecutorService, I was just sending one transaction at time, all the transactions were processed OK; but, it was taking a long time to process).
    See the code below.
    private ExecutorService threadExecutor;
    threadExecutor = Executors.newFixedThreadPool(30);
    threadExecutor.execute(transaction);
    try
         //Shutting down the ThreadExecutor
    threadExecutor.shutdown();
    threadExecutor.awaitTermination(30, TimeUnit.SECONDS);
    threadExecutor.shutdownNow();
    catch (InterruptedException e)
         System.out.println("ERROR - cannot shutdown the ThreadExecutor - exception is: " + e);
    Is this the best way to implement this use case?
    Thank you.

    From the above code, it seems like you are starting only a single transaction in a thread pool. Or does the transaction object you pass to the threadExecutor spawn more tasks for the executor?
    If you are indeed still making all HTTP requests from the single transaction object, then yes, it will 'time-out' after 30 seconds, since the ExecutorService was instructed to stop its threads after that period of time.
    Your description of the use case is actually a good example of the usage of an ExecutorService, since it is faster to do 1000 HTTP requests in parallel than it is to do them sequentially.
    Consider this:
    ExecutorService threadExecutor = Executors.newFixedThreadPool(30);
    for (int i = 0; i < 1000; i++)
      threadExecutor.execute(new Transaction());
    try
      threadExecutor.shutdown();
      threadExecutor.awaitTermination(30, TimeUnit.SECONDS);
      threadExecutor.shutdownNow();
    catch (InterruptedException e)
      // Ignore
    }This will spawn 1000 transactions that will execute in parallel, with max. 30 running at any single point in time. Any transactions still not executed after 30 seconds will be terminated.
    Hope this helps.
    --JH
    Edited by: Kramor_dude on Nov 5, 2009 6:55 AM

  • Problem sending http request

    I have a Java program that creates a url from a String, then uses the openConnection method of URLConnection to send the request to a web server. The exact same Url string works fine from my browser, but the Java program throws a java.io.FileNotFoundException. Other url's work OK.
    Any pointers as to what could cause this are appreciated.

    See if anything in http://forum.java.sun.com/thread.jsp?forum=4&thread=135019 helps you.

  • Send http request..

    hi to all !
    someone can tell me the one way for send a request http like for browser "http://127.0.0.1:8080/cgi-bin/wap_push.cgi?"username=nico&password=nico" but with java.net library ?
    thanks in advance,(and sorry for my english..;-))
    nico

    http://java.sun.com/docs/books/tutorial/networking/urls/index.html

  • File.upload on Air SDK for iOS devices failed to send http request to server.

    I am trying to use ActionScript's File.upload to upload a file on Air SDK for iOS8 environment, but the File.upload does not work properly. No handler about the file upload is executed after File.upload is invoked, and no exception is caught. When I check the network traffic of the server side, I found that no http request even hit the server after File.upload is executed. The code snippet here is very simple.
      private var file:File;
      private var dir:File;
      //This method is executed to create a file and upload it when the Upload Button is pressed.
      protected function OnUploadButtonPressed(event:MouseEvent):void{
      var str:String = 'This is test';
      var imageBytes:ByteArray = new ByteArray();
      for ( var i:int = 0; i < str.length; i++ ) {
      imageBytes.writeByte( str.charCodeAt(i) );
      try{
      dir = File.applicationStorageDirectory
      var now:Date = new Date();
      var filename:String = "test" + now.seconds + now.milliseconds + ".txt";
      file = dir.resolvePath( filename );
      var stream:FileStream = new FileStream();
      stream.open( file, FileMode.WRITE );
      stream.writeBytes( imageBytes );
      stream.close();
      file.addEventListener( Event.COMPLETE, uploadComplete );
      file.addEventListener( IOErrorEvent.IO_ERROR, ioError );
      file.addEventListener( SecurityErrorEvent.SECURITY_ERROR, securityError );
      file.addEventListener(ErrorEvent.ERROR, someError);
      file.addEventListener(ProgressEvent.PROGRESS, onProgress);
      file.upload( new URLRequest("http://10.60.99.31/MyPath/fileUploadTest.do"));//This line does not work. No handler is executed. No http request hit the server side.
      } catch( e:Error ) {
      trace( e );
      //Complete Handler
      private function uploadComplete( event:Event ):void
      trace( "Upload successful." );
      //IOError handler
      private function ioError( error:IOErrorEvent ):void
      trace( "Upload failed: " + error.text );
      //SecurityError handler
      private function securityError(error:SecurityErrorEvent):void{
      trace( "Security error:" + error.text );
      //Other handler
      private function someError(error:ErrorEvent):void{
      trace("some error" + error.text);
      //Progress handler
      private function onProgress(event:ProgressEvent):void{
      trace("progressHandler");
    When executed on Air Simulator, it works fine as expected, and the file is successfully uploaded to the server. But When executed on iOS devices(in my case, iPad), as I explain early, no handler about the file upload is executed, and no the http request even hit the server. So I think the problem may be in the client side. It seems that the Air SDK for iOS just failed to send the http request for some reason.
    To make my problem more clear, I list my environment below:
    Development Environment:  Windows7 (64bit)  / Mac os 10.9.4 (Tested on  OS platforms.)
    IDE: Flash Builder 4.7
    Air SDK:  3.8 / 16.0.0 (After I updated to the lastest Air SDK 16.0.0 , the problem still exists.)
    Application Server:  Tomcat7 + Spring
    Target OS: iOS 8
    I have been struggling for this for days. So I really appreciate it if anyone has any idea about this.
    Thanks in advance.

    Hi bluewindice ,
    As you have quoted ( ActionScript's File.upload does not work on Air SDK for iOS devices ) , this issue has been replicated at our end, and our team will be working on it.
    Thanks,
    Tushar

  • Send HTTP Request to Server

    Guys,
    i need to implement a program that will send request to the server and recieve the http response from the server.
    Some of information will attached in the http response from the server.
    My application must able to catch out this info in the http response header.
    I had use the httpClient jar to send the request and i able to recieve http response 200 or 400 only from the server.
    Can any one of you give me some idea on how to retrieve the attached info in the response header?
    Thanks in advance.

    See http://jakarta.apache.org/commons/httpclient/apidocs/index.html
    package org.apache.commons.httpclient.methods methods: GetMethod PostMethod : getResponseHeaderGroup, getResponseHeaders, getResponseHeaders...

  • Apache HA: Probe sends HTTP request to HTTPS port

    Hello,
    i have a Sun 3.2 Cluster and the Apache HA module configured as described in the documentation. Works fine, except of the probe sending a HTTP request to the HTTPS port - this causes every minute an error log entry which is annoying. The log file runs full of these "HTTP spoken on HTTPS port" messages.
    I have already tried to set the Monitor_Uri_List parameter to http://servername:80/ but this does not help. Has anyone a solution to this problem? Can I just re-create the apache HA module and leave out the '44/tcp' in the Port_list parameter?
    Thanks for help,
    marc.

    It doesnt matter where they are, you just need to set up the two virtual hosts as per my example. The fact that the domains are the same with/without ssl doesnt change my example above.
    So, you need to set up one ssl host for the domain sharpie.pen.com, and a non-ssl host for the domain sharpie.pen.com. If you want bic.pen.com to have the same behavior you will need another pair for that.
    Apache must have a virtual host to respond to a port/domain combination.
    The reason I suggested a re-write rule of the form I did was to ensure that if someone went to:
    http://sharpie.pen.com/webmail/login.php (for instance)
    they would be redirected to
    httpS://sharpie.pen.com/webmail/login.php
    rather than the root of the domain.
    Does this help?
    James

  • Sending http request form forte to webserver

    Hai ,
    Do any one has an idea of sending the HTTP request from forte client to the
    webserver where my servlet is running.
    Thanks in Advance
    mahesh

    Here's what i tried using exception handlers. but it does not work
    IF (cou > 0) THEN
              DECLARE
                    l_url            VARCHAR2(256) ;
                    l_http_request   UTL_HTTP.req;
                    l_http_response  UTL_HTTP.resp;
                        l_url := hostname;
                        UTL_HTTP.set_transfer_timeout(5);
                            l_http_request  := UTL_HTTP.begin_request(l_url);
                         l_http_response := UTL_HTTP.get_response(l_http_request);
                      UTL_HTTP.end_response(l_http_response);
    CASE WHEN l_http_response.status_code = 200  THEN
                proc('Success')
                WHEN l_http_response.status_code in(401,403,500,503) THEN
          proc('Error')
            END CASE;
                    EXCEPTION WHEN OTHERS THEN
                Result := 'continue';
               END;
          END IF;

  • In ActionScript 2.0 , How can I send HTTP request and get the response in JSON format.

    I am using ActionScript 2.0 for my app development. I have checked XML and LoadVars class. These classes by default send/receive data either in XML or name/value pair format. I want to send data in JSON format and receive the response in JSON format. How can I achieve this behavior using AS2.0. I have noticed that AS3.0 has the capabilities to do so. My client platform doesn't support AS3.0. Can anybody suggest a way to achieve this?
    Thanks in Advance.

    Atlast I am able to find the solution for this problem. In the end solutioin is very simple.
    Following steps will help in sending request in JSON format.
    1. extend LoadVars class
    2. override toString method. (It should return JSON format )
    3. Use subclass to send the request.

  • Problems sending HTTP request to PI

    In order to receiver a HTTP request from HTTP server onto PI, what things needs to be defined in PI?
    there is an HTTP application which can connect to other PI server in my environment without any issues, but when I point it to intended PI server, it is throwing exceptions. Where am I doing wrong? do I need to create a some RFC destination for this?

    Hello!
    Since you are talking about "PI" I believe you're using 7.1X.
    From this, check this link: http://help.sap.com/saphelp_nwpi71/helpdata/EN/44/bcd15381f456a1e10000000a1553f6/frameset.htm
    Also, when you go to the INTEGRATION_DIRECTORY_HMI, the result
    should be 500 "Internal Server Error" and not the 200 Ok that we're used to
    Hope it helps!
    Regards,
    Caio Cagnani

  • The application can not send http-request being on a virtual machine.

    Hello, I have console application, which process data, and send report to Web API controller of my site. But the data do not reach the controller. Watching visual studio debugger for the controller, I see that he has not even called. But the application
    being launched on my local PC, regularly sends data to the controller.
    Im using HttpClient class, here is string which send data to server:
    Client.PostAsJsonAsync("http://[site].azurewebsites.net/api/Decision", report);
    VM OS - Windows  Server 2012.
    What could be the
    problem?

    Hi,
    Did you create the http endpoint for virtual machine?
    Regards.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How do I send HTTP request to a server via a proxy server in JDK 1.4?

    JDK 1.5 's URL class provides an overloaded version of openConnection() which accepts an object of type Proxy using which we can establish connection with a remote server via a proxy server, but JDK 1.4 doesn't provide any such overloaded version. How do I do that in JDK 1.4? Even if I had a class that can create HTTP packets for me, then I could have established Socket connection with the proxy server and sent the HTTP packet to it. Is there a way to do that also?

    There are some system properties, which can be set with System.setProperty [http://java.sun.com/j2se/1.4.2/docs/guide/net/properties.html]

  • [Help] Sending HTTP requests

    i was to check whether the web system created can handle a certain number of requests.. is there a possibility of sending a certain number of requests per second using a java?
    is there any libraries i have to import?

    RustiX wrote:
    would you happen to have to link to show me how to use Virtual users??I don't remember any off my head, but you should be able to google it.
    also when URLConnection is used does it create session as well? cuz i when i sent request using URLConnection and check tomcat manager to see how many session had been created it showed none.. but when i used wget or tried going to the link via a different browser it created a session..You will need to write additional code to manage session cookies, but JMeter will let you do that easily.

Maybe you are looking for

  • I am running Win 7 Pro and the javascript to give popup pictures on my website is not resolving correctly. Pop up frames are too large. Worked O.K. on 3.6

    Small images are on the website pages. A click on the small images gives a larger picture which pops up in a frame. Small images are around 320 x 200. Pop up images are around 880 x 660. This procedure is controlled by javascript coding within the pa

  • Dumb Question??

    I hope the philosophy here is that there is no such thing as a dumb question. Here goes. Adobe Classroom in a Book for Premier Pro states that when opening a New Project under the Project tab you have two choices DV or HDV when in actuality the choic

  • Problem installing universal docking station mac book pro

    Running parallels, windows xp pro. I have installed the drivers and software for the targus universal docking station. Keep getting an error message that " all usb ports are currently being used" Then it flips from windows back to mac os. there is no

  • Blocking Inbound File Attachments

    Hi, Currently, we are upgrading our email firewall from Borderware to Cisco C160 Ironport.  I have loaded the config file and am now in the process of setting up/configuring policies, content filter.  I want to block certain inbound attachments such

  • How to watch .avi movies on apple tv 2 gen

    Hi there. Just bought an Apple tv gen2 day before yesterday. Here are my question(s) 1. I am trying to stream .avi format thru my itunes. I was able to stream .mp4( i think) on the apple tv.  How can i stream avi format? 2. I also have an Ipad 1gen.