FaultCode:Client.Error.MessageSend faultDetail:'Channel.Connect.Failed

Hello Everyone,
I'm kinda sure a lot of people have to deal with the same error, but I can't solve it using explainations given in other topics. So here it is :
I'm trying to create a Flex project on Adobe Flash Builder 4.0, using J2EE, BlazeDS and Tomcat6.0.
To have a good start, I want to try some basic interactions between java & flex. For that, I created a java class with a functions returning a String, witch is called when a button is clicked in my main panel :
remoting-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<service id="remoting-service"
    class="flex.messaging.services.RemotingService">
    <adapters>
        <adapter-definition id="java-object" class="flex.messaging.services.remoting.adapters.JavaAdapter" default="true"/>
    </adapters>
    <default-channels>
        <channel ref="my-amf"/>
    </default-channels>
     <destination id="hello">
        <properties>
            <source>test.HelloWorld</source>
            <scope>session</scope>
        </properties>
    </destination>
</service>
HelloWorld.java
package test;
public class HelloWord {
    public String sayHello()
        return "Hello from Java";
project.mxml
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="1000" minHeight="600">
    <s:Button x="200" y="200" label="Button4" click="callHello(event)"/>
    <fx:Declarations>
        <s:RemoteObject id="roHello"
                        destination="hello"
                        fault="onFault('roHello',event)">
            <s:method name="sayHello"
                      result="onResult(event)"
                      fault="onFault('roHello.sayHello',event)"/>           
        </s:RemoteObject>
    </fx:Declarations>
    <fx:Script>
        <![CDATA[
            import mx.controls.Alert;
            import mx.rpc.events.FaultEvent;
            import mx.rpc.events.ResultEvent;
            import mx.rpc.remoting.RemoteObject;
            private function callHello(event:MouseEvent):void
                roHello.sayHello() as String;
            private function onResult(event : ResultEvent) : void
                var retour:String;
                retour = event.result as String;
                //Alert.show(event.result.toString());
                Alert.show("success::"+retour);
            private function onFault(remoteObject : String, event : FaultEvent) : void
                Alert.show(event.fault.message);
                //Alert.show("fault");
        ]]>
    </fx:Script>
</s:Application>
When I launch my application, the button is created. But as soon as I click on it, I got the following message :
faultCode:Client.Error.MessageSend faultString:'Echec de l'envoi' faultDetail:'Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 404: url: 'http://localhost:8080/WebContent/messagebroker/amf''
any idea how to solve it ?

I've resolved my issue. Perhaps you are correct that my tokens were not resolving, but since you did not offer a way to fix that, I was still on my own. There was nothing helpful that I could find in the console or log.
I found this article, and after using his architecture (using an external config file to define the amf endpoint at runtime) I was able to connect to the back end. I was also looking for a good way to externalize information, so I recommend reading this article:
http://coenraets.org/blog/2009/03/externalizing-service-configuration-using-blazeds-and-lc ds/

Similar Messages

  • Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 500

