Webcenter BPM spaces tries to connect to localhost:8001

Hi,
I got two 11.1.1.7 domains, one with webcenter ( discussions,portlet,spaces) together with ucm and a soa, osb bpm domain.
both got its own server and rcu ( not on 1 server ).
I followed this guide and got it BPM workspace spaces successful deployed on the wc spaces server. All soa foreign ejb links and datasources are working
Configuring Oracle WebCenter Portal - 11g Release 1 (11.1.1.7.0)
Soa/bpm is also working and also tested the identity service.
Now I want to log in to webcenter spaces and this gives me errors ( lookupuser operation of the identity service). 
I used wireshark and add some extra fmw logging to the soa server and it shows the wc user is authenticated on the soa server
after  that I enabled the http logging on the webcenter server and I see that the wc spaces container ( bpm login bean) sends a http request to the localhost:8001 and not to the soa server address.
Does someone knows where I can find or change this localhost address , I already search the config domain folder and the mds database.
Thanks

iStatmenus ?

Similar Messages

  • Null connection when trying to connect to SQL Server 2000 in Tomcat4.1.29

    Hi All,
    I am still struggling with null connection when trying to connect to sql server 2000 with tomcat using sun.jdbc.odbc.JdbcOdbcDriver
    Here is my server.xml
    <Server port="8005" shutdown="SHUTDOWN" debug="0">
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"
    debug="0"/>
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"
    debug="0"/>
    <GlobalNamingResources>
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved">
    </Resource>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <Resource auth="Container" description="Users and Groups
    Database" name="UserDatabase"
    scope="Shareable"
    type="org.apache.catalina.UserDatabase"/>
    <Resource name="jdbc/DefaultDS" scope="Shareable"
    type="javax.sql.DataSource"/>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.
    MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <ResourceParams name="jdbc/DefaultDS">
    <parameter>
    <name>validationQuery</name>
    <value></value>
    </parameter>
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>4</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>2</value>
    </parameter>
    </ResourceParams>
    </GlobalNamingResources>
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Tomcat-Standalone">
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8080" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="100" debug="0" connectionTimeout="20000"
    useURIValidationHack="false" disableUploadTimeout="true" />
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to -1 -->
    <!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8443" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="100" debug="0" scheme="https" secure="true"
    useURIValidationHack="false" disableUploadTimeout="true">
    <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
    clientAuth="false" protocol="TLS" />
    </Connector>
    -->
    <!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8009" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" connectionTimeout="0"
    useURIValidationHack="false"
    protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
    <!-- Define an AJP 1.3 Connector on port 8009 --><Logger className="org.apache.catalina.logger.FileLogger"
    prefix="catalina_log." suffix=".txt"
    timestamp="true"/>
    <!-- Define the default virtual host -->
    <Host name="localhost" debug="0" appBase="webapps"
    unpackWARs="true" autoDeploy="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    directory="logs" prefix="localhost_log." suffix=".txt"
    timestamp="true"/>
    <Environment name="maxExemptions" type="java.lang.Integer"
    value="15"/>
    <Parameter name="context.param.name" value="context.param.value"
    override="false"/>
    <Resource name="jdbc/DefaultDS" auth="container" type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/DefaultDS">
    <!-- Maximum number of dB connections in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxActive</name>
    <value>8</value>
    </parameter>
    <!-- Maximum number of idle dB connections to retain in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxIdle</name>
    <value>4</value>
    </parameter>
    <!-- Maximum time to wait for a dB connection to become available
    in ms, in this example 10 seconds. An Exception is thrown if
    this timeout is exceeded. Set to -1 to wait indefinitely.
    -->
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <!-- MS Sql Server dB username and password for dB connections
    -->
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <!-- Class name for MS Sql Server JDBC driver
    -->
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <!-- The JDBC connection url for connecting to MS Sql Server dB.
    -->
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <!-- This Databae Connection Pool Description.
    -->
    <parameter>
    <name>description</name>
    <value>JDBC Driver: sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    </ResourceParams>
    <Resource name="mail/Session" auth="Container"
    type="javax.mail.Session"/>
    <ResourceParams name="mail/Session">
    <parameter>
    <name>mail.smtp.host</name>
    <value>localhost</value>
    </parameter>
    </ResourceParams>
    <ResourceLink name="linkToGlobalResource"
    global="simpleValue"
    type="java.lang.Integer"/>
    </Host>
    </Engine>
    </Service>
    </Server>
    and my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <!-- Standard Action Servlet Mapping -->
    <web-app>
    <resource-ref>
    <res-ref-name>jdbc/DefaultDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    and JBoss-SQL is data source I created from control panel settings and here is way I am retrieving connetion
    InitialContext initCtx = new InitialContext();
    DataSource ds = (DataSource) initCtx.lookup("java:comp/env/jdbc/DefaultDS");
    Connection con = ds.getConnection();
    return con;
    I tried connecting as mentioned in this website
    http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-howto.html#Common%20Problems.But didn't help
    Please help urgent
    Sorry for long file. Can any one please help me in solving this problem.
    Thanks in advnace
    Kurakula

    I'd recommend that you not use the JDBC-ODBC bridge driver to connect to SQL Server. M$ and jTDS are two free type IV JDBC drivers that you should use instead. Put those JARs in the WEB-INF/lib directory.
    The database URL you're using is not correct if you change drivers. Consult the docs to find out what the proper syntax is.
    MOD

  • HT4356 Mavric doesn't support my 5 years old Big Screen Display, OR? Tried to connect my Mac Book Pro after installing Mavric, The Screen didn't work as before. I could only see the Desktop but not the movies for example. What can I do?

    Mavric doesn't support my 5 years old Big Screen Display, OR? Tried to connect my Mac Book Pro after installing Mavric, The Screen didn't work as before. I could only see the Desktop but not the movies for example.
    <E-mail Edited by Host>

    It appears what happened is the installer though it was looking at a empty drive and just went ahead and installed.
    I of course am assuming here you didn't use Disk Utility to format the drive first before installing, that would wipe out your files and programs for sure.
    So what to do, what to do.
    Well there is hope for you as long as the drive wasn't Filevaulted.
    I'll explain. When a hard drive writes data for the first time to a drive, it starts at the very top and works it's way down.
    When OS X was installed the first time, it was at the top of the drive, unless you upgraded then the upgraded OS X could have been written elsewhere.
    Now when you just reinstalled OS X, the new OS went on the top of the drive, overwriting any data that was there previously, so what was there you have lost forever which is about 8GB or so. If it was the previous OS there, then your more in luck because only the old OS X was overwritten.
    The remaining space on the drive still can have a copy of your files, provided it's not overwritten yet.
    It's because when a hard drive deletes data or reformats, it doesn't remove the data off the drive or overwrites it immediately, it's just made so it's SPACE is available for new files to be written there.
    So technically one can recover the deleted data off a non-encrypted/scrubbed hard drive with special software.
    The way it does this is it reads the 1's and 0's of the files themselves, and through a lot of figuring out, can tell what that file is and what it belongs too.
    So what you will have to do is this:
    Create a data recovery/undelete external boot drive
    or if you don't have the skills, then take it to a local PC/Mac tech and they can do a direct image of the drive and then you can run Data Rescue on it to rebuild your files.

  • I need help. My ipad 2 was stuck in recovery mode. i tried to connect it to itunes and restore but after downloading the file and extracting the software there is a pop up message that says "the device is full" i dont know what to do. Its been 2 days now.

    I need help. My ipad 2 was stuck in recovery mode. i tried to connect it to itunes and restore but after downloading the file and extracting the software there is a pop up message that says "the device is full. Deleting files and emptying your recycle been will help you restore." how am i going to erase files if i can't open my ipad. i dont know what to do. Its been 2 days now. please help. thanks.

    yes i am sure. This are the exact words... "The iPad "iPad" could not be restored. The disk you are attempting to use is full. (Removing files and emptying the recycle bin will free up additional space". i tried some options, hard reset, redsnow, tinyumbrella but still it's stuck.

  • Mac/iPhoto trying to connect to an old server that no longer exists

    I have a MacBook Air, running OS X 10.7.5
    Because I was running out of space and set up an AFP connection to a NAS.  The NAS is now dead and gone, but in certain situations the Mac tries to connect
    1. In MS Office, if I have the ClipArt/Shape/etc browser open, it tries to connect to the server - is a PITA but I can live with it
    2. In iPhoto, it constantly tries to connect, particularly if I am using the slideshow feature - Has rendered iPhoto unusable.
    The iPhoto situation is that I perhaps foolishly connected to a photo folder on the NAS share and iPhoto imported a bunch of pictures from there.  Now that the server is offline, it constantly looks for them and tells me that it can't connect.
    I can still see the thumbnails but obviously it cannot access the full files. I don't know exactly which folders are NAS pictures and which are not
    I've found some similar topics but not a satisfactory answer. 
    How can I stop this message - how can I stop the Mac from trying to connect to a server that is never going to be there?

    The location should be /Users/your name/Pictures. You can change this by holding down the option or alt key (the ones immediately to the left or right of the cmd keys either side of the spacebar) whilst clicking on the iPhoto application icon in your dock and making an informed choice from the options you see.
    By default iPhoto creates an iPhoto Library (the folder where all your data in iPhoto is stored) in the /Users/your name/Pictures folder. It seems that in the past you must have selected an externally or network attached volume named TOSHIBA as the location for the iPhoto Library instead using the instructions I've given you. All you have to do is revert it back to the location you now want.

  • HT4101 I am trying to connect my JVC Hard Disk Drive Camcorder to my IPAD 2 via the Apple camera kit. I am able to down photos, but video files not showing. Camera shows Mass Stoarge. How can I download videos please.

    I am trying to connect my JVC Hard Disk Drive Camcorder to my IPAD 2 via the Apple camera kit. I am able to download photos, but video files not showing. Camera shows Mass Stoarge. How can I download videos please?

    The file name only has 6 characters and I'm not sure what the .mod format is. So that's why they are not seen by the iPad.
    Another way to transfer. You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
    Secrets of the iPad Camera Connection Kit
    http://howto.cnet.com/8301-11310_39-57401068-285/secrets-of-the-ipad-camera-conn ection-kit/
     Cheers, Tom
    Look at this link for convertion the .mod format.
    http://www.makeuseof.com/tag/convert-mod-camcorder-video-format-mpg-instantly/
    Message was edited by: Texas Mac Man

  • Javax.mail.MessagingException: Connection refused: connect on localhost

    Hello,
    I am using Tomcat5.0.28 for a javamail servlet program. I am giving the hostname as localhost. After entering the input details in my html file, i get the error- "javax.mail.MessagingException: Connection refused: connect; nested exception is: java.net.ConnectException: Connection refused: connect " .
    can anybody help me regarding in solving error.
    Thanks.

    First, you're using a very old version of JavaMail.  Please upgrade.  Some of the properties you're setting aren't supported in that old version.
    Second, you don't need the socket factory properties, get rid of them.
    Finally, it looks like you're trying to connect on port 143 using SSL.  Port 143 is the non-SSL port.  That's probably not going to work.  Still, it looks like something is refusing to let you connect at all.  If you really can telnet from the same machine your program is running on to the same server machine on port 143, then you probably have some sort of firewall that's preventing your program from connecting.  Please post the entire debug output if it still fails after correcting the problems above.  (Move the setDebug call to before the getStore call.)

  • Variable Manager can't connect to localhost

    Hi all,
    I'm runnin LabView 8.5 and am replacing an old computer. I've installed LabView on my new pc and done all the device drivers, but when I go into variable manager there is a cross next to Local System and when I click new process it gives an error saying it cannot connect to localhost...
    I tried restarting the NI services in services.msc as suggested elsewhere on this forum, but no luck...
    Any thoughts?

    Is it possible that some firewall is active on the PC which prevents communication on that port?
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Error... Installing DSEE 11.1.1.7.0 -  Failed to connect to "localhost:389"

    Hi all, I'm installing DSEE 11.1.1.7.0 by the documentation given at [Oracle Documentation| http://docs.oracle.com/cd/E29127_01/doc.111170/e28973/installing--dsee.html]
    Then I got the error when I executed following command.
    C:\ofm_odsee_win_11.1.1.7.0_disk1_1of1\ODSEE_ZIP_Distribution\sun-dsee7\dsee7\bin> dsconf set-plugin-prop dssnmp argument:on argument:3995
    Failed to connect to "localhost:389".
    Make sure server is up and running.
    The "set-plugin-prop" operation failed on "localhost:389".
    However when i run the dsccagent info command the output is as follows -
    C:\ofm_odsee_win_11.1.1.7.0_disk1_1of1\ODSEE_ZIP_Distribution\sun-dsee7\dsee7\bin>dsccagent info
    Instance Path : C:\ofm_odsee_win_11.1.1.7.0_disk1_1of1\ODSEE_ZIP_Distribution\sun-dsee7\dsee7\var\dcc\agent
    JMX port : 3997
    SNMP port : 3996
    DS port : 3995
    State : Running
    PID : 1724
    DSCC hostname : WIN-3MIAU5A4G2O
    DSCC non-secure port : 3998
    DSCC secure port : 3999
    SNMP v3 : Disabled
    Instance version : A-A00
    Edited by: Ranjeet Deshmukh on Mar 19, 2013 2:16 PM

    Hi.
    Intend of "dsconf set-plugin-prop dssnmp argument:on argument:3995" command is to configure a Directory Server so that it can be monitored through SNMP.
    The error you got occurs as dsconf command is not able to connect to the Directory Server. By default dsconf tries to connect to port 389. If you Directory Server listens on another port, use the --port option of dsconf.
    Regards,
    Carole.

  • Demantra Workbench Collaborator:unable to connect to localhost

    Hi everyone,
    When I am clicking on the Collaborator Workbench to start it, my default browser (Mozilla) opens and it tries to connect to the domain: localhost but it is not able to connect.
    There is no error message. The browser just keeps on trying to connect forever.
    Same thing happened when I tried other browsers IE and Chrome also.
    I checked the java plugins also.
    Please advise.
    PD

    This could be possibly you forgot to start the web server.
    It is a very late reply but might help some one who stuck with similar issue.

  • Newbie trying to connect to Oracle using ojdbc14

    Hey Programming Pals;
    I am trying to connect to a remote oracle data base.
    I have installed oracle client (allowing me to be able to connect with PL/SQL developer).
    Now I need to connect with JDBC.
    I down loaded ojdbc14 and put it in my tomcat bin directory.
    I than made an entry in path and in classpath to this jar file.
    Here is the code I am using to try and connect with:
    try
    {                                                DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    catch (ClassNotFoundException c)
    System.out.println("Could not load the ODBC driver:" + c);
    Here is the error I am getting:
    An error occurred at line: 38 in the jsp file: /jsp/form.jsp
    Generated servlet error:
    [javac] Compiling 1 source file
    D:\Program Files\Apache Group\Tomcat 4.1\work\Standalone\localhost\jhtp5\jsp\form_jsp.java:85: package ojdbc14.oracle.jdbc.driver does not exist
                                            DriverManager.registerDriver(new ojdbc14.oracle.jdbc.driver.OracleDriver());
    I browsed through the jar and verified this path exists. Why can't the jvm find it?
    Here are my system variables:
    CLASSPATH:
    .;D:\Program Files\Apache Group\Tomcat 4.1\bin\ojdbc14.jar
    PATH:
    D:\Program Files\Apache Group\Tomcat 4.1\bin\ojdbc14.jar;D:\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem
    Any help would be appreciated.
    Luke

    Tomcat doesn't use the System classpath.
    Put the ojdbc14.jar file in the web-inf/lib directory of your web application, restart Tomcat, and try again.
    Cheers,
    evnafets

  • Trying to connect a NetGear Wifi Range Extender to my existing Wifi. I have an Airport Extreme Base Station and I am also connected to a Vonage Phone Router. Any help would be appreciated?

    I am trying to connect a NetGear Wifi Range Extender to my existing Wifi. I have an Airport Extreme Base Station and I am also connected to a Vonage Phone Router. Any help would be appreciated?
    The Apple update Firmware for my Airport Extreme Base Station does not update for some reason? Help?
    Additionally, I have an older version Airport Express that does not update with the newer Airport Utility Version 6.3 and asks me to download 5.6 to update? Is this worth it?
    Thanks

    The netgear is not going to work very well.. and not at all unless it is universal wireless extender.. you cannot use WDS method.
    If it does support universal wireless then make sure the airport uses a rational SMB compatible wireless name.. not an apple name which is 35 characters long with spaces and illegal characters like apostrophe.
    So nice AE name.. AEwifi and actually while you are trying.. fruitlessly to do this.. use AE24ghz and AE5ghz (so different names on the different bands)
    Assuming your AE is gen3 or greater.
    You should also fix the wireless channel at least for 2.4ghz since the netgear is probably only going to repeat 2.4ghz so use channel 11, as a trial.
    And use no wireless security as a test.. if that works.. then use WPA1 & 2.. as often old equipment using WPA2 is not compatible.
    If it fails with simple name.. fixed channel and no security. Sorry it is not compatible at all.. it happens.
    If your AE is G wireless or earlier model.. really the time has come for replacement.
    If your Express is G wireless model it is not supported.. and is too old to bother with expect I guess if you want to run audio to a speaker.
    You must use older 5.6 utility to do this.. so do you have a computer running older OS.. up to Mountain Lion it is easy to install with a bit of manipulation.. later is much harder .. or windows computer anywhere or available to you.

  • Problems with SCP and Connecting to Localhost

    I have two problems that may or may not be related. The first is trying to use scp from the command line. It used to work fine, but now when I try it, I get prompted for the remote password, then the date gets displayed, and that's it. No file transfer happens. An example run looks like this:
    [12:22 PM][~]$scp [email protected]:boolean/programs/btbs.pl .
    [email protected]'s password:
    Mon Nov 21 12:20:39 EST 2005
    [12:22 PM][~]$
    The second problem I have is trying to user a web browser to connect to localhost. I have PHP installed on my system and am running the apache web server. It worked fine for a while, but now when I try to view a PHP page on my machine, the browser tells me it cannot connect to the server. An example looks like this:
    Safari can’t open the page “http://127.0.0.1/~user/index.php” because it could not connect to the server “127.0.0.1”.
    Any input would be much appreciated.
    Thanks

    Just some wild guesses:
    The problem with scp may be due to your terminal emulation.
    With regard to localhost, you might check whether web access to your computer has somehow been turned off.
    Please excuse, if this is all nonsense.

  • ORA-12514 when trying to connect to the database using SERVICE

    Hi,
    Version 10204
    In a single instance database i would like to create new SERVICEs in order to use them later with Resource Manager.
    The instance name is DWH.
    I run the following commands:
    I added to the tnsnames.ora file the following input:
    XYZ =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = xxx)(PORT = 1522))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XYZ)
    As SYSDBA i execute:
    > exec DBMS_SERVICE.CREATE_SERVICE('xyz','xyz');
    PL/SQL procedure successfully completed.
    > exec DBMS_SERVICE.START_SERVICE('xyz');
    PL/SQL procedure successfully completed.
    But when i tried to connect to the instance:
    sqlplus ac/ac@xyzSQL*Plus: Release 10.2.0.4.0 - Production on Sat Nov 1 14:44:43 2008
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    ERROR:
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor
    When i am trying to connect , not via the service , its successed:
    sqlplus ac/ac@dwh
    SQL*Plus: Release 10.2.0.4.0 - Production on Sat Nov 1 14:45:07 2008
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Could you please help to understand why its failed to connect via SERVICE ?
    Thanks

    You told us.
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor.
    I ask some questions, you set alias for listener port (no default) + local_listener parameter, don't you?
    If you did....
    Please check by .....
    lsnrctl status
    lsnrctl service
    Let me show my example:
    About 1522 (no default port)
    SQL> show parameter local_listener
    NAME TYPE VALUE
    local_listener string ALIASLISTENER
    - check tnsnames.ora file in the same location listener.ora file.
    $ cat tnsnames.ora
    ALIASLISTENER=
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost )(PORT = 1522))
    - About create new service
    SQL> show parameter service_names
    NAME TYPE VALUE
    service_names string db
    SQL> exec DBMS_SERVICE.CREATE_SERVICE('xyz','xyz');
    PL/SQL procedure successfully completed.
    SQL> exec DBMS_SERVICE.START_SERVICE('xyz');
    PL/SQL procedure successfully completed.
    SQL> show parameter service_names
    NAME TYPE VALUE
    service_names string xyz
    $ lsnrctl status
    LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 02-NOV-2008 03:29:21
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=hostname)(PORT=1522)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 11.1.0.6.0 - Production
    Start Date 02-NOV-2008 03:28:45
    Uptime 0 days 0 hr. 0 min. 36 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File ORACLE_HOME/network/admin/listener.ora
    Listener Log File ORACLE_HOME/log/diag/tnslsnr/hostname/listener/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=hostname)(PORT=1522)))
    Services Summary...
    Service "db" has 1 instance(s).
    Instance "db", status READY, has 1 handler(s) for this service...
    Service "db2XDB" has 1 instance(s).
    Instance "db", status READY, has 1 handler(s) for this service...
    Service "db_XPT" has 1 instance(s).
    Instance "db", status READY, has 1 handler(s) for this service...
    Service "xyz" has 1 instance(s).
    Instance "db", status READY, has 1 handler(s) for this service...
    $ lsnrctl service
    LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 02-NOV-2008 03:29:40
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=hostname)(PORT=1522)))
    Services Summary...
    Service "db" has 1 instance(s).
    Instance "db", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0 state:ready
    LOCAL SERVER
    Service "db2XDB" has 1 instance(s).
    Instance "db", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 current:0 max:972 state:ready
    DISPATCHER <machine: hostname, pid: 30200>
    (ADDRESS=(PROTOCOL=tcp)(HOST=hostname)(PORT=45572))
    Service "db_XPT" has 1 instance(s).
    Instance "db", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0 state:ready
    LOCAL SERVER
    Service "xyz" has 1 instance(s).
    Instance "db", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0 state:ready
    LOCAL SERVER
    The command completed successfully

  • FDS Error when trying to connect

    Hey all,
    I'm still quite new to FDS and Flex, but I'm running into a
    serious problem. I've created a small test application (about 7
    lines of code) to experiment with a RTMP connection to an FDS
    server. I've installed the Express edition of FDS 2. But, when i
    try to connect (NetConnection.Connect), it connects for about a
    millisecond and then the server displays a java error and my
    connection is closed. I've tried a thousand variations in my URI,
    using different encodings, protocols etc. But to no avail.
    My code for connecting:
    nsConn = new NetConnection();
    nsConn.addEventListener(NetStatusEvent.NET_STATUS,
    netEvent);
    nsConn.addEventListener(SecurityErrorEvent.SECURITY_ERROR,
    netSecurityError);
    // nsConn.objectEncoding = flash.net.ObjectEncoding.AMF0;
    nsConn.connect("rtmp://localhost:2037/MicTest/");
    My netEvent trace output:
    NetConnection.Connect.Success
    Connection succeeded.
    NetConnection.Connect.Closed
    undefined
    And the crash on the server:
    Exception in RtmpReader thread:
    java.lang.IndexoutOfBoundsException: Index: 0, Size:0
    at
    flex.messaging.io.tcchunk.TCCommand.getArg(TCCommand.java:259)
    I've restarted the FDS, my computer, relocated my
    application, but I can't get it to work. Any ideas?
    Thanks,
    Bob

    Using WLST from 9.0 to connect to 8.1/7.0 domains is not supported. Use the WLST distribution for 8.1 & 7.0 domains that can be downloaded from https://codesamples.projects.dev2dev.bea.com/servlets/Scarab?id=S13
    Thanks,
    -satya
    BEA Blog: http://dev2dev.bea.com/blog/sghattu/

Maybe you are looking for