JDBC problem or IAS problem

I am using JDBC to connect to the oracle database and check the access:
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
conn = DriverManager.getConnection(
"jdbc:oracle:thin:@"+ getConnectionString() ,
username, password);
if The user give wrong password, I catch the exception to handle it.
However, in the Log, I found that the system will retry to connect to the database accumulatively.
for example:
Error login, it will retry 2 times in JDBC connection
error login again, it will retry 3 times ... etc.
this effect is accumulative unless I restart the IAS.
Please advice.
Thanks

TCP/IP connections are handled in MaxDB by a special program (the x_server) which usually, except in special cases (see below) handles all connection to all databases on this computer.
Ok, I understand that. But does database manager gui actually create the network entries or is that a manual step outside fo the tool?
So, is there really a need to have this separated in the port access?
Not in this instance, but from an architecture standpoint I would like to separate these databases on different ports from a security standpoint.
Last question: What did you do in database manager and from where comes your view of having one database on 7120, and one on 7211?
In database manager - choose Instance - then create Instance from the drop down menu. Choose custom from the create database instance wizard. From here you can define the port.
Once you create the database it will be available with a different port listing in the main screen .

Similar Messages

  • Entire JDBC communication stopped if problem with one single JDBC interface

    Hello,
    Will the entire JDBC communication stopped if problem with one single JDBC interface?
    Thanks,
    Soorya.

    hi surya,
    this will happend if u use maintain order at runtime at interface determination.
    just uncheck this option if u dont neet EOIO.
    if you are getting the problem if u r going for EO then the problem might be using same JDBC channel for all interfaces.
    if each interface is expected with a high load then it better to go for dedicated channels for interfaces.
    like INTERFACE A should use JDBC A channel and INTERFACE B should use JDBC B channel.
    Thanks & Regards,
    Rama krishna

  • JDBC communication stopped if problem with one single JDBC interface

    Hello,
    Can you please explain this phrase
    "JDBC communication stopped if problem with one single JDBC interface"
    THanks,
    Soorya

    If you are having a problem with a JDBC interface (lets consider this to be a communication channel) then the communication is stopped (via that channel) (only in the case of EOIO).
    Hope this clarifies.
    Cheers,
    Sarath
    Award if helpful.

  • Photoshop CS2 Upgrade Installation Problems w/ Vista Problems

    I recently purchased a new laptop w/ Windows Vista which I'm trying to install my copy of Photoshop CS2 onto. My Photoshop license is an upgrade license ... originally upgraded from Photoshop v4.0.
    When installing an upgrade copy of PS CS2, it requires proof of your previous version in order to verify you're a legitimate upgrader. This works fine if you're upgrading from a version of Photoshop after 5.x ...you simply insert your CD and the installation continues. The installation process is less straight-forward for users like myself ... installing from an upgraded version prior to 5. I'm required to call Adobe ... and conduct a phone verification procedure where I give them a code displayed on the screen during installation and they give me a response code to type into the installation form.
    I deauthorized my old laptop ... start the installation routine on my new laptop ... call Adobe w/ my verification code ... enter the response code (which is accepted) and complete the installation without any problems. My problem occurs when I go to run the software. The startup screen indicates that the software is still in "Tryout Mode", and the first window I'm presented with is the "Adobe Activation" window requesting my serial number. If I try to enter my CS2 serial number it is rejected with the message:
    "You must enter a valid serial number before activating online or viewing activation options. Please check your serial number and re-enter it, or click the Purchase button to buy a copy of this product"
    The thing is ... this IS a valid serial number. I've confirmed this with Adobe. (It's probably an upgrade serial number, which is why the software is rejecting it). I called Adobe and they're now telling me that I must enter a paid-support agreement in order to receive help installing my software. They claim their software is working correctly, and it must be a problem with my computer.
    Has anybody experienced a problem like this? I refuse to pay more for something that worked fine on XP just to use it on Vista due to bugs in their installation and activation routine.

    function(){return A.apply(null,[this].concat($A(arguments)))}
    mthight wrote:
    Have the bugs of using with Vista been fixed, or still not working? thanks,
    I know this is an old problem, but surely there is an answer to fix the problem by now...
    What problems?  I used Photoshop CS2 with Vista with no problems (I still have it installed on a Vista system if you'd like me to check anything in particular).  CS3 and CS4 worked well as well.  Haven't tried CS5 on Vista as I have moved up to Windows 7, but I suspect it works just fine.
    -Noel

  • I can not eliminate ASK engine from the list. It came back by itself. Please, tel me how I can eliminate this problem. Another problem, this browser is no longer compatible with some institutions. This new version might have some problems.

    '''I can not eliminate ASK engine from the list. It came back by itself. Please, tel me how I can eliminate this problem.
    Another problem, this browser is no longer compatible with some institutions. .'''

    Step by step, how did you arrive at seeing this agreement?

  • Who can solve my problem? My problem in below.

    Who can solve my problem? My problem in below.

    hi,my problem now is :
    exception
    org.apache.jasper.JasperException
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:372)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.NullPointerException
         net.sf.hibernate.examples.quickstart.HibernateUtil.currentSession(HibernateUtil.java:24)
         org.apache.jsp.testCat_jsp._jspService(testCat_jsp.java:65)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    package net.sf.hibernate.examples.quickstart;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    import net.sf.hibernate.*;
    import net.sf.hibernate.cfg.*;
    public class HibernateUtil {
    private static Log log = LogFactory.getLog(HibernateUtil.class);
    private static SessionFactory sessionFactory ;
    static {
    try {
    // Create the SessionFactory
    sessionFactory = new Configuration().configure().buildSessionFactory();
    catch (Throwable ex) {
    log.error("Initial SessionFactory creation failed.", ex);
    System.out.println(ex.toString());
    public static final ThreadLocal session = new ThreadLocal();
    public static Session currentSession() throws HibernateException {
    Session s = (Session) session.get();
    // Open a new Session, if this Thread has none yet
    if (s == null) {
    s = sessionFactory.openSession();
    session.set(s);
    return s;
    public static void closeSession() throws HibernateException {
    Session s = (Session) session.get();
    session.set(null);
    if (s != null)
    s.close();
    }

  • "Problem with Trial - problem loading trial period for Adobe Photoshop CS3"

    Hello,
    I installed Photoshop CS3 Trial and whenever I run it and choose to begin my trial period I get the following error message:
    "Problem with Trial - problem loading trial period for Adobe Photoshop CS3".
    I tried uninstalling and reinstalling, and even ran the Adobe CS3Clean Script but nothing seems to help.
    I should note I never installed any earlier version of Photoshop on my system (I use a fresh copy of Windows XP with only a few programs installed).
    Any suggestions will be appreciated.
    Thanks,
    David

    i had the trial of photoshop on and the trial has run out my friend has given me a disk with adobe photoshop on and i cant do it beacause of the regestry code the photoshop puts in after the trial has ended to tell my pc that i cant have photoshop on my computer again :(:( now i have herd that you can remove the codes but it is quite hard well iam willing for this challenge and if anyone could help me i would reall welcome your help or if anybody has got the link to a tutorial to tell me hoe to do it i would aprecitae that to thank you all very much and post bak soon please

  • Getting Problem while publishing Problem while publishing java.lang.IllegalArgumentExcep

    getting Problem while publishing Problem while publishing java.lang.IllegalArgumentExcep while deploying persistance with ejb sample application into cloud. can any one please tell me why i am getting this?

    Hi Goutham,
    I am facing the same issue. Please let me know how you have resolved it.

  • I Ipod class wont play TED and other video podcasts.  The genious bar could not figure out the problem.  This problem is not isolated to a single computer.  Secondly, the convert to ipod version feature in Itunes does not resolve the problem.

    My Ipod classic wont play TED, The Grid, Techzilla and other video podcasts (but not all video podcasts).  The genious bar could not figure out the problem. Instead, the Apple store gave me credit towards a new classic, which produced the same problem.  This problem is not isolated to a single computer.  Secondly, the convert to ipod version feature in Itunes does not resolve the problem.  Lastly, I tried restoring the ipod to no avail.  I've heard this is a video codec problem. 

    See this extensive older thread on the issue.
    https://discussions.apple.com/thread/2813428?start=45&tstart=0
    B-rock

  • I know why coming ios 7 for ipod 4g. this is not my problem its your problem , please make for ipod 4g

    i know why coming ios 7 for ipod 4g.
    this is not my problem its your problem
    , please make for ipod 4g

    mohammad mhp wrote:
    iknow about this
    i like apple make ios 7 for 128 or 256 RAM
    plz i want it
    Apple would have to strip so many features out of iOS 7 to make it work on your iPod that about all you'd have would be iOS 6 with different icons. So as the others have said, this is not going to happen. If you want iOS 7, you'll need a newer iPod.
    Regards.

  • Output Problem with my problem help please

    Here is the Instruction to the problem:
    An interesting problem in number theory is sometimes called the ?necklace problem.? This problem begins with two single-digit numbers. The next number is obtained by adding the first two numbers together and saving only the ones-digit. This process is repeated until the ?necklace? closes by returning to the original two numbers. For example, if the starting numbers are 1 and 8, the output would look like:
    18976392134718
    and below is my program:
    public class Necklace
         public static void main(String[] args)
              int f, s, sum, n, p;
              String first = JOptionPane.showInputDialog ("Enter first number:");
              String second = JOptionPane.showInputDialog ("Enter second number:");
              f = Integer.parseInt (first);
              s = Integer.parseInt (second);
              sum = f + s;
              n = sum % 10;
              p = s;
              while (!(p == f && n ==s))
                   sum = n + p;
                   p = n;
                   n = sum % 10;
              String output = f +""+ s +""+ ++n+"";
              JOptionPane.showMessageDialog (null, output, "Necklace", JOptionPane.INFORMATION_MESSAGE);
    My problem is that I don't know or have any idea how to make the output so it will show all the numbers in between, my ouput it only show the first 3 number, 1 8 and 9

    My problem is that I don't know or have any idea how to make the output so it will show all the numbers in between, my ouput it only show the first 3 number, 1 8 and 9Hello and welcome to the forum. First and foremost, please use code tags when posting code here so that your code will retain its formatting and thus will be readable -- after all, your goal is to get as many people to read your post and understand your code as possible, right?
    To do this, highlight your pasted code (please be sure that it is already formatted when you paste it into the forum; the code tags don't magically format unformatted code) and then press the code button, and your code will have tags.
    Another way to do this is to manually place the tags into your code by placing the tag [code] above your pasted code and the tag [code] below your pasted code like so:
    [code]
      // your code goes here
      // notice how the top and bottom tags are different
    [/code]For instance, here is your code with tags:
    import javax.swing.JOptionPane;
    public class Necklace {
       public static void main(String[] args) {
          int f, s, sum, n, p;
          String first = JOptionPane.showInputDialog("Enter first number:");
          String second = JOptionPane.showInputDialog("Enter second number:");
          f = Integer.parseInt(first);
          s = Integer.parseInt(second);
          sum = f + s;
          n = sum % 10;
          p = s;
          while (!(p == f && n == s))
             sum = n + p;
             p = n;
             n = sum % 10;
          String output = f + "" + s + "" + ++n + "";
          JOptionPane.showMessageDialog(null, output, "Necklace",
                   JOptionPane.INFORMATION_MESSAGE);
    }Next, you can declare your output String before the while loop, and then concatonate a new int on to this inside the loop. Perhaps an even better way is to use a StringBuilder object.

  • IPhone 4 replacement today due to water damage not able to recover contacts etc won't let me make/receive call until I log into I turns?  Phone problem or sprint problem?

    Got a replacement iphone 4 today.  Could not recover contacts etc due to water damage.  New phone won't let us make or receive calls until we hook up to itunes.  Don't know what that means.  Any help would be appreciated.  Phone problem or Sprint problem?
    Thanks!

    If you have iTunes on your computer, plug the phone to the computer running iTunes. You will be guided by iTunes.
    Download iTunes here (if you do not have it):
    http://www.apple.com/itunes/

  • I have installed photoshop elements 12. when I try use the editing features it said that i must login to Adobe to register the product. but each time i try to it said there is a problem. help the problem stated that the internet is not connected, but that

    i have installed photoshop elements 12.
    when I try use the editing features it said that i must login to Adobe to register the product.
    but each time i try to it said there is a problem.
    help
    the problem stated that the internet is not connected, but that is not the case.

    I had the same issue and I'm running Windows 7.  Tried working with technical support for several hours but they were no help.  They just had me doing the same things over and over, offering no real answers.  I finally got fed up and have decided to return my product for a full refund.

  • My volume on the Iphone 3GS is very low is it an equipment problem, setting problem or update problem?

    My volume on the iPhone 3GS is very low. Is it an equipment problem, settings problem or update problem? And, is there a fix other than having Apple fix it?

    Have you had a look here to make sure it is set up how you want it...
    iPhone User Guide
    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • Sir since update of ios 8.1.2 i got serious battery problem on 3g 4.30 hrs my battery gets low and sometimes serious net probelms please give an update for this issue its not alone me my friends too getting many problem lcommonly battery problem

    sir since update of ios 8.1.2 i got serious battery problem on 3g 4.30 hrs my battery gets low and sometimes serious net probelms please give an update for this issue its not alone me my friends too getting many problem commonly battery problem please can this be resolved
    its not related to any hardware because last year april i got replacement new phone from apple and i maintained it well...!

    Probably apps running in the background are causing this, sometimes Mail get's stuck connecting to the mail server, or some social media app like Facebook can also be a reason for prolonged background activity.
    Try to reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comes back again. You will not lose any data by resetting, but it can cure some glitches.
    If this does not help, setting it up as new device would be the next step:
    How to erase your iOS device and then set it up as a new device or restore it from backups
    Also take a look at these tips to prolong the battery life again:
    http://www.overthought.org/blog/2014/the-ultimate-guide-to-solving-ios-battery-d rain

Maybe you are looking for

  • ON PREM Outbound emails showing in dummy non-configured office 365 account message flow trace

    Dear Community, We have an on-prem exchange 2013 server and an office 365 account which is completly standalone. Whilst the office 365 account is standalone, it does feature the email address we use for on-prem (Ie. the domain name in office 365 acco

  • Invalid content type for SOAP

    Hi all, We have configured a proxy to soap scenario, where the sender is SAP system and our receiver system is a third party tool. We are testet the webservice and getting success response from SOAP UI. Also the mapping seems to be ok. But if we test

  • Ordering data based on 2 columns

    Hi, I have a table as below Name1 Age1 Name2 Age2 a 10 a 15 a 10 a 5 c 20 b 25 e 25 c 18 f 30 d 100 I want to order the table based on both (name1 and name2) and then after on age1 and age2. the resultant data i require is as below Name1 Age1 Name2 A

  • Making a writable acrobat page

    I have adobe acrobat proffessional 7.0. Does anyone know how to save it so I can email it to someone and they can write on it? I know that when I visit irs.gov and pull up the W-9 it allows me to write in the fields and save it. I have a form that wa

  • Project Database Help

    Hey, I am working on a project for a movie database I have 3 entities ( Movie, Theater, TimeShow) The showtime is going to be my intersection entity for this database. The ID's for Movie and Theater as the foreign composite keys I'm just a little con