Very stange Behavior with JMX remote

Hi
I've an application written with Spring. JMX support works good locally bu I'm unable to connect from remote computer.
I'm starting with :
-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=4099 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false
When I launch jconsole on the same computer I connect and I see all my Mbean working perfectly
If I try to connect from other computer with Jconsole I get "connection failed"
There is no firewall issue I'm on the same vlan, and on dev machine without any firewall installed.
Thanks for any help

Hi,
I encounterred the same problem, that jconsole cannot connect remotely but works locally fine. I solved the problem by just setting the system property at server's side. No hosts file have to be modified then, neither on server's side nor in client's side. I tried serveral machines for server and client like XP, OS X and Linux and it worked perfeclty. Add this line to your java command:
-Djava.rmi.server.hostname=<IP-Address>
As <IP-Address> is to be used the server's external address like 172.10.10.10 according to your server's IP. This address is then communicated to the client. Do not use localhost (127.0.0.1), use the real IP address.

Similar Messages

  • Problem with JMX Remote Port - JBoss & Apache on same machine

    Hi,
    I have a server which hosts Apache that uses mod_jk to pass requests to three Tomcat instances. Apache listens to port 80.
    I want to install a different application on the same machine that runs on JBoss. Foreseeing the problem with port numbers, I got a different IP address (Let's say IP2, and original IP for Apache is IP1) on the same machine to run JBoss application. I changed HTTP Connector configuration in server.xml to add "address=IP1:8080" for Tomcat, "address=IP2:8080" for JBoss. I also modified Apache Listen directive in httpd.conf from "Listen 80" to "Listen IP1:80".
    Now when I try to start JBoss server by running run.bat, I get below error.
    Can any one please suggest how can I resolve this port conflict? Is there even a way to resolve it? As JAVA_HOME can point to a single location and both JBoss & Apache use it?
    Thanks.
    ===============================================================================
      JBoss Bootstrap Environment
      JBOSS_HOME: C:\jboss
      JAVA: C:\Java\jdk1.6.0_01\bin\java
      JAVA_OPTS: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=
    9004 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.aut
    henticate=false  -Dprogram.name=run.bat -server -Xms128m -Xmx512m -Dsun.rmi.dgc.
    client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000
      CLASSPATH: C:\Java\jdk1.6.0_01\lib\tools.jar;E:\jboss\bin\run.jar
    ===============================================================================
    Error: Exception thrown by the agent : java.rmi.server.ExportException: Port alr
    eady in use: 9004; nested exception is:
            java.net.BindException: Address already in use: JVM_Bind
    Press any key to continue . . .

    What's running on JMX port without the Jboss running ?
    Seems that u have something it.
    Btw, try to discover how to bind JMX of portal to IP2, not to IP1 or to global Ip.

  • Stange behavior with google chrome beta

    I realize this is not an Apple app, but...
    I noticed that my cpu utilization (iStat) was pegged on both cpus, and top shows that a google chrome process is responsible. Closing all the chrome tabs and even quitting chrome still leaves a chrome process eating all the available cpu (aroiund 90%). The only way to get rid of it is with a command line kill.
    Has anyone else noticed this? What is this zombie process doing? Why does it not go away when I quit the app? Is there something sinister going on by the "do no evil" corporation?

    We talk a lot about, and try to help with, quite a few programs that do not come from Apple. The problem with trying to work with a beta program is different. They are flakey and unpredictable by nature and usually have their own support groups for bug reports, etc. Considering that Google released their Chrome for Mac beta so recently, I would expect the browser to remain a curiosity for the time being. People can take a look, but don't depend on a program like this.
    I assume you are running the latest beta for Chrome:
    http://www.google.com/chrome?platform=mac
    Google does have a support forum for Chrome that might help:
    http://www.google.com/support/forum/p/Chrome/label?lid=43d46e8d92fef559&hl=en
    Here's a post about Mac CPU usage and their answer about how to deal with bugs:
    http://www.google.com/support/forum/p/Chrome/thread?tid=4c00368cc27e1829&hl=en
    Other people that are reporting here about the bookmarks and other problems should check to see if they are running the latest build, and if they are, then either deal with the issues until a new build comes out, report bugs or ask questions on their support forum, forget it for the time being, or get involved with the developer community.
    I'd say that a runaway process qualifies as a bug if all other programs and systems on your computer work well.

  • Very strange behavior with to_date and format 'yddd' after 31/12/2009

    Hi, I have the following PL/SQL code which retrieve a date from a production batch code as fallow:
    DECLARE
    dtmDateFabric DATE;
    BEGIN
    -- on teste si l'on peut reconstituer la date fabric à partir du code lot
    dtmDateFabric := TO_DATE ('9348', 'yddd');
    DBMS_OUTPUT.put_line ('dtmdatefabric ' || dtmDateFabric);
    END;
    batch code is constitued like this: YDDD year of production and day number in year.
    This code was perfectly working before 2010 and it used to return December 14, 2009.
    And now the same code returns December 14, 2019.
    And I can't use 'rddd' as format.
    Any idea to resolve this issue ?
    Thank's for help.
    Olivier

    It's not strange at all, we are in 2010 now, so if don't specify the decade, century and millennium it takes the current: 2 (millennium) 0(century) 1(decade) and your year becomes 2019...
    You have to add a byte to your year format to specify the decade:
    SQL> DECLARE
      2  dtmDateFabric DATE;
      3  BEGIN
      4  -- on teste si l'on peut reconstituer la date fabric à partir du code lot
      5  dtmDateFabric := TO_DATE ('09348', 'yyddd');
      6  DBMS_OUTPUT.put_line ('dtmdatefabric ' || dtmDateFabric);
      7  END;
      8  /
    dtmdatefabric 14-12-2009 00:00:00
    Procedura PL/SQL completata correttamente.And you'll be ok untill 2099...
    Max
    [My Italian Oracle blog|http://oracleitalia.wordpress.com/2010/01/07/creare-documenti-office-da-plsql/]
    Edited by: Massimo Ruocchio on Jan 8, 2010 4:40 PM
    Added explaination

  • Very srange behavior in osx

    hello,
    I have 10.4.8 and have just recently started to experience very strange behavior with osx.
    1) random reboots
    2) strange items showing up in finder (see linked picture)
    3) items have been removed from the left side of my finder window (customized folders for music, film and photos...all gone)
    3) mail application turning into a folder in dock, and when it does load it doesn't have a blue dot by unread mail.
    4) applications not loading, just bouncing in the dock and the nothing
    I ran a virus scan and nothing came up....most troublesome are the files showing up in finder...again, please take a look at the linked picture.
    http://static.flickr.com/97/281490449d4411cd02ao.png
    Thanks for any help.
    Steve

    Hmm. I'd suggest running Apple Hardware test that came with your computer and see if it turns up anything. Run both the short and long tests.
    I'd also suggest running the Disk Utility from your OS X install disc. Make sure you're doing the "Repair Disk" and not just the permissions repair. If it makes repairs, run it again until it says the disk is OK. If you have disk corruption problems, they could show up as a problems like these.
    As for the files showing up in the Finder, they look like they're temporary files from sqlite, which is a database engine that can be embedded in applications. I'd suggest trying to figure out what was running at the time those files get created. Perhaps one of your applications uses sqlite to store its data.
    About the only other thing I can tell you is that Mail turning to a folder is disturbing, but not surprising, since you have other problems. Many applications on OS X are really bundles of files in a special folder that appears to the Finder as an application.
    charlie

  • TS3186 My docking station wont play my ipod..... the ipod works fine on its own but when I try to play via my hifi I have to put the sound full wack to be able to hear it & its not very lound at all. It does not respond with the remote control either!! Th

    My docking station wont play my ipod..... the ipod works fine on its own but when I try to play via my hifi I have to put the sound full wack to be able to hear it & its not very lound at all. It does not respond with the remote control either!! The sound is ok if I play CDs & respond to remote control fine... The hifi & docking station are Sony

    1) When I go to the apple.com website my computer will either be really slow or freeze my whole system down to where I have to reboot my computer again. This does not happen all the time but when it does operate it is molasses slow.
    By any chance, are you uswing Kaspersky security software?
    If so, see:
    [With Kaspersky Internet Security 2011 installed on my computer the website apple.com is imaged incorrectly. What should I do?|http://www.kaspersky.com/support/kis2011/all?page=14&qid=208282422]

  • IMac (Mountain Lion) does not pair with Apple Remote

    Hi,
    my iMac (2009, Mountain Lion) does pair with my remote. Otherwise the remote (or remotes, I tried two) are working fine with the iMac, it just wont pair.
    I need it to pair as I have an iMac and MPB and each having its own remote (each computer should react only to its remote, not the other computer remote)
    I googled this extensively, here is what I did so far:
    - obviously, trying the normail "pair remote" procedure as the support page says
    - checking that infrared remote pairing is enabled and no other remote is currenly paired
    - restarting Mac OS
    - removing and reinsterting battery in remote
    - making sure I am an Admin
    - disabling the remote function in Plex and killing all Plex (and EyeTV and similar) processes via Activity Monitor (thought they might somehow limite the OS control over the remote)
    - tried the same with another remote (does not pair as well)
    This is very annoying.
    Can anyone help out?
    Much appreciated

    Hi den,
    Does the remote remember which computer it is paired to? I though only the computer remebers that.
    In any case, currently there is not remote paired to any computer (both computers have clean new Mountain Lion installations). And I cannot pair any remote to any of my machines. In between, I tried with the laptop as well, and it is not pairing as well. I also tried an (old, still working) third remote... nothing is happening.
    Some apps seem to take control of the remote (e.g. pressing menu start Plex on my systems). Could that be the issue? Is there a Terminal command to give Mac OS back full control over the remote?
    Or could it be something else? 'Is there an app for that' a la ForcePair.app?
    Thank you
    p.s. this is the page that I was refering to ealier, not working for me

  • Can I access two different libraries on the same computer with the remote app?

    I am in the process of upgrading our home network. There is going to be an airport express in each of the main rooms of our house all running to a switch connected to our AirPort Extreme. The reason for this is so we can stream our music in any or all of the rooms we choose.  I'm going to have a Windows 7 PC running iTunes constantly also connected so that we will have access to the entire library on any of our devices.  My entire library will be housed on an external hard drive that will be connected to the Extreme. Here is where it gets tricky. My wife has a separate library that we want to have access to as well. It is going to be housed on a separate external hard drive connected to the Extreme via a USB hub. I don't want to combine our libraries because hers is absolute chaos and mine is very well organized. Without having to have a second  computer running iTunes constantly, is there a way we can access both libraries simultaneously with the remote app? Either by running two instances of iTunes on one computer or some other way I'm not realizing. As it works right now, if we're both running iTunes on our laptops, then I can go onto my iPad and see both full libraries on the remote app. I want to do that, but with just one computer.

    I doubt it is possible to run two instances of iTunes on the computer at the same time.  To do so would require two users to be signed in and running iTunes under each user.
    The better solution would be to either clean up and merge the two libraries or have iTunes running on a second computer.

  • Home sharing with iOS remote app stopped working

    In my home, I have four macs (3 minis and an imac), each with their own iTunes media library, and 2 ATVs.  Home Sharing is turned on, with the same ID on all of these devices.  When I operate each device natively (using keyboard/mouse or ATV hard remote), I can see the music library on each of the other devices, and play that music.  I also have an iPhone and an iPad, with the Remote app installed, and using the same Home Sharing ID.  On each of these, I can see each of the macs and ATVs, and the music in their individual libraries, and can play that music on the device on which that library resides.  So far, so good.
    What I can't do, although I could do it several weeks ago, is use the remote app to access one device, and then play music from the shared library on another device.  I can see the other devices' libraries, but when I select "music" within that device, it says "no songs".  This is very curious, and like I said, it worked a few weeks ago.
    Has anyone seen this issue, and do you know how to fix it?
    Thanks.

    Glen Verran wrote:
    But this is where the problem starts. While I am using the remote app, I exit the app to do something else on the phone. I go back into the app, and the app attempts to connect to my iTunes library. It fails!!
    I'm having this exact same problem. I was using the remote app with iTunes on my computer and speakers connected to my airport express for months with no issues at all. It worked flawlessly. But I got the new apple tv a few days ago and had to turn on home sharing as part of the setup...and then the problems began. I started having the exact issue described by the original post: the remote app will just randomly not be able to see my iTunes library. Sometimes it works fine, sometimes it just sits there spinning for a while and eventually says it couldn't find my library. If I wait a few minutes it will eventually just start working again.
    This is extremely annoying and is making me want to just return the apple tv and go back to my previous setup which worked perfectly. If Apple would at least acknowledge the problem and that a fix will be forthcoming, I would be satisfied.

  • Problem using SSL with JMX

    Hi ,
    I am trying to implement SSL with JMX. I took the example of Luis Miguel Alventosa to see how it works. I imported all the classes, password a access properties file. When I am able to start the MyApp server in the example. But when I am trying to run MyClient, it is giving me the following exception
    Initialize the environment map
    Create an RMI connector client and connect it to the RMI connector server
    Exception in thread "main" java.rmi.ConnectIOException: Exception creating connection to: <IP>; nested exception is:
         java.net.SocketException: Default SSL context init failed: null
         at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source)
         at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
         at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source)
         at sun.rmi.server.UnicastRef.newCall(Unknown Source)
         at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
         at com.example.MyClient.main(MyClient.java:30)
    Caused by: java.net.SocketException: Default SSL context init failed: null
         at javax.net.ssl.DefaultSSLSocketFactory.createSocket(Unknown Source)
         at javax.rmi.ssl.SslRMIClientSocketFactory.createSocket(Unknown Source)
         ... 6 moreHere is the MyApp code I used
    package com.example;
    import java.lang.management.*;
    import java.rmi.registry.*;
    import java.util.*;
    import javax.management.*;
    import javax.management.remote.*;
    import javax.management.remote.rmi.*;
    import javax.rmi.ssl.*;
    public class MyApp {
        public static void main(String[] args) throws Exception {
            // Ensure cryptographically strong random number generator used
            // to choose the object number - see java.rmi.server.ObjID
            System.setProperty("java.rmi.server.randomIDs", "true");
            // Start a secure RMI registry on port 3000.
            System.out.println("Create a secure RMI registry on port 3000");
            SslRMIClientSocketFactory csf = new SslRMIClientSocketFactory();
            SslRMIServerSocketFactory ssf = new SslRMIServerSocketFactory(null, null, true);
            Registry registry = LocateRegistry.createRegistry(3000, csf, ssf);
            // Retrieve the PlatformMBeanServer.
            System.out.println("Get the platform's MBean server");
            MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
            // Environment map.
            System.out.println("Initialize the environment map");
            Map<String,Object> env = new HashMap<String,Object>();
            // Provide the password file used by the connector server to
            // perform user authentication. The password file is a properties
            // based text file specifying username/password pairs.
            env.put("jmx.remote.x.password.file", "password.properties");
            // Provide the access level file used by the connector server to
            // perform user authorization. The access level file is a properties
            // based text file specifying username/access level pairs where
            // access level is either "readonly" or "readwrite" access to the
            // MBeanServer operations.
            env.put("jmx.remote.x.access.file", "access.properties");
            // Create and start an RMI connector server.
            // As specified in the JMXServiceURL the RMIServer stub will be
            // registered in the RMI registry running in the local host on
            // port 3000 with the name "jmxrmi". This is the same name the
            // out-of-the-box management agent uses to register the RMIServer
            // stub too.
            // JMXServiceURL = "service:jmx:rmi:///jndi/rmi://:3000/jmxrmi"
            System.out.println("Create and start an RMI connector server");
            JMXServiceURL url = new JMXServiceURL("service:jmx:rmi://");
            RMIJRMPServerImpl server = new RMIJRMPServerImpl(3000, csf, ssf, env);
            RMIConnectorServer cs = new RMIConnectorServer(url, env, server, mbs);
            cs.start();
            registry.bind("jmxrmi", server);
            System.out.println("Waiting for incoming connections...");
    }Here is the MyClient
    package com.example;
    import java.rmi.registry.*;
    import java.util.*;
    import javax.management.*;
    import javax.management.remote.rmi.*;
    import javax.rmi.ssl.SslRMIClientSocketFactory;
    public class MyClient {
        public static void main(String[] args) throws Exception {
            // Environment map
            System.out.println("\nInitialize the environment map");
            Map<String,Object> env = new HashMap<String,Object>();
            // Provide the credentials required by the server to successfully
            // perform user authentication
            String[] credentials = new String[] { "username" , "password" };
            env.put("jmx.remote.credentials", credentials);
            // Create an RMI connector client and
            // connect it to the RMI connector server
            System.out.println("\nCreate an RMI connector client and " +
                    "connect it to the RMI connector server");
            SslRMIClientSocketFactory csf = new SslRMIClientSocketFactory();
            Registry registry = LocateRegistry.getRegistry(null, 3000, csf);
            RMIServer stub = (RMIServer) registry.lookup("jmxrmi");
            RMIConnector jmxc = new RMIConnector(stub, env);
            jmxc.connect(env);
            // Get an MBeanServerConnection
            System.out.println("\nGet an MBeanServerConnection");
            MBeanServerConnection mbsc = jmxc.getMBeanServerConnection();
            // Get domains from MBeanServer
            System.out.println("\nDomains:");
            String domains[] = mbsc.getDomains();
            for (int i = 0; i < domains.length; i++) {
                System.out.println("\tDomain[" + i + "] = " + domains);
    // Get MBean count
    System.out.println("\nMBean count = " + mbsc.getMBeanCount());
    // Close MBeanServer connection
    System.out.println("\nClose the connection to the server");
    jmxc.close();
    System.out.println("\nBye! Bye!");
    Here is the password.properties
    monitorRole mrpasswd
    controlRole crpasswdand access.properties
    monitorRole readonly
    controlRole readwriteI used the following jvm parameters to run the apps
    -Djavax.net.ssl.keyStore=.keystore -Djavax.net.ssl.keyStorePassword=keypass -Djavax.net.ssl.trustStore=proxytruststore -Djavax.net.ssl.trustStorePassword=trustpassI really don't know where I am doing the mistake. Can anyone please give any idea ? For security I didnt disclosed the IP of my mechine in the error, insted I replace it with <IP>

    Hi,
    I assume you did create a keystore and trustore, right?
    Could you verify that the paths to these files you give in your java options
    are correct?
    You could also try to activate debug traces - in particular security traces - see
    at the end of this blog:
    http://blogs.sun.com/jmxetc/entry/troubleshooting_connection_problems_in_jconsole
    This may help you diagnose what is going wrong.
    Hope this helps,
    -- daniel
    JMX, SNMP, Java, etc...
    http://blogs.sun.com/jmxetc

  • Get default audit field behavior with an external datasource

    Others have posted and blogged extensively about creating a robust audit trail for LightSwitch. However, if you are looking to achieve the default behavior with an external datasource, you could simply add the fields to your database
    and write code in every entity's Inserting() and Updating() method.  However, if you have many tables in your app this can be a lot of work.  Here is a very easy way to DRY this up. 
    1. Add the audit fields to your tables
    - CreatedBy
    - DateCreated
    - UpdatedBy
    - DateUpdated
    2. Use this code in the DataService class for your datasource.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Microsoft.LightSwitch;
    using Microsoft.LightSwitch.Security.Server;
    namespace LightSwitchApplication
    public partial class ApplicationDataService
    partial void SaveChanges_Executing()
    EntityChangeSet changes = this.Details.GetChanges();
    IReadOnlyCollection<IEntityObject> addedEntities = changes.AddedEntities;
    IReadOnlyCollection<IEntityObject> modifiedEntities = changes.ModifiedEntities;
    if (addedEntities.Any())
    foreach (IEntityObject entity in addedEntities)
    InsertAuditFields(entity);
    if (modifiedEntities.Any())
    foreach (IEntityObject entity in modifiedEntities)
    UpdateAuditFields(entity);
    private void InsertAuditFields(IEntityObject entity)
    string userName = this.Application.User.FullName;
    DateTimeOffset currentDateTime = DateTimeOffset.Now;
    entity.Details.Properties["CreatedBy"].Value = userName;
    entity.Details.Properties["DateCreated"].Value = currentDateTime;
    entity.Details.Properties["UpdatedBy"].Value = userName;
    entity.Details.Properties["DateUpdated"].Value = currentDateTime;
    private void UpdateAuditFields(IEntityObject entity)
    string userName = this.Application.User.FullName;
    DateTimeOffset currentDateTime = DateTimeOffset.Now;
    entity.Details.Properties["UpdatedBy"].Value = userName;
    entity.Details.Properties["DateUpdated"].Value = currentDateTime;
    Hopefully this helps someone.

    This version will check whether the table has the audit properties, thus allowing you to opt in.  Paul's solution is going to be better in the long run because it checks at compile time.  This was meant to be a quick way to get the default behavior. 
    This is not a substitute for a full audit capability (see Paul's blog) if that is your requirement.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Microsoft.LightSwitch;
    using Microsoft.LightSwitch.Security.Server;
    using Microsoft.LightSwitch.Details;
    namespace LightSwitchApplication
    public partial class ApplicationDataService
    partial void SaveChanges_Executing()
    EntityChangeSet changes = this.Details.GetChanges();
    IReadOnlyCollection<IEntityObject> addedEntities = changes.AddedEntities;
    IReadOnlyCollection<IEntityObject> modifiedEntities = changes.ModifiedEntities;
    if (addedEntities.Any())
    foreach (IEntityObject entity in addedEntities)
    if (AuditProperties(entity))
    InsertAuditFields(entity);
    if (modifiedEntities.Any())
    foreach (IEntityObject entity in modifiedEntities)
    if (AuditProperties(entity))
    UpdateAuditFields(entity);
    private bool AuditProperties(IEntityObject entity)
    bool hasAuditProperties = true;
    bool createdBy = entity.Details.Properties.Contains("CreatedBy");
    bool dateCreated = entity.Details.Properties.Contains("DateCreated");
    bool updatedBy = entity.Details.Properties.Contains("UpdatedBy");
    bool dateUpdated = entity.Details.Properties.Contains("DateUpdated");
    bool[] checkForAuditProperties = new bool[]
    createdBy,
    dateCreated,
    updatedBy,
    dateUpdated
    if (checkForAuditProperties.Any(a => a == false))
    hasAuditProperties = false;
    return hasAuditProperties;
    private void InsertAuditFields(IEntityObject entity)
    string userName = this.Application.User.FullName;
    DateTimeOffset currentDateTime = DateTimeOffset.Now;
    entity.Details.Properties["CreatedBy"].Value = userName;
    entity.Details.Properties["DateCreated"].Value = currentDateTime;
    entity.Details.Properties["UpdatedBy"].Value = userName;
    entity.Details.Properties["DateUpdated"].Value = currentDateTime;
    private void UpdateAuditFields(IEntityObject entity)
    string userName = this.Application.User.FullName;
    DateTimeOffset currentDateTime = DateTimeOffset.Now;
    entity.Details.Properties["UpdatedBy"].Value = userName;
    entity.Details.Properties["DateUpdated"].Value = currentDateTime;

  • Bizzare behavior with oracle 10g driver

    Hello - we are seeing some very strange behavior using the oracle 10g driver (version 10.2.0.1.0). I'll briefly describe the problem and then show a code example of our test. We are sending in a prepared statement against the primary key of a table with an in clause of 300 string values. When we iterate over the result set we consistantly only get 256 rows returned. But when we send in a prepared statement with only one bind variable (but do this 300 seperate times) the result set is complete. If we use the oracle 9i driver, all 300 are returned as expected. The database is 10g. Here is what our test looks like:
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.DriverManager;
    import java.io.InputStream;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.FileInputStream;
    * Thomson West
    * User: Tom Killeen
    * Date: Feb 28, 2006
    public class OracleTest
    public static void main(String[] args) throws Exception
    String driver = "oracle.jdbc.driver.OracleDriver";
    String prodUrl = "jdbc:oracle:thin:@myDatabase";
    Class.forName(driver);
    String singleSql = "select * from case where case_uuid = ?";
    Connection con = DriverManager.getConnection(prodUrl, "scott", "tiger");
    PreparedStatement ps = con.prepareStatement(singleSql);
    InputStream in = new FileInputStream("C:/Java/projects/MetadataService/mainline/test/query/xml/300ProdUuids.txt");
    BufferedReader br = new BufferedReader(new InputStreamReader(in));
    String uuid = null;
    int rsCount = 0;
    ResultSet rs = null;
    System.out.println("find individually");
    while ((uuid = br.readLine()) != null)
    ps.setString(1, uuid);
    rs = ps.executeQuery();
    while (rs.next())
    rsCount++;
    System.out.println("idv " + rsCount + ": " + rs.getString("case_uuid"));
    rs.close();
    ps.close();
    System.out.println();
    StringBuffer sql = new StringBuffer();
    sql.append("select * from case where case_uuid in (");
    for (int i = 0; i < 300; i++)
    sql.append("?");
    if (i < 299)
    sql.append(",");
    sql.append(")");
    System.out.println(sql);
    ps = con.prepareStatement(sql.toString());
    in = new FileInputStream("C:/Java/projects/MetadataService/mainline/test/query/xml/300ProdUuids.txt");
    br = new BufferedReader(new InputStreamReader(in));
    uuid = null;
    int bindCount = 1;
    System.out.println("binding variables");
    while ((uuid = br.readLine()) != null)
    System.out.println("bc " + bindCount + " : " + uuid);
    ps.setString(bindCount, uuid);
    bindCount++;
    rs = ps.executeQuery();
    int rsCounter = 0;
    System.out.println();
    System.out.println("iterating rs");
    while (rs.next())
    rsCounter++;
    System.out.println("rs " + rsCounter + ": " + rs.getString("case_uuid"));
    rs.close();
    ps.close();
    con.close();
    Here is the output from running our test. Notice that the last line has a count of 256 for the result set.
    Has anyone seen anything like this?
    thanks,
    Tom
    find individually
    idv 1: I00000670722f11d7bffff83f52289667
    idv 2: I000010a071e611d7ba84e3942a4b620d
    idv 3: I0000192072c111d7b100a463f186e11d
    idv 4: I00001b90723111d7ab54daa4035d65fa
    idv 5: I00002020727411d7a07084608af77b15
    idv 6: I000029b0728011d792e6e58f3e66f41c
    idv 7: I00002c80723a11d787c8f80b08d85a21
    idv 8: I00003f10745411d79b9bc4eeac1c0b2d
    idv 9: I000048d0721411d796fabc35f7796f7a
    idv 10: I000067e0726c11d7b100a463f186e11d
    idv 11: I0000796072e411d7b100a463f186e11d
    idv 12: I000079c005aa11d8a85fe39410e0ab6f
    idv 13: I000079e0741711d7aea3a34f2eb4052a
    idv 14: I000085e0a1f611d7af65eaafd5dac9b5
    idv 15: I000088c0728911d7a07084608af77b15
    idv 16: I00008b0071d411d7880af2b8a7a150bc
    idv 17: I00008f90721711d787c8f80b08d85a21
    idv 18: I00009950724811d78ef88cd3014a7f23
    idv 19: I00009a1072dc11d7ba84e3942a4b620d
    idv 20: I0000a7a072bc11d7bffff83f52289667
    idv 21: I0000ace071e611d78ef88cd3014a7f23
    idv 22: I0000c0a0741a11d7ab5cff2fe4340d11
    idv 23: I0000c40071d211d796fabc35f7796f7a
    idv 24: I0000cc50728811d796fabc35f7796f7a
    idv 25: I0000d250724611d7b100a463f186e11d
    idv 26: I0000d94072bd11d78ef88cd3014a7f23
    idv 27: I0000e7b0741a11d7b44cec793782d444
    idv 28: I0000f1a071ff11d787c8f80b08d85a21
    idv 29: I0000f4a071de11d7a5a58ae19b0bc350
    idv 30: I0000fbc0727a11d78347daa8ede63acd
    idv 31: I0000fcf0729411d787c8f80b08d85a21
    idv 32: I0000ff5072c811d7a07084608af77b15
    idv 33: I00010090721e11d7bffff83f52289667
    idv 34: I00010390746e11d79ccbd455e2fa80ef
    idv 35: I000112b0724111d7bffff83f52289667
    idv 36: I00011940726e11d7b100a463f186e11d
    idv 37: I00011ca0729711d78ef88cd3014a7f23
    idv 38: I00012500728911d787c8f80b08d85a21
    idv 39: I00012770746a11d79c33f30f55d9158b
    idv 40: I0001297071e311d78347daa8ede63acd
    idv 41: I00012a4071b311d7880af2b8a7a150bc
    idv 42: I00012e7071ac11d7a5a58ae19b0bc350
    idv 43: I000131c0729911d7a07084608af77b15
    idv 44: I00013d90746111d7abd288e162f1ee6f
    idv 45: I000147f0743d11d79a8ab5f5a94ee96e
    idv 46: I00014850721611d7b100a463f186e11d
    idv 47: I000148b0726011d78bcee6281d031f02
    idv 48: I00014d2071ba11d7a5a58ae19b0bc350
    idv 49: I0001593072e311d7ab54daa4035d65fa
    idv 50: I00015d70721811d7880af2b8a7a150bc
    idv 51: I000162a0720611d792e6e58f3e66f41c
    idv 52: I00016340154411d894849fe41a758d3e
    idv 53: I00016a90727211d7b0409d11d16b6b13
    idv 54: I0001713071db11d796fabc35f7796f7a
    idv 55: I00017de072af11d787c8f80b08d85a21
    idv 56: I000183c0ff1e11d79d93859d09cad35e
    idv 57: I00018680720211d7a07084608af77b15
    idv 58: I00018fe071e911d7bffff83f52289667
    idv 59: I000190b0154c11d8a6f0ebf54ed20c72
    idv 60: I0001921071f811d792e6e58f3e66f41c
    idv 61: I0001943072cb11d796fabc35f7796f7a
    idv 62: I00019500729b11d796fabc35f7796f7a
    idv 63: I0001a1d0745811d79ccbd455e2fa80ef
    idv 64: I0001a3d071d111d7947cc0bc28d0837a
    idv 65: I0001a8e042cc11d8bfb1c5b53ee7b122
    idv 66: I0001aa0071b411d78bcee6281d031f02
    idv 67: I0001c940b1ab11d7ad3ab23fa36e24eb
    idv 68: I0001dc60724911d78ef88cd3014a7f23
    idv 69: I0001f050723111d792e6e58f3e66f41c
    idv 70: I0001f080725611d7ab54daa4035d65fa
    idv 71: I0001f980746411d7a94bace56a9eba1c
    idv 72: I0001fa10726211d78ef88cd3014a7f23
    idv 73: I0001fe70728011d78347daa8ede63acd
    idv 74: I0001ffe071fb11d7b0409d11d16b6b13
    idv 75: I0002010072d911d78bcee6281d031f02
    idv 76: I0002084071ed11d7a07084608af77b15
    idv 77: I000220f0723d11d7b100a463f186e11d
    idv 78: I00022c4072d211d7a5a58ae19b0bc350
    idv 79: I00022cf0154c11d89b2cb73750577cdc
    idv 80: I00022f4072b111d7b100a463f186e11d
    idv 81: I00023550a76111d79a3e000874f30b44
    idv 82: I00024ad0746811d79a8ab5f5a94ee96e
    idv 83: I00024b02a5ba11d8860ea464f39e833e
    idv 84: I00025ef0720411d7ba84e3942a4b620d
    idv 85: I00026d40727811d7ab54daa4035d65fa
    idv 86: I00026d80a2ad11d79bff000874f30b44
    idv 87: I00027080742911d79d2ef02eee90521e
    idv 88: I0002721aa5ba11d8860ea464f39e833e
    idv 89: I00027280741311d7b44cec793782d444
    idv 90: I00028050147611d895d6f30359ceb780
    idv 91: I000286c0729811d7947cc0bc28d0837a
    idv 92: I00028830721311d78347daa8ede63acd
    idv 93: I00029920a5ba11d8860ea464f39e833e
    idv 94: I0002a0b0723e11d7a5a58ae19b0bc350
    idv 95: I0002a3a072e111d7a07084608af77b15
    idv 96: I0002a48071ed11d787c8f80b08d85a21
    idv 97: I0002a940725511d78bcee6281d031f02
    idv 98: I0002b8c072e311d7a07084608af77b15
    idv 99: I0002ba00723911d7b100a463f186e11d
    idv 100: I0002c034a5ba11d8860ea464f39e833e
    idv 101: I0002c2f0729a11d792e6e58f3e66f41c
    idv 102: I0002c2f0729a11d7ab54daa4035d65fa
    idv 103: I0002c4f0728411d7a07084608af77b15
    idv 104: I0002cf9071c111d787c8f80b08d85a21
    idv 105: I0002dfe0721f11d7b0409d11d16b6b13
    idv 106: I0002e8a0725b11d7ba84e3942a4b620d
    idv 107: I0002f5a0743d11d797e5f7f2fcbea176
    idv 108: I0002fd2072b211d7ab54daa4035d65fa
    idv 109: I0003003071cd11d796fabc35f7796f7a
    idv 110: I00030a8074de11d79453d3af27410a27
    idv 111: I00030b1072dc11d78347daa8ede63acd
    idv 112: I000318e0721d11d7880af2b8a7a150bc
    idv 113: I00032630729c11d7b100a463f186e11d
    idv 114: I00032e60726911d7ba84e3942a4b620d
    idv 115: I00033230721811d796fabc35f7796f7a
    idv 116: I00033600743811d7a658bf569bf0de0b
    idv 117: I00033730745211d79d2ef02eee90521e
    idv 118: I000341f0f36c11d7993aa96b44857ca1
    idv 119: I00034270b79611d7817fb05730618d2c
    idv 120: I0003429071b211d7b0409d11d16b6b13
    idv 121: I00034e80746311d7afb9df8873fee31a
    idv 122: I0003507072a011d7ba84e3942a4b620d
    idv 123: I00035f40744711d79d2ef02eee90521e
    idv 124: I00037420727711d7b100a463f186e11d
    idv 125: I00037d20721411d7ba84e3942a4b620d
    idv 126: I00037dc0743011d79d2ef02eee90521e
    idv 127: I00038970729e11d7ba84e3942a4b620d
    idv 128: I00038ab071f411d7b100a463f186e11d
    idv 129: I0003921071f111d7a5a58ae19b0bc350
    idv 130: I0003a860720d11d78347daa8ede63acd
    idv 131: I0003aa5072bb11d7ab54daa4035d65fa
    idv 132: I0003aa99a5ba11d8860ea464f39e833e
    idv 133: I0003ac5072a511d7a5a58ae19b0bc350
    idv 134: I0003b720747811d79ccbd455e2fa80ef
    idv 135: I0003b7b0727611d787c8f80b08d85a21
    idv 136: I0003bb10729f11d78ef88cd3014a7f23
    idv 137: I0003c5d072c511d7a5a58ae19b0bc350
    idv 138: I0003d19072e011d78347daa8ede63acd
    idv 139: I0003d1a4a5ba11d8860ea464f39e833e
    idv 140: I0003d1a6a5ba11d8860ea464f39e833e
    idv 141: I0003d1a8a5ba11d8860ea464f39e833e
    idv 142: I0003d53074db11d7b5dbefdbeac7aa0d
    idv 143: I0003d560728f11d7a5a58ae19b0bc350
    idv 144: I0003d5c072d911d792e6e58f3e66f41c
    idv 145: I0003ec20723111d78347daa8ede63acd
    idv 146: I0003f2b0725e11d787c8f80b08d85a21
    idv 147: I0003f54072b711d792e6e58f3e66f41c
    idv 148: I0003f8b0a5ba11d8860ea464f39e833e
    idv 149: I0003fa50742d11d79b9bc4eeac1c0b2d
    idv 150: I0003feb071da11d7a07084608af77b15
    idv 151: I000405d0160911d88becacb69499ad1d
    idv 152: I00040950060411d88297fc19561b6a07
    idv 153: I00040ed0721311d7a5a58ae19b0bc350
    idv 154: I00041660723511d7a07084608af77b15
    idv 155: I00041830746b11d797e5f7f2fcbea176
    idv 156: I00041cc0723d11d7b0409d11d16b6b13
    idv 157: I000420f0723611d7b100a463f186e11d
    idv 158: I000426c071cf11d7880af2b8a7a150bc
    idv 159: I00043970726111d7ba84e3942a4b620d
    idv 160: I00043af0c41a11d7858789f8f41f469f
    idv 161: I0004401071ca11d7b100a463f186e11d
    idv 162: I000452c0725c11d7bffff83f52289667
    idv 163: I000462d08bc311d7bb8d85f0ac71b1f3
    idv 164: I00047040725011d7ab54daa4035d65fa
    idv 165: I000470a0729a11d7b100a463f186e11d
    idv 166: I0004773072c711d78ef88cd3014a7f23
    idv 167: I0004794071ed11d7ab54daa4035d65fa
    idv 168: I00048290729811d78347daa8ede63acd
    idv 169: I00049af071da11d7b100a463f186e11d
    idv 170: I0004b040720111d7880af2b8a7a150bc
    idv 171: I0004b4a0721f11d78ef88cd3014a7f23
    idv 172: I0004b9702b4f11d8a0409604c12e4f92
    idv 173: I0004bb7071ad11d7a5a58ae19b0bc350
    idv 174: I0004c3c0726311d78ef88cd3014a7f23
    idv 175: I0004cb90745711d7a658bf569bf0de0b
    idv 176: I0004d490067011d8b893f65b4e54826b
    idv 177: I0004d780749711d79ccbd455e2fa80ef
    idv 178: I0004dc10726911d78347daa8ede63acd
    idv 179: I0004de70729d11d7ba84e3942a4b620d
    idv 180: I0004e040726211d7b0409d11d16b6b13
    idv 181: I0004e71071f011d7b100a463f186e11d
    idv 182: I0004ed70746911d79a8ab5f5a94ee96e
    idv 183: I0004ef7071e211d78bcee6281d031f02
    idv 184: I0004f09072c011d792e6e58f3e66f41c
    idv 185: I0004f0a071fc11d792e6e58f3e66f41c
    idv 186: I0004f240879511d79cf082a8a526bdf9
    idv 187: I0004f3a0744c11d7b433bc7aed88dbc8
    idv 188: I0004f490729411d7bffff83f52289667
    idv 189: I0004fb90724711d7a07084608af77b15
    idv 190: I00050b20721111d7b0409d11d16b6b13
    idv 191: I00050e2071f011d78bcee6281d031f02
    idv 192: I00050e20746111d79b9bc4eeac1c0b2d
    idv 193: I00051380747411d7afb9df8873fee31a
    idv 194: I000518a072b511d78347daa8ede63acd
    idv 195: I000518e0721611d78ef88cd3014a7f23
    idv 196: I00052800725a11d7ba84e3942a4b620d
    idv 197: I00052f00720d11d7947cc0bc28d0837a
    idv 198: I00053200745d11d79a8ab5f5a94ee96e
    idv 199: I00053e90268111d886bdfb192a64ac56
    idv 200: I00054420859711d79001d96d270a074a
    idv 201: I000546f071c911d792e6e58f3e66f41c
    idv 202: I000562c072e111d7ab54daa4035d65fa
    idv 203: I00056d109f7311d7b07dff332e990446
    idv 204: I00056d30746a11d797e5f7f2fcbea176
    idv 205: I00056f30745411d79c33f30f55d9158b
    idv 206: I00057820724411d7b100a463f186e11d
    idv 207: I00057980728311d7a07084608af77b15
    idv 208: I000580e0728011d7ab54daa4035d65fa
    idv 209: I00058271efc011d897339e11b9afd716
    idv 210: I00058d7074dc11d7b371e3b03459763a
    idv 211: I0005944071f911d7947cc0bc28d0837a
    idv 212: I00059910879611d7b396e0d633b35241
    idv 213: I00059ca071eb11d7ab54daa4035d65fa
    idv 214: I00059fd0746011d7b433bc7aed88dbc8
    idv 215: I0005a981efc011d897339e11b9afd716
    idv 216: I0005aaa0eb6311d7b52ae3604baa5d0f
    idv 217: I0005ad60744011d7a94bace56a9eba1c
    idv 218: I0005ae20726311d792e6e58f3e66f41c
    idv 219: I0005b9f071ba11d7b100a463f186e11d
    idv 220: I0005bc001e3711d891fbd2c50ca57005
    idv 221: I0005c8b071b411d7a07084608af77b15
    idv 222: I0005dc2072da11d78bcee6281d031f02
    idv 223: I0005f7a4efc011d897339e11b9afd716
    idv 224: I0005f9e0722f11d796fabc35f7796f7a
    idv 225: I0006073072ae11d7a07084608af77b15
    idv 226: I00061530133611d8aac7dbcabbf65311
    idv 227: I000627f071e211d7a07084608af77b15
    idv 228: I00062d80721a11d7947cc0bc28d0837a
    idv 229: I000633a072c111d7a5a58ae19b0bc350
    idv 230: I000635b0745811d789fed0d41f30a68d
    idv 231: I00063b3072e311d78347daa8ede63acd
    idv 232: I00063bd0728e11d78bcee6281d031f02
    idv 233: I00063e4071fe11d78bcee6281d031f02
    idv 234: I000643d0723611d78ef88cd3014a7f23
    idv 235: I00064b5000b611d88508fb717bde6c05
    idv 236: I00065a80729c11d7a5a58ae19b0bc350
    idv 237: I00066a5071c711d7b0409d11d16b6b13
    idv 238: I00066d50741711d79b9bc4eeac1c0b2d
    idv 239: I000672e071de11d78bcee6281d031f02
    idv 240: I000676e071b211d7880af2b8a7a150bc
    idv 241: I00067a70747111d7a94bace56a9eba1c
    idv 242: I00068860722a11d7ab54daa4035d65fa
    idv 243: I0006a450742b11d7abd288e162f1ee6f
    idv 244: I0006ba7071b111d7bffff83f52289667
    idv 245: I0006c930a76111d78cb8000874f30b44
    idv 246: I0006da10923511d78b148831b06d9b3e
    idv 247: I0006dc10726211d7a5a58ae19b0bc350
    idv 248: I0006e6a0726311d7ab54daa4035d65fa
    idv 249: I0006ef70744c11d79d2ef02eee90521e
    idv 250: I0006f070744111d7abd288e162f1ee6f
    idv 251: I0006fa0071dc11d7b100a463f186e11d
    idv 252: I0006fc60859811d78984a55bb4517c0f
    idv 253: I000708d7044011da9439b076ef9ec4de
    idv 254: I00071b70726811d7a5a58ae19b0bc350
    idv 255: I00071f40748811d79ccbd455e2fa80ef
    idv 256: I00072210f0c511d78788db544ffe8b12
    idv 257: I00072600726911d7bffff83f52289667
    idv 258: I00073890748311d7afb9df8873fee31a
    idv 259: I000746a0d4cd11d79c5ab0511e0c5824
    idv 260: I00077420726911d7947cc0bc28d0837a
    idv 261: I000775b072cd11d787c8f80b08d85a21
    idv 262: I0007802071e511d78bcee6281d031f02
    idv 263: I0007974071d111d7a5a58ae19b0bc350
    idv 264: I0007a8c0724911d796fabc35f7796f7a
    idv 265: I0007aa30743511d7aea3a34f2eb4052a
    idv 266: I0007b280727a11d7b0409d11d16b6b13
    idv 267: I0007b3f0746611d79ccbd455e2fa80ef
    idv 268: I0007b520748011d7afb9df8873fee31a
    idv 269: I0007bf10726511d78ef88cd3014a7f23
    idv 270: I0007cd1071cb11d7b0409d11d16b6b13
    idv 271: I0007d000726e11d7b0409d11d16b6b13
    idv 272: I0007d29833ff11d986b0aa9c82c164c0
    idv 273: I0007d34071ae11d7947cc0bc28d0837a
    idv 274: I0007d730724611d78347daa8ede63acd
    idv 275: I0007de3071f911d7ba84e3942a4b620d
    idv 276: I0007e13071d811d796fabc35f7796f7a
    idv 277: I0007e850727411d78bcee6281d031f02
    idv 278: I0007f1f0742d11d79a8ab5f5a94ee96e
    idv 279: I0007f54072a911d78347daa8ede63acd
    idv 280: I0007f620154811d8b8fd999a64bcc6ae
    idv 281: I00080dd0721011d7bffff83f52289667
    idv 282: I000812a071b411d7a5a58ae19b0bc350
    idv 283: I00081af0726a11d7b100a463f186e11d
    idv 284: I00082b20745011d7a658bf569bf0de0b
    idv 285: I00084300725f11d7ba84e3942a4b620d
    idv 286: I0008449072c311d78ef88cd3014a7f23
    idv 287: I000861b0726d11d7a5a58ae19b0bc350
    idv 288: I0008644072c611d7b0409d11d16b6b13
    idv 289: I000864b0724c11d78347daa8ede63acd
    idv 290: I00087d7071d811d7b0409d11d16b6b13
    idv 291: I00087d70744911d7afb9df8873fee31a
    idv 292: I000886f072a811d787c8f80b08d85a21
    idv 293: I00088cf0726611d792e6e58f3e66f41c
    idv 294: I00088e90747711d7a94bace56a9eba1c
    idv 295: I000890b072d911d787c8f80b08d85a21
    idv 296: I000896f071f811d78347daa8ede63acd
    idv 297: I0008a3a072cc11d7a5a58ae19b0bc350
    idv 298: I0008ad1071ef11d7947cc0bc28d0837a
    idv 299: I0008b170747e11d79ccbd455e2fa80ef
    idv 300: I0008b26072c611d7ba84e3942a4b620d
    select * from case where case_uuid in (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
    binding variables
    bc 1 : I00000670722f11d7bffff83f52289667
    bc 2 : I000010a071e611d7ba84e3942a4b620d
    bc 3 : I0000192072c111d7b100a463f186e11d
    bc 4 : I00001b90723111d7ab54daa4035d65fa
    bc 5 : I00002020727411d7a07084608af77b15
    bc 6 : I000029b0728011d792e6e58f3e66f41c
    bc 7 : I00002c80723a11d787c8f80b08d85a21
    bc 8 : I00003f10745411d79b9bc4eeac1c0b2d
    bc 9 : I000048d0721411d796fabc35f7796f7a
    bc 10 : I000067e0726c11d7b100a463f186e11d
    bc 11 : I0000796072e411d7b100a463f186e11d
    bc 12 : I000079c005aa11d8a85fe39410e0ab6f
    bc 13 : I000079e0741711d7aea3a34f2eb4052a
    bc 14 : I000085e0a1f611d7af65eaafd5dac9b5
    bc 15 : I000088c0728911d7a07084608af77b15
    bc 16 : I00008b0071d411d7880af2b8a7a150bc
    bc 17 : I00008f90721711d787c8f80b08d85a21
    bc 18 : I00009950724811d78ef88cd3014a7f23
    bc 19 : I00009a1072dc11d7ba84e3942a4b620d
    bc 20 : I0000a7a072bc11d7bffff83f52289667
    bc 21 : I0000ace071e611d78ef88cd3014a7f23
    bc 22 : I0000c0a0741a11d7ab5cff2fe4340d11
    bc 23 : I0000c40071d211d796fabc35f7796f7a
    bc 24 : I0000cc50728811d796fabc35f7796f7a
    bc 25 : I0000d250724611d7b100a463f186e11d
    bc 26 : I0000d94072bd11d78ef88cd3014a7f23
    bc 27 : I0000e7b0741a11d7b44cec793782d444
    bc 28 : I0000f1a071ff11d787c8f80b08d85a21
    bc 29 : I0000f4a071de11d7a5a58ae19b0bc350
    bc 30 : I0000fbc0727a11d78347daa8ede63acd
    bc 31 : I0000fcf0729411d787c8f80b08d85a21
    bc 32 : I0000ff5072c811d7a07084608af77b15
    bc 33 : I00010090721e11d7bffff83f52289667
    bc 34 : I00010390746e11d79ccbd455e2fa80ef
    bc 35 : I000112b0724111d7bffff83f52289667
    bc 36 : I00011940726e11d7b100a463f186e11d
    bc 37 : I00011ca0729711d78ef88cd3014a7f23
    bc 38 : I00012500728911d787c8f80b08d85a21
    bc 39 : I00012770746a11d79c33f30f55d9158b
    bc 40 : I0001297071e311d78347daa8ede63acd
    bc 41 : I00012a4071b311d7880af2b8a7a150bc
    bc 42 : I00012e7071ac11d7a5a58ae19b0bc350
    bc 43 : I000131c0729911d7a07084608af77b15
    bc 44 : I00013d90746111d7abd288e162f1ee6f
    bc 45 : I000147f0743d11d79a8ab5f5a94ee96e
    bc 46 : I00014850721611d7b100a463f186e11d
    bc 47 : I000148b0726011d78bcee6281d031f02
    bc 48 : I00014d2071ba11d7a5a58ae19b0bc350
    bc 49 : I0001593072e311d7ab54daa4035d65fa
    bc 50 : I00015d70721811d7880af2b8a7a150bc
    bc 51 : I000162a0720611d792e6e58f3e66f41c
    bc 52 : I00016340154411d894849fe41a758d3e
    bc 53 : I00016a90727211d7b0409d11d16b6b13
    bc 54 : I0001713071db11d796fabc35f7796f7a
    bc 55 : I00017de072af11d787c8f80b08d85a21
    bc 56 : I000183c0ff1e11d79d93859d09cad35e
    bc 57 : I00018680720211d7a07084608af77b15
    bc 58 : I00018fe071e911d7bffff83f52289667
    bc 59 : I000190b0154c11d8a6f0ebf54ed20c72
    bc 60 : I0001921071f811d792e6e58f3e66f41c
    bc 61 : I0001943072cb11d796fabc35f7796f7a
    bc 62 : I00019500729b11d796fabc35f7796f7a
    bc 63 : I0001a1d0745811d79ccbd455e2fa80ef
    bc 64 : I0001a3d071d111d7947cc0bc28d0837a
    bc 65 : I0001a8e042cc11d8bfb1c5b53ee7b122
    bc 66 : I0001aa0071b411d78bcee6281d031f02
    bc 67 : I0001c940b1ab11d7ad3ab23fa36e24eb
    bc 68 : I0001dc60724911d78ef88cd3014a7f23
    bc 69 : I0001f050723111d792e6e58f3e66f41c
    bc 70 : I0001f080725611d7ab54daa4035d65fa
    bc 71 : I0001f980746411d7a94bace56a9eba1c
    bc 72 : I0001fa10726211d78ef88cd3014a7f23
    bc 73 : I0001fe70728011d78347daa8ede63acd
    bc 74 : I0001ffe071fb11d7b0409d11d16b6b13
    bc 75 : I0002010072d911d78bcee6281d031f02
    bc 76 : I0002084071ed11d7a07084608af77b15
    bc 77 : I000220f0723d11d7b100a463f186e11d
    bc 78 : I00022c4072d211d7a5a58ae19b0bc350
    bc 79 : I00022cf0154c11d89b2cb73750577cdc
    bc 80 : I00022f4072b111d7b100a463f186e11d
    bc 81 : I00023550a76111d79a3e000874f30b44
    bc 82 : I00024ad0746811d79a8ab5f5a94ee96e
    bc 83 : I00024b02a5ba11d8860ea464f39e833e
    bc 84 : I00025ef0720411d7ba84e3942a4b620d
    bc 85 : I00026d40727811d7ab54daa4035d65fa
    bc 86 : I00026d80a2ad11d79bff000874f30b44
    bc 87 : I00027080742911d79d2ef02eee90521e
    bc 88 : I0002721aa5ba11d8860ea464f39e833e
    bc 89 : I00027280741311d7b44cec793782d444
    bc 90 : I00028050147611d895d6f30359ceb780
    bc 91 : I000286c0729811d7947cc0bc28d0837a
    bc 92 : I00028830721311d78347daa8ede63acd
    bc 93 : I00029920a5ba11d8860ea464f39e833e
    bc 94 : I0002a0b0723e11d7a5a58ae19b0bc350
    bc 95 : I0002a3a072e111d7a07084608af77b15
    bc 96 : I0002a48071ed11d787c8f80b08d85a21
    bc 97 : I0002a940725511d78bcee6281d031f02
    bc 98 : I0002b8c072e311d7a07084608af77b15
    bc 99 : I0002ba00723911d7b100a463f186e11d
    bc 100 : I0002c034a5ba11d8860ea464f39e833e
    bc 101 : I0002c2f0729a11d792e6e58f3e66f41c
    bc 102 : I0002c2f0729a11d7ab54daa4035d65fa
    bc 103 : I0002c4f0728411d7a07084608af77b15
    bc 104 : I0002cf9071c111d787c8f80b08d85a21
    bc 105 : I0002dfe0721f11d7b0409d11d16b6b13
    bc 106 : I0002e8a0725b11d7ba84e3942a4b620d
    bc 107 : I0002f5a0743d11d797e5f7f2fcbea176
    bc 108 : I0002fd2072b211d7ab54daa4035d65fa
    bc 109 : I0003003071cd11d796fabc35f7796f7a
    bc 110 : I00030a8074de11d79453d3af27410a27
    bc 111 : I00030b1072dc11d78347daa8ede63acd
    bc 112 : I000318e0721d11d7880af2b8a7a150bc
    bc 113 : I00032630729c11d7b100a463f186e11d
    bc 114 : I00032e60726911d7ba84e3942a4b620d
    bc 115 : I00033230721811d796fabc35f7796f7a
    bc 116 : I00033600743811d7a658bf569bf0de0b
    bc 117 : I00033730745211d79d2ef02eee90521e
    bc 118 : I000341f0f36c11d7993aa96b44857ca1
    bc 119 : I00034270b79611d7817fb05730618d2c
    bc 120 : I0003429071b211d7b0409d11d16b6b13
    bc 121 : I00034e80746311d7afb9df8873fee31a
    bc 122 : I0003507072a011d7ba84e3942a4b620d
    bc 123 : I00035f40744711d79d2ef02eee90521e
    bc 124 : I00037420727711d7b100a463f186e11d
    bc 125 : I00037d20721411d7ba84e3942a4b620d
    bc 126 : I00037dc0743011d79d2ef02eee90521e
    bc 127 : I00038970729e11d7ba84e3942a4b620d
    bc 128 : I00038ab071f411d7b100a463f186e11d
    bc 129 : I0003921071f111d7a5a58ae19b0bc350
    bc 130 : I0003a860720d11d78347daa8ede63acd
    bc 131 : I0003aa5072bb11d7ab54daa4035d65fa
    bc 132 : I0003aa99a5ba11d8860ea464f39e833e
    bc 133 : I0003ac5072a511d7a5a58ae19b0bc350
    bc 134 : I0003b720747811d79ccbd455e2fa80ef
    bc 135 : I0003b7b0727611d787c8f80b08d85a21
    bc 136 : I0003bb10729f11d78ef88cd3014a7f23
    bc 137 : I0003c5d072c511d7a5a58ae19b0bc350
    bc 138 : I0003d19072e011d78347daa8ede63acd
    bc 139 : I0003d1a4a5ba11d8860ea464f39e833e
    bc 140 : I0003d1a6a5ba11d8860ea464f39e833e
    bc 141 : I0003d1a8a5ba11d8860ea464f39e833e
    bc 142 : I0003d53074db11d7b5dbefdbeac7aa0d
    bc 143 : I0003d560728f11d7a5a58ae19b0bc350
    bc 144 : I0003d5c072d911d792e6e58f3e66f41c
    bc 145 : I0003ec20723111d78347daa8ede63acd
    bc 146 : I0003f2b0725e11d787c8f80b08d85a21
    bc 147 : I0003f54072b711d792e6e58f3e66f41c
    bc 148 : I0003f8b0a5ba11d8860ea464f39e833e
    bc 149 : I0003fa50742d11d79b9bc4eeac1c0b2d
    bc 150 : I0003feb071da11d7a07084608af77b15
    bc 151 : I000405d0160911d88becacb69499ad1d
    bc 152 : I00040950060411d88297fc19561b6a07
    bc 153 : I00040ed0721311d7a5a58ae19b0bc350
    bc 154 : I00041660723511d7a07084608af77b15
    bc 155 : I00041830746b11d797e5f7f2fcbea176
    bc 156 : I00041cc0723d11d7b0409d11d16b6b13
    bc 157 : I000420f0723611d7b100a463f186e11d
    bc 158 : I000426c071cf11d7880af2b8a7a150bc
    bc 159 : I00043970726111d7ba84e3942a4b620d
    bc 160 : I00043af0c41a11d7858789f8f41f469f
    bc 161 : I0004401071ca11d7b100a463f186e11d
    bc 162 : I000452c0725c11d7bffff83f52289667
    bc 163 : I000462d08bc311d7bb8d85f0ac71b1f3
    bc 164 : I00047040725011d7ab54daa4035d65fa
    bc 165 : I000470a0729a11d7b100a463f186e11d
    bc 166 : I0004773072c711d78ef88cd3014a7f23
    bc 167 : I0004794071ed11d7ab54daa4035d65fa
    bc 168 : I00048290729811d78347daa8ede63acd
    bc 169 : I00049af071da11d7b100a463f186e11d
    bc 170 : I0004b040720111d7880af2b8a7a150bc
    bc 171 : I0004b4a0721f11d78ef88cd3014a7f23
    bc 172 : I0004b9702b4f11d8a0409604c12e4f92
    bc 173 : I0004bb7071ad11d7a5a58ae19b0bc350
    bc 174 : I0004c3c0726311d78ef88cd3014a7f23
    bc 175 : I0004cb90745711d7a658bf569bf0de0b
    bc 176 : I0004d490067011d8b893f65b4e54826b
    bc 177 : I0004d780749711d79ccbd455e2fa80ef
    bc 178 : I0004dc10726911d78347daa8ede63acd
    bc 179 : I0004de70729d11d7ba84e3942a4b620d
    bc 180 : I0004e040726211d7b0409d11d16b6b13
    bc 181 : I0004e71071f011d7b100a463f186e11d
    bc 182 : I0004ed70746911d79a8ab5f5a94ee96e
    bc 183 : I0004ef7071e211d78bcee6281d031f02
    bc 184 : I0004f09072c011d792e6e58f3e66f41c
    bc 185 : I0004f0a071fc11d792e6e58f3e66f41c
    bc 186 : I0004f240879511d79cf082a8a526bdf9
    bc 187 : I0004f3a0744c11d7b433bc7aed88dbc8
    bc 188 : I0004f490729411d7bffff83f52289667
    bc 189 : I0004fb90724711d7a07084608af77b15
    bc 190 : I00050b20721111d7b0409d11d16b6b13
    bc 191 : I00050e2071f011d78bcee6281d031f02
    bc 192 : I00050e20746111d79b9bc4eeac1c0b2d
    bc 193 : I00051380747411d7afb9df8873fee31a
    bc 194 : I000518a072b511d78347daa8ede63acd
    bc 195 : I000518e0721611d78ef88cd3014a7f23
    bc 196 : I00052800725a11d7ba84e3942a4b620d
    bc 197 : I00052f00720d11d7947cc0bc28d0837a
    bc 198 : I00053200745d11d79a8ab5f5a94ee96e
    bc 199 : I00053e90268111d886bdfb192a64ac56
    bc 200 : I00054420859711d79001d96d270a074a
    bc 201 : I000546f071c911d792e6e58f3e66f41c
    bc 202 : I000562c072e111d7ab54daa4035d65fa
    bc 203 : I00056d109f7311d7b07dff332e990446
    bc 204 : I00056d30746a11d797e5f7f2fcbea176
    bc 205 : I00056f30745411d79c33f30f55d9158b
    bc 206 : I00057820724411d7b100a463f186e11d
    bc 207 : I00057980728311d7a07084608af77b15
    bc 208 : I000580e0728011d7ab54daa4035d65fa
    bc 209 : I00058271efc011d897339e11b9afd716
    bc 210 : I00058d7074dc11d7b371e3b03459763a
    bc 211 : I0005944071f911d7947cc0bc28d0837a
    bc 212 : I00059910879611d7b396e0d633b35241
    bc 213 : I00059ca071eb11d7ab54daa4035d65fa
    bc 214 : I00059fd0746011d7b433bc7aed88dbc8
    bc 215 : I0005a981efc011d897339e11b9afd716
    bc 216 : I0005aaa0eb6311d7b52ae3604baa5d0f
    bc 217 : I0005ad60744011d7a94bace56a9eba1c
    bc 218 : I0005ae20726311d792e6e58f3e66f41c
    bc 219 : I0005b9f071ba11d7b100a463f186e11d
    bc 220 : I0005bc001e3711d891fbd2c50ca57005
    bc 221 : I0005c8b071b411d7a07084608af77b15
    bc 222 : I0005dc2072da11d78bcee6281d031f02
    bc 223 : I0005f7a4efc011d897339e11b9afd716
    bc 224 : I0005f9e0722f11d796fabc35f7796f7a
    bc 225 : I0006073072ae11d7a07084608af77b15
    bc 226 : I00061530133611d8aac7dbcabbf65311
    bc 227 : I000627f071e211d7a07084608af77b15
    bc 228 : I00062d80721a11d7947cc0bc28d0837a
    bc 229 : I000633a072c111d7a5a58ae19b0bc350
    bc 230 : I000635b0745811d789fed0d41f30a68d
    bc 231 : I00063b3072e311d78347daa8ede63acd
    bc 232 : I00063bd0728e11d78bcee6281d031f02
    bc 233 : I00063e4071fe11d78bcee6281d031f02
    bc 234 : I000643d0723611d78ef88cd3014a7f23
    bc 235 : I00064b5000b611d88508fb717bde6c05
    bc 236 : I00065a80729c11d7a5a58ae19b0bc350
    bc 237 : I00066a5071c711d7b0409d11d16b6b13
    bc 238 : I00066d50741711d79b9bc4eeac1c0b2d
    bc 239 : I000672e071de11d78bcee6281d031f02
    bc 240 : I000676e071b211d7880af2b8a7a150bc
    bc 241 : I00067a70747111d7a94bace56a9eba1c
    bc 242 : I00068860722a11d7ab54daa4035d65fa
    bc 243 : I0006a450742b11d7abd288e162f1ee6f
    bc 244 : I0006ba7071b111d7bffff83f52289667
    bc 245 : I0006c930a76111d78cb8000874f30b44
    bc 246 : I0006da10923511d78b148831b06d9b3e
    bc 247 : I0006dc10726211d7a5a58ae19b0bc350
    bc 248 : I0006e6a0726311d7ab54daa4035d65fa
    bc 249 : I0006ef70744c11d79d2ef02eee90521e
    bc 250 : I0006f070744111d7abd288e162f1ee6f
    bc 251 : I0006fa0071dc11d7b100a463f186e11d
    bc 252 : I0006fc60859811d78984a55bb4517c0f
    bc 253 : I000708d7044011da9439b076ef9ec4de
    bc 254 : I00071b70726811d7a5a58ae19b0bc350
    bc 255 : I00071f40748811d79ccbd455e2fa80ef
    bc 256 : I00072210f0c511d78788db544ffe8b12
    bc 257 : I00072600726911d7bffff83f52289667
    bc 258 : I00073890748311d7afb9df8873fee31a
    bc 259 : I000746a0d4cd11d79c5ab0511e0c5824
    bc 260 : I00077420726911d7947cc0bc28d0837a
    bc 261 : I000775b072cd11d787c8f80b08d85a21
    bc 262 : I0007802071e511d78bcee6281d031f02
    bc 263 : I0007974071d111d7a5a58ae19b0bc350
    bc 264 : I0007a8c0724911d796fabc35f7796f7a
    bc 265 : I0007aa30743511d7aea3a34f2eb4052a
    bc 266 : I0007b280727a11d7b0409d11d16b6b13
    bc 267 : I0007b3f0746611d79ccbd455e2fa80ef
    bc 268 : I0007b520748011d7afb9df8873fee31a
    bc 269 : I0007bf10726511d78ef88cd3014a7f23
    bc 270 : I0007cd1071cb11d7b0409d11d16b6b13
    bc 271 : I0007d000726e11d7b0409d11d16b6b13
    bc 272 : I0007d29833ff11d986b0aa9c82c164c0
    bc 273 : I0007d34071ae11d7947cc0bc28d0837a
    bc 274 : I0007d730724611d78347daa8ede63acd
    bc 275 : I0007de3071f911d7ba84e3942a4b620d
    bc 276 : I0007e13071d811d796fabc35f7796f7a
    bc 277 : I0007e850727411d78bcee6281d031f02
    bc 278 : I0007f1f0742d11d79a8ab5f5a94ee96e
    bc 279 : I0007f54072a911d78347daa8ede63acd
    bc 280 : I0007f620154811d8b8fd999a64bcc6ae
    bc 281 : I00080dd0721011d7bffff83f52289667
    bc 282 : I000812a071b411d7a5a58ae19b0bc350
    bc 283 : I00081af0726a11d7b100a463f186e11d
    bc 284 : I00082b20745011d7a658bf569bf0de0b
    bc 285 : I00084300725f11d7ba84e3942a4b620d
    bc 286 : I0008449072c311d78ef88cd3014a7f23
    bc 287 : I000861b0726d11d7a5a58ae19b0bc350
    bc 288 : I0008644072c611d7b0409d11d16b6b13
    bc 289 : I000864b0724c11d78347daa8ede63acd
    bc 290 : I00087d7071d811d7b0409d11d16b6b13
    bc 291 : I00087d70744911d7afb9df8873fee31a
    bc 292 : I000886f072a811d787c8f80b08d85a21
    bc 293 : I00088cf0726611d792e6e58f3e66f41c
    bc 294 : I00088e90747711d7a94bace56a9eba1c
    bc 295 : I000890b072d911d787c8f80b08d85a21
    bc 296 : I000896f071f811d78347daa8ede63acd
    bc 297 : I0008a3a072cc11d7a5a58ae19b0bc350
    bc 298 : I0008ad1071ef11d7947cc0bc28d0837a
    bc 299 : I0008b170747e11d79ccbd455e2fa80ef
    bc 300 : I0008b26072c611d7ba84e3942a4b620d
    iterating rs
    rs 1: I000147f0743d11d79a8ab5f5a94ee96e
    rs 2: I00014850721611d7b100a463f186e11d
    rs 3: I000148b0726011d78bcee6281d031f02
    rs 4: I00014d2071ba11d7a5a58ae19b0bc350
    rs 5: I0001593072e311d7ab54daa4035d65fa
    rs 6: I00015d70721811d7880af2b8a7a150bc
    rs 7: I000162a0720611d792e6e58f3e66f41c
    rs 8: I00016340154411d894849fe41a758d3e
    rs 9: I00016a90727211d7b0409d11d16b6b13
    rs 10: I0001713071db11d796fabc35f7796f7a
    rs 11: I00017de072af11d787c8f80b08d85a21
    rs 12: I000183c0ff1e11d79d93859d09cad35e
    rs 13: I00018680720211d7a07084608af77b15
    rs 14: I00018fe071e911d7bffff83f52289667
    rs 15: I000190b0154c11d8a6f0ebf54ed20c72
    rs 16: I0001921071f811d792e6e58f3e66f41c
    rs 17: I0001943072cb11d796fabc35f7796f7a
    rs 18: I00019500729b11d796fabc35f7796f7a
    rs 19: I0001a1d0745811d79ccbd455e2fa80ef
    rs 20: I0001a3d071d111d7947cc0bc28d0837a
    rs 21: I0001a8e042cc11d8bfb1c5b53ee7b122
    rs 22: I0001aa0071b411d78bcee6281d031f02
    rs 23: I0001c940b1ab11d7ad3ab23fa36e24eb
    rs 24: I0001dc60724911d78ef88cd3014a7f23
    rs 25: I0001f050723111d792e6e58f3e66f41c
    rs 26: I0001f080725611d7ab54daa4035d65fa
    rs 27: I0001f980746411d7a94bace56a9eba1c
    rs 28: I0001fa10726211d78ef88cd3014a7f23
    rs 29: I0001fe70728011d78347daa8ede63acd
    rs 30: I0001ffe071fb11d7b0409d11d16b6b13
    rs 31: I0002010072d911d78bcee6281d031f02
    rs 32: I0002084071ed11d7a07084608af77b15
    rs 33: I000220f0723d11d7b100a463f186e11d
    rs 34: I00022c4072d211d7a5a58ae19b0bc350
    rs 35: I00022cf0154c11d89b2cb73750577cdc
    rs 36: I00022f4072b111d7b100a463f186e11d
    rs 37: I00023550a76111d79a3e000874f30b44
    rs 38: I00024ad0746811d79a8ab5f5a94ee96e
    rs 39: I00024b02a5ba11d8860ea464f39e833e
    rs 40: I00025ef0720411d7ba84e3942a4b620d
    rs 41: I00026d40727811d7ab54daa4035d65fa
    rs 42: I00026d80a2ad11d79bff000874f30b44
    rs 43: I00027080742911d79d2ef02eee90521e
    rs 44: I0002721aa5ba11d8860ea464f39e833e
    rs 45: I00027280741311d7b44cec793782d444
    rs 46: I00028050147611d895d6f30359ceb780
    rs 47: I000286c0729811d7947cc0bc28d0837a
    rs 48: I00028830721311d78347daa8ede63acd
    rs 49: I00029920a5ba11d8860ea464f39e833e
    rs 50: I0002a0b0723e11d7a5a58ae19b0bc350
    rs 51: I0002a3a072e111d7a07084608af77b15
    rs 52: I0002a48071ed11d787c8f80b08d85a21
    rs 53: I0002a940725511d78bcee6281d031f02
    rs 54: I0002b8c072e311d7a07084608af77b15
    rs 55: I0002ba00723911d7b100a463f186e11d
    rs 56: I0002c034a5ba11d8860ea464f39e833e
    rs 57: I0002c2f0729a11d792e6e58f3e66f41c
    rs 58: I0002c2f0729a11d7ab54daa4035d65fa
    rs 59: I0002c4f0728411d7a07084608af77b15
    rs 60: I0002cf9071c111d787c8f80b08d85a21
    rs 61: I0002dfe0721f11d7b0409d11d16b6b13
    rs 62: I0002e8a0725b11d7ba84e3942a4b620d
    rs 63: I0002f5a0743d11d797e5f7f2fcbea176
    rs 64: I0002fd2072b211d7ab54daa4035d65fa
    rs 65: I0003003071cd11d796fabc35f7796f7a
    rs 66: I00030a8074de11d79453d3af27410a27
    rs 67: I00030b1072dc11d78347daa8ede63acd
    rs 68: I000318e0721d11d7880af2b8a7a150bc
    rs 69: I00032630729c11d7b100a463f186e11d
    rs 70: I00032e60726911d7ba84e3942a4b620d
    rs 71: I00033230721811d796fabc35f7796f7a
    rs 72: I00033600743811d7a658bf569bf0de0b
    rs 73: I00033730745211d79d2ef02eee90521e
    rs 74: I000341f0f36c11d7993aa96b44857ca1
    rs 75: I00034270b79611d7817fb05730618d2c
    rs 76: I0003429071b211d7b0409d11d16b6b13
    rs 77: I00034e80746311d7afb9df8873fee31a
    rs 78: I0003507072a011d7ba84e3942a4b620d
    rs 79: I00035f40744711d79d2ef02eee90521e
    rs 80: I00037420727711d7b100a463f186e11d
    rs 81: I00037d20721411d7ba84e3942a4b620d
    rs 82: I00037dc0743011d79d2ef02eee90521e
    rs 83: I00038970729e11d7ba84e3942a4b620d
    rs 84: I00038ab071f411d7b100a463f186e11d
    rs 85: I0003921071f111d7a5a58ae19b0bc350
    rs 86: I0003a860720d11d78347daa8ede63acd
    rs 87: I0003aa5072bb11d7ab54daa4035d65fa
    rs 88: I0003aa99a5ba11d8860ea464f39e833e
    rs 89: I0003ac5072a511d7a5a58ae19b0bc350
    rs 90: I0003b720747811d79ccbd455e2fa80ef
    rs 91: I0003b7b0727611d787c8f80b08d85a21
    rs 92: I0003bb10729f11d78ef88cd3014a7f23
    rs 93: I0003c5d072c511d7a5a58ae19b0bc350
    rs 94: I0003d19072e011d78347daa8ede63acd
    rs 95: I0003d1a4a5ba11d8860ea464f39e833e
    rs 96: I0003d1a6a5ba11d8860ea464f39e833e
    rs 97: I0003d1a8a5ba11d8860ea464f39e833e
    rs 98: I0003d53074db11d7b5dbefdbeac7aa0d
    rs 99: I0003d560728f11d7a5a58ae19b0bc350
    rs 100: I0003d5c072d911d792e6e58f3e66f41c
    rs 101: I0003ec20723111d78347daa8ede63acd
    rs 102: I0003f2b0725e11d787c8f80b08d85a21
    rs 103: I0003f54072b711d792e6e58f3e66f41c
    rs 104: I0003f8b0a5ba11d8860ea464f39e833e
    rs 105: I0003fa50742d11d79b9bc4eeac1c0b2d
    rs 106: I0003feb071da11d7a07084608af77b15
    rs 107: I000405d0160911d88becacb69499ad1d
    rs 108: I00040950060411d88297fc19561b6a07
    rs 109: I00040ed0721311d7a5a58ae19b0bc350
    rs 110: I00041660723511d7a07084608af77b15
    rs 111: I00041830746b11d797e5f7f2fcbea176
    rs 112: I00041cc0723d11d7b0409d11d16b6b13
    rs 113: I000420f0723611d7b100a463f186e11d
    rs 114: I000426c071cf11d7880af2b8a7a150bc
    rs 115: I00043970726111d7ba84e3942a4b620d
    rs 116: I00043af0c41a11d7858789f8f41f469f
    rs 117: I0004401071ca11d7b100a463f186e11d
    rs 118: I000452c0725c11d7bffff83f52289667
    rs 119: I000462d08bc311d7bb8d85f0ac71b1f3
    rs 120: I00047040725011d7ab54daa4035d65fa
    rs 121: I000470a0729a11d7b100a463f186e11d
    rs 122: I0004773072c711d78ef88cd3014a7f23
    rs 123: I0004794071ed11d7ab54daa4035d65fa
    rs 124: I00048290729811d78347daa8ede63acd
    rs 125: I00049af071da11d7b100a463f186e11d
    rs 126: I0004b040720111d7880af2b8a7a150bc
    rs 127: I0004b4a0721f11d78ef88cd3014a7f23
    rs 128: I0004b9702b4f11d8a0409604c12e4f92
    rs 129: I0004bb7071ad11d7a5a58ae19b0bc350
    rs 130: I0004c3c0726311d78ef88cd3014a7f23
    rs 131: I0004cb90745711d7a658bf569bf0de0b
    rs 132: I0004d490067011d8b893f65b4e54826b
    rs 133: I0004d780749711d79ccbd455e2fa80ef
    rs 134: I0004dc10726911d78347daa8ede63acd
    rs 135: I0004de70729d11d7ba84e3942a4b620d
    rs 136: I0004e040726211d7b0409d11d16b6b13
    rs 137: I0004e71071f011d7b100a463f186e11d
    rs 138: I0004ed70746911d79a8ab5f5a94ee96e
    rs 139: I0004ef7071e211d78bcee6281d031f02
    rs 140: I0004f09072c011d792e6e58f3e66f41c
    rs 141: I0004f0a071fc11d792e6e58f3e66f41c
    rs 142: I0004f240879511d79cf082a8a526bdf9
    rs 143: I0004f3a0744c11d7b433bc7aed88dbc8
    rs 144: I0004f490729411d7bffff83f52289667
    rs 145: I0004fb90724711d7a07084608af77b15
    rs 146: I00050b20721111d7b0409d11d16b6b13
    rs 147: I00050e2071f011d78bcee6281d031f02
    rs 148: I00050e20746111d79b9bc4eeac1c0b2d
    rs 149: I00051380747411d7afb9df8873fee31a
    rs 150: I000518a072b511d78347daa8ede63acd
    rs 151: I000518e0721611d78ef88cd3014a7f23
    rs 152: I00052800725a11d7ba84e3942a4b620d
    rs 153: I00052f00720d11d7947cc0bc28d0837a
    rs 154: I00053200745d11d79a8ab5f5a94ee96e
    rs 155: I00053e90268111d886bdfb192a64ac56
    rs 156: I00054420859711d79001d96d270a074a
    rs 157: I000546f071c911d792e6e58f3e66f41c
    rs 158: I000562c072e111d7ab54daa4035d65fa
    rs 159: I00056d109f7311d7b07dff332e990446
    rs 160: I00056d30746a11d797e5f7f2fcbea176
    rs 161: I00056f30745411d79c33f30f55d9158b
    rs 162: I00057820724411d7b100a463f186e11d
    rs 163: I00057980728311d7a07084608af77b15
    rs 164: I000580e0728011d7ab54daa4035d65fa
    rs 165: I00058271efc011d897339e11b9afd716
    rs 166: I00058d7074dc11d7b371e3b03459763a
    rs 167: I0005944071f911d7947cc0bc28d0837a
    rs 168: I00059910879611d7b396e0d633b35241
    rs 169: I00059ca071eb11d7ab54daa4035d65fa
    rs 170: I00059fd0746011d7b433bc7aed88dbc8
    rs 171: I0005a981efc011d897339e11b9afd716
    rs 172: I0005aaa0eb6311d7b52ae3604baa5d0f
    rs 173: I0005ad60744011d7a94bace56a9eba1c
    rs 174: I0005ae20726311d792e6e58f3e66f41c
    rs 175: I0005b9f071ba11d7b100a463f186e11d
    rs 176: I0005bc001e3711d891fbd2c50ca57005
    rs 177: I0005c8b071b411d7a07084608af77b15
    rs 178: I0005dc2072da11d78bcee6281d031f02
    rs 179: I0005f7a4efc011d897339e11b9afd716
    rs 180: I0005f9e0722f11d796fabc35f7796f7a
    rs 181: I0006073072ae11d7a07084608af77b15
    rs 182: I00061530133611d8aac7dbcabbf65311
    rs 183: I000627f071e211d7a07084608af77b15
    rs 184: I00062d80721a11d7947cc0bc28d0837a
    rs 185: I000633a072c111d7a5a58ae19b0bc350
    rs 186: I000635b0745811d789fed0d41f30a68d
    rs 187: I00063b3072e311d78347daa8ede63acd
    rs 188: I00063bd0728e11d78bcee6281d031f02
    rs 189: I00063e4071fe11d78bcee6281d031f02
    rs 190: I000643d0723611d78ef88cd3014a7f23
    rs 191: I00064b5000b611d88508fb717bde6c05
    rs 192: I00065a80729c11d7a5a58ae19b0bc350
    rs 193: I00066a5071c711d7b0409d11d16b6b13
    rs 194: I00066d50741711d79b9bc4eeac1c0b2d
    rs 195: I000672e071de11d78bcee6281d031f02
    rs 196: I000676e071b211d7880af2b8a7a150bc
    rs 197: I00067a70747111d7a94bace56a9eba1c
    rs 198: I00068860722a11d7ab54daa4035d65fa
    rs 199: I0006a450742b11d7abd288e162f1ee6f
    rs 200: I0006ba7071b111d7bffff83f52289667
    rs 201: I0006c930a76111d78cb8000874f30b44
    rs 202: I0006da10923511d78b148831b06d9b3e
    rs 203: I0006dc10726211d7a5a58ae19b0bc350
    rs 204: I0006e6a0726311d7ab54daa4035d65fa
    rs 205: I0006ef70744c11d79d2ef02eee90521e
    rs 206: I0006f070744111d7abd288e162f1ee6f
    rs 207: I0006fa0071dc11d7b100a463f186e11d
    rs 208: I0006fc60859811d78984a55bb4517c0f
    rs 209: I000708d7044011da9439b076ef9ec4de
    rs 210: I00071b70726811d7a5a58ae19b0bc350
    rs 211: I00071f40748811d79ccbd455e2fa80ef
    rs 212: I00072210f0c511d78788db544ffe8b12
    rs 213: I00072600726911d7bffff83f52289667
    rs 214: I00073890748311d7afb9df8873fee31a
    rs 215: I000746a0d4cd11d79c5ab0511e0c5824
    rs 216: I00077420726911d7947cc0bc28d0837a
    rs 217: I000775b072cd11d787c8f80b08d85a21
    rs 218: I0007802071e511d78bcee6281d031f02
    rs 219: I0007974071d111d7a5a58ae19b0bc350
    rs 220: I0007a8c0724911d796fabc35f7796f7a
    rs 221: I0007aa30743511d7aea3a34f2eb4052a
    rs 222: I0007b280727a11d7b0409d11d16b6b13
    rs 223: I0007b3f0746611d79ccbd455e2fa80ef
    rs 224: I0007b520748011d7afb9df8873fee31a
    rs 225: I0007bf10726511d78ef88cd3014a7f23
    rs 226: I0007cd1071cb11d7b0409d11d16b6b13
    rs 227: I0007d000726e11d7b0409d11d16b6b13
    rs 228: I0007d29833ff11d986b0aa9c82c164c0
    rs 229: I0007d34071ae11d7947cc0bc28d0837a
    rs 230: I0007d730724611d78347daa8ede63acd
    rs 231: I0007de3071f911d7ba84e3942a4b620d
    rs 232: I0007e13071d811d796fabc35f7796f7a
    rs 233: I0007e850727411d78bcee6281d031f02
    rs 234: I0007f1f0742d11d79a8ab5f5a94ee96e
    rs 235: I0007f54072a911d78347daa8ede63acd
    rs 236: I0007f620154811d8b8fd999a64bcc6ae
    rs 237: I00080dd0721011d7bffff83f52289667
    rs 238: I000812a071b411d7a5a58ae19b0bc350
    rs 239: I00081af0726a11d7b100a463f186e11d
    rs 240: I00082b20745011d7a658bf569bf0de0b
    rs 241: I00084300725f11d7ba84e3942a4b620d
    rs 242: I0008449072c311d78ef88cd3014a7f23
    rs 243: I000861b0726d11d7a5a58ae19b0bc350
    rs 244: I0008644072c611d7b0409d11d16b6b13
    rs 245: I000864b0724c11d78347daa8ede63acd
    rs 246: I00087d7071d811d7b0409d11d16b6b13
    rs 247: I00087d70744911d7afb9df8873fee31a
    rs 248: I000886f072a811d787c8f80b08d85a21
    rs 249: I00088cf0726611d792e6e58f3e66f41c
    rs 250: I00088e90747711d7a94bace56a9eba1c
    rs 251: I000890b072d911d787c8f80b08d85a21
    rs 252: I000896f071f811d78347daa8ede63acd
    rs 253: I0008a3a072cc11d7a5a58ae19b0bc350
    rs 254: I0008ad1071ef11d7947cc0bc28d0837a
    rs 255: I0008b170747e11d79ccbd455e2fa80ef
    rs 256: I0008b26072c611d7ba84e3942a4b620d

    Thanks again for the input. One of our DBA's was also able to recreate the problem using the below PL/SQL script. He is going to open a TAR with Oracle. I'll post a message when we get a resolution.
    Tom
    CREATE OR REPLACE PROCEDURE "SYSTEM"."TEST_BIND2" is
    type dynamic_tc is ref cursor;
    v_rc dynamic_tc;
    sql_stmt varchar(3000);
    bindvariable varchar2(33) := 'I00000670722f11d7bffff83f52289667';
    v_case_uuid varchar2(33);
    v_rows number :=0;
    begin
    sql_stmt := 'select case_uuid from machv.case
    where case_uuid in (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15,
    :16,
    :17,
    :18,
    :19,
    :20,
    :21,
    :22,
    :23,
    :24,
    :25,
    :26,
    :27,
    :28,
    :29,
    :30,
    :31,
    :32,
    :33,
    :34,
    :35,
    :36,
    :37,
    :38,
    :39,
    :40,
    :41,
    :42,
    :43,
    :44,
    :45,
    :46,
    :47,
    :48,
    :49,
    :50,
    :51,
    :52,
    :53,
    :54,
    :55,
    :56,
    :57,
    :58,
    :59,
    :60,
    :61,
    :62,
    :63,
    :64,
    :65,
    :66,
    :67,
    :68,
    :69,
    :70,
    :71,
    :72,
    :73,
    :74,
    :75,
    :76,
    :77,
    :78,
    :79,
    :80,
    :81,
    :82,
    :83,
    :84,
    :85,
    :86,
    :87,
    :88,
    :89,
    :90,
    :91,
    :92,
    :93,
    :94,
    :95,
    :96,
    :97,
    :98,
    :99,
    :100,
    :101,
    :102,
    :103,
    :104,
    :105,
    :106,
    :107,
    :108,
    :109,
    :110,
    :111,
    :112,
    :113,
    :114,
    :115,
    :116,
    :117,
    :118,
    :119,
    :120,
    :121,
    :122,
    :123,
    :124,
    :125,
    :126,
    :127,
    :128,
    :129,
    :130,
    :131,
    :132,
    :133,
    :134,
    :135,
    :136,
    :137,
    :138,
    :139,
    :140,
    :141,
    :142,
    :143,
    :144,
    :145,
    :146,
    :147,
    :148,
    :149,
    :150,
    :151,
    :152,
    :153,
    :154,
    :155,
    :156,
    :157,
    :158,
    :159,
    :160,
    :161,
    :162,
    :163,
    :164,
    :165,
    :166,
    :167,
    :168,
    :169,
    :170,
    :171,
    :172,
    :173,
    :174,
    :175,
    :176,
    :177,
    :178,
    :179,
    :180,
    :181,
    :182,
    :183,
    :184,
    :185,
    :186,
    :187,
    :188,
    :189,
    :190,
    :191,
    :192,
    :193,
    :194,
    :195,
    :196,
    :197,
    :198,
    :199,
    :200,
    :201,
    :202,
    :203,
    :204,
    :205,
    :206,
    :207,
    :208,
    :209,
    :210,
    :211,
    :212,
    :213,
    :214,
    :215,
    :216,
    :217,
    :218,
    :219,
    :220,
    :221,
    :222,
    :223,
    :224,
    :225,
    :226,
    :227,
    :228,
    :229,
    :230,
    :231,
    :232,
    :233,
    :234,
    :235,
    :236,
    :237,
    :238,
    :239,
    :240,
    :241,
    :242,
    :243,
    :244,
    :245,
    :246,
    :247,
    :248,
    :249,
    :250,
    :251,
    :252,
    :253,
    :254,
    :255,
    :256,
    :257,
    :258,
    :259,
    :260,
    :261,
    :262,
    :263,
    :264,
    :265,
    :266,
    :267,
    :268,
    :269,
    :270,
    :271,
    :272,
    :273,
    :274,
    :275,
    :276,
    :277,
    :278,
    :279,
    :280,
    :281,
    :282,
    :283,
    :284,
    :285,
    :286,
    :287,
    :288,
    :289,
    :290,
    :291,
    :292,
    :293,
    :294,
    :295,
    :296,
    :297,
    :298,
    :299,
    :300,
    :301,
    :302,
    :303,
    :304,
    :305,
    :306,
    :307,
    :308,
    :309,
    :310,
    :311,
    :312,
    :313,
    :314,
    :315,
    :316,
    :317,
    :318,
    :319,
    :320,
    :321,
    :322,
    :323,
    :324,
    :325,
    :326,
    :327,
    :328,
    :329,
    :330,
    :331,
    :332,
    :333,
    :334,
    :335,
    :336,
    :337,
    :338,
    :339,
    :340,
    :341,
    :342,
    :343,
    :344,
    :345,
    :346,
    :347,
    :348,
    :349,
    :350,
    :351,
    :352,
    :353,
    :354,
    :355,
    :356,
    :357,
    :358,
    :359,
    :360,
    :361,
    :362,
    :363,
    :364,
    :365,
    :366,
    :367,
    :368,
    :369,
    :370,
    :371,
    :372,
    :373,
    :374,
    :375,
    :376,
    :377,
    :378,
    :379,
    :380,
    :381,
    :382,
    :383,
    :384,
    :385,
    :386,
    :387,
    :388,
    :389,
    :390,
    :391,
    :392,
    :393,
    :394,
    :395,
    :396,
    :397,
    :398,
    :399,
    :400,
    :401,
    :402,
    :403,
    :404,
    :405,
    :406,
    :407,
    :408,
    :409,
    :410,
    :411,
    :412,
    :413,
    :414,
    :415,
    :416,
    :417,
    :418,
    :419,
    :420,
    :421,
    :422,
    :423,
    :424,
    :425,
    :426,
    :427,
    :428,
    :429,
    :430,
    :431,
    :432,
    :433,
    :434,
    :435,
    :436,
    :437,
    :438,
    :439,
    :440,
    :441,
    :442,
    :443,
    :444,
    :445,
    :446,
    :447,
    :448,
    :449,
    :450,
    :451,
    :452,
    :453,
    :454,
    :455,
    :456,
    :457,
    :458,
    :459,
    :460,
    :461,
    :462,
    :463,
    :464,
    :465,
    :466,
    :467,
    :468,
    :469,
    :470,
    :471,
    :472,
    :473,
    :474,
    :475,
    :476,
    :477,
    :478,
    :479,
    :480,
    :481,
    :482,
    :483,
    :484,
    :485,
    :486,
    :487,
    :488,
    :489,
    :490,
    :491,
    :492,
    :493,
    :494,
    :495,
    :496,
    :497,
    :498,
    :499)';
    open v_rc for sql_stmt using 'I00000670722f11d7bffff83f52289667',
    'I000010a071e611d7ba84e3942a4b620d',
    'I0000192072c111d7b100a463f186e11d',
    'I00001b90723111d7ab54daa4035d65fa',
    'I00002020727411d7a07084608af77b15',
    'I000029b0728011d792e6e58f3e66f41c',
    'I00002c80723a11d787c8f80b08d85a21',
    'I00003f10745411d79b9bc4eeac1c0b2d',
    'I000048d0721411d796fabc35f7796f7a',
    'I000067e0726c11d7b100a463f186e11d',
    'I0000796072e411d7b100a463f186e11d',
    'I000079c005aa11d8a85fe39410e0ab6f',
    'I000079e0741711d7aea3a34f2eb4052a',
    'I000085e0a1f611d7af65eaafd5dac9b5',
    'I000088c0728911d7a07084608af77b15',
    'I00008b0071d411d7880af2b8a7a150bc',
    'I00008f90721711d787c8f80b08d85a21',
    'I00009950724811d78ef88cd3014a7f23',
    'I00009a1072dc11d7ba84e3942a4b620d',
    'I0000a7a072bc11d7bffff83f52289667',
    'I0000ace071e611d78ef88cd3014a7f23',
    'I0000c0a0741a11d7ab5cff2fe4340d11',
    'I0000c40071d211d796fabc35f7796f7a',
    'I0000cc50728811d796fabc35f7796f7a',
    'I0000d250724611d7b100a463f186e11d',
    'I0000d94072bd11d78ef88cd3014a7f23',
    'I0000e7b0741a11d7b44cec793782d444',
    'I0000f1a071ff11d787c8f80b08d85a21',
    'I0000f4a071de11d7a5a58ae19b0bc350',
    'I0000fbc0727a11d78347daa8ede63acd',
    'I0000fcf0729411d787c8f80b08d85a21',
    'I0000ff5072c811d7a07084608af77b15',
    'I00010090721e11d7bffff83f52289667',
    'I00010390746e11d79ccbd455e2fa80ef',
    'I000112b0724111d7bffff83f52289667',
    'I00011940726e11d7b100a463f186e11d',
    'I00011ca0729711d78ef88cd3014a7f23',
    'I00012500728911d787c8f80b08d85a21',
    'I00012770746a11d79c33f30f55d9158b',
    'I0001297071e311d78347daa8ede63acd',
    'I00012a4071b311d7880af2b8a7a150bc',
    'I00012e7071ac11d7a5a58ae19b0bc350',
    'I000131c0729911d7a07084608af77b15',
    'I00013d90746111d7abd288e162f1ee6f',
    'I000147f0743d11d79a8ab5f5a94ee96e',
    'I00014850721611d7b100a463f186e11d',
    'I000148b0726011d78bcee6281d031f02',
    'I00014d2071ba11d7a5a58ae19b0bc350',
    'I0001593072e311d7ab54daa4035d65fa',
    'I00015d70721811d7880af2b8a7a150bc',
    'I000162a0720611d792e6e58f3e66f41c',
    'I00016340154411d894849fe41a758d3e',
    'I00016a90727211d7b0409d11d16b6b13',
    'I0001713071db11d796fabc35f7796f7a',
    'I00017de072af11d787c8f80b08d85a21',
    'I000183c0ff1e11d79d93859d09cad35e',
    'I00018680720211d7a07084608af77b15',
    'I00018fe071e911d7bffff83f52289667',
    'I000190b0154c11d8a6f0ebf54ed20c72',
    'I0001921071f811d792e6e58f3e66f41c',
    'I0001943072cb11d796fabc35f7796f7a',
    'I00019500729b11d796fabc35f7796f7a',
    'I0001a1d0745811d79ccbd455e2fa80ef',
    'I0001a3d071d111d7947cc0bc28d0837a',
    'I0001a8e042cc11d8bfb1c5b53ee7b122',
    'I0001aa0071b411d78bcee6281d031f02',
    'I0001c940b1ab11d7ad3ab23fa36e24eb',
    'I0001dc60724911d78ef88cd3014a7f23',
    'I0001f050723111d792e6e58f3e66f41c',
    'I0001f080725611d7ab54daa4035d65fa',
    'I0001f980746411d7a94bace56a9eba1c',
    'I0001fa10726211d78ef88cd3014a7f23',
    'I0001fe70728011d78347daa8ede63acd',
    'I0001ffe071fb11d7b0409d11d16b6b13',
    'I0002010072d911d78bcee6281d031f02',
    'I0002084071ed11d7a07084608af77b15',
    'I000220f0723d11d7b100a463f186e11d',
    'I00022c4072d211d7a5a58ae19b0bc350',
    'I00022cf0154c11d89b2cb73750577cdc',
    'I00022f4072b111d7b100a463f186e11d',
    'I00023550a76111d79a3e000874f30b44',
    'I00024ad0746811d79a8ab5f5a94ee96e',
    'I00024b02a5ba11d8860ea464f39e833e',
    'I00025ef0720411d7ba84e3942a4b620d',
    'I00026d40727811d7ab54daa4035d65fa',
    'I00026d80a2ad11d79bff000874f30b44',
    'I00027080742911d79d2ef02eee90521e',
    'I0002721aa5ba11d8860ea464f39e833e',
    'I00027280741311d7b44cec793782d444',
    'I00028050147611d895d6f30359ceb780',
    'I000286c0729811d7947cc0bc28d0837a',
    'I00028830721311d78347daa8ede63acd',
    'I00029920a5ba11d8860ea464f39e833e',
    'I0002a0b0723e11d7a5a58ae19b0bc350',
    'I0002a3a072e111d7a07084608af77b15',
    'I0002a48071ed11d787c8f80b08d85a21',
    'I0002a940725511d78bcee6281d031f02',
    'I0002b8c072e311d7a07084608af77b15',
    'I0002ba00723911d7b100a463f186e11d',
    'I0002c034a5ba11d8860ea464f39e833e',
    'I0002c2f0729a11d792e6e58f3e66f41c',
    'I0002c2f0729a11d7ab54daa4035d65fa',
    'I0002c4f0728411d7a07084608af77b15',
    'I0002cf9071c111d787c8f80b08d85a21',
    'I0002dfe0721f11d7b0409d11d16b6b13',
    'I0002e8a0725b11d7ba84e3942a4b620d',
    'I0002f5a0743d11d797e5f7f2fcbea176',
    'I0002fd2072b211d7ab54daa4035d65fa',
    'I0003003071cd11d796fabc35f7796f7a',
    'I00030a8074de11d79453d3af27410a27',
    'I00030b1072dc11d78347daa8ede63acd',
    'I000318e0721d11d7880af2b8a7a150bc',
    'I00032630729c11d7b100a463f186e11d',
    'I00032e60726911d7ba84e3942a4b620d',
    'I00033230721811d796fabc35f7796f7a',
    'I00033600743811d7a658bf569bf0de0b',
    'I00033730745211d79d2ef02eee90521e',
    'I000341f0f36c11d7993aa96b44857ca1',
    'I00034270b79611d7817fb05730618d2c',
    'I0003429071b211d7b0409d11d16b6b13',
    'I00034e80746311d7afb9df8873fee31a',
    'I0003507072a011d7ba84e3942a4b620d',
    'I00035f40744711d79d2ef02eee90521e',
    'I00037420727711d7b100a463f186e11d',
    'I00037d20721411d7ba84e3942a4b620d',
    'I00037dc0743011d79d2ef02eee90521e',
    'I00038970729e11d7ba84e3942a4b620d',
    'I00038ab071f411d7b100a463f186e11d',
    'I0003921071f111d7a5a58ae19b0bc350',
    'I0003a860720d11d78347daa8ede63acd',
    'I0003aa5072bb11d7ab54daa4035d65fa',
    'I0003aa99a5ba11d8860ea464f39e833e',
    'I0003ac5072a511d7a5a58ae19b0bc350',
    'I0003b720747811d79ccbd455e2fa80ef',
    'I0003b7b0727611d787c8f80b08d85a21',
    'I0003bb10729f11d78ef88cd3014a7f23',
    'I0003c5d072c511d7a5a58ae19b0bc350',
    'I0003d19072e011d78347daa8ede63acd',
    'I0003d1a4a5ba11d8860ea464f39e833e',
    'I0003d1a6a5ba11d8860ea464f39e833e',
    'I0003d1a8a5ba11d8860ea464f39e833e',
    'I0003d53074db11d7b5dbefdbeac7aa0d',
    'I0003d560728f11d7a5a58ae19b0bc350',
    'I0003d5c072d911d792e6e58f3e66f41c',
    'I0003ec20723111d78347daa8ede63acd',
    'I0003f2b0725e11d787c8f80b08d85a21',
    'I0003f54072b711d792e6e58f3e66f41c',
    'I0003f8b0a5ba11d8860ea464f39e833e',
    'I0003fa50742d11d79b9bc4eeac1c0b2d',
    'I0003feb071da11d7a07084608af77b15',
    'I000405d0160911d88becacb69499ad1d',
    'I00040950060411d88297fc19561b6a07',
    'I00040ed0721311d7a5a58ae19b0bc350',
    'I00041660723511d7a07084608af77b15',
    'I00041830746b11d797e5f7f2fcbea176',
    'I00041cc0723d11d7b0409d11d16b6b13',
    'I000420f0723611d7b100a463f186e11d',
    'I000426c071cf11d7880af2b8a7a150bc',
    'I00043970726111d7ba84e3942a4b620d',
    'I00043af0c41a11d7858789f8f41f469f',
    'I0004401071ca11d7b100a463f186e11d',
    'I000452c0725c11d7bffff83f52289667',
    'I000462d08bc311d7bb8d85f0ac71b1f3',
    'I00047040725011d7ab54daa4035d65fa',
    'I000470a0729a11d7b100a463f186e11d',
    'I0004773072c711d78ef88cd3014a7f23',
    'I0004794071ed11d7ab54daa4035d65fa',
    'I00048290729811d78347daa8ede63acd',
    'I00049af071da11d7b100a463f186e11d',
    'I0004b040720111d7880af2b8a7a150bc',
    'I0004b4a0721f11d78ef88cd3014a7f23',
    'I0004b9702b4f11d8a0409604c12e4f92',
    'I0004bb7071ad11d7a5a58ae19b0bc350',
    'I0004c3c0726311d78ef88cd3014a7f23',
    'I0004cb90745711d7a658bf569bf0de0b',
    'I0004d490067011d8b893f65b4e54826b',
    'I0004d780749711d79ccbd455e2fa80ef',
    'I0004dc10726911d78347daa8ede63acd',
    'I0004de70729d11d7ba84e3942a4b620d',
    'I0004e040726211d7b0409d11d16b6b13',
    'I0004e71071f011d7b100a463f186e11d',
    'I0004ed70746911d79a8ab5f5a94ee96e',
    'I0004ef7071e211d78bcee6281d031f02',
    'I0004f09072c011d792e6e58f3e66f41c',
    'I0004f0a071fc11d792e6e58f3e66f41c',
    'I0004f240879511d79cf082a8a526bdf9',
    'I0004f3a0744c11d7b433bc7aed88dbc8',
    'I0004f490729411d7bffff83f52289667',
    'I0004fb90724711d7a07084608af77b15',
    'I00050b20721111d7b0409d11d16b6b13',
    'I00050e2071f011d78bcee6281d031f02',
    'I00050e20746111d79b9bc4eeac1c0b2d',
    'I00051380747411d7afb9df8873fee31a',
    'I000518a072b511d78347daa8ede63acd',
    'I000518e0721611d78ef88cd3014a7f23',
    'I00052800725a11d7ba84e3942a4b620d',
    'I00052f00720d11d7947cc0bc28d0837a',
    'I00053200745d11d79a8ab5f5a94ee96e',
    'I00053e90268111d886bdfb192a64ac56',
    'I00054420859711d79001d96d270a074a',
    'I000546f071c911d792e6e58f3e66f41c',
    'I000562c072e111d7ab54daa4035d65fa',
    'I00056d109f7311d7b07dff332e990446',
    'I00056d30746a11d797e5f7f2fcbea176',
    'I00056f30745411d79c33f30f55d9158b',
    'I00057820724411d7b100a463f186e11d',
    'I00057980728311d7a07084608af77b15',
    'I000580e0728011d7ab54daa4035d65fa',
    'I00058271efc011d897339e11b9afd716',
    'I00058d7074dc11d7b371e3b03459763a',
    'I0005944071f911d7947cc0bc28d0837a',
    'I00059910879611d7b396e0d633b35241',
    'I00059ca071eb11d7ab54daa4035d65fa',
    'I00059fd0746011d7b433bc7aed88dbc8',
    'I0005a981efc011d897339e11b9afd716',
    'I0005aaa0eb6311d7b52ae3604baa5d0f',
    'I0005ad60744011d7a94bace56a9eba1c',
    'I0005ae20726311d792e6e58f3e66f41c',
    'I0005b9f071ba11d7b100a463f186e11d',
    'I0005bc001e3711d891fbd2c50ca57005',
    'I0005c8b071b411d7a07084608af77b15',
    'I0005dc2072da11d78bcee6281d031f02',
    'I0005f7a4efc011d897339e11b9afd716',
    'I0005f9e0722f11d796fabc35f7796f7a',
    'I0006073072ae11d7a07084608af77b15',
    'I00061530133611d8aac7dbcabbf65311',
    'I000627f071e211d7a07084608af77b15',
    'I00062d80721a11d7947cc0bc28d0837a',
    'I000633a072c111d7a5a58ae19b0bc350',
    'I000635b0745811d789fed0d41f30a68d',
    'I00063b3072e311d78347daa8ede63acd',
    'I00063bd0728e11d78bcee6281d031f02',
    'I00063e4071fe11d78bcee6281d031f02',
    'I000643d0723611d78ef88cd3014a7f23',
    'I00064b5000b611d88508fb717bde6c05',
    'I00065a80729c11d7a5a58ae19b0bc350',
    'I00066a5071c711d7b0409d11d16b6b13',
    'I00066d50741711d79b9bc4eeac1c0b2d',
    'I000672e071de11d78bcee6281d031f02',
    'I000676e071b211d7880af2b8a7a150bc',
    'I00067a70747111d7a94bace56a9eba1c',
    'I00068860722a11d7ab54daa4035d65fa',
    'I0006a450742b11d7abd288e162f1ee6f',
    'I0006ba7071b111d7bffff83f52289667',
    'I0006c930a76111d78cb8000874f30b44',
    'I0006da10923511d78b148831b06d9b3e',
    'I0006dc10726211d7a5a58ae19b0bc350',
    'I0006e6a0726311d7ab54daa4035d65fa',
    'I0006ef70744c11d79d2ef02eee90521e',
    'I0006f070744111d7abd288e162f1ee6f',
    'I0006fa0071dc11d7b100a463f186e11d',
    'I0006fc60859811d78984a55bb4517c0f',
    'I000708d7044011da9439b076ef9ec4de',
    'I00071b70726811d7a5a58ae19b0bc350',
    'I00071f40748811d79ccbd455e2fa80ef',
    'I00072210f0c511d78788db544ffe8b12',
    'I00072600726911d7bffff83f52289667',
    'I00073890748311d7afb9df8873fee31a',
    'I000746a0d4cd11d79c5ab0511e0c5824',
    'I00077420726911d7947cc0bc28d0837a',
    'I000775b072cd11d787c8f80b08d85a21',
    'I0007802071e511d78bcee6281d031f02',
    'I0007974071d111d7a5a58ae19b0bc350',
    'I0007a8c0724911d796fabc35f7796f7a',
    'I0007aa30743511d7aea3a34f2eb4052a',
    'I0007b280727a11d7b0409d11d16b6b13',
    'I0007b3f0746611d79ccbd455e2fa80ef',
    'I0007b520748011d7afb9df8873fee31a',
    'I0007bf10726511d78ef88cd3014a7f23',
    'I0007cd1071cb11d7b0409d11d16b6b13',
    'I0007d000726e11d7b0409d11d16b6b13',
    'I0007d29833ff11d986b0aa9c82c164c0',
    'I0007d34071ae11d7947cc0bc28d0837a',
    'I0007d730724611d78347daa8ede63acd',
    'I0007de3071f911d7ba84e3942a4b620d',
    'I0007e13071d811d796fabc35f7796f7a',
    'I0007e850727411d78bcee6281d031f02',
    'I0007f1f0742d11d79a8ab5f5a94ee96e',
    'I0007f54072a911d78347daa8ede63acd',
    'I0007f620154811d8b8fd999a64bcc6ae',
    'I00080dd0721011d7bffff83f52289667',
    'I000812a071b411d7a5a58ae19b0bc350',
    'I00081af0726a11d7b100a463f186e11d',
    'I00082b20745011d7a658bf569bf0de0b',
    'I00084300725f11d7ba84e3942a4b620d',
    'I0008449072c311d78ef88cd3014a7f23',
    'I000861b0726d11d7a5a58ae19b0bc350',
    'I0008644072c611d7b0409d11d16b6b13',
    'I000864b0724c11d78347daa8ede63acd',
    'I00087d7071d811d7b0409d11d16b6b13',
    'I00087d70744911d7afb9df8873fee31a',
    'I000886f072a811d787c8f80b08d85a21',
    'I00088cf0726611d792e6e58f3e66f41c',
    'I00088e90747711d7a94bace56a9eba1c',
    'I000890b072d911d787c8f80b08d85a21',
    'I000896f071f811d78347daa8ede63acd',
    'I0008a3a072cc11d7a5a58ae19b0bc350',
    'I0008ad1071ef11d7947cc0bc28d0837a',
    'I0008b170747e11d79ccbd455e2fa80ef',
    'I0008b26072c611d7ba84e3942a4b620d',
    'I0008b540742d11d789fed0d41f30a68d',
    'I0008bf0071ed11d7b0409d11d16b6b13',
    'I0008c100744811d79b9bc4eeac1c0b2d',
    'I0008c96071c911d7a07084608af77b15',
    'I0008d3f071ca11d7a5a58ae19b0bc350',
    'I0008d5e0727811d7a07084608af77b15',
    'I0008e5e071c811d7880af2b8a7a150bc',
    'I0008ea3072aa11d7b100a463f186e11d',
    'I0008ea40dd5211d7b6ffcd773e7967a9',
    'I0008eda0748011d79a8ab5f5a94ee96e',
    'I0008ef70744511d7a94bace56a9eba1c',
    'I0008f6c0729511d7a07084608af77b15',
    'I0008fa80bc4611d7bf8df081d881356f',
    'I00090120727111d787c8f80b08d85a21',
    'I00090390745211d7b433bc7aed88dbc8',
    'I000904e072e411d7a07084608af77b15',
    'I00090520724511d7b100a463f186e11d',
    'I00090ea0adad11d79e6cbe65fd77490b',
    'I00091010729011d78ef88cd3014a7f23',
    'I00092740742911d79a8ab5f5a94ee96e',
    'I000928a0746811d79a8ab5f5a94ee96e',
    'I00092bc072bf11d787c8f80b08d85a21',
    'I00093200a2b211d7acd0000874f30b44',
    'I0009365072c011d78ef88cd3014a7f23',
    'I0009373071cc11d7b100a463f186e11d',
    'I00093dc071f911d792e6e58f3e66f41c',
    'I00094320747d11d7afb9df8873fee31a',
    'I00095410748611d79a8ab5f5a94ee96e',
    'I00095510720a11d796fabc35f7796f7a',
    'I00095fd0723011d7ab54daa4035d65fa',
    'I00096200723f11d7880af2b8a7a150bc',
    'I00096830749311d7afb9df8873fee31a',
    'I00096e30a2b411d781eb000874f30b44',
    'I0009716071e411d78ef88cd3014a7f23',
    'I0009729071fe11d796fabc35f7796f7a',
    'I0009769071d211d78ef88cd3014a7f23',
    'I00097d20180311d8987fae20d218a0bf',
    'I00097f20745a11d7ab5cff2fe4340d11',
    'I000989a072ae11d7947cc0bc28d0837a',
    'I00099c30725711d7a07084608af77b15',
    'I00099e70741311d795e2961f3aa542c2',
    'I0009ac2074dc11d79d22fcdb12bfafec',
    'I0009b720746311d7a94bace56a9eba1c',
    'I0009bb4072af11d796fabc35f7796f7a',
    'I0009c170729211d7ba84e3942a4b620d',
    'I0009c410722711d796fabc35f7796f7a',
    'I0009ca1071e511d7b0409d11d16b6b13',
    'I0009ca3072ce11d7b100a463f186e11d',
    'I0009daf072b211d7a07084608af77b15',
    'I0009ef20746c11d79a8ab5f5a94ee96e',
    'I0009fc80742711d797e5f7f2fcbea176',
    'I0009fca0729f11d792e6e58f3e66f41c',
    'I000a0240721311d78bcee6281d031f02',
    'I000a175072d911d78bcee6281d031f02',
    'I000a1c60744f11d7abd288e162f1ee6f',
    'I000a1ec0721211d78ef88cd3014a7f23',
    'I000a1f9071e211d7ab54daa4035d65fa',
    'I000a2d7072d011d78347daa8ede63acd',
    'I000a2fe0724011d7a5a58ae19b0bc350',
    'I000a35e0746f11d79a8ab5f5a94ee96e',
    'I000a3640724811d7b0409d11d16b6b13',
    'I000a36e071f311d7bffff83f52289667',
    'I000a3ae0743811d7b433bc7aed88dbc8',
    'I000a43d0722811d792e6e58f3e66f41c',
    'I000a463015ef11d88c7bd5cc2418da3e',
    'I000a4770742311d7a658bf569bf0de0b',
    'I000a47d071fc11d7ab54daa4035d65fa',
    'I000a4d60723411d787c8f80b08d85a21',
    'I000a4e00745011d7abd288e162f1ee6f',
    'I000a515072cc11d7b100a463f186e11d',
    'I000a5320a84711d79341000874f30b44',
    'I000a548072d011d7a07084608af77b15',
    'I000a5b20723911d78ef88cd3014a7f23',
    'I000a601072c611d7ab54daa4035d65fa',
    'I000a6450746c11d7afb9df8873fee31a',
    'I000a67a0586611d88987ae5d74e7d237',
    'I000a6a80744f11d7a658bf569bf0de0b',
    'I000a71b071b611d7a07084608af77b15',
    'I000a8070b60c11d78d7ae36da6291c4c',
    'I000a8260725e11d7a5a58ae19b0bc350',
    'I000a8e90f36411d7af718f2bed3b58d8',
    'I000a98f0744c11d7bbd0dd5ae518b214',
    'I000aad40720d11d7880af2b8a7a150bc',
    'I000abd0071fc11d787c8f80b08d85a21',
    'I000abec0728511d78bcee6281d031f02',
    'I000ac02072c411d7b0409d11d16b6b13',
    'I000ac48072e211d7b100a463f186e11d',
    'I000ad400d51811d7b8b189ec09a4f1f2',
    'I000ad95071d611d78347daa8ede63acd',
    'I000addd072dd11d796fabc35f7796f7a',
    'I000ae0b071d311d78ef88cd3014a7f23',
    'I000ae6e0742711d789fed0d41f30a68d',
    'I000aeda0720811d792e6e58f3e66f41c',
    'I000af1c072c511d7b0409d11d16b6b13',
    'I000af4c072a411d7b100a463f186e11d',
    'I000af5c0729911d78347daa8ede63acd',
    'I000af890725311d7a5a58ae19b0bc350',
    'I000aff8072ca11d7b100a463f186e11d',
    'I000b036071b511d7ba84e3942a4b620d',
    'I000b17b071e711d78347daa8ede63acd',
    'I000b18e0747211d7afb9df8873fee31a',
    'I000b2400075e11d8bba4ee3df5595e5e',
    'I000b2470746811d797e5f7f2fcbea176',
    'I000b24a0721c11d787c8f80b08d85a21',
    'I000b2540743811d795e2961f3aa542c2',
    'I000b2df933ff11d986b0aa9c82c164c0',
    'I000b383017be11d89633df6acb652f6c',
    'I000b3be0511c11d8a870d7b8ade616c2',
    'I000b3de072db11d7b0409d11d16b6b13',
    'I000b41c071c611d796fabc35f7796f7a',
    'I000b4a5071dd11d7880af2b8a7a150bc',
    'I000b4a800bd111d88eb89f6c614e0b44',
    'I000b50b071e511d7a07084608af77b15',
    'I000b5310721911d7a5a58ae19b0bc350',
    'I000b58d074e711d795b58681ea3280ca',
    'I000b5e6072ae11d7a5a58ae19b0bc350',
    'I000b5fd0722911d7bffff83f52289667',
    'I000b6570879611d791b5808d2e7078a3',
    'I000b66a071b711d7947cc0bc28d0837a',
    'I000b6b3071fa11d78bcee6281d031f02',
    'I000b6c60748511d79a8ab5f5a94ee96e',
    'I000b7ce0729711d796fabc35f7796f7a',
    'I000b8be0746311d79b9bc4eeac1c0b2d',
    'I000b8eb071ac11d7b0409d11d16b6b13',
    'I000b9040721011d78347daa8ede63acd',
    'I000b96e88f1e11d8af0be6a4d782f601',
    'I000ba00071ff11d7b0409d11d16b6b13',
    'I000ba860746211d795e2961f3aa542c2',
    'I000baf50726811d7a07084608af77b15',
    'I000bb0c071e311d7880af2b8a7a150bc',
    'I000bb220722211d7a07084608af77b15',
    'I000bbe8071e811d7bffff83f52289667',
    'I000bbfa072c611d792e6e58f3e66f41c',
    'I000bcd40745311d7ab5cff2fe4340d11',
    'I000be660742911d797e5f7f2fcbea176',
    'I000be8f0721111d7a07084608af77b15',
    'I000bfae0859711d79858f13fea870308',
    'I000bfda0728d11d78bcee6281d031f02',
    'I000bfda0728d11d7a07084608af77b15',
    'I000bfeb071be11d792e6e58f3e66f41c',
    'I000c071071b011d796fabc35f7796f7a',
    'I000c0c138f1e11d8af0be6a4d782f601',
    'I000c0c1c8f1e11d8af0be6a4d782f601',
    'I000c25e072a711d792e6e58f3e66f41c',
    'I000c33b071e811d78347daa8ede63acd',
    'I000c37b0742d11d7aea3a34f2eb4052a',
    'I000c39a0726a11d78bcee6281d031f02',
    'I000c3b7029a311d9aaecedbddfbb95ea',
    'I000c3b70722f11d78bcee6281d031f02',
    'I000c419072d611d787c8f80b08d85a21',
    'I000c49a0742b11d79b9bc4eeac1c0b2d',
    'I000c4a90727311d7a5a58ae19b0bc350',
    'I000c6180723a11d7b0409d11d16b6b13',
    'I000c634072c311d7b0409d11d16b6b13',
    'I000c6450746511d7abd288e162f1ee6f',
    'I000c6cb071e611d78bcee6281d031f02',
    'I000c6ce0720b11d7bffff83f52289667',
    'I000c72b0741511d7a658bf569bf0de0b',
    'I000c764071f211d7947cc0bc28d0837a',
    'I000c79d0724011d7880af2b8a7a150bc',
    'I000c899529a311d9aaecedbddfbb95ea',
    'I000c89b0032311d89e448639da8914ed',
    'I000c8b20729311d78bcee6281d031f02',
    'I000c8ed084e111d7a5e0e825c1cd135a',
    'I000c9180729b11d796fabc35f7796f7a',
    'I000ca3e0721f11d7a5a58ae19b0bc350',
    'I000caf00728f11d78ef88cd3014a7f23',
    'I000cb44071b911d7a07084608af77b15',
    'I000cb9d071f111d7a07084608af77b15',
    'I000cc48072db11d78347daa8ede63acd',
    'I000cc490721711d7ba84e3942a4b620d',
    'I000cd680721511d792e6e58f3e66f41c',
    'I000cd7b329a311d9aaecedbddfbb95ea',
    'I000ce310720011d7880af2b8a7a150bc',
    'I000ce800c5e811d883e2d13616373e63',
    'I000ce801c5e811d883e2d13616373e63',
    'I000ce80dc5e811d883e2d13616373e63',
    'I000cec9072d011d792e6e58f3e66f41c',
    'I000ced30727b11d7b0409d11d16b6b13',
    'I000cfeca29a311d9aaecedbddfbb95ea',
    'I000d0550725c11d7bffff83f52289667',
    'I000d0d2071df11d78347daa8ede63acd',
    'I000d0eb0724311d792e6e58f3e66f41c',
    'I000d0f1bc5e811d883e2d13616373e63',
    'I000d0f1cc5e811d883e2d13616373e63',
    'I000d0f1ec5e811d883e2d13616373e63',
    'I000d115071d811d7ba84e3942a4b620d',
    'I000d15d072df11d7b100a463f186e11d',
    'I000d22a0722b11d7ba84e3942a4b620d',
    'I000d2cf072cb11d7b100a463f186e11d',
    'I000d30f0729f11d78ef88cd3014a7f23',
    'I000d3622c5e811d883e2d13616373e63',
    'I000d362ac5e811d883e2d13616373e63',
    'I000d3630c5e811d883e2d13616373e63',
    'I000d3633c5e811d883e2d13616373e63',
    'I000d39f0723c11d7b0409d11d16b6b13',
    'I000d432071fe11d7a5a58ae19b0bc350',
    'I000d4520745911d79a8ab5f5a94ee96e',
    'I000d4680722711d792e6e58f3e66f41c';
    FETCH v_rc INTO v_case_uuid;
    WHILE v_rc%FOUND
    LOOP
    v_rows := v_rows +1;
    FETCH v_rc INTO v_case_uuid;
    END LOOP;
    CLOSE v_rc;
    dbms_output.put_line(v_rows);
    end ;

  • Strange behavior with Label#setWrapText(true) in GridPane.

    I've got a strange behavior with a Label, which has setWrapText(true) in a GridPane.
    Check out the sample and click the button.
    You see, that the GridPane suddenly behaves as if it had GridPane.setVGrow and HGrow set for the lblStatus.
    (it takes the full available space).
    Furthermore the first column shrinks to a minimum, so that lblText1 can't display its text anymore.
    Tested with 2.1 GA.
    Any help with that?
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.layout.GridPane;
    import javafx.stage.Stage;
    public class TestApp4 extends Application {
        public static void main(String[] args) {
            launch(args);
        @Override
        public void start(final Stage stage) throws Exception {
            GridPane gridPane = new GridPane();
            gridPane.setPadding(new Insets(2, 2, 2, 2));
            Label lblText1 = new Label();
            lblText1.textProperty().set("Some text");
            Label lblText2 = new Label();
            lblText2.textProperty().set("Some other text");
            Button btnClick = new Button();
            btnClick.textProperty().set("Click me");
            final Label lblStatus = new Label();
            lblStatus.setWrapText(true);
            gridPane.add(lblText1, 0, 0, 1, 1);
            gridPane.add(lblText2, 1, 0);
            gridPane.add(lblStatus, 0, 2, 2, 1);
            gridPane.add(btnClick, 0, 3, 2, 1);
            btnClick.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent actionEvent) {
                    lblStatus.setText("very long text, very long text, very long text, very long text,very long text, very long text");
            gridPane.setGridLinesVisible(true);
            Scene scene = new Scene(gridPane, 300, 300);
            stage.setScene(scene);
            stage.show();
    }Edited by: csh on 19.07.2012 03:35

    It seems the Label doesn't like it, that it is in a GridCell with rowspan = 2
    If it is in a normal cell (no rowspan), it works.
    If I add ColumnConstraints to the gridpane, it kind of works, but the Label still occupies more space than it should.
    Edited by: csh on 19.07.2012 03:51

  • Strange behavior with Bindings??

    Hello to all JavaFX 2 Binding experts,
    I have a strange behavior with Bindings in JavaFX 2.2 (Java 1.7 update 21). Please have a look at the following source code:
    package test;
    import javafx.application.Application;
    import javafx.beans.binding.BooleanBinding;
    import javafx.beans.property.SimpleBooleanProperty;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.fxml.FXML;
    import javafx.fxml.FXMLLoader;
    import javafx.scene.Parent;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.RadioButton;
    import javafx.stage.Stage;
    public class BindingVsProperty extends Application
        @FXML
        private RadioButton opt11;
        @FXML
        private RadioButton opt12;
        @FXML
        private RadioButton opt21;
        @FXML
        private RadioButton opt22;
        @FXML
        private Label lbl11And21;
      @Override
        public void start(Stage arg0) throws Exception
            FXMLLoader l_loader = new FXMLLoader();
            l_loader.setLocation(BindingVsProperty.class.getResource("BindingVsproperty.fxml"));
            l_loader.setController(this);
            l_loader.load();
            Scene l_scene = new Scene((Parent)l_loader.getRoot());
            arg0.setScene(l_scene);
            useBinding1();
            //useBinding2();
            //useBinding3();
            arg0.show();
        private void useBinding1() // NOT WORKING - ChangeListener.changed(..) is not called
            BooleanBinding l_andOpt11Opt21 = opt11.selectedProperty().and(opt21.selectedProperty());
            l_andOpt11Opt21.addListener(new ChangeListener<Boolean>()
                @Override
                public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2)
                    System.out.println("Opt 1.1 AND Opt 2.1 changed to: " + arg2);
        private void useBinding2() // OK - ChangeListener.changed(..) is called
            BooleanBinding l_andOpt11Opt21 = opt11.selectedProperty().and(opt21.selectedProperty());
            lbl11And21.visibleProperty().bind(l_andOpt11Opt21);
            l_andOpt11Opt21.addListener(new ChangeListener<Boolean>()
                @Override
                public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2)
                    System.out.println("Opt 1.1 AND Opt 2.1 changed to: " + arg2);
        private void useBinding3() // NOT WORKING - ChangeListener.changed(..) is not called
            BooleanBinding l_andOpt11Opt21 = opt11.selectedProperty().and(opt21.selectedProperty());
            new SimpleBooleanProperty(false).bind(l_andOpt11Opt21);
            l_andOpt11Opt21.addListener(new ChangeListener<Boolean>()
                @Override
                public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2)
                    System.out.println("Opt 1.1 AND Opt 2.1 changed to: " + arg2);
        public static void main(String[] args)
            launch(args);
    <?xml version="1.0" encoding="UTF-8"?>
    <?import java.lang.*?>
    <?import java.util.*?>
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    <?import javafx.scene.paint.*?>
    <BorderPane id="BorderPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefWidth="371.0" xmlns:fx="http://javafx.com/fxml">
      <center>
        <AnchorPane prefHeight="200.0" prefWidth="200.0">
          <children>
            <Label id="lblAnd" fx:id="lbl11And21" layoutX="82.0" layoutY="121.0" text="Group1 Opt1 AND Group2 Opt1 is true" textFill="#41cc00" visible="false" />
            <RadioButton fx:id="opt21" layoutX="216.0" layoutY="24.0" mnemonicParsing="false" text="Group 2 - Opt 1">
              <toggleGroup>
                <ToggleGroup fx:id="group2" />
              </toggleGroup>
            </RadioButton>
            <RadioButton fx:id="opt22" layoutX="216.0" layoutY="67.0" mnemonicParsing="false" text="Group 2 - Opt 2" toggleGroup="$group2" />
            <RadioButton fx:id="opt11" layoutX="29.0" layoutY="24.0" mnemonicParsing="false" text="Group 1 - Opt 1">
              <toggleGroup>
                <ToggleGroup fx:id="group1" />
              </toggleGroup>
            </RadioButton>
            <RadioButton fx:id="opt12" layoutX="29.0" layoutY="67.0" mnemonicParsing="false" text="Group 1- Opt 2" toggleGroup="$group1" />
          </children>
        </AnchorPane>
      </center>
    </BorderPane>
    What I need for my application is the use case in useBinding1(), i.e., a BooleanBinding where several listeners are attached to. The problem is that I never get a callback in the ChangeListener if one of the RadioButton.selectedProperty() is changed.
    Now I tried what happens if I use the same BooleanBinding for another binding to a property plus the listener, now the listener gets callbacks as expected! (see useBinding2() )
    Than I thought may be Bindings must be bound in order to trigger listeners and tried useBinding3() where I bind the BooleanBinding to a new BooleanProperty, in this case the listener doesn't get callback anymore...
    And now I'm very frustrated and hope that anyone out there can help me to understand this strange behavior.
    Thanks a lot!
    WhiteAntelope

    All these work just fine for me: the listeners are all called as expected. Note that the listener is only invoked when the value of the binding actually changes, which doesn't happen every time a radio button is pressed. (For example, if both buttons are unselected, the binding is false. If one button is selected, the binding remains false and the listener is not invoked. When the second button is selected, the binding becomes true, and the listener is invoked.)

  • Bizzare behavior with RMI using the localhost

    I'm still new to RMI and I'm observing some strange behavior with RMI.
    I'm using RMI as a communication protocol in a client/server database application. Since I don't have access to a network at the moment I was running the application on a single host and using the local host parameter to test my RMI code.
    In my code if I do a naming lookup on the local host and it works as I would expect it to. (Note before this code fragment runs I've all ready started the rmi registry and bound the RemoteDatabase to it.)
    try{
    String name = "rmi://" + "127.0.0.1" +":"+1099+"/RemoteDatabase";
    thedb = (RemoteDB)Naming.lookup(name);
    }catch
    Now if I replace "127.0.0.1" with a garbage value such as "12453" it still works!
    This is not the behavior I expected. I expected that the Naming.lookup would throw a exception of some kind.
    Can any one explain this behavior?
    The reason I would like this to work as I expected is that in my application the IP address string and port number are variables that I allow the user to set through a dialog. If the user puts in a garbage string for the IP address I want to catch the exception and display an appropriate warning dialog to the user. I can't seem to do that since the Naming.lookup() for a garbage IP address doesn't seem to throw any exception that I have been able to detect.
    I've actually observed even stranger behavior. If I use a garbage string such as 124.4.1.2, which is invalid IP address, the Naming.lookup() will throw an exception. If I put in a garbage string such as "aaaaaa" for the IP address the Naming.lookup() throws an exception. This is the behavior I would expect.
    However as I mentioned if I use a string such as "12345" for the IP address the code works! This seemingly inconsistent behavior is driving me nuts so if any of you RMI gurus out there can help me out I would very much appreciate it.
    Thanks in advance.

    Hi, there.
    lookup uses URI parsing so the fact that your using numbers being equivalent to localhost seems to be due to the fact that that is an invalid host according to the javadocs for the getHost primitive attached below(marked the most important parts). In this case returning null is interpreted as absent , therefore => localhost. Nothing about the port! Maybe you can take it from here. Seems you'll have to make some user input validation yourself, in your application. Hope I haven't missed anything.
    Good luck.
    Nuno
    getHost
    public String getHost()Returns the host component of this URI.
    The host component of a URI, if defined, will have one of the following forms:
    A domain name consisting of one or more labels separated by period characters ('.'), optionally followed by a period character. Each label consists of alphanum characters as well as hyphen characters ('-'), though hyphens never occur as the first or last characters in a label.
    The last, or only, label in a domain name begins with an alpha character.
    A dotted-quad IPv4 address of the form digit+.digit+.digit+.digit+, where no digit sequence is longer than three characters and no sequence has a value larger than 255.
    An IPv6 address enclosed in square brackets ('[' and ']') and consisting of hexadecimal digits, colon characters (':'), and possibly an embedded IPv4 address. The full syntax of IPv6 addresses is specified in RFC 2373: IPv6 Addressing Architecture.
    The host component of a URI cannot contain escaped octets, hence this method does not perform any decoding.
    Returns:
    The host component of this URI, or null if the host is undefined
    ********************************************************************

Maybe you are looking for

  • Error in generating a report group in Report Painter

    Hi, I created a report in SAP report painter using transaction code GRR2. I attached the report to an existing group ( 15 reports already in the group), when I generate the group in transaction code GR55 thereu2019s an error message u201CSyntax error

  • Error in transaction code S_ALR_87013611

    Hi All while running the transaction code S_ALR_87013611                                     For  -  Cost Centers: Actual/Plan/Variance    Its not running and flashing a ERROR Message   - Library 1VK does not exist. Please Help

  • SAP Query for the report

    Hi, Can you all help me? Is there any area or a table or query in SAP, which can create a list with the purchase order number (Field name EBELN),supplier(Field name SUPERFIELD) and header text(Field name EDITOR). Please tell the table name that fetch

  • No Fiscal year variant specified

    Hi All, When im trying to exceute funcation module "FKK_FM_GET_FISCAL_YEAR" im encountring with error" No Fiscal year variant specified". Anyone have idea

  • How to create new authorisation object for Transactions?

    Hi, How to create new authorisaton object and how to assign that object on a transaction code? Case -> The transaction code VL01N have the object called V_LIKP_VST under Class "LE_V" that have two auth. fields. one is 'Activity' and other one is "Shi