    I get the following error when trying to connect to my BlazeDS Java server from Flex application. Flex application is on localhost:80, blazeDS on tomcat localhost:8080. Please help!
    createUser();faultHandler():(mx.messaging.messages::ErrorMessage)#0
      body = (Object)#1
      clientId = (null)
      correlationId = "9FFDEBE8-EAD0-F3D9-8E9B-E3D7D7F5AE79"
      destination = ""
      extendedData = (null)
      faultCode = "Client.Error.MessageSend"
      faultDetail = "Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 500: url: 'http://77.93.202.150:8080/QuizDS/messagebroker/amf'"
      faultString = "Send failed"
      headers = (Object)#2
      messageId = "98F54E19-7B0D-DCB9-4B86-E3D7D84E484F"
      rootCause = (mx.messaging.events::ChannelFaultEvent)#3
        bubbles = false
        cancelable = false
        channel = (mx.messaging.channels::AMFChannel)#4
          authenticated = false
          channelSets = (Array)#5
          connected = false
          connectTimeout = -1
          enableSmallMessages = true
          endpoint = "http://77.93.202.150:8080/QuizDS/messagebroker/amf"
          failoverURIs = (Array)#6
          id = (null)
          mpiEnabled = false
          netConnection = (flash.net::NetConnection)#7
            client = (mx.messaging.channels::AMFChannel)#4
            connected = false
            maxPeerConnections = 8
            objectEncoding = 3
            proxyType = "none"
            uri = "http://77.93.202.150:8080/QuizDS/messagebroker/amf"
          piggybackingEnabled = false
          polling = false
          pollingEnabled = true
          pollingInterval = 3000
          protocol = "http"
          reconnecting = false
          recordMessageSizes = false
          recordMessageTimes = false
          requestTimeout = -1
          uri = "http://77.93.202.150:8080/QuizDS/messagebroker/amf"
          url = "http://77.93.202.150:8080/QuizDS/messagebroker/amf"
          useSmallMessages = false
        channelId = (null)
        connected = false
        currentTarget = (mx.messaging.channels::AMFChannel)#4
        eventPhase = 2
        faultCode = "Channel.Connect.Failed"
        faultDetail = "NetConnection.Call.Failed: HTTP: Status 500: url: 'http://77.93.202.150:8080/QuizDS/messagebroker/amf'"
        faultString = "error"
        reconnecting = false
        rejected = false
        rootCause = (Object)#8
          code = "NetConnection.Call.Failed"
          description = "HTTP: Status 500"
          details = "http://77.93.202.150:8080/QuizDS/messagebroker/amf"
          level = "error"
        target = (mx.messaging.channels::AMFChannel)#4
        type = "channelFault"
      timestamp = 0
      timeToLive = 0

    halodev:
    I made a CF/Flex site based on the Flexstore sample app,
    using a database instead of XML as the data source; in case you
    want to see it:
    http://www.timos.com/dg/flex/DilemmaGames.html
    At first I had troubles similar to what you describe;
    initially, part of the problem was that my hosting company had not
    yet upgraded to CF 7.02. One other thing I had to correct: when you
    upload to your server, upload the entire ‘bin’ (or
    whatever your output folder is) minus the debug SWF.
    If it would help with other issues, contact me and I will be
    glad to make my project code available to you. Good luck.
    Carlos
    [email protected]

  • Getting Channel.Connect.Failed

