SG300 ssh strange error: "A client is already connected"

Hi,
I've  got a few SG300-52 switches running software version  1.3.0.62 which I configured for ssh management access with public key  authentication via:
ip ssh server
ip ssh pubkey-auth auto-login
username mgmt password ... privilege 15
crypto key pubkey-chain ssh
user-key mgmt rsa
key-string ...
This is working fine if I connect interactively from my management system with:
ssh -i mgmt_id_rsa mgmt@switch
where mgmt_id_rsa is the name of a file containing the private key.
I get a privileged command prompt as intended, without being asked for a password.
However if I try to pass a command on the ssh command line like this:
ssh -i mgmt_id_rsa mgmt@switch show version
the command just hangs until I hit the Enter key a second time, and then emits the strange message:
Received disconnect from 10.11.12.13: 2:
A client is already connected
(Exactly like that, including the line break after the "2:" and the blank before "A client".)The same happens if I pipe the command I want to send into ssh like this:
echo show version | ssh -i mgmt_id_rsa mgmt@switch
except the error message appears immediately and I don't have to hit Enter a second time.
This is unfortunate as the objective of the whole exercise is to send commands to the switch from a script.
Can anyone shed some light on why this is so? What is that strange message "a client is already connected" trying to tell me? Is that another bug in Cisco's ssh implementation? Ideas for a workaround, anyone?
Thanks,
Tilman
PS: I already asked that question over in the "big business" support community before noticing there's a separate small business section, but got no answer there.
PPS: The real objective of the exercise is to make scripted backups and updates of the switches' configurations, ie. what would be naturally expressed as
scp -i mgmt_id_rsa mgmt@switch:running-config /var/backup/switch.config
and
scp -i mgmt_id_rsa /var/conf/switch.configchange mgmt@switch:running-config
except it doesn't work that way because the SG300's ssh server lacks scp support. Trying to replace that by
ssh -i mgmt_id_rsa mgmt@switch copy running-config scp://server/var/backup/switch.config
and
ssh -i mgmt_id_rsa mgmt@switch copy scp://server/var/conf/switch.configchange running-config
led me straight to the problem above. Just in case someone feels inclined to ask the standard forum question: "Why do you want that anyway?" :-)

Hi all,
I've improved my expect script a bit to:
allow specifying the SSH user and keyfile on the command line
allow sending configuration mode commands
correctly handle very long commands (line wrap) and commands producing no output
Extended usage:
ciscosb-exec confuser@myswitch -i ~/.ssh/confuser_id_rsa -c "ip ssh-client username memyself"
ciscosb-exec confuser@myswitch -i ~/.ssh/confuser_id_rsa "copy scp://myserver/workdir/myswitch.configchange running-config"
The "new and improved" script:
#!/usr/bin/expect
# Script to run an IOS command on a Cisco Small Business Switch via ssh
# Prerequisites:
# - Cisco Sx300 series switch with software version 1.3 or later
# - public key authentication with auto-logon configured
# Usage:
#   ciscosb-exec [] [@]
# Args:
#         username on switch
#         name or IP address of switch
#      command string to execute
# Options:
#   -c          execute in configuration mode
#   -i use SSH private key from
#   -d          activate debugging output
# Result:
#   Switch response will appear on stdout
# debug switches
log_user 0
exp_internal 0
# configurable values
set sshcmd "/usr/bin/ssh -c aes192-cbc"
# end of configurable values
# below matches prompts such as "switch#", "switch>", "switch$"
set prompt "\[>#$\]\ *$"
# getopt implementation snarfed from http://www2.tcl.tk/17342
proc getopt {_argv name {_var ""} {default ""}} {
    upvar 1 $_argv argv $_var var
    set pos [lsearch -regexp $argv ^$name]
    if {$pos>=0} {
        set to $pos
        if {$_var ne ""} {
            set var [lindex $argv [incr to]]
        set argv [lreplace $argv $pos $to]
        return 1
    } else {
        if {[llength [info level 0]] == 5} {set var $default}
        return 0
# parse command line
set configmode [getopt argv -c]
getopt argv -i idfile
if {[getopt argv -d]} {
  log_user 1
  exp_internal 1
if {[llength $argv] != 2} {
  send_user "Usage: ciscosb-exec \[\] \[@\] \"\"\n"
  send_user "Arguments:\n"
  send_user "        target username (default: current user)\n"
  send_user "          target host name or IP address\n"
  send_user "         command string to execute\n"
  send_user "Options:\n"
  send_user "    -c            execute in configuration mode\n"
  send_user "    -i    use SSH private key from \n"
  send_user "    -d            activate debugging output\n"
  exit 1
set target [split [lindex $argv 0] @]
if {[llength $target] == 1} {
  set device [lindex $target 0]
  set userid "$env(USER)"
} elseif {[llength $target] == 2} {
  set userid [lindex $target 0]
  set device [lindex $target 1]
} else {
  send_user "bad target: [lindex $argv 0]\n"
  exit 1
set command [lindex $argv 1]
if {[info exists idfile]} {
  set sshcmd "$sshcmd -i $idfile"
eval "spawn $sshcmd -l $userid $device"
match_max [expr 32 * 1024]
# handle initial noise
set timeout 20
while { 1 } {
  expect {
    # command prompt
    -nocase -re "$prompt"     {break}
    # confirmations (unknown fingerprint etc.)
    -nocase -re "\\(yes/no\\)"  {send "yes\r"}
    # username prompt
    -nocase -re "name:|^login:" {send "$userid\r"}
    # password prompt
    -nocase -re "word:" {send_user "Public key authentication failed\n"; exit}
    # errors
    timeout     {send_user "Timeout waiting for command prompt\n"; exit}
    eof         {send_user "Connect failed: $expect_out(buffer)\n"; exit}
# disable terminal formatting junk
send "terminal datadump\r"
expect {
    -nocase -re "$prompt"     {}
    timeout     {send_user "Timeout waiting for command prompt\n"; exit}
    eof         {send_user "Connection lost: $expect_out(buffer)\n"; exit}
send "terminal width 0\r"
expect {
    -nocase -re "$prompt"     {}
    timeout     {send_user "Timeout waiting for command prompt\n"; exit}
    eof         {send_user "Connection lost: $expect_out(buffer)\n"; exit}
# switch to desired mode
if {$configmode} {
  send "configure terminal\r"
  expect {
    -nocase -re "$prompt"     {}
    timeout     {send_user "Timeout waiting for command prompt\n"; exit}
    eof         {send_user "Connection lost: $expect_out(buffer)\n"; exit}
# actual command may take a long time
set timeout 180
send "$command\r"
expect {
    # skip command echo
    -re "$command\[\r\n\]*"   {exp_continue}
    # answer confirmation request
    -nocase -re " \\(Y/N\\).*\? *$" {
        # send confirmation, skip echo
        send "Y"
        expect -re "Y\[\r\n\]*"
        exp_continue
    # collect response, excluding next prompt
    -re "\r\n"                {send_user "$expect_out(buffer)"; exp_continue}
    -nocase -re "$prompt"     {send "exit\r"}
    timeout     {send_user "Timeout waiting for command prompt\n"; exit}
    eof         {send_user "Connection lost: $expect_out(buffer)\n"; exit}
set timeout 20
expect {
    # second exit needed for logging out from configuration mode
    -nocase -re "$prompt"     {send "exit\r"}
    timeout     {send_user "Timeout waiting for hangup\n"; exit}
    eof         {exit}
expect {
    -nocase -re "$prompt"     {puts "Failed to log out, disconnecting"; exit}
    timeout                   {puts "Timeout waiting for hangup"; exit}
    eof                       {exit}
HTH
Tilman

Similar Messages

  • Can VI server automatically close access for clients' VIs, if one of clients is already connected?

    Can VI server automatically close access for clients' VIs, if one of clients is already connected? and when first client closed reference, open access for other clients' VIs? I mean like when you use web publishing tools. If one user already uses front panel.. other just can wait until first one will finish.

    Please stick to one thread.  Here is the original.

  • Server 2008 TS - some client could not connect to the server

    Hi guys,
    I have a Server 2008 x64 Terminal Server with license server (some machine) and installed device CALs.
    I can connect with Windows 7 client to Terminal Server by RDP (TS assign device CAL to every connected machine automatically) without problem, but I get this error message if I try connection with Motorola (Symbol) MC8080 mobile scanners:
    "Because of a security error, the client could not connect to the remote computer.
    Very that you are logged on the network, and then try connecting again."
    I tried different settings by KB2477176 and activate/deactivate server, but it didn't solve the problem.
    http://support.microsoft.com/kb/2477176/hu
    (These scanners can connecto to another Terminal Server.)
    Is it client or server-side issue?
    Have you another idee?
    Regards,
    Gabor

    Hi,
    Thank you for posting in Windows Server Forum.
    Please again cross check whether you have properly configured certificate attached with the server. Because the error which you are facing is generally due to corrupted certificate on server side. As you have already tried, I again want you to back up the registry
    setting and then remove the X509 certificate registry key under below mention path, restart the computer and reactivate the RD Licensing Server. 
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\RCM
    You can also refer below article for additional information.
    How to resolve the issue “Remote Desktop Disconnected” or “Unable to
    Connect to Remote Desktop (Terminal Server)”
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Java.lang.IllegalStateException:Already Connected

    HI everyine,
    I trying to send some data from an applet to a servlet: Here is code for the applet:try{
         System.out.println("in the try for getData \n");
         URL url = new URL("http://myip/app/servlet/getData");
         System.out.println("the url connection to getData done \n");
        URLConnection servletConnection2 =url.openConnection();
        ///////////////I get  error java.lang.IllegalStateException:Already Connected  at this point //////
        servletConnection2.setDoInput(false);
        servletConnection2.setDoOutput(true);
       servletConnection2.setUseCaches (false);
       servletConnection2.setDefaultUseCaches (false);
       servletConnection2.connect();
      servletConnection2.setRequestProperty("Content-Type","application/octet-stream");
    ObjectOutputStream oos = new ObjectOutputStream(servletConnection2.getOutputStream());
         oos.writeObject(userID);
         oos.flush();
         System.out.println("the userID was flushed");
         oos.close();
    catch(Exception e)
         System.out.println("Error in sending data to getData Servlet \n" +e);
    }Here is what I have in my servlet:
    public class getData extends HttpServlet {
    public void doGet(HttpServletRequest request, HttpServletResponse response)
         throws ServletException, IOException {
                            String username ="";
         try
       ObjectInputStream in = new ObjectInputStream(request.getInputStream());
         username = (String)in.readObject();
         System.out.println("the username received from ui is \n" +username);
         in.close();
    catch (IOException e)
    System.out.println("error1" + e);
    catch (ClassNotFoundException cnfe)
    {                                        {System.out.println("error2");
    public void doPost(HttpServletRequest request, HttpServletResponse response)
         throws ServletException, IOException {
                         doGet(request,response);
    }When I try to access this applet I keep getting an error :
    java.lang.IllegalStateException: Already connected
    I cannot understand why this could eb happening ..I have been stuck on this problem for quite some time now.....
    Thanks,
    G.

    i have try your code and it fails also.
    but when i add the servletConnection.getInputStream() in the applet it is ok (although i didn't write the doGet() in the servlet to reply it , but it seems that, in your orginal code, the applet didn't connect to the servlet actually)
    the following is my applet and servlet code which is successful.
    public class ui4 extends JApplet
    public void init()
    String userID="gaurj";
    String servletStr ="http://192.168.0.154:8080/wmshitClient/test";
    try
    URL getDataservlet = new URL( servletStr );
    URLConnection servletConnection = getDataservlet.openConnection();
    System.out.println("the opencon was successful");
         servletConnection.setDoInput(true);
         servletConnection.setDoOutput(true);
         servletConnection.setUseCaches (false);
         servletConnection.setDefaultUseCaches (false);
    servletConnection.connect();
         ObjectOutputStream outputToServlet = new ObjectOutputStream(servletConnection.getOutputStream());
         outputToServlet.writeObject(userID);
         System.out.println("object written");
         outputToServlet.flush();
         System.out.println("the userID was flushed");
         outputToServlet.close();
    // i don't know why, but add the following code make it success
         String message="";
         InputStreamReader reader=new InputStreamReader( servletConnection.getInputStream());
         BufferedReader in=new BufferedReader(reader);
         message=in.readLine();
         while(message!=null){
              if(message!=null)
                   message=in.readLine();
    catch(Exception e)
         System.out.println("Error in sending data to getData Servlet \n" +e);
    public class test extends HttpServlet {
    String userID=null;
    public void init(ServletConfig config) throws ServletException {
         super.init(config);
         System.out.println("in the test!!!");
    public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
         System.out.println("the");
         ObjectInputStream inputFromApplet = null;
         try
         // get an input stream from the applet
         inputFromApplet = new ObjectInputStream(request.getInputStream());
    userID = (String)inputFromApplet.readObject();
    System.out.println("the userID receved from applet is " +userID);
              inputFromApplet.close();          }
         catch(Exception e)
         // handle exception
    Message was edited by:
    orange_ego

  • Sample java client not running--showing a strange error-- help urgently

    Hi,
    I have followed all the steps, given in JDevloper help, to create and deploy an EJB onto a 9ias server and I have been successful in creating the EJB and deploying it from the JDevloper machine to 9ias machine.My JDevloper is on one machine and 9ias is on another. After deploying when I am creating a sample java client, as given in the JDevloper help file, it gives a very strange error
    java.lang.NullPointerException
         void Samplemypackage1.MySessionEJB1Client.main(java.lang.String[])
    Process exited with exit code 0.
    I have tried a lot but it's not happening. Is it becuase
    1. 9ias and JDevloper should be on the same machine
    2. some configurational changes need to be done in the settings
    3. jdk1.3.1 is not compatible with JDevloper.
    I am enclosing the code snippet for your quick reference.
    package Samplemypackage1;
    import java.util.Hashtable;
    //import javax.rmi.PortableRemoteObject;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import mypackage1.MySessionEJB1;
    import mypackage1.MySessionEJB1Home;
    public class MySessionEJB1Client
    public static void main(String [] args)
    MySessionEJB1Client mySessionEJB1Client = new MySessionEJB1Client();
    try
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.rmi.RMIInitialContextFactory");
    env.put(Context.SECURITY_PRINCIPAL, "admin");
    env.put(Context.SECURITY_CREDENTIALS, "admin");
    env.put(Context.PROVIDER_URL, "ormi://9ias:23791/MySessionEJB1");
    Context ctx = new InitialContext(env);
    MySessionEJB1Home mySessionEJB1Home = (MySessionEJB1Home)ctx.lookup("MySessionEJB1");
    MySessionEJB1 mySessionEJB1;
    // Use one of the create() methods below to create a new instance
    mySessionEJB1 = mySessionEJB1Home.create();
    // Call any of the Remote methods below to access the EJB
    System.out.println(mySessionEJB1.calc("om sri"));
    catch(NullPointerException ne)
    ne.printStackTrace();
    catch(Throwable ex)
    ex.printStackTrace();
    When I tried to debug the program I found that the line " mySessionEJB1 = mySessionEJB1Home.create()" returns a null. I really fail to understand as to why it is happening.
    Please help me.
    Thankx

    That's strange. home.create() should never return a null.
    Do you see any exception trace on the server side?
    Do you have the same version of oc4j.jar on client and server machine? Which version of Jdeveloper and 9iAs are you using?
    Try copying oc4j.jar from the server machine to client machine and use that to connect to the bean.
    HTH
    Dhiraj

  • Strange error while deploying application client

    Yesterday my app client was working perfectly. I worked on a different computer though but today as I wanted to test my app client again I encountered this strange error:
    Copying 1 file to G:\StressLabo\StressLabo-app-client\dist
    run-tool:
    23-feb-2007 12:51:44 com.sun.enterprise.appclient.MainWithModuleSupport <init>
    WARNING: ACC003: Application threw an exception.
    java.lang.UnsupportedClassVersionError: Bad version number in .class file
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
            at java.lang.Class.getDeclaredFields0(Native Method)
            at java.lang.Class.privateGetDeclaredFields(Class.java:2259)
            at java.lang.Class.getDeclaredField(Class.java:1852)
            at com.sun.enterprise.deployment.util.DefaultDOLVisitor.acceptWithCL(DefaultDOLVisitor.java:349)
            at com.sun.enterprise.deployment.util.EjbBundleValidator.accept(EjbBundleValidator.java:196)
            at com.sun.enterprise.deployment.ApplicationClientDescriptor.visit(ApplicationClientDescriptor.java:620)
            at com.sun.enterprise.deployment.archivist.AppClientArchivist.validate(AppClientArchivist.java:148)
            at com.sun.enterprise.appclient.AppClientInfo.completeInit(AppClientInfo.java:177)
            at com.sun.enterprise.appclient.AppClientInfoFactory.buildAppClientInfo(AppClientInfoFactory.java:136)
            at com.sun.enterprise.appclient.MainWithModuleSupport.<init>(MainWithModuleSupport.java:287)
            at com.sun.enterprise.appclient.Main.main(Main.java:180)
    Exception in thread "main" java.lang.RuntimeException: java.lang.UnsupportedClassVersionError: Bad version number in .class file
            at com.sun.enterprise.appclient.MainWithModuleSupport.<init>(MainWithModuleSupport.java:364)
            at com.sun.enterprise.appclient.Main.main(Main.java:180)
    Caused by: java.lang.UnsupportedClassVersionError: Bad version number in .class file
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
            at java.lang.Class.getDeclaredFields0(Native Method)
            at java.lang.Class.privateGetDeclaredFields(Class.java:2259)
            at java.lang.Class.getDeclaredField(Class.java:1852)
            at com.sun.enterprise.deployment.util.DefaultDOLVisitor.acceptWithCL(DefaultDOLVisitor.java:349)
            at com.sun.enterprise.deployment.util.EjbBundleValidator.accept(EjbBundleValidator.java:196)
            at com.sun.enterprise.deployment.ApplicationClientDescriptor.visit(ApplicationClientDescriptor.java:620)
            at com.sun.enterprise.deployment.archivist.AppClientArchivist.validate(AppClientArchivist.java:148)
            at com.sun.enterprise.appclient.AppClientInfo.completeInit(AppClientInfo.java:177)
            at com.sun.enterprise.appclient.AppClientInfoFactory.buildAppClientInfo(AppClientInfoFactory.java:136)
            at com.sun.enterprise.appclient.MainWithModuleSupport.<init>(MainWithModuleSupport.java:287)
            ... 1 more
    Java Result: 1I really don't know what may be causing this and I was hoping someone knows the answer and how to solve it?

    Hello,
    My first though is that your application has been compiled with a newer version of the java compiler on that computer.
    So, try to use the same jdk.
    Regards,
    Sebastien Degardin
    Java EE Architect

  • Error "Version 3.1.04063 of the Cisco AnyConnect Secure Mobility Client is already installed" - help !

    hi,
    I've tried to install AnyConnect Secure Mobility Client on my computer (Mac OS 10.6.8), I've never installed it before on this computer, however when I want to install  i got the message
    "Version 3.1.04063 of the Cisco AnyConnect Secure Mobility Client is already installed"
    I would be thankful if anyone could help me with this problem !!!

    Would I be correct in assuming that you are trying to do a manual install of the AnyConnect client when you get this error? Have you ever used this MAC to connect to an ASA and to establish a VPN? If so it is quite likely that AnyConnect was installed in that on line session and does not require a manual install.
    HTH
    Rick

  • Strange error in APP server installation

    Hi All,
    We installed Oracle Application server Version 10.1.2.3.0 in E drive
    Oracle Home: E:\oracle\FRHome_1
    While testing we get following errors.
    Java Plug-in 1.6.0_26
    Using JRE version 1.6.0_26-b03 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\log2kor
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.3
    Exception in thread "thread applet-oracle.forms.engine.Main-1" java.lang.NoSuchMethodError: oracle.ewt.util.BIDIText.setDigitSubstitution(I)V
         at oracle.forms.engine.Runform.onUpdate(Unknown Source)
         at oracle.forms.engine.Runform.onUpdateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)If I remove the ewt jar , I get a strange error Error open Error opening Oracle*Terminal file C:\Oracle\Product\OracleMidTier10gR2\Forms\pc_tastatur.res . If Appserver is installed in E drive why there is a hard-coded values like this*
    C:\Oracle\Product\OracleMidTier10gR2\Forms\*
    Regards,
    Lokanath
    Solution :-> Old config was copied so removed.
    Edited by: Lokanath Giri on १८ जनवरी, २०१२ ११:०० पूर्वाह्न

    Assuming that you are following the written instructions available at http://docs.oracle.com that walk you through the install. And assuming you installed the correct versions of libraries. And assuming you set permissions correctly.
    I'd suggest metalink and opening an SR.
    If you didn't follow the docs ... rm -rf would be a good place to start.

  • Strange error with xml publisher

    I was testing sub-templates on a clone of our production environment and encountered a strange error. When I run the concurrent program I get an xml publisher error and then when I do a preview in xml publisher I also get an error. These are the exact same templates that are running on are training environment with out any issue. I put an SR in with oracle and they asked me to check the status of patches. We looked at the patches on all environments and they are exactly the same. We are running Xml publisher 5.6.2., with that said oracle still thinks it has to do with a patch and have told our DBA that he needs to apply a patch for xml publisher 5.6.3 When we applied this patch it broke the two test environments that it was tested on we are still waiting for oracle to get back with use on this issue. I really do not believe it is a patch error since it works on training and the there is no difference between the patch history on training and the other environments. I am including the two errors and the templates, if you have the time and could look at the errors may be you can see what is going on. The first error is from the xml publisher preview and an the second is from the concurrent program.
    Thank You,
    Russell E Cowan
    XML Publisher Preview Error
    java.lang.NullPointerException at oracle.apps.xdo.oa.util.CoreHelper.escapeBrackets(CoreHelper.java:549) at oracle.apps.xdo.oa.util.CoreHelper.getExceptionXML(CoreHelper.java:580) at oracle.apps.xdo.oa.util.CoreHelper.writeExceptionDocument(CoreHelper.java:661) at oracle.apps.xdo.oa.util.CoreHelper.writeExceptionDocument(CoreHelper.java:637) at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:6205) at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3555) at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3614) at oracle.apps.xdo.oa.template.server.TemplatesAMImpl.processTemplate(TemplatesAMImpl.java:2135) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:189) at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:152) at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:721) at oracle.apps.xdo.oa.template.webui.TemplateGeneralCO.previewTemplate(TemplateGeneralCO.java:735) at oracle.apps.xdo.oa.template.webui.TemplateGeneralCO.processRequest(TemplateGeneralCO.java:158) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095) at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353) at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418) at oa_html._OA._jspService(_OA.java:88) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162) at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187) at oa_html._OA._jspService(_OA.java:98) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456) at org.apache.jserv.JServConnection.run(JServConnection.java:294) at java.lang.Thread.run(Thread.java:534)
    Concurrent Program Error.
    XML Publisher: Version : 11.5.0 - Development
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOREPPB module: XML Report Publisher
    Current system time is 21-JUN-2007 09:18:06
    XML Report Publisher 5.0
    Updating request description
    Waiting for XML request
    Retrieving XML request information
    Preparing parameters
    Process template
    [062107_091809594][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [062107_091809595][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [062107_091809595][][EXCEPTION] [DEBUG] [IA_TOP]:[d01/oracle/devlappl/ia/11.5.0]
    [062107_091809595][][EXCEPTION] [DEBUG] [DISPLAY_LANGUAGE]:[US]
    [062107_091809595][][EXCEPTION] [DEBUG] [PA_TOP]:[d01/oracle/devlappl/pa/11.5.0]
    [062107_091809595][][EXCEPTION] [DEBUG] [CONTEXT_NAME]:[DEVL_prometheus]
    [062107_091809595][][EXCEPTION] [DEBUG] [PLATFORM]:[LINUX]
    [062107_091809595][][EXCEPTION] [DEBUG] [FNDNAM]:[APPS]
    [062107_091809595][][EXCEPTION] [DEBUG] [CUE_TOP]:[d01/oracle/devlappl/cue/11.5.0]
    [062107_091809595][][EXCEPTION] [DEBUG] [CSI_TOP]:[d01/oracle/devlappl/csi/11.5.0]
    [062107_091809595][][EXCEPTION] [DEBUG] [EDR_TOP]:[d01/oracle/devlappl/edr/11.5.0]
    [062107_091809595][][EXCEPTION] [DEBUG] [QRM_TOP]:[d01/oracle/devlappl/qrm/11.5.0]
    [062107_091809596][][EXCEPTION] [DEBUG] [NLS_SORT]:[BINARY]
    [062107_091809596][][EXCEPTION] [DEBUG] [PO_TOP]:[d01/oracle/devlappl/po/11.5.0]
    [062107_091809596][][EXCEPTION] [DEBUG] [APPLUSR]:[usrxit]
    [062107_091809596][][EXCEPTION] [DEBUG] [FND_JDBC_PLSQL_RESET]:[false]
    [062107_091809596][][EXCEPTION] [DEBUG] [ASF_TOP]:[d01/oracle/devlappl/asf/11.5.0]
    [062107_091809596][][EXCEPTION] [DEBUG] [CUS_TOP]:[d01/oracle/devlappl/cus/11.5.0]
    [062107_091809597][][EXCEPTION] [DEBUG] [FORMS60_RTI_DIR]:[d01/oracle/devlcomn/admin/log/DEVL_prometheus]
    [062107_091809601][][EXCEPTION] [DEBUG] [PSB_TOP]:[d01/oracle/devlappl/psb/11.5.0]
    [062107_091809601][][EXCEPTION] [DEBUG] [CHMOD]:[chmod]
    [062107_091809601][][EXCEPTION] [DEBUG] [ADJVAPRG]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/bin/java]
    [062107_091809601][][EXCEPTION] [DEBUG] [ORAPLSQLLOADPATH]:[d01/oracle/devlappl/au/11.5.0/graphs]
    [062107_091809601][][EXCEPTION] [DEBUG] [PCCFLAGS]:[include=$(PCCINC) ireclen=161 sqlcheck=none dbms=v6]
    [062107_091809601][][EXCEPTION] [DEBUG] [GMF_TOP]:[d01/oracle/devlappl/gmf/11.5.0]
    [062107_091809601][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=PROMETHEUS.truecos.com)(PORT=1525)))(CONNECT_DATA=(SID=DEVL)))]
    [062107_091809601][][EXCEPTION] [DEBUG] [BEN_TOP]:[d01/oracle/devlappl/ben/11.5.0]
    [062107_091809601][][EXCEPTION] [DEBUG] [IEO_TOP]:[d01/oracle/devlappl/ieo/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [APPLMSG]:[mesg]
    [062107_091809602][][EXCEPTION] [DEBUG] [AST_TOP]:[d01/oracle/devlappl/ast/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [ORACLE_HOME]:[d01/oracle/devlora/8.0.6]
    [062107_091809602][][EXCEPTION] [DEBUG] [FPT_TOP]:[d01/oracle/devlappl/fpt/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [OTA_TOP]:[d01/oracle/devlappl/ota/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [PSP_TOP]:[d01/oracle/devlappl/psp/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [OKE_TOP]:[d01/oracle/devlappl/oke/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [IBU_TOP]:[d01/oracle/devlappl/ibu/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [FORMS60_CATCHTERM]:[1]
    [062107_091809602][][EXCEPTION] [DEBUG] [DT_TOP]:[d01/oracle/devlappl/dt/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [JL_TOP]:[d01/oracle/devlappl/jl/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [LANG_CODE]:[US]
    [062107_091809603][][EXCEPTION] [DEBUG] [OPI_TOP]:[d01/oracle/devlappl/opi/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [IAS_CONFIG_HOME]:[d01/oracle/devlora/iAS]
    [062107_091809603][][EXCEPTION] [DEBUG] [PN_TOP]:[d01/oracle/devlappl/pn/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [AZ_TOP]:[d01/oracle/devlappl/az/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [APPLPTMP]:[usr/tmp]
    [062107_091809603][][EXCEPTION] [DEBUG] [GSM_FLAG]:[ON]
    [062107_091809603][][EXCEPTION] [DEBUG] [FORMS60_PATH]:[d01/oracle/devlappl/au/11.5.0/resource:/d01/oracle/devlappl/au/11.5.0/resource/stub]
    [062107_091809603][][EXCEPTION] [DEBUG] [OKS_TOP]:[d01/oracle/devlappl/oks/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [PSA_TOP]:[d01/oracle/devlappl/psa/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [FORMS60_TIMEOUT]:[5]
    [062107_091809603][][EXCEPTION] [DEBUG] [TK_PRINT_STATUS]:[echo %n is valid]
    [062107_091809603][][EXCEPTION] [DEBUG] [FA_TOP]:[d01/oracle/devlappl/fa/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [ZFA_TOP]:[d01/oracle/devlappl/zfa/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [OA_MEDIA]:[d01/oracle/devlcomn/java/oracle/apps/media]
    [062107_091809603][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [062107_091809604][][EXCEPTION] [DEBUG] [EC_TOP]:[d01/oracle/devlappl/ec/11.5.0]
    [062107_091809604][][EXCEPTION] [DEBUG] [HXT_TOP]:[d01/oracle/devlappl/hxt/11.5.0]
    [062107_091809604][][EXCEPTION] [DEBUG] [LD_ASSUME_KERNEL]:[2.4.19]
    [062107_091809604][][EXCEPTION] [DEBUG] [OA_HTML]:[d01/oracle/devlcomn/html]
    [062107_091809604][][EXCEPTION] [DEBUG] [GME_TOP]:[d01/oracle/devlappl/gme/11.5.0]
    [062107_091809604][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [062107_091809604][][EXCEPTION] [DEBUG] [AK_TOP]:[d01/oracle/devlappl/ak/11.5.0]
    [062107_091809604][][EXCEPTION] [DEBUG] [RESP_ID]:[21623]
    [062107_091809604][][EXCEPTION] [DEBUG] [ME_TOP]:[d01/oracle/devlappl/me/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [PWD]:[d01/oracle/devlcomn/admin/log/DEVL_prometheus]
    [062107_091809605][][EXCEPTION] [DEBUG] [JTF_TOP]:[d01/oracle/devlappl/jtf/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [COMMON_TOP]:[d01/oracle/devlcomn]
    [062107_091809605][][EXCEPTION] [DEBUG] [BIS_TOP]:[d01/oracle/devlappl/bis/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [FORMS60_APPSLIBS]:[APPCORE FNDSQF APPDAYPK APPFLDR GLCORE HR_GEN HR_SPEC ARXCOVER]
    [062107_091809605][][EXCEPTION] [DEBUG] [MFG_TOP]:[d01/oracle/devlappl/mfg/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [FND_TOP]:[d01/oracle/devlappl/fnd/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [GMS_TOP]:[d01/oracle/devlappl/gms/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [SSP_TOP]:[d01/oracle/devlappl/ssp/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [LD_LIBRARY_PATH]:[d01/oracle/devlora/8.0.6/network/jre11/lib/i686/native_threads:/d01/oracle/devlora/8.0.6/network/jre11/lib/linux/native_threads:/d01/oracle/devlappl/cz/11.5.0/bin:/d01/oracle/devlora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib]
    [062107_091809605][][EXCEPTION] [DEBUG] [FORMS60_RESTRICT_ENTER_QUERY]:[TRUE]
    [062107_091809606][][EXCEPTION] [DEBUG] [CP]:[cp]
    [062107_091809606][][EXCEPTION] [DEBUG] [OKR_TOP]:[d01/oracle/devlappl/okr/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [ADJREOPTS]:[-Xmx512M]
    [062107_091809606][][EXCEPTION] [DEBUG] [IBE_TOP]:[d01/oracle/devlappl/ibe/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [OZP_TOP]:[d01/oracle/devlappl/ozp/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [FORMS60_LOV_MINIMUM]:[1000]
    [062107_091809606][][EXCEPTION] [DEBUG] [TWO_TASK]:[DEVL]
    [062107_091809606][][EXCEPTION] [DEBUG] [GRAPHICS60_PATH]:[d01/oracle/devlappl/au/11.5.0/graphs]
    [062107_091809606][][EXCEPTION] [DEBUG] [CC]:[cc]
    [062107_091809606][][EXCEPTION] [DEBUG] [FORMS60_OUTPUT]:[d01/oracle/devlcomn/temp]
    [062107_091809606][][EXCEPTION] [DEBUG] [MYAPPSORA]:[d01/oracle/devlappl/APPSDEVL_prometheus.env]
    [062107_091809606][][EXCEPTION] [DEBUG] [IGI_TOP]:[d01/oracle/devlappl/igi/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [GMD_TOP]:[d01/oracle/devlappl/gmd/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [OA_DOC]:[d01/oracle/devlcomn/doc]
    [062107_091809606][][EXCEPTION] [DEBUG] [IEM_TOP]:[d01/oracle/devlappl/iem/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_FREE_MEM]:[TRUE]
    [062107_091809606][][EXCEPTION] [DEBUG] [DOM_TOP]:[d01/oracle/devlappl/dom/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [GL_TOP]:[d01/oracle/devlappl/gl/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [OKC_TOP]:[d01/oracle/devlappl/okc/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [PRP_TOP]:[d01/oracle/devlappl/prp/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [ENI_TOP]:[d01/oracle/devlappl/eni/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [CNTL_BREAK]:[ON]
    [062107_091809607][][EXCEPTION] [DEBUG] [CSF_TOP]:[d01/oracle/devlappl/csf/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [XML_REPORTS_XENVIRONMENT]:[d01/oracle/devlora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb]
    [062107_091809607][][EXCEPTION] [DEBUG] [FORMS60_OAM_FRD]:[OFF]
    [062107_091809607][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[FALSE]
    [062107_091809607][][EXCEPTION] [DEBUG] [IGW_TOP]:[d01/oracle/devlappl/igw/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [AX_TOP]:[d01/oracle/devlappl/ax/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [XNS_TOP]:[d01/oracle/devlappl/xns/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [PCCINC]:[. include=$(FND_TOP)/include include=$(ORACLE_HOME)/precomp/public]
    [062107_091809607][][EXCEPTION] [DEBUG] [APPLBIN]:[bin]
    [062107_091809607][][EXCEPTION] [DEBUG] [ORACLE_LOCALPREFERENCE]:[d01/oracle/devlora/8.0.6/tools/admin]
    [062107_091809607][][EXCEPTION] [DEBUG] [DB_HOST]:[prometheus.truecos.com]
    [062107_091809607][][EXCEPTION] [DEBUG] [CUP_TOP]:[d01/oracle/devlappl/cup/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [JTS_TOP]:[d01/oracle/devlappl/jts/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [HOME]:[home/applmgr]
    [062107_091809608][][EXCEPTION] [DEBUG] [APPLFENV]:[DEVL_prometheus.env]
    [062107_091809608][][EXCEPTION] [DEBUG] [APPLSAV]:[save]
    [062107_091809608][][EXCEPTION] [DEBUG] [BIC_TOP]:[d01/oracle/devlappl/bic/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [FORMS60_LOV_WEIGHT]:[16]
    [062107_091809608][][EXCEPTION] [DEBUG] [FORMS60_BLOCKING_LONGLIST]:[FALSE]
    [062107_091809608][][EXCEPTION] [DEBUG] [IPD_TOP]:[d01/oracle/devlappl/ipd/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [WIP_TOP]:[d01/oracle/devlappl/wip/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [CE_TOP]:[d01/oracle/devlappl/ce/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [ZSA_TOP]:[d01/oracle/devlappl/zsa/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [APPLRGT]:[regress]
    [062107_091809608][][EXCEPTION] [DEBUG] [FRM_TOP]:[d01/oracle/devlappl/frm/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [VEA_TOP]:[d01/oracle/devlappl/vea/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [RHX_TOP]:[d01/oracle/devlappl/rhx/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [APPL_CPLEX_LICDIR]:[d01/oracle/devlappl/admin/cplex]
    [062107_091809609][][EXCEPTION] [DEBUG] [OKB_TOP]:[d01/oracle/devlappl/okb/11.5.0]
    [062107_091809609][][EXCEPTION] [DEBUG] [APPLINC]:[include]
    [062107_091809609][][EXCEPTION] [DEBUG] [CUA_TOP]:[d01/oracle/devlappl/cua/11.5.0]
    [062107_091809609][][EXCEPTION] [DEBUG] [APPLRGF]:[d01/oracle/devlcomn/rgf/DEVL_prometheus]
    [062107_091809609][][EXCEPTION] [DEBUG] [OAH_TOP]:[d01/oracle/devlcomn]
    [062107_091809609][][EXCEPTION] [DEBUG] [CSE_TOP]:[d01/oracle/devlappl/cse/11.5.0]
    [062107_091809609][][EXCEPTION] [DEBUG] [ORACLE_TERM]:[vt220]
    [062107_091809609][][EXCEPTION] [DEBUG] [APPL_SERVER_ID]:[26A38536E15E1B91E040000A0A7C52FE19410635741979075569405609006925]
    [062107_091809609][][EXCEPTION] [DEBUG] [RLA_TOP]:[d01/oracle/devlappl/rla/11.5.0]
    [062107_091809609][][EXCEPTION] [DEBUG] [RG_TOP]:[d01/oracle/devlappl/rg/11.5.0]
    [062107_091809609][][EXCEPTION] [DEBUG] [CS_TOP]:[d01/oracle/devlappl/cs/11.5.0]
    [062107_091809609][][EXCEPTION] [DEBUG] [CFLAGS]:[$(INCLUDE_FLAGS) -Dlinux -DLINUX -DNLS_ASIA -D_GNU_SOURCE]
    [062107_091809610][][EXCEPTION] [DEBUG] [HXC_TOP]:[d01/oracle/devlappl/hxc/11.5.0]
    [062107_091809610][][EXCEPTION] [DEBUG] [RESP_APPL_ID]:[660]
    [062107_091809610][][EXCEPTION] [DEBUG] [INV_TOP]:[d01/oracle/devlappl/inv/11.5.0]
    [062107_091809610][][EXCEPTION] [DEBUG] [INCLUDE_FLAGS]:[-I. -I$(FND_TOP)/include -I$(ORACLE_HOME)/precomp/public -I$(ORACLE_HOME)/rdbms/demo]
    [062107_091809610][][EXCEPTION] [DEBUG] [FORMS60_TRACE_PATH]:[d01/interfaces/TEST]
    [062107_091809610][][EXCEPTION] [DEBUG] [AF_CLASSPATH]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//lib/dt.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//lib/tools.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//jre/lib/charsets.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//jre/lib/rt.jar:/d01/oracle/devlcomn/java/appsborg2.zip:/d01/oracle/devlcomn/java/apps.zip:/d01/oracle/devlora/8.0.6/forms60/java:/d01/oracle/devlcomn/java]
    [062107_091809610][][EXCEPTION] [DEBUG] [APPLIMG]:[images]
    [062107_091809610][][EXCEPTION] [DEBUG] [IBC_TOP]:[d01/oracle/devlappl/ibc/11.5.0]
    [062107_091809610][][EXCEPTION] [DEBUG] [CSS_TOP]:[d01/oracle/devlappl/css/11.5.0]
    [062107_091809610][][EXCEPTION] [DEBUG] [ASP_TOP]:[d01/oracle/devlappl/asp/11.5.0]
    [062107_091809610][][EXCEPTION] [DEBUG] [AF_JRE_TOP]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/]
    [062107_091809610][][EXCEPTION] [DEBUG] [XNC_TOP]:[d01/oracle/devlappl/xnc/11.5.0]
    [062107_091809611][][EXCEPTION] [DEBUG] [WSM_TOP]:[d01/oracle/devlappl/wsm/11.5.0]
    [062107_091809611][][EXCEPTION] [DEBUG] [APPLREP]:[reports]
    [062107_091809611][][EXCEPTION] [DEBUG] [ENG_TOP]:[d01/oracle/devlappl/eng/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [PQP_TOP]:[d01/oracle/devlappl/pqp/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [CSD_TOP]:[d01/oracle/devlappl/csd/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [WPS_TOP]:[d01/oracle/devlappl/wps/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [APPLREG]:[regress]
    [062107_091809613][][EXCEPTION] [DEBUG] [GMP_TOP]:[d01/oracle/devlappl/gmp/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [062107_091809613][][EXCEPTION] [DEBUG] [FPA_TOP]:[d01/oracle/devlappl/fpa/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [OKO_TOP]:[d01/oracle/devlappl/oko/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [CUN_TOP]:[d01/oracle/devlappl/cun/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [DDD_TOP]:[d01/oracle/devlappl/ddd/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [CSR_TOP]:[d01/oracle/devlappl/csr/11.5.0]
    [062107_091809614][][EXCEPTION] [DEBUG] [PRINTER]:[noprint]
    [062107_091809614][][EXCEPTION] [DEBUG] [IGF_TOP]:[d01/oracle/devlappl/igf/11.5.0]
    [062107_091809614][][EXCEPTION] [DEBUG] [GMA_TOP]:[d01/oracle/devlappl/gma/11.5.0]
    [062107_091809614][][EXCEPTION] [DEBUG] [APPL_TOP]:[d01/oracle/devlappl]
    [062107_091809614][][EXCEPTION] [DEBUG] [BNE_TOP]:[d01/oracle/devlappl/bne/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [AMW_TOP]:[d01/oracle/devlappl/amw/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [MST_TOP]:[d01/oracle/devlappl/mst/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [PMI_TOP]:[d01/oracle/devlappl/pmi/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [ASO_TOP]:[d01/oracle/devlappl/aso/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [XNB_TOP]:[d01/oracle/devlappl/xnb/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [FND_OLD_ORA_NET2_DESC]:[11,14]
    [062107_091809615][][EXCEPTION] [DEBUG] [IBP_TOP]:[d01/oracle/devlappl/ibp/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [NLS_TERRITORY]:[AMERICA]
    [062107_091809615][][EXCEPTION] [DEBUG] [CSC_TOP]:[d01/oracle/devlappl/csc/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [JG_TOP]:[d01/oracle/devlappl/jg/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [LUSRPRG]:[d01/oracle/devlappl/fnd/11.5.0/usrxit/prglib.o /d01/oracle/devlappl/fnd/11.5.0/usrxit/prgcat.o /d01/oracle/devlappl/fnd/11.5.0/usrxit/EXPROG.o]
    [062107_091809615][][EXCEPTION] [DEBUG] [POS_TOP]:[d01/oracle/devlappl/pos/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [AU_TOP]:[d01/oracle/devlappl/au/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [IEX_TOP]:[d01/oracle/devlappl/iex/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [SHT_TOP]:[d01/oracle/devlappl/sht/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [XNP_TOP]:[d01/oracle/devlappl/xnp/11.5.0]
    [062107_091809616][][EXCEPTION] [DEBUG] [ORA_NET2_DESC]:[11,14]
    [062107_091809616][][EXCEPTION] [DEBUG] [REQUEST_ID]:[464998]
    [062107_091809616][][EXCEPTION] [DEBUG] [REPORTS60_POST]:[&5556]
    [062107_091809616][][EXCEPTION] [DEBUG] [MWA_TOP]:[d01/oracle/devlappl/mwa/11.5.0]
    [062107_091809617][][EXCEPTION] [DEBUG] [XTR_TOP]:[d01/oracle/devlappl/xtr/11.5.0]
    [062107_091809617][][EXCEPTION] [DEBUG] [IBA_TOP]:[d01/oracle/devlappl/iba/11.5.0]
    [062107_091809617][][EXCEPTION] [DEBUG] [APPLOUT]:[out/DEVL_prometheus]
    [062107_091809617][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_SIZE]:[200]
    [062107_091809617][][EXCEPTION] [DEBUG] [RLM_TOP]:[d01/oracle/devlappl/rlm/11.5.0]
    [062107_091809617][][EXCEPTION] [DEBUG] [IPA_TOP]:[d01/oracle/devlappl/ipa/11.5.0]
    [062107_091809618][][EXCEPTION] [DEBUG] [AMV_TOP]:[d01/oracle/devlappl/amv/11.5.0]
    [062107_091809618][][EXCEPTION] [DEBUG] [APPLLOG]:[log/DEVL_prometheus]
    [062107_091809618][][EXCEPTION] [DEBUG] [ASN_TOP]:[d01/oracle/devlappl/asn/11.5.0]
    [062107_091809618][][EXCEPTION] [DEBUG] [AFCPDNR]:[disabled]
    [062107_091809618][][EXCEPTION] [DEBUG] [ITG_TOP]:[d01/oracle/devlappl/itg/11.5.0]
    [062107_091809618][][EXCEPTION] [DEBUG] [GUEST_USER_PWD]:[GUEST/ORACLE]
    [062107_091809619][][EXCEPTION] [DEBUG] [XLE_TOP]:[d01/oracle/devlappl/xle/11.5.0]
    [062107_091809619][][EXCEPTION] [DEBUG] [GWYUID]:[APPLSYSPUB/PUB]
    [062107_091809619][][EXCEPTION] [DEBUG] [PERL5LIB]:[d01/oracle/devlora/iAS/Apache/perl/lib/5.00503:/d01/oracle/devlora/iAS/Apache/perl/lib/site_perl/5.005:/d01/oracle/devlappl/au/11.5.0/perl]
    [062107_091809619][][EXCEPTION] [DEBUG] [IGS_TOP]:[d01/oracle/devlappl/igs/11.5.0]
    [062107_091809619][][EXCEPTION] [DEBUG] [APPLDOC]:[docs]
    [062107_091809619][][EXCEPTION] [DEBUG] [MSD_TOP]:[d01/oracle/devlappl/msd/11.5.0]
    [062107_091809619][][EXCEPTION] [DEBUG] [FII_TOP]:[d01/oracle/devlappl/fii/11.5.0]
    [062107_091809620][][EXCEPTION] [DEBUG] [APPLTMP]:[d01/oracle/devlcomn/temp]
    [062107_091809620][][EXCEPTION] [DEBUG] [CCT_TOP]:[d01/oracle/devlappl/cct/11.5.0]
    [062107_091809620][][EXCEPTION] [DEBUG] [CSP_TOP]:[d01/oracle/devlappl/csp/11.5.0]
    [062107_091809620][][EXCEPTION] [DEBUG] [FTE_TOP]:[d01/oracle/devlappl/fte/11.5.0]
    [062107_091809620][][EXCEPTION] [DEBUG] [JAVA_TOP]:[d01/oracle/devlcomn/java]
    [062107_091809620][][EXCEPTION] [DEBUG] [FORMS60_MAPPING]:[http://prometheus.truecos.com:8004/OA_TEMP]
    [062107_091809620][][EXCEPTION] [DEBUG] [AFJVAPRG]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//bin/java]
    [062107_091809621][][EXCEPTION] [DEBUG] [PV_TOP]:[d01/oracle/devlappl/pv/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [FND_GSMSTARTED]:[1]
    [062107_091809624][][EXCEPTION] [DEBUG] [MSR_TOP]:[d01/oracle/devlappl/msr/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [FORMS60_FORCE_MENU_MNEMONICS]:[0]
    [062107_091809624][][EXCEPTION] [DEBUG] [TNS_ADMIN]:[d01/oracle/devlora/8.0.6/network/admin/DEVL_prometheus]
    [062107_091809624][][EXCEPTION] [DEBUG] [DB_PORT]:[1525]
    [062107_091809624][][EXCEPTION] [DEBUG] [PJM_TOP]:[d01/oracle/devlappl/pjm/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [BIM_TOP]:[d01/oracle/devlappl/bim/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [OAD_TOP]:[d01/oracle/devlcomn]
    [062107_091809624][][EXCEPTION] [DEBUG] [SECURITY_GROUP_ID]:[0]
    [062107_091809624][][EXCEPTION] [DEBUG] [RM]:[rm -f]
    [062107_091809624][][EXCEPTION] [DEBUG] [JE_TOP]:[d01/oracle/devlappl/je/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [FND_JDBC_USABLE_CHECK]:[false]
    [062107_091809624][][EXCEPTION] [DEBUG] [APPLPLS]:[plsql]
    [062107_091809624][][EXCEPTION] [DEBUG] [OA_JRE_TOP]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13]
    [062107_091809624][][EXCEPTION] [DEBUG] [AS_TOP]:[d01/oracle/devlappl/as/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [GCS_TOP]:[d01/oracle/devlappl/gcs/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [IMT_TOP]:[d01/oracle/devlappl/imt/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [OA_SECURE]:[d01/oracle/devlcomn/secure]
    [062107_091809625][][EXCEPTION] [DEBUG] [NLS_DATE_FORMAT]:[DD-MON-RR]
    [062107_091809625][][EXCEPTION] [DEBUG] [AMF_TOP]:[d01/oracle/devlappl/amf/11.5.0]
    [062107_091809625][][EXCEPTION] [DEBUG] [MSC_TOP]:[d01/oracle/devlappl/msc/11.5.0]
    [062107_091809625][][EXCEPTION] [DEBUG] [OKL_TOP]:[d01/oracle/devlappl/okl/11.5.0]
    [062107_091809625][][EXCEPTION] [DEBUG] [APPLMAIL]:[NONE]
    [062107_091809625][][EXCEPTION] [DEBUG] [LNS_TOP]:[d01/oracle/devlappl/lns/11.5.0]
    [062107_091809626][][EXCEPTION] [DEBUG] [APPLCSF]:[d01/oracle/devlcomn/admin]
    [062107_091809626][][EXCEPTION] [DEBUG] [APPLORC]:[ar60run]
    [062107_091809626][][EXCEPTION] [DEBUG] [APPLORB]:[ar60runb]
    [062107_091809627][][EXCEPTION] [DEBUG] [IGC_TOP]:[d01/oracle/devlappl/igc/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [ONT_TOP]:[d01/oracle/devlappl/ont/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [AD_TOP]:[d01/oracle/devlappl/ad/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [EAA_TOP]:[d01/oracle/devlappl/eaa/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [ASL_TOP]:[d01/oracle/devlappl/asl/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [ORG_ID]:[101]
    [062107_091809627][][EXCEPTION] [DEBUG] [APPLSQL]:[sql]
    [062107_091809627][][EXCEPTION] [DEBUG] [ZPB_TOP]:[d01/oracle/devlappl/zpb/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [NLS_LANG]:[American_America.WE8ISO8859P15]
    [062107_091809627][][EXCEPTION] [DEBUG] [BIL_TOP]:[d01/oracle/devlappl/bil/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [CN_TOP]:[d01/oracle/devlappl/cn/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [GML_TOP]:[d01/oracle/devlappl/gml/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [AR_TOP]:[d01/oracle/devlappl/ar/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [IEU_TOP]:[d01/oracle/devlappl/ieu/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [LUSRSRW]:[d01/oracle/devlappl/fnd/11.5.0/usrxit/xirusr.o]
    [062107_091809627][][EXCEPTION] [DEBUG] [XNM_TOP]:[d01/oracle/devlappl/xnm/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [FV_TOP]:[d01/oracle/devlappl/fv/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [ABM_TOP]:[d01/oracle/devlappl/abm/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [CLN_TOP]:[d01/oracle/devlappl/cln/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [FORMS60_SESSION]:[TRUE]
    [062107_091809627][][EXCEPTION] [DEBUG] [JTM_TOP]:[d01/oracle/devlappl/jtm/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [FNDSM_SCRIPT]:[d01/oracle/devlcomn/admin/scripts/DEVL_prometheus/gsmstart.sh]
    [062107_091809627][][EXCEPTION] [DEBUG] [APPS_JDBC_DRIVER_TYPE]:[THIN]
    [062107_091809628][][EXCEPTION] [DEBUG] [APPLGRAF]:[graphs]
    [062107_091809628][][EXCEPTION] [DEBUG] [CRP_TOP]:[d01/oracle/devlappl/crp/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [POA_TOP]:[d01/oracle/devlappl/poa/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [CHV_TOP]:[d01/oracle/devlappl/chv/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [SPCCHANL]:[ ]
    [062107_091809628][][EXCEPTION] [DEBUG] [AMS_TOP]:[d01/oracle/devlappl/ams/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [AF_LD_LIBRARY_PATH]:[d01/oracle/devlora/iAS/lib:/d01/oracle/devlora/8.0.6/network/jre11/lib/i686/native_threads:/d01/oracle/devlora/8.0.6/network/jre11/lib/linux/native_threads:/d01/oracle/devlappl/cz/11.5.0/bin:/d01/oracle/devlora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib]
    [062107_091809628][][EXCEPTION] [DEBUG] [IAS_ORACLE_HOME]:[d01/oracle/devlora/iAS]
    [062107_091809628][][EXCEPTION] [DEBUG] [MCS]:[echo mcs]
    [062107_091809628][][EXCEPTION] [DEBUG] [WSH_TOP]:[d01/oracle/devlappl/wsh/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [REPORTS60_PRE]:[&5555]
    [062107_091809628][][EXCEPTION] [DEBUG] [PAY_TOP]:[d01/oracle/devlappl/pay/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [FORMS60_LOV_INITIAL]:[5000]
    [062107_091809628][][EXCEPTION] [DEBUG] [BOM_TOP]:[d01/oracle/devlappl/bom/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [FNDREVIVERPID]:[d01/oracle/devlappl/fnd/11.5.0/log/reviver.sh_DEVL_prometheus.pid]
    [062107_091809628][][EXCEPTION] [DEBUG] [DB_ID]:[devl]
    [062107_091809628][][EXCEPTION] [DEBUG] [FORMS60_DISABLE_UNPAD_LOV]:[FALSE]
    [062107_091809628][][EXCEPTION] [DEBUG] [ICX_TOP]:[d01/oracle/devlappl/icx/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [APPCPNAM]:[REQID]
    [062107_091809628][][EXCEPTION] [DEBUG] [APPLLIB]:[lib]
    [062107_091809628][][EXCEPTION] [DEBUG] [CUI_TOP]:[d01/oracle/devlappl/cui/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [HRI_TOP]:[d01/oracle/devlappl/hri/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [CSM_TOP]:[d01/oracle/devlappl/csm/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [CONTEXT_FILE]:[d01/oracle/devlappl/admin/DEVL_prometheus.xml]
    [062107_091809629][][EXCEPTION] [DEBUG] [FND_MAX_JDBC_CONNECTIONS]:[500]
    [062107_091809629][][EXCEPTION] [DEBUG] [ECX_TOP]:[d01/oracle/devlappl/ecx/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [RCM_TOP]:[d01/oracle/devlappl/rcm/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [DBC_FILE_PATH]:[d01/oracle/devlappl/fnd/11.5.0/secure/DEVL_prometheus/devl.dbc]
    [062107_091809629][][EXCEPTION] [DEBUG] [FORMS60_NONBLOCKING_SLEEP]:[100]
    [062107_091809629][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [062107_091809629][][EXCEPTION] [DEBUG] [MSO_TOP]:[d01/oracle/devlappl/mso/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [IMC_TOP]:[d01/oracle/devlappl/imc/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [OKX_TOP]:[d01/oracle/devlappl/okx/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [FF_TOP]:[d01/oracle/devlappl/ff/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [XLA_TOP]:[d01/oracle/devlappl/xla/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [REPORTS60_NO_DUMMY_PRINTER]:[YES]
    [062107_091809629][][EXCEPTION] [DEBUG] [FUN_TOP]:[d01/oracle/devlappl/fun/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [PATH]:[d01/oracle/devlora/iAS/Apache/perl/bin:/d01/oracle/devlora/8.0.6/bin:/d01/oracle/devlappl/fnd/11.5.0/bin:/d01/oracle/devlappl/ad/11.5.0/bin:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/bin:/d01/oracle/devlcomn/util/unzip/unzip/unzip-5.50::/d01/oracle/devlora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/usr/ccs/bin:/bin]
    [062107_091809629][][EXCEPTION] [DEBUG] [PON_TOP]:[d01/oracle/devlappl/pon/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [OLDPWD]:[home/applmgr]
    [062107_091809629][][EXCEPTION] [DEBUG] [FORMS60_REJECT_GO_DISABLED_ITEM]:[0]
    [062107_091809629][][EXCEPTION] [DEBUG] [AP_TOP]:[d01/oracle/devlappl/ap/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [IES_TOP]:[d01/oracle/devlappl/ies/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [EAM_TOP]:[d01/oracle/devlappl/eam/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [WMS_TOP]:[d01/oracle/devlappl/wms/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [VEH_TOP]:[d01/oracle/devlappl/veh/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [GR_TOP]:[d01/oracle/devlappl/gr/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [EGO_TOP]:[d01/oracle/devlappl/ego/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [OKI_TOP]:[d01/oracle/devlappl/oki/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [IBY_TOP]:[d01/oracle/devlappl/iby/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [EVM_TOP]:[d01/oracle/devlappl/evm/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [BIX_TOP]:[d01/oracle/devlappl/bix/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [APPLRSC]:[resource]
    [062107_091809630][][EXCEPTION] [DEBUG] [CSL_TOP]:[d01/oracle/devlappl/csl/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [AHM_TOP]:[d01/oracle/devlappl/ahm/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [CZ_TOP]:[d01/oracle/devlappl/cz/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [FEM_TOP]:[d01/oracle/devlappl/fem/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [QP_TOP]:[d01/oracle/devlappl/qp/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [LUSRLIB]:[d01/oracle/devlappl/fnd/11.5.0/usrxit/libusr.a]
    [062107_091809630][][EXCEPTION] [DEBUG] [NLS_NUMERIC_CHARACTERS]:[.,]
    [062107_091809630][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [062107_091809630][][EXCEPTION] [DEBUG] [FLM_TOP]:[d01/oracle/devlappl/flm/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [USER_ID]:[1194]
    [062107_091809630][][EXCEPTION] [DEBUG] [TOOLS_CONFIG_HOME]:[d01/oracle/devlora/8.0.6]
    [062107_091809630][][EXCEPTION] [DEBUG] [MRP_TOP]:[d01/oracle/devlappl/mrp/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [FND_SECURE]:[d01/oracle/devlappl/fnd/11.5.0/secure/DEVL_prometheus]
    [062107_091809630][][EXCEPTION] [DEBUG] [DISPLAY]:[prometheus:0.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [BSC_TOP]:[d01/oracle/devlappl/bsc/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [PJI_TOP]:[d01/oracle/devlappl/pji/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [JA_TOP]:[d01/oracle/devlappl/ja/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [POM_TOP]:[d01/oracle/devlappl/pom/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [GMI_TOP]:[d01/oracle/devlappl/gmi/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [QA_TOP]:[d01/oracle/devlappl/qa/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [OE_TOP]:[d01/oracle/devlappl/oe/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [APPLFRM]:[forms]
    [062107_091809631][][EXCEPTION] [DEBUG] [CUG_TOP]:[d01/oracle/devlappl/cug/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [XDP_TOP]:[d01/oracle/devlappl/xdp/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [OZF_TOP]:[d01/oracle/devlappl/ozf/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [ORACLE_SID]:[FNDSM]
    [062107_091809631][][EXCEPTION] [DEBUG] [AHL_TOP]:[d01/oracle/devlappl/ahl/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [REPORTS60_TMP]:[d01/oracle/devlcomn/temp]
    [062107_091809631][][EXCEPTION] [DEBUG] [LUSRIAP]:[d01/oracle/devlappl/fnd/11.5.0/usrxit/xitusr.o]
    [062107_091809631][][EXCEPTION] [DEBUG] [IEC_TOP]:[d01/oracle/devlappl/iec/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [ALR_TOP]:[d01/oracle/devlappl/alr/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [XXTRU_TOP]:[d01/oracle/devlappl/xxtru/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [ADJRIOPTS]:[-mx512m]
    [062107_091809631][][EXCEPTION] [DEBUG] [OA_JAVA]:[d01/oracle/devlcomn/java]
    [062107_091809631][][EXCEPTION] [DEBUG] [SHLVL]:[0]
    [062107_091809631][][EXCEPTION] [DEBUG] [ISC_TOP]:[d01/oracle/devlappl/isc/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [PQH_TOP]:[d01/oracle/devlappl/pqh/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [CLASSPATH]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/rt.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/lib/dt.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/lib/tools.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/charsets.jar:/d01/oracle/devlcomn/java/appsborg2.zip:/d01/oracle/devlora/8.0.6/forms60/java:/d01/oracle/devlcomn/java]
    [062107_091809632][][EXCEPTION] [DEBUG] [ADPERLPRG]:[d01/oracle/devlora/iAS/Apache/perl/bin/perl]
    [062107_091809632][][EXCEPTION] [DEBUG] [FORMS60_WEB_CONFIG_FILE]:[d01/oracle/devlcomn/html/bin/appsweb_DEVL_prometheus.cfg]
    [062107_091809632][][EXCEPTION] [DEBUG] [PER_TOP]:[d01/oracle/devlappl/per/11.5.0]
    [062107_091809632][][EXCEPTION] [DEBUG] [XNI_TOP]:[d01/oracle/devlappl/xni/11.5.0]
    [062107_091809632][][EXCEPTION] [DEBUG] [NLS_LANGUAGE]:[AMERICAN]
    [062107_091809632][][EXCEPTION] [DEBUG] [CUF_TOP]:[d01/oracle/devlappl/cuf/11.5.0]
    [062107_091809632][][EXCEPTION] [DEBUG] [FORMS60_MESSAGE_ENCRYPTION]:[TRUE]
    [062107_091809632][][EXCEPTION] [DEBUG] [XDO_TOP]:[d01/oracle/devlappl/xdo/11.5.0]
    [062107_091809632][][EXCEPTION] [DEBUG] [GHR_TOP]:[d01/oracle/devlappl/ghr/11.5.0]
    [062107_091809632][][EXCEPTION] [DEBUG] [OAM_TOP]:[d01/oracle/devlcomn/java/oracle/apps]
    [062107_091809633][][EXCEPTION] [DEBUG] [BIV_TOP]:[d01/oracle/devlappl/biv/11.5.0]
    [062107_091809633][][EXCEPTION] [DEBUG] [PCC]:[$(ORACLE_HOME)/bin/proc]
    [062107_091809633][][EXCEPTION] [DEBUG] [QOT_TOP]:[d01/oracle/devlappl/qot/11.5.0]
    [062107_091809633][][EXCEPTION] [DEBUG] [IEB_TOP]:[d01/oracle/devlappl/ieb/11.5.0]
    [062107_091809633][][EXCEPTION] [DEBUG] [ASG_TOP]:[d01/oracle/devlappl/asg/11.5.0]
    [062107_091809633][][EXCEPTION] [DEBUG] [REPORTS60_PATH]:[d01/oracle/devlappl/au/11.5.0/plsql:/d01/oracle/devlappl/fnd/11.5.0/reports:/d01/oracle/devlappl/au/11.5.0/reports:/d01/oracle/devlappl/au/11.5.0/graphs:/d01/oracle/devlora/8.0.6/reports60/admin/printer]
    [062107_091809633][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.HIGH]:[-1]
    [062107_091809633][][EXCEPTION] [DEBUG] [OZS_TOP]:[d01/oracle/devlappl/ozs/11.5.0]
    [062107_091809633][][EXCEPTION] [DEBUG] [APPLDCP]:[ON]
    [062107_091809633][][EXCEPTION] [DEBUG] [ZX_TOP]:[d01/oracle/devlappl/zx/11.5.0]
    [062107_091809639][][EXCEPTION] [DEBUG] [REPORTS60_SERVER_CONFDIR]:[d01/oracle/devlora/8.0.6/reports60/server]
    [062107_091809639][][EXCEPTION] [DEBUG] ------- Properties stored in Java System Properties -------
    [062107_091809639][][EXCEPTION] [DEBUG] [java.runtime.name]:[Java(TM) 2 Runtime Environment, Standard Edition]
    [062107_091809639][][EXCEPTION] [DEBUG] [sun.boot.library.path]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/i386]
    [062107_091809639][][EXCEPTION] [DEBUG] [java.vm.version]:[1.4.2_13-b06]
    [062107_091809639][][EXCEPTION] [DEBUG] [OVERRIDE_DBC]:[true]
    [062107_091809639][][EXCEPTION] [DEBUG] [dbcfile]:[d01/oracle/devlappl/fnd/11.5.0/secure/DEVL_prometheus/devl.dbc]
    [062107_091809639][][EXCEPTION] [DEBUG] [java.vm.vendor]:[Sun Microsystems Inc.]
    [062107_091809639][][EXCEPTION] [DEBUG] [java.vendor.url]:[http://java.sun.com/]
    [062107_091809639][][EXCEPTION] [DEBUG] [path.separator]:[:]
    [062107_091809639][][EXCEPTION] [DEBUG] [java.vm.name]:[Java HotSpot(TM) Client VM]
    [062107_091809639][][EXCEPTION] [DEBUG] [file.encoding.pkg]:[sun.io]
    [062107_091809639][][EXCEPTION] [DEBUG] [user.country]:[US]
    [062107_091809639][][EXCEPTION] [DEBUG] [sun.os.patch.level]:[unknown]
    [062107_091809639][][EXCEPTION] [DEBUG] [java.vm.specification.name]:[Java Virtual Machine Specification]
    [062107_091809640][][EXCEPTION] [DEBUG] [user.dir]:[d01/oracle/devlcomn/admin/log/DEVL_prometheus]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.runtime.version]:[1.4.2_13-b06]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.awt.graphicsenv]:[sun.awt.X11GraphicsEnvironment]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.endorsed.dirs]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/endorsed]
    [062107_091809640][][EXCEPTION] [DEBUG] [os.arch]:[i386]
    [062107_091809640][][EXCEPTION] [DEBUG] [JTFDBCFILE]:[d01/oracle/devlappl/fnd/11.5.0/secure/DEVL_prometheus/devl.dbc]
    [062107_091809640][][EXCEPTION] [DEBUG] [request.requestid]:[464998]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.io.tmpdir]:[tmp]
    [062107_091809640][][EXCEPTION] [DEBUG] [line.separator]:[
    [062107_091809640][][EXCEPTION] [DEBUG] [java.vm.specification.vendor]:[Sun Microsystems Inc.]
    [062107_091809640][][EXCEPTION] [DEBUG] [os.name]:[Linux]
    [062107_091809640][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [062107_091809640][][EXCEPTION] [DEBUG] [sun.java2d.fontpath]:[]
    [062107_091809640][][EXCEPTION] [DEBUG] [request.logfile]:[d01/oracle/devlcomn/admin/log/DEVL_prometheus/l464998.req]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.library.path]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/i386/client:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/i386:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/../lib/i386:/d01/oracle/devlora/iAS/lib:/d01/oracle/devlora/8.0.6/network/jre11/lib/i686/native_threads:/d01/oracle/devlora/8.0.6/network/jre11/lib/linux/native_threads:/d01/oracle/devlappl/cz/11.5.0/bin:/d01/oracle/devlora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.specification.name]:[Java Platform API Specification]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.class.version]:[48.0]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.util.prefs.PreferencesFactory]:[java.util.prefs.FileSystemPreferencesFactory]
    [062107_091809640][][EXCEPTION] [DEBUG] [os.version]:[2.6.9-42.0.10.ELsmp]
    [062107_091809640][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[FALSE]
    [062107_091809640][][EXCEPTION] [DEBUG] [user.home]:[home/applmgr]
    [062107_091809640][][EXCEPTION] [DEBUG] [user.timezone]:[America/Denver]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.awt.printerjob]:[sun.print.PSPrinterJob]
    [062107_091809640][][EXCEPTION] [DEBUG] [file.encoding]:[ANSI_X3.4-1968]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.specification.version]:[1.4]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.class.path]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//lib/dt.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//lib/tools.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//jre/lib/charsets.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//jre/lib/rt.jar:/d01/oracle/devlcomn/java/appsborg2.zip:/d01/oracle/devlcomn/java/apps.zip:/d01/oracle/devlora/8.0.6/forms60/java:/d01/oracle/devlcomn/java]
    [062107_091809641][][EXCEPTION] [DEBUG] [user.name]:[applmgr]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.vm.specification.version]:[1.0]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.home]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre]
    [062107_091809641][][EXCEPTION] [DEBUG] [sun.arch.data.model]:[32]
    [062107_091809641][][EXCEPTION] [DEBUG] [user.language]:[en]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.specification.vendor]:[Sun Microsystems Inc.]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.vm.info]:[mixed mode]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.version]:[1.4.2_13]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.ext.dirs]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/ext]
    [062107_091809641][][EXCEPTION] [DEBUG] [sun.boot.class.path]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/rt.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/i18n.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/sunrsasign.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/jsse.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/jce.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/charsets.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/classes]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.vendor]:[Sun Microsystems Inc.]
    [062107_091809641][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [062107_091809641][][EXCEPTION] [DEBUG] [file.separator]:[]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.vendor.url.bug]:[http://java.sun.com/cgi-bin/bugreport.cgi]
    [062107_091809641][][EXCEPTION] [DEBUG] [sun.io.unicode.encoding]:[UnicodeLittle]
    [062107_091809641][][EXCEPTION] [DEBUG] [sun.cpu.endian]:[little]
    [062107_091809641][][EXCEPTION] [DEBUG] [sun.cpu.isalist]:[]
    --XDOException
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(XSLT10gR1.java:520)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:196)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:161)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1015)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:968)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:209)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1561)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:951)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5975)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3555)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3614)
    at oracle.apps.xdo.oa.cp.JCP4XMLPublisher.runProgram(JCP4XMLPublisher.java:815)
    at oracle.apps.fnd.cp.request.Run.main(Run.java:148)
    Caused by: java.io.IOException: Root problem: oracle.apps.xdo.XDOException:No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA, DBMS_LOB.GETLENGTH(L.FILE_DATA) FILE_LENGTH, L.LANGUAGE LANGUAGE, L.TERRITORY TERRITORY, B.DEFAULT_LANGUAGE DEFAULT_LANGUAGE, B.DEFAULT_TERRITORY DEFAULT_TERRITORY,B.TEMPLATE_TYPE_CODE TEMPLATE_TYPE_CODE, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.START_DATE START_DATE, B.END_DATE END_DATE, B.TEMPLATE_STATUS TEMPLATE_STATUS, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.DS_APP_SHORT_NAME DS_APP_SHORT_NAME, B.DATA_SOURCE_CODE DATA_SOURCE_CODE, L.LOB_TYPE LOB_TYPE FROM XDO_LOBS L, XDO_TEMPLATES_B B WHERE (L.LOB_TYPE = 'TEMPLATE' OR L.LOB_TYPE = 'MLS_TEMPLATE') AND L.APPLICATION_SHORT_NAME= :1 AND L.LOB_CODE = :2 AND L.APPLICATION_SHORT_NAME = B.APPLICATION_SHORT_NAME AND L.LOB_CODE = B.TEMPLATE_CODE AND ( (L.LANGUAGE = :3 AND L.TERRITORY = :4 ) OR (L.LANGUAGE = :5 AND L.TER
    RITORY = :6) OR (L.LANGUAGE= B.DEFAULT_LANGUAGE AND L.TERRITORY= B.DEFAULT_TERRITORY ) )
    at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:782)
    at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:564)
    ... 17 more
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 21-JUN-2007 09:18:11
    ---------------------------------------------------------------------------

    Hi
    the error in the CM log is caused by the java code not being able to find the template file in the template manager. Please ensure the main and subtemplates are loaded to the instance correctly.
    I think the first error is similar just a little more cryptic.
    Regards
    tim

  • Very strange error: unable to activate any messgae mapping in IR

    very strange error,
    i m unable to activating any message mapping in IR,
    while activating the error thrown was:
    /usr/sap/XID/DVEBMGS00/j2ee/cluster/server0/./temp/classpath_resolver/Mapdddd0cb0100311dca6090012799eddc6/source/com/sap/xi/tf/_MM_sdptestFileToFile_.java (No such file or directory (errno:2))
    My observation:
    On looking at the error, i found that the folder Mapdddd0cb0100311dca6090012799eddc6 is not created at the proper place.....
    Which i assume is created dynamically created on activating a message mapping,
    Now, i saw that the directory in which these Map* folders were created, already contained 32765 folders....... since this machine is UNIX, the max no. of directories that can be inside a directory cannot be more than 32768(not confirm).....
    hence the folder Map* cant be created at the proper place...and hence message mapping cant be activated.........
    ever encountered this problem....................
    pls help

    solved by self,
    solution: delete temporary folders created during any activation of message-mapping in IR, in the classpath_resolver folder of XID HOME directory......
    solution is specific to file system/OS....

  • Strange Errors from Import Server on Schema-based maps for repeating nodes

    I have already posted one thread about this, but perhaps some more in-depth information is required:
    We have uploaded our schema into the console, and have mapped the following multi-node file to it:
    CUSTOMER <repeating node>
      MDM_CUST (new Customer number returned)
      CUSTOMER(mapped back from XI for RECORD MATCHING)
      CREATE_DATE (text field)
      CONTACT<repeating node>
        CONTACT_NO (RECORD MATCHING : NON-QUALIFIER)
        CONTACT_SAP_NO (QUALIFIER)
         [NOTE: There are other qualifers for CONTACT, but only this one
    qualifier is being returned and is the only field that would and should be updated.
    The other fields should be left alone. However, it appears to overwrite EVERYthing
    with NULL other than these two fields. The CONTACT_NO is the sole qualifer on
    the table. It is a calculated field that equals the Auto-ID that is also produced on
    the table - but obviously not mapped.]
      PARTNER<repeating node>
        CUSTOMER_NO (RECORD MATCHING : NON-QUALIFER)
        PARTNER_FUNC (NON-QUALIFIER - Code given to lookup from PARTNER_FUNCTION table which has Code and Desc)
        PARTNER_NO     (NON-QUALIFIER)
        DEFAULT_PARTNER_FLAG (QUALIFIER)
    <CLOSE CUSTOMER NODE>
    In the Customer main table, all records are matched on CUSTOMER. The CONTACT_NO non-qualifer is matched to the CONTACT qualified lookup table directly since it is the only available non-qualifier. For the PARTNER table, the three qualifiers are mapped and then a compound field is created to map to the PARTNER table entry.
    We have the Configurations set at:
    Default Multi-Valued Update: Replace
    Default Qualified Update: Replace
    Default Matching Qualifiers: None
    Our record matching is: Create / Update(ALL MAPPED FIELDS) / Update(ALL MAPPED FIELDS)
    When the map is reused, the repeating nodes are all recognized, be it one node or many. However, when the map is reused, it does not automatically map the values for many of the Partner fields (nor the compound field) though the fields are correctly mapped.
    Also, when we attempt to use Import Server to automate the mapping, we use the mdis.ini set to
    Automap Unmapped Value=True
    Unmapped Value Handling=Add
    Always Use Unmapped Value Handling=False
    We get a very strange error saying that :
    [code]Encountered a pre-SP4 map. The map needs to be upgraded to SP4.
    Solution: Please, Launch the Import Manager GUI using the same source file and simply save the map.[code]
    Could it be that our MDM 5.5 SP4 is not compatible with schemas generated with XI v.7 SP9?
    All of our MDM is 5.5 SP4. It makes no sense that we would get THIS kind of error. Also, I am questioning our combination of these and other configurations since it doesn't always seem to do what it should

    Hi Donald,
    this sounds good so far. Just a short hint: you've set "Default Qualified Update: Replace". This explains why Import server "appears to overwrite EVERYthing
    with NULL other than these two fields.". The reason is the replace. A replace means that the old values are completely deleted and only the new incoming ones are stored. I'd suggest to use any of the Update possibilities.
    Note: the definitions you set in in the record matching step are mainly for the new records in the main table! Records in qualified look ups are handled differently! If you open your map in Import Manager, switch to tab "Map Fields/Values". Select a field that is your non qualifier. Right-Click on it and choose "Set qualified update" from the context menu. Now you can define which qualifiers can be used for the qualified look up matching. And you can define as well what should happen with new and/or existing records.
    Regarding the value mapping: do you use keymapping? Or do you use simple values only? Do you save the map everytime you add a new value mapping?
    Regarding the issue "Encountered a pre-SP4 map. The map needs to be upgraded to SP4. Solution: Please, Launch the Import Manager GUI using the same source file and simply save the map". This sounds very likely like a bug in MDIS and should be reported to SAP!
    Hope that helps
    Michael

  • Strange error in JDeveloper 11.1.1.0 Technology Preview 4

    I download starter workspace from
    http://www.oracle.com/technology/oramag/oracle/08-jul/o48frame.html
    A Home for Your Chrome and open in JDev 11g TP4 then go to Application Resources and change scott connection Oracle JDBC and test the connection I get Success!.
    when Run HRModule and select Departments to show data I get this error
    (oracle.jbo.SQLStmtException) JBO-27122: SQL error during statement preparation. Statement: SELECT Dept.DEPTNO, Dept.DNAME, Dept.LOC FROM DEPT Dept
    If press Details button in error I get
    (oracle.jbo.SQLStmtException) JBO-27122: SQL error during statement preparation. Statement: SELECT Dept.DEPTNO, Dept.DNAME, Dept.LOC FROM DEPT Dept
    ----- Level 1: Detail 0 -----
    (java.sql.SQLException) ORA-01866: the datetime class is invalid
    In Log:
    C:\jdevstudio1111\jdk\bin\javaw.exe -client -classpath C:\jdevstudio1111\BC4J\jlib\bc4jtester.jar;C:\jdevstudio1111\BC4J\lib\bc4jsyscat.jar;C:\jdevstudio1111\BC4J\lib\db-ca.jar;C:\jdevstudio1111\BC4J\jlib\bc4jwizard.jar;C:\jdevstudio1111\jlib\jdev-cm.jar;C:\jdevstudio1111\lib\xmlparserv2.jar;C:\jdevstudio1111\jlib\ohj.jar;C:\jdevstudio1111\jlib\help-share.jar;C:\jdevstudio1111\jlib\share.jar;C:\jdevstudio1111\jlib\jewt4.jar;C:\jdevstudio1111\jlib\oracle_ice.jar;C:\jdevstudio1111\jlib\ojmisc.jar;C:\jdevstudio1111\ide\lib\idert.jar;C:\jdevstudio1111\ide\lib\javatools.jar;C:\jdevstudio1111\jdk\jre\lib\rt.jar;C:\jdevstudio1111\jdk\jre\lib\i18n.jar;C:\jdevstudio1111\jdk\jre\lib\sunrsasign.jar;C:\jdevstudio1111\jdk\jre\lib\jsse.jar;C:\jdevstudio1111\jdk\jre\lib\jce.jar;C:\jdevstudio1111\jdk\jre\lib\charsets.jar;C:\jdevstudio1111\jdk\jre\classes;C:\jdevstudio1111\mywork\FrameworksJulAug2008\.adf;C:\jdevstudio1111\mywork\FrameworksJulAug2008\Model\classes;C:\jdevstudio1111\BC4J\lib\adf-share-support.jar;C:\jdevstudio1111\BC4J\lib\adf-sh are-ca.jar;C:\jdevstudio1111\BC4J\lib\adf-share-base.jar;C:\jdevstudio1111\jlib\identitystore.jar;C:\jdevstudio1111\BC4J\lib\adfm.jar;C:\jdevstudio1111\BC4J\lib\groovy-all-1.0.jar;C:\jdevstudio1111\jlib\commons-el.jar;C:\jdevstudio1111\jlib\jsp-el-api.jar;C:\jdevstudio1111\jlib\oracle-el.jar;C:\jdevstudio1111\jlib\resourcebundle.jar;C:\jdevstudio1111\lib\java\api\jaxb-api.jar;C:\jdevstudio1111\lib\java\api\jsr173_api.jar;C:\jdevstudio1111\j2ee\home\lib\activation.jar;C:\jdevstudio1111\lib\java\shared\sun.jaxb\2.0\jaxb-xjc.jar;C:\jdevstudio1111\lib\java\shared\sun.jaxb\2.0\jaxb-impl.jar;C:\jdevstudio1111\lib\java\shared\sun.jaxb\2.0\jaxb1-impl.jar;C:\jdevstudio1111\BC4J\lib\adfshare.jar;C:\jdevstudio1111\adfdt\lib\adf-dt-at-rt.jar;C:\jdevstudio1111\adfdt\lib\adf-transactions-dt.jar;C:\jdevstudio1111\adfdt\lib\adfdt_common.jar;C:\jdevstudio1111\mds\lib\mdsrt.jar;C:\jdevstudio1111\j2ee\home\lib\servlet.jar;C:\jdevstudio1111\jdbc\lib\ojdbc5dms.jar;C:\jdevstudio1111\jlib\commons-c li-1.0.jar;C:\jdevstudio1111\jlib\xmlef.jar;C:\jdevstudio1111\jlib\dms.jar;C:\jdevstudio1111\j2ee\home\lib\oc4j-unsupported-api.jar;C:\jdevstudio1111\lib\xml.jar;C:\jdevstudio1111\lib\java\api\cache.jar;C:\jdevstudio1111\j2ee\home\lib\pcl.jar;C:\jdevstudio1111\ucp\lib\ucp.jar;C:\jdevstudio1111\lib\java\shared\oracle.javatools\11.1.1.0.0\dafrt.jar;C:\jdevstudio1111\lib\java\shared\oracle.javatools\11.1.1.0.0\javatools-nodeps.jar;C:\jdevstudio1111\j2ee\home\jazn.jar;C:\jdevstudio1111\j2ee\home\jazncore.jar;C:\jdevstudio1111\j2ee\home\jps-api.jar;C:\jdevstudio1111\j2ee\home\jps-common.jar;C:\jdevstudio1111\j2ee\home\jps-internal.jar;C:\jdevstudio1111\j2ee\home\jps-fmw.jar;C:\jdevstudio1111\j2ee\home\jps-unsupported-api.jar;C:\jdevstudio1111\j2ee\home\lib\jacc-api.jar;C:\jdevstudio1111\j2ee\home\lib\security-api.jar;C:\jdevstudio1111\jlib\orai18n.jar;C:\jdevstudio1111\jlib\ojdl.jar;C:\jdevstudio1111\dvt\lib\dvt-jclient.jar;C:\jdevstudio1111\dvt\lib\dvt-utils.jar;C:\jdevstudio1111 \jlib\LW_PfjBean.jar; oracle.jbo.jbotester.MainFrame -X 11A6DAF0C7F -H "jar:file:/C:/jdevstudio1111/jdev/doc/studio_doc/ohj/bc4j_f1.jar!/bc4j_f1.hs"
    Jun 9, 2008 5:16:08 PM oracle.security.jps.internal.config.xml.XmlConfigurationFactory handleLocation
    WARNING: [XmlConfigurationFactory.handleLocation] Exception occurred when handling origLocation=/C:/jdevstudio1111/j2ee/home/config/system-jazn-data.xml : no protocol: /C:/jdevstudio1111/j2ee/home/config/system-jazn-data.xml
    Jun 9, 2008 5:16:08 PM oracle.security.jps.internal.config.xml.XmlConfigurationFactory handleLocation
    WARNING: [XmlConfigurationFactory.handleLocation] Exception occurred when handling origLocation=/C:/jdevstudio1111/j2ee/home/config/system-jazn-data.xml : no protocol: /C:/jdevstudio1111/j2ee/home/config/system-jazn-data.xml
    [JpsAuth] For permisson ( CredentialAccessPermission credstore.provider.credstore.ADF.anonymous#scott read), domain that failed: ProtectionDomain cs(file:/C:/jdevstudio1111/BC4J/lib/adf-share-support.jar), []
    If I build new JSF page and drag and drop Departments to show as read only table when run page I show the Table without data but only statement
    Fetching Data…
    Please if anybody can help me and tell me where is the problem.
    Note1: This error happen in all application created in Jdev 11g TP4 I have Jdev 10g and it is working perfect.
    Note2:In Log Please show this message:
    [JpsAuth] For permisson ( CredentialAccessPermission credstore.provider.credstore.ADF.anonymous#scott read), domain that failed: ProtectionDomain cs(file:/C:/jdevstudio1111/BC4J/lib/adf-share-support.jar), []
    Best Regards
    Zuhair Jawish

    Hi Frank,
    I unzip Jdev 11g in C:\jdevstudio1111
    and the workspace in C:\jdevstudio1111\mywork\FrameworksJulAug2008
    no space in the path of Jdev and the application
    I think it is strange error i format my machine for this error but i did not resolve the problem.
    maybe the problem in some environment variables.
    Thanks
    Zuhair

  • This method should not be called anymore. The client was already released i

    Hi,
    while configuring Business Packager for Projects 50.3 fo, we made few changes in R/3 side as per the documentation. after that we are getting following error in portal
    "This method should not be called anymore. The client was already released into the pool or the pool entry was deleted"
    all the chages were reverted in R/3 system still we are getting the same error.
    Can any one help on this issue....
    Thanks in advance and for early responce higher marks would be awarded!!!..     
    Regards
    Ravi Sankar Karri

    Hi,
    Well there were errors in how stop works:
    "Stopping a thread with Thread.stop causes it to
    unlock all of the monitors that it has locked (as a
    natural consequence of the unchecked ThreadDeath
    exception propagating up the stack). If any of the
    objects previously protected by these monitors were in
    an inconsistent state, the damaged objects become
    visible to other threads, potentially resulting in
    arbitrary behavior. "
    I do understand that you want to have something like
    killTheTreadIDontCareAboutConcequences-method, but
    it's better to let all your methods that you want to
    be able to terminate take a timeout argument, and deal
    with the termination in the method. (Close the
    sockets/streams etc that you are blocking on).
    /KajThe point is, it is not always possible to make those blocking methods stop, via some magic "timeout" thingamabob. The bottom line is still that the blocking methods were written incorrectly to begin with (to possibly block indefinitely), so one cannot come up with an across-the-board solution, other than getting the root cause fixed in the first place. However, one is not always in control of fixing the root cause.

  • ATG webcommerce strange error at start of weblogic

    Hi, when I try to load every page on my ATG publishing I get a strange error:
    ####<Jan 6, 2014 6:07:11 PM CET> <Error> <HTTP> <mydomain.com> <ATGpublishing> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1349445231424> <BEA-101020> <[ServletContext@744654245[app:ATGpublishing.ear module:crs path:/crs spec-version:2.5]] Servlet failed with Exception
    java.lang.IllegalStateException: Response already committed
    this problem is only on publishing and not in production, what can been the problem?
    thank you

    Hi Kiran,
    Can you please share the list of environment variables to be set? It'd be helpful if you can post a snapshot of those variables in your environment, cause I'm struggling to by-pass this assertion error.
    Thanks,
    Sridhar

  • Editing vpn connection causes timeout error+ssh proxy error, related?

    Using plasma5, nothing fancy in my setup.
    When i try to edit openvpn connection initially connection window is all blank but the connection name. After a good while controls appear and im greeted with this message:
    Also when i try to connect to ssh that uses proxy i get this:
    ~ % ssh server
    Pass a valid window to KWallet::Wallet::openWallet().
    The kwalletd service has been registered
    Invalid DBus reply:  QDBusError("org.freedesktop.DBus.Error.NoReply", "Message did not receive a reply (timeout by message bus)")
    QDBusConnection: name 'org.kde.kwalletd5' had owner '' but we thought it was ':1.10408'
    FATAL: Cannot get password for user: bit
    ssh_exchange_identification: Connection closed by remote host
    Proxy is configured as:
    ProxyCommand connect -5 -S localhost:9050 $(tor-resolve %h localhost:9050) %p
    Briefly i can see kwallet dialog asking for credentials but then it is replaced by ksshaskpass dialog asking for proxy password. When i start kwallet application window is basically frozen, can resize it only in small bits as if it was waiting on something for second or so and only processing GUI messages for a moment. After a while window can be resized easily but it is still blank, no controls, menus also get stuck until i terminate application forcibly.
    Any idea what am i missing here?

    Hi
    There are many reasons for the error and they are as follows:
    The user is behind a firewall that is blocking ports UDP 4500/500 and/or ESP.
    The VPN client is using connecting on TCP and the default TCP port 10000 for NAT is blocked.
    The internet connection is not stable and some packets are not reaching the ASA or the replies from the ASA aren’t getting to the client, hence the client thinks the server is no longer available.
    The VPN client is behind a NAT device and the ASA doesn’t have NAT-T enabled. In this case the user will not be able to send or receive traffic at all. It will be able to connect but that’s all. After some time the software client deletes the VPN tunnel.
    Suggested solutions:
    If you are using wireless, try to connect with cable
    Turn your firewall off, then test the connection to see whether the problem still occurs. If it doesn’t then you can turn your firewall back on, add exception rules for port 500, port 4500 and the ESP protocol in your firewall
    Turn on NAT-T/TCP in your profile ( remember to unblock port 10000 in your firewall)
    Edit your profile with your editor and change ForceKeepAlive=0 to 1

Maybe you are looking for

  • What is a good nano case with a lanyard?

    I received a 4G iPod nano for Christmas, I love it. I also want to protect it, so I want a case/protective cover. However I want one with a lanyard or some sort of clip that I can attach to a neck strap. I would very much appreciate recommendations.

  • What do you enter for a Carriage Return in Find&Replace?

    I'm using TextEdit to find and replace all instances of a string in an exported .txt with Carriage Returns (CRs). Only, I can't figure what to press in the 'Replace with:' field to tell TextEdit that I want the CR to go in there. Obviously, if I just

  • Scan on one machine and print to a different device

    Hi - I have a PSC 2179 All-in-1. I've been told that it is possible to use the built-in scanner to copy a document and send the output directly to a different printer. Does anyone know if this is true ? If it is, presumably the 2 devices need to be n

  • Bridge Folder Thumbnails Issue

    If I open a folder that has multiple folders in it, some of them are the normal size thumbnails but they don't say what the name of the folder is beneath it. Others (in the same folder) have a little tiny folder icon, with what looks like a sort of b

  • Is is Safe to Using VMWare to Run Windows when Online?

    I am new to VMware fusion, prior to using Virtualisation software to run Windows on my Mac I used Boot Camp. I never configured that installation of Windows to go online as I didn't want the headache of having to deal with virus protection, firewalls