    I'm building a Flex 3 app, with BlazeDS deploying to Tomcat
    6.0 I have built/Run the example BlazeDS code with out error. When
    I try to access my remote bean from my app I get
    [RPC Fault faultString="Send failed"
    faultCode="Client.Error.MessageSend"
    faultDetail="Channel.Connect.Failed error
    NetConnection.Call.Failed: HTTP: Status 404: url: '
    http://localhost:8400/WebContent/messagebroker/amf'"
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler()[E:\dev\3.0.x\frameworks\project s\rpc\src\mx\rpc\AbstractInvoker.as:216
    at
    mx.rpc::Responder/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:49 ]
    at
    mx.rpc::AsyncRequest/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest .as:103]
    at
    mx.messaging::ChannelSet/faultPendingSends()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\ messaging\ChannelSet.as:1399]
    at
    mx.messaging::ChannelSet/channelFaultHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\m x\messaging\ChannelSet.as:935]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.messaging::Channel/connectFailed()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\messagi ng\Channel.as:997]
    at
    mx.messaging.channels::PollingChannel/connectFailed()[E:\dev\3.0.x\frameworks\projects\rp c\src\mx\messaging\channels\PollingChannel.as:354]
    at
    mx.messaging.channels::AMFChannel/statusHandler()[E:\dev\3.0.x\frameworks\projects\rpc\sr c\mx\messaging\channels\AMFChannel.as:369]

    Hi,
    Can you please try tracing the FaultEvent.fault.rootCause
    object and see if there is any error message. Usually exceptions
    thrown from the server is available in this rootCause object.
    Hope this helps.

  • FaultCode:Client.Error.RequestTimeout

    You can find the related dscusstion here...Need help... Thanks.
    http://forums.adobe.com/message/4203505#4203505

    Yes it is annoying, i've tried by switching from the wifi to the wireless today in the morning
    [FaultEvent fault=[RPC Fault faultString="Request timed out" faultCode="Client.Error.RequestTimeout" faultDetail="The request timeout for the sent message was reached without receiving a response from the server."] messageId="A9913DF4-F588-9AF1-B80D-68E5B3826199" type="fault" bubbles=false cancelable=true eventPhase=2]
    the same error
    message: (mx.messaging.messages::ErrorMessage)#0
      body = (Object)#1
      clientId = (null)
      correlationId = "B86562A1-47F8-8745-52FE-68E58C5747C1"
      destination = ""
      extendedData = (null)
      faultCode = "Client.Error.RequestTimeout"
      faultDetail = "The request timeout for the sent message was reached without receiving a response from the server."
      faultString = "Request timed out"
      headers = (Object)#2
      messageId = "A9913DF4-F588-9AF1-B80D-68E5B3826199"
      rootCause = (null)
      timestamp = 0
      timeToLive = 0
    Status code: 0
    I guess Adobe team should help me, this is purely the platform issue, my client keeps on polling after the network is changed by throwing this fault event on the same httpservice.

  • Flex/Zend channel connect failed error...

    Hi guys.
        I am using Flex and php to develop my project. Everything works great in my local machine. However, when I upload my files to my server (godaddy.com). I got the error when loading my flex application.
    The pop-up error message is
    send failed
    channel.connect.failed.error
    Netconnection.call.Badversion: url:
    http://mydomail/folder/gateway.php
    I have upload my ZendFramewrok folder into my server and amf_config.ini has been configured. (webroot =http://mydomain)
    I am not sure what's going on here. Please help. Thanks.
    Update: my gateway.php
    <?php
    ini_set("display_errors", 1);
    $dir = dirname(__FILE__);
    $webroot = $_SERVER['DOCUMENT_ROOT'];
    $configfile = "$dir/amf_config.ini";
    //default zend install directory
    $zenddir = $webroot. '/ZendFramework/library'; //I did upload the ZendFramwork folder
    //Load ini file and locate zend directory
    if(file_exists($configfile)) {
    $arr=parse_ini_file($configfile,true);
    if(isset($arr['zend']['webroot'])){
      $webroot = $arr['zend']['webroot'];
      $zenddir = $webroot. '/ZendFramework/library';
    if(isset($arr['zend']['zend_path'])){
      $zenddir = $arr['zend']['zend_path'];
    // Setup include path
    //add zend directory to include path
    set_include_path(get_include_path().PATH_SEPARATOR.$zenddir);
    // Initialize Zend Framework loader
    require_once 'Zend/Loader/Autoloader.php';
    Zend_Loader_Autoloader::getInstance();
    // Load configuration
    $default_config = new Zend_Config(array("production" => false), true);
    $default_config->merge(new Zend_Config_Ini($configfile, 'zendamf'));
    $default_config->setReadOnly();
    $amf = $default_config->amf;
    // Store configuration in the registry
    Zend_Registry::set("amf-config", $amf);
    // Initialize AMF Server
    $server = new Zend_Amf_Server();
    $server->setProduction($amf->production);
    if(isset($amf->directories)) {
    $dirs = $amf->directories->toArray();
    foreach($dirs as $dir) {
         // get the first character of the path.
         // If it does not start with slash then it implies that the path is relative to webroot. Else it will be treated as absolute path
         $length = strlen($dir);
         $firstChar = $dir;
         if($length >= 1)
          $firstChar = $dir[0];
         if($firstChar != "/"){
          // if the directory is ./ path then we add the webroot only.
          if($dir == "./"){      
           $server->addDirectory($webroot);
          }else{
           $tempPath = $webroot . "/" . $dir;
        $server->addDirectory($tempPath);
      }else{
          $server->addDirectory($dir);     
    // Initialize introspector for non-production
    if(!$amf->production) {
    $server->setClass('Zend_Amf_Adobe_Introspector', '', array("config" => $default_config, "server" => $server));
    $server->setClass('Zend_Amf_Adobe_DbInspector', '', array("config" => $default_config, "server" => $server));
    // Handle request
    echo $server->handle();
    Error from gateway.php if I call it directly.
    Warning: require_once(Zend/Loader/Autoloader.php) [function.require-once]: failed to open stream: No such file or directory in /home/content/79/4687979/html/parkerList/gateway.php on line 27
    Fatal error: require_once() [function.require]: Failed opening required 'Zend/Loader/Autoloader.php' (include_path='.:/usr/local/php5/lib/php:http://blackwheels.info//ZendFramework/library') in /home/content/79/4687979/html/parkerList/gateway.php on line 27
    gateway.php is the rat. but I still can't figure out what's wrong. Zend/Loader/Autoloader.php is under the server root "ZendFramework/library" folder. I don't understand why my application can't find it. Thanks again!

    You will get a better response if you repost your question on the Flex forums. This forum is for the Livecycle Data Services product.

  • Channel.Connect.Failed (http 501) error when trying to connect to a remote php gateway

    hey all
    this is my first app to access remote data, and i am trying to build both clieant and server side
    i am working on a flashbuilder 4.6 and php simple system.
    I use the php data wizard to build my php code/services and develop locally on a wamp server, configuring the local mysql db with phpmyadmin. the wizard itself enables the zend framework needed
    locally, all looks fine
    i am trying out deployment to my real, linux based remote server, and for the first step I uploaded my php services to the remote server
    i used this guide by Mihai Corlan and when testing my app i get an Alert with
    Send failed
    Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 501: url: 'http://(my domain + file structure to..)gateway.php'
    so i guess even before i get to see if i changed the amf_config.ini and gateway.php itself and the services properly for deployment i am unable to connect to the gateway, correct?
    http 501 is something about html headers? i dont know any html, any php, any sql just as3 and mxml
    can anyone help?

    I do get "Zend Amf Endpoint" - as well - the app works perfectly when testing on my desktop as iphone4 simulation and on android, just not on my 4s device.
    as a side note, i can even browse to the gateway.php that I have set up via safari on the device. That makes me think that theres just some dumb http entitlement or "allow" setting for ios that I'm not finding.

  • Remoting Connection Issue: Channel.Connect.Failed

    Solution: Turns out my client had installed a new
    firewall/web management system without telling me. My app was being
    blocked. :(
    Hi there,
    I have a Flex app using remoting and ColdFusion. My client
    has suddenly experienced the following error:
    Channel.Connect.Failed
    NetConnection.Call.BadVersion: url: '
    http://mysite/flex2gateway/'
    The weird thing is the app works when you access it from
    outside of my client's office. I'm wondering if it is some sort of
    firewall issue on their end. Any thoughts?
    Thanks.

    The issue is probably do to a problem with your configuration.  There is probably a destination or endpoint issue.  A nice and short tutorial on this can be found at http://flexbandit.com/archives/55.

  • Channel Connection Failed  HTTP 405

    I've got the -services-config.xml set up and pointed to
    complie in Flex, but I'm getting these errors:
    Send failed - then I hit "OK"
    Channel.Connect.Failed error NetConnection.Call.Failed: HTTP:
    Status 405: url: '
    http://mySite.com/flex2gateway/'
    I've read several posts and created a new channel that does
    not point to the "localhost:port" and channel-definition id. It
    looks something like this:
    <endpoint uri="
    http://mySite.com/flex2gateway/"
    class="flex.messaging.endpoints.AMFEndpoint"/>
    I'm using Flex 3, so I don't know if there is any issues with
    it. Any suggestions would be greatly appreciated!

    Found the problem. In case anyone else runs into this issue:
    On your Server you need Coldfusion version 7.0.2 at the
    minimum. When you goto the URL of
    http://x.x.x.x/flex2gateway
    in a web browser you should get a white blank page. Also make sure
    that you have a tab within the CF Administrator under Data &
    Services called Flex Intergration. I have had these same issues and
    found that my Production Server did not have the Flex Intergration
    so I had to Uninstall CF7 and ReInstall 7.0.2 to get the Flex
    Intergration.

  • Error testing configuration: "HTTP connection failed"

    Hello all,
    I get the following error message when I want to test a configuration with the Configuration Test Tool (I replaced the hostname):
    Internal Error
    HTTP connection to ABAP Runtime failed.
    Error: 403 Forbidden
    URL: http://<hostname>:8065/sap/xi/simulation?sap-client=
    User: XIDIRUSER
    The error appears in the second step (Sender Agreement works, Receiver Determination the error appears).
    Seems as if the client is missing in URL. Or is it anything else? What could I do to avoid this error?
    Thanks and regards
    Joschi

    Hi Joachim,
    Do you resolve the problem?  If not, check the service in PI.
    Your simulation service is not active.  So use transaction sicf to activate the simulation service under XI.  Hope this will help.
    Y.Weng

  • 10g Client Works - VS 2005 Data Connections Fail - SQLPLUS Fails

    I am developing on WINDOWS XP SP2 with Oracle Client 10g installed; Visual Studio 2005 SP2 with ODAC110510beta. I have several apps that use the Oracle Client and they work fine; so I know my TNSNAMES.ORA & SQLNET.ORA are good. The same two files are loaded in 10.2.0 & 11.1.0 directories. However, since loading ODAC110510beta, in Visual Studio 2005, I cannot get an Oracle Connection to work for Oracle Data Provider for .Net [ Oracle DataBase Server (Oracle ODP.Net) ] or .Net Framework Data Provider for Oracle [ Oracle DataBase Server (Oracle Client) ].
    Visual Studio Error: ORA-12451 TNS:no listener
    SQLPLUS error: Error 6 initializing SQL*Plus
    The real odd behavior is that some of my old apps have the error and some don't; all runing on my development box.
    I have read many blogs and tried everything suggested; but still no luck.
    Any suggestions Greatly Appreciated!

    How many oracle homes do you have on your development box?
    How many tnsnames.ora files do you have?
    Are you using TNS_ADMIN parameter for pointing different oracle homes to a single SQL*net configuration?
    It sounds that ODAC11xx has created a new oracle home. This home is the last installed and might be first in path. Some tools using "plain" oci libraries using this oracle home. Do you have configured sql*net for this ODAC home?
    Some apps are using older or more specialized libraries. These use the old working oracle homes.
    Lot's of questions. But some to check and correct.
    Christian

  • RPC Connect Failed

    Hi,
    I am getting the following error in my application where in
    making RPC calls via RemoteObject.
    [RPC Fault faultString="Send failed"
    faultCode="Client.Error.MessageSend"
    faultDetail="Channel.Connect.Failed error
    NetConnection.Call.Failed: HTTP: Status 404"]
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler()
    at mx.rpc::Responder/fault()
    at mx.rpc::AsyncRequest/fault()
    at mx.messaging::ChannelSet/::faultPendingSends()
    at mx.messaging::ChannelSet/channelFaultHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.messaging::Channel/mx.messaging:Channel::connectFailed()
    at
    mx.messaging.channels::PollingChannel/mx.messaging.channels:PollingChannel::connectFailed ()
    at
    mx.messaging.channels::AMFChannel/mx.messaging.channels:AMFChannel::statusHandler()
    I have checked the entries in services-config.xml and
    remoting-config.xml but still unable to figure out the problem.
    Any help is appreciated.
    Regards,
    Kshama

    take a closer look to the path to the remote object, error
    404 means that your rpc can't find the remoteobject

  • When  submit remote object call getting error Client.Error.DeliveryInDoubt

    Hello,
    We are having very weird error DeliveryInDoubt from blazeds.
    [ERROR] failed to call the remote service !!![FaultEvent fault=[RPC Fault faultString="Channel disconnected" faultCode="Client.Error.DeliveryInDoubt" faultDetail="Channel disconnected before an acknowledgement was received"] messageId="98F7B030-0FE0-0B88-300C-EC422D055E21" type="fault" bubbles=false cancelable=true eventPhase=2
    Error does not happen every time, but rather from time to time but happens on all client machines.
    Environment:
    blazeds v3.
    Flex application with Remote Object.
    Browser IE7.
    Object that passed to blazeds is complex and might have 100 items.But number of items does not seem affect error occurences.
    Short description for the object passed to blazeds remote object call for processing:
    Remote Object call takes an argument ArrayCollection of SyncRequest objects (_requestSyncList)
                    var syncRequest:SyncRequest = new SyncRequest();
                    var syncObject:Object = new Object();
                    syncObject[requestBuilder.direction] = requestBuilder.jobMap;
                    syncRequest.syncJobs = syncObject;
                    _requestSyncList.addItem(syncRequest);          
    requestBuilder.jobMap is an object that have different artifacts.
    jobMap[obj.artifact] = myColl;
    myColl is ArrayCollection of artifact of SyncJob
    Here is the definition of SyncJob
       public class SyncJob
            public var jobName:String;
            [ArrayElementType("com.farmers.docprocessing.remotesync.vo.JobParameter")]
            public var jobParams:ArrayCollection;
    Not sure what causing that issue and how to debug it. 
    Please advice.
    Thank you

    Not without you psoting some code.
    Possible problem: Difference between object type being returned, vs the type of the reference (i.e., the method that returns an object should have a return type of the interface name).

  • Connect failed with sql error 1004

    Hi ,
    I am getting an error while starting the SAP.
    error in DEV_W0 file :
    CONNECT failed with sql error 1004
    OCI-call 'OCIsessionBeging failed  RC = 1017
    Can some one help me with this.
    Thanks in advance.
    Kiran

    Hello Kiran,
    Can you post full contents of dev_w0 logs,there must be a ora error also written there.?
    What I assume is there is a problem with op$ or sapr3 user while connecting to oracle
    If that is the case refer to note 400241,you will find the solution
    Rohit

  • Upgrading from 35 to 36 caused secure connection failed errors

    We have a couple of different applications that our customers suddenly are having issues with on a pair of load balanced web servers after they upgrade to version 36 of Firefox. It worked fine in 35 and still works in Chrome and IE. The error only happens on certain pages within the sites. The exact error is this:
    Secure Connection Failed
    The connection to the server was reset while the page was loading.
    The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
    The exact same apps work fine on other servers with version 36, so I’m guessing it is some kind of a certificate/cipher issue with the server or load balancer. I have searched for this message and see others have similar issues when attempting to upload files but the pages failing don't have any file uploads on them.
    Any suggestions on what to look at?

    After spending some more time browsing around on the forums, I stumbled on this thread:
    https://support.mozilla.org/en-US/questions/1050465
    We changed the max parse length parameter to 65535 in our Cisco ACE20-MOD-K9 load balancer and this solved the issue:
    parameter-map type http HTTP-PARAM-MAP
    set header-maxparse-length 65535
    length-exceed continue

  • Ora-12545 connect failed because target host does not exist(plsql develper)

    Hi,
    I am using Oracle 10g version, and i am using plsql developer.
    I am able to connect Oracle through sql*plus, But i am not able to connect Oracle through plsql developer from past few days, it is giving me error like:
    ora-12545 connect failed because target host does not exist
    I have not done any changes in setting though i am getting this problem, earlier i was able to work with plsql developer very good.
    I am sending the TNS file for your reference.
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = vnod-PC)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    Please help me in this.
    Thanks,
    Vinod

    910575 wrote:
    Hi,
    I am using Oracle 10g version, and i am using plsql developer.There are numerous products with similar names.
    Which vendor provides your software & which version of the software do you have?
    Is the Oracle database server system installed on the same system as your client software?
    post results from following SQL
    SELECT * FROM V$VERSION;
    Handle:     910575
    Email:     [email protected]
    Status Level:     Newbie
    Registered:     Jan 26, 2012
    Total Posts:     42
    Total Questions:     20 (18 unresolved)
    Why so many unanswered questions?
    Edited by: sb92075 on May 18, 2012 9:30 PM

Maybe you are looking for

  • How do I have dual monitor for different windows

    I wanted to use two monitors. One to monitor my file while the other as my working window. I am using Imac Intel Duo Core 17" and I heard that I need to buy the adapter. If I buy the adapter, what else need I click so that the FCE can be split into 2

  • Is there an app available that...

    Is a to-do list, task tracker sort of thing that allows you to edit a bunch of entries on the Mac with a real keyboard and then sync with the iPhone/iPod? Most of the apps I've found force you to do all your data entry on the iPhone itself, which jus

  • CNN videos won't play

    For the last couple of months, I have been unable to play video form the CNN.com site on Safari, Firefox or any other browser. I've tried different user login and that didn't work. WHen I select a video I get a black video panel with a play bar. When

  • HP Pavilion 15 notebook : keyboard problem

    hi, Product Name:HP Pavilion 15 notebook  Operating  system: windows 8 I am having trouble with my laptop's keyboard. It started as a problem with both the Shift keys i.e. whenever I clicked on it , the keyboard typed either 'z' or 'q'  or 'zx' or 'q

  • Need help Burning a DVD! please help

    all im trying to do is burn a simple dvd (20mins) . everytime i use the premiere elements program it states " not responding" or at the end of the burn it opens and says "ERROR". i made a intant movie and cant burn it. help! what can i do?