Org.jdesktop.jdic.init.JdicInitException: java.io.IOException: The filename

"org.jdesktop.jdic.init.JdicInitException: java.io.IOException: The filename, dir
ectory name, or volume label syntax is incorrect"
I'm getting the above error in my java application. How to solve tis.. Pl help me..

Hello,
Maybe a bit of context would help to help you, such as... which method are you calling when JDIC raises this exception, and which is the file path that you pass in argument?
And please write fully-spelled words, abbreviating everyday words such as "please" is not comfortable nor polite for your readers.
Regards,
J.

Similar Messages

  • Java.io.IOException: The filename, directory name, or volume label syntax i

    Well while performing a file upload operartion i'm getting this error, how to correct this. Though the file is being uploaded.
    java.io.IOException: The filename, directory name, or volume label syntax is inc
    orrect
    at java.io.Win32FileSystem.canonicalize(Native Method)
    at java.io.File.getCanonicalPath(File.java:437)
    at org.apache.tomcat.util.FileUtil.safePath(FileUtil.java:184)
    at org.apache.tomcat.core.Context.getRealPath(Context.java:794)
    at org.apache.tomcat.facade.ServletContextFacade.getRealPath(ServletCont
    extFacade.java:136)
    at com.applabs.upload.SmartUpload.isVirtual(SmartUpload.java:715)
    at com.applabs.upload.SmartUpload.getPhysicalPath(SmartUpload.java:621)
    at com.applabs.upload.File.saveAs(File.java:49)
    at com.applabs.upload.SmartUpload.save(SmartUpload.java:212)
    at com.applabs.upload.SmartUpload.save(SmartUpload.java:193)
    at _0002fupload_0002ejspupload_jsp_1._jspService(_0002fupload_0002ejspup
    load_jsp_1.java:109)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspSer
    vlet.java:177)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:3
    18)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:391)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:4
    04)
    at org.apache.tomcat.core.Handler.service(Handler.java:286)
    at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372
    at org.apache.tomcat.core.ContextManager.internalService(ContextManager.
    java:797)
    at org.apache.tomcat.core.ContextManager.service(ContextManager.java:743
    at org.apache.tomcat.service.http.HttpConnectionHandler.processConnectio
    n(HttpConnectionHandler.java:210)
    at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:
    416)
    at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java

    hi do u know how to download file using JSP smart?

  • Package org.jdesktop.jdic.browser does not exists

    I am geting error
    'package org.jdesktop.jdic.browser does not exists' after moving to JDK 1.6_27 from 1.5_06
    Which jar file do i have to add for this error to go away?
    Can anyone helpme with the file name and path to download from?
    Thanks

    Thanks for the reply.I have moved to java 6 now and I dont want to use JDIC as no documentaion or download is available .
    Is there any alternative for jdic web browser in Java 6.
    Earlier in Java 5 I was using the below code to embedd the browser in the jpanel
    org.jdesktop.jdic.Webbrowser webbrowser=new WebBrowser
    webBrowser.seturl(pdfUrl)
    Jpanel testPanel=new jPanel();
    jpanel.add(webBrowser,BorderLayout.CENTER)
    here pdfURl is the url of a pdf file which I want to open in browser which is embed in jpanel.
    How can I do the same thing without the webbrowser.
    I read the java.awt.desktop browse method but it opens in a new window ,how can I embedd it in the jpanel?
    Please help.

  • ChaRM class java.io.IOException:The file does not exist on the filesystem

    Hi All,
    We are implementing ChaRM with Portal. While deploying we are running into following issue.
      Deployable-Id:/usr/sap/trans/data/GPSK90001B/sktp14_20100806_095633.epa
      Returncode:'12'
      class java.io.IOException:The file (/usr/sap/trans/data/GPSK90001B/sktp14_20100806_095633.epa) does not exist on the filesystem.
    Any suggestion.
    Regards,
    Smita

    We resolved this issue by sharing the trans file across SolMan and Portal system.

  • Error while trying to create a Solr collection (java.io.IOException: The device is not ready)

    Hello, everyone.
    I'm trying to create a .cfm document that will erase a specific Solr collection and then re-create it, index it, and optimize it.
    The delete works flawlessly. 
    Unfortunately, creating it isn't working, at all.  I get the following message:
    Unable to create collection publicsearch - An error occurred while creating the collection: java.io.IOException: The device is not ready.
    This is a Windows 7 server running Apache and CFServer 9.0.1 (the version before Verity was cut.)  I'm not getting any more details than the one error message.  Any idea of what could be causing this?  I've Googled this and I'm seeing a lot of issues similar, but not quite what I have happening.
    Thanks,
    ^_^

    Nevermind.. no one bothered to inform the developer that the path to the collection AND the path to the directory that the collection is for are different on this other server.
    Fixed.

  • Java.io.IOException: The specified module could not be found

    Hi.
    I am using Runtime.exec() to run egrep on some files, and then trying to read its ouput in the following way:
    String command2 = "egrep \"" + pattern +
    "\" " + category + "egrep.txt";
    Process p2 = Runtime.getRuntime().exec(command2);
    double counterA = 0;
    try {
    BufferedReader fin3 = new BufferedReader(new InputStreamReader(p2.
    getInputStream()));
    String reader = "";
    while ( (reader = fin3.readLine()) != null) {
    counterA++;
    if (counterA != 0)
    //System.out.println(read + " ::: " + counterA);
    fin3.close();
    catch (Exception e) {
    System.out.println("E");
    And I get the following exception:
    java.io.IOException: The specified module could not be found
    at java.io.FileInputStream.readBytes(Native Method)
    and this goes on to show exceptions in BufferedInputStream and then my code.
    This does not happen all the time, so I cannot reproduce it easily. I have searched on google and in this forum looking for information but have not found out anything useful.
    Help would be appreciated. Thanks.

    The only possible reason for this error occurring that I can think of is that it is somehow a side effect of the limited buffer size for stdin and stderr.
    For an example of emptying both output streams simultaneously, see the StreamGobbler class in this article:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html
    (this applies to unix, the author just mixed it in with his discussion of windows issues, just remove the "cmd.exe" and other windows stuff)
    Another thing to try if only for the sake of experimentation would be to throw in a "exitValue = p2.waitFor()" just in case there's some unpredictable resource conflict going on (although I can't imagine why for egrep, but it's something to experiment with).
    Let me know if you can narrow down the conditions for reproducing the bug.

  • Java.io.IOException: The specified procedure could not be found

    I get this error in this code.
    private boolean updateCICServer(){
    boolean updatestatus=true;
    long fsize=0;
    int arraysize=0;
    byte temp[];
    try{
    if(f.length()>this.m_iCICDataSize){
    if(DEBUG) System.err.println("update file");
    fsize = f.length();
    arraysize = (int)f.length()-this.m_iCICDataSize;
    temp = new byte[arraysize];
    if (this.fs.read(temp,0,arraysize)!=-1){
    //THIS READ () Throws "java.io.IOException: The specified procedure could not be found"
    fs is a fileinput stream and it is open.
    addByte(temp);
    } else{
    updatestatus=false;
    }catch(Exception e){
    updatestatus=false;
    System.err.println(fsize);
    System.err.println(arraysize);
    System.err.println(this.m_iCICDataSize);
    System.err.println(e.toString());
    return(updatestatus);
    Any suggestions?

    Never mind I found it.
    It was a programmer (Me) IQ error.
    I did close the fs in another place in the program and for got about it.
    Still it is a strange error message.
    Well now I know.

  • How to make  jar with from java code for the filenames containing spaces

    I tried to make jar file using Runtime.exec method . The filenames have spaces in it .So i gave the filenames in double quotes.It works fine with windows and also from the command prompt.But when i run the same code in unix box , it creates a jar file with no content.Pls give some solution. I used the jdk1.2.2

    Pls give some solution. Pls post your code

  • Java.io.IOException when running 1099

    We recently installed the updates for the 1099 forms and when we run it now we get the following message in the OPP:
    11/30/10 4:38:28 PM] [main] Starting GSF service with concurrent process id = 76279.
    [11/30/10 4:38:28 PM] [main] Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=5
    [11/30/10 4:38:28 PM] [Thread-20] Service thread starting up.
    [11/30/10 4:38:28 PM] [Thread-21] Service thread starting up.
    [12/1/10 11:32:42 AM] [OPPServiceThread0] Post-processing request 13697194.
    [12/1/10 11:32:42 AM] [76279:RT13697194] Executing post-processing actions for request 13697194.
    [12/1/10 11:32:43 AM] [76279:RT13697194] Starting XML Publisher post-processing action.
    [12/1/10 11:32:43 AM] [76279:RT13697194]
    Template code: APXT7F99PXML
    Template app: SQLAP
    Language: en
    Territory: 00
    Output type: PDF
    [120110_113243836][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [120110_113243836][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [120110_113243836][][EXCEPTION] [DEBUG] [SECURITY_GROUP_ID]:[0]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_CHARACTERSET]:[WE8ISO8859P1]
    [120110_113243836][][EXCEPTION] [DEBUG] [RESP_APPL_ID]:[-1]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_LANGUAGE]:[AMERICAN]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_NUMERIC_CHARACTERS]:[.,]
    [120110_113243836][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=dev64db.garlandisd.net)(PORT=1526)))(CONNECT_DATA=(SID=DEV64)))]
    [120110_113243836][][EXCEPTION] [DEBUG] [RESP_ID]:[-1]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_MAX_JDBC_CONNECTIONS]:[300]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_USABLE_CHECK]:[false]
    [120110_113243836][][EXCEPTION] [DEBUG] [USER_ID]:[-1]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_TERRITORY]:[AMERICA]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_PLSQL_RESET]:[false]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[true]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_DATE_FORMAT]:[DD-MON-RR]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.HIGH]:[-1]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_SORT]:[BINARY]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_DATE_LANGUAGE]:[AMERICAN]
    [120110_113243836][][EXCEPTION] [DEBUG] [LOGIN_ID]:[-1]
    [120110_113243836][][EXCEPTION] [DEBUG] ------- Properties stored in Java System Properties -------
    [120110_113243836][][EXCEPTION] [DEBUG] [APPLTMP]:[E:\Dev64Apps\oracle\dev64comn\temp]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.runtime.name]:[Java(TM) SE Runtime Environment]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.boot.library.path]:[C:\jdk1617\java\jdk1.6.0_17\jre\bin]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.version]:[14.3-b01]
    [120110_113243836][][EXCEPTION] [DEBUG] [OVERRIDE_DBC]:[true]
    [120110_113243836][][EXCEPTION] [DEBUG] [dbcfile]:[E:\Dev64Apps\oracle\dev64appl\fnd\11.5.0\secure\DEV64_web1vm\dev64.dbc]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.vendor]:[Sun Microsystems Inc.]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vendor.url]:[http://java.sun.com/]
    [120110_113243836][][EXCEPTION] [DEBUG] [path.separator]:[;]
    [120110_113243836][][EXCEPTION] [DEBUG] [APPLCSF]:[E:\Dev64Apps\oracle\dev64comn\admin]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.name]:[Java HotSpot(TM) Client VM]
    [120110_113243836][][EXCEPTION] [DEBUG] [file.encoding.pkg]:[sun.io]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.java.launcher]:[SUN_STANDARD]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.country]:[US]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.os.patch.level]:[Service Pack 2]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.specification.name]:[Java Virtual Machine Specification]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.dir]:[E:\Dev64Apps\oracle\dev64comn\admin\log\DEV64_web1vm]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.runtime.version]:[1.6.0_17-b04]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.awt.graphicsenv]:[sun.awt.Win32GraphicsEnvironment]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.endorsed.dirs]:[C:\jdk1617\java\jdk1.6.0_17\jre\lib\endorsed]
    [120110_113243836][][EXCEPTION] [DEBUG] [os.arch]:[x86]
    [120110_113243836][][EXCEPTION] [DEBUG] [JTFDBCFILE]:[E:\Dev64Apps\oracle\dev64appl\fnd\11.5.0\secure\DEV64_web1vm\dev64.dbc]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.io.tmpdir]:[C:\WINDOWS\TEMP\]
    [120110_113243836][][EXCEPTION] [DEBUG] [line.separator]:[
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.specification.vendor]:[Sun Microsystems Inc.]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.variant]:[]
    [120110_113243836][][EXCEPTION] [DEBUG] [os.name]:[Windows 2003]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [120110_113243836][][EXCEPTION] [DEBUG] [cpid]:[76279]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.jnu.encoding]:[Cp1252]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.library.path]:[C:\jdk1617\java\jdk1.6.0_17\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;E:\Dev64Apps\oracle\dev64ora\iAS\bin;E:\Dev64Apps\oracle\dev64ora\8.0.6\bin;E:\Dev64Apps\oracle\dev64appl\fnd\11.5.0\bin;E:\Dev64Apps\oracle\dev64appl\au\11.5.0\bin;C:\jdk1617\java\jdk1.6.0_17\bin;E:\Dev64Apps\oracle\dev64ora\8.0.6\bin;C:\MKS\bin;C:\MKS\bin\X11;C:\MKS\mksnt;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.specification.name]:[Java Platform API Specification]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.class.version]:[50.0]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.management.compiler]:[HotSpot Client Compiler]
    [120110_113243836][][EXCEPTION] [DEBUG] [os.version]:[5.2]
    [120110_113243836][][EXCEPTION] [DEBUG] [LONG_RUNNING_JVM]:[true]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.home]:[C:\Documents and Settings\Default User]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.timezone]:[America/Chicago]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.awt.printerjob]:[sun.awt.windows.WPrinterJob]
    [120110_113243836][][EXCEPTION] [DEBUG] [file.encoding]:[Cp1252]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.specification.version]:[1.6]
    [120110_113243836][][EXCEPTION] [DEBUG] [CACHEMODE]:[DISTRIBUTED]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.class.path]:[C:\jdk1617\java\jdk1.6.0_17\lib\dt.jar;C:\jdk1617\java\jdk1.6.0_17\lib\tools.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\rt.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\charsets.jar;E:\Dev64Apps\oracle\dev64comn\java\appsborg2.zip;E:\Dev64Apps\oracle\dev64comn\java\apps.zip;E:\Dev64Apps\oracle\dev64ora\8.0.6\forms60\java;E:\Dev64Apps\oracle\dev64comn\java]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.name]:[SYSTEM]
    [120110_113243836][][EXCEPTION] [DEBUG] [DBCFILE]:[E:\Dev64Apps\oracle\dev64appl\fnd\11.5.0\secure\DEV64_web1vm\dev64.dbc]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.specification.version]:[1.0]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.home]:[C:\jdk1617\java\jdk1.6.0_17\jre]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.arch.data.model]:[32]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.language]:[en]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.specification.vendor]:[Sun Microsystems Inc.]
    [120110_113243836][][EXCEPTION] [DEBUG] [awt.toolkit]:[sun.awt.windows.WToolkit]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.info]:[mixed mode, sharing]
    [120110_113243836][][EXCEPTION] [DEBUG] [logfile]:[E:\Dev64Apps\oracle\dev64comn\admin\log\DEV64_web1vm\FNDOPP76279.txt]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.version]:[1.6.0_17]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.ext.dirs]:[C:\jdk1617\java\jdk1.6.0_17\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.boot.class.path]:[C:\jdk1617\java\jdk1.6.0_17\jre\lib\resources.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\rt.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\sunrsasign.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\jsse.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\jce.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\charsets.jar;C:\jdk1617\java\jdk1.6.0_17\jre\classes]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vendor]:[Sun Microsystems Inc.]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [120110_113243836][][EXCEPTION] [DEBUG] [file.separator]:[\]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vendor.url.bug]:[http://java.sun.com/cgi-bin/bugreport.cgi]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.io.unicode.encoding]:[UnicodeLittle]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.cpu.endian]:[little]
    [120110_113243836][][EXCEPTION] [DEBUG] [APPLOUT]:[out\DEV64_web1vm]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.desktop]:[windows]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.cpu.isalist]:[pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86]
    java.io.IOException: The filename, directory name, or volume label syntax is incorrect
         at java.io.WinNTFileSystem.canonicalize0(Native Method)
         at java.io.Win32FileSystem.canonicalize(Win32FileSystem.java:396)
         at java.io.File.getCanonicalPath(File.java:559)
         at oracle.apps.xdo.oa.util.FontCacheManager.getFontFilePath(FontCacheManager.java:152)
         at oracle.apps.xdo.oa.util.FontHelper.createFontProperties(FontHelper.java:432)
         at oracle.apps.xdo.oa.util.ConfigHelper.getFontProperties(ConfigHelper.java:166)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5807)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3458)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3547)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:290)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    [12/1/10 11:32:44 AM] [UNEXPECTED] [76279:RT13697194] java.io.IOException: The filename, directory name, or volume label syntax is incorrect
         at java.io.WinNTFileSystem.canonicalize0(Native Method)
         at java.io.Win32FileSystem.canonicalize(Win32FileSystem.java:396)
         at java.io.File.getCanonicalPath(File.java:559)
         at oracle.apps.xdo.oa.util.FontCacheManager.getFontFilePath(FontCacheManager.java:152)
         at oracle.apps.xdo.oa.util.FontHelper.createFontProperties(FontHelper.java:432)
         at oracle.apps.xdo.oa.util.ConfigHelper.getFontProperties(ConfigHelper.java:166)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5807)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3458)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3547)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:290)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    [12/1/10 11:32:44 AM] [76279:RT13697194] Completed post-processing actions for request 13697194.
    I'm not sure what directory or volume this would be referring to?
    thanks in advance for any help!
    Rob

    We recently installed the updates for the 1099 forms and when we run it now we get the following message in the OPP:
    11/30/10 4:38:28 PM] [main] Starting GSF service with concurrent process id = 76279.
    [11/30/10 4:38:28 PM] [main] Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=5
    [11/30/10 4:38:28 PM] [Thread-20] Service thread starting up.
    [11/30/10 4:38:28 PM] [Thread-21] Service thread starting up.
    [12/1/10 11:32:42 AM] [OPPServiceThread0] Post-processing request 13697194.
    [12/1/10 11:32:42 AM] [76279:RT13697194] Executing post-processing actions for request 13697194.
    [12/1/10 11:32:43 AM] [76279:RT13697194] Starting XML Publisher post-processing action.
    [12/1/10 11:32:43 AM] [76279:RT13697194]
    Template code: APXT7F99PXML
    Template app: SQLAP
    Language: en
    Territory: 00
    Output type: PDF
    [120110_113243836][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [120110_113243836][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [120110_113243836][][EXCEPTION] [DEBUG] [SECURITY_GROUP_ID]:[0]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_CHARACTERSET]:[WE8ISO8859P1]
    [120110_113243836][][EXCEPTION] [DEBUG] [RESP_APPL_ID]:[-1]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_LANGUAGE]:[AMERICAN]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_NUMERIC_CHARACTERS]:[.,]
    [120110_113243836][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=dev64db.garlandisd.net)(PORT=1526)))(CONNECT_DATA=(SID=DEV64)))]
    [120110_113243836][][EXCEPTION] [DEBUG] [RESP_ID]:[-1]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_MAX_JDBC_CONNECTIONS]:[300]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_USABLE_CHECK]:[false]
    [120110_113243836][][EXCEPTION] [DEBUG] [USER_ID]:[-1]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_TERRITORY]:[AMERICA]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_PLSQL_RESET]:[false]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[true]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_DATE_FORMAT]:[DD-MON-RR]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.HIGH]:[-1]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_SORT]:[BINARY]
    [120110_113243836][][EXCEPTION] [DEBUG] [NLS_DATE_LANGUAGE]:[AMERICAN]
    [120110_113243836][][EXCEPTION] [DEBUG] [LOGIN_ID]:[-1]
    [120110_113243836][][EXCEPTION] [DEBUG] ------- Properties stored in Java System Properties -------
    [120110_113243836][][EXCEPTION] [DEBUG] [APPLTMP]:[E:\Dev64Apps\oracle\dev64comn\temp]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.runtime.name]:[Java(TM) SE Runtime Environment]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.boot.library.path]:[C:\jdk1617\java\jdk1.6.0_17\jre\bin]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.version]:[14.3-b01]
    [120110_113243836][][EXCEPTION] [DEBUG] [OVERRIDE_DBC]:[true]
    [120110_113243836][][EXCEPTION] [DEBUG] [dbcfile]:[E:\Dev64Apps\oracle\dev64appl\fnd\11.5.0\secure\DEV64_web1vm\dev64.dbc]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.vendor]:[Sun Microsystems Inc.]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vendor.url]:[http://java.sun.com/]
    [120110_113243836][][EXCEPTION] [DEBUG] [path.separator]:[;]
    [120110_113243836][][EXCEPTION] [DEBUG] [APPLCSF]:[E:\Dev64Apps\oracle\dev64comn\admin]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.name]:[Java HotSpot(TM) Client VM]
    [120110_113243836][][EXCEPTION] [DEBUG] [file.encoding.pkg]:[sun.io]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.java.launcher]:[SUN_STANDARD]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.country]:[US]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.os.patch.level]:[Service Pack 2]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.specification.name]:[Java Virtual Machine Specification]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.dir]:[E:\Dev64Apps\oracle\dev64comn\admin\log\DEV64_web1vm]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.runtime.version]:[1.6.0_17-b04]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.awt.graphicsenv]:[sun.awt.Win32GraphicsEnvironment]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.endorsed.dirs]:[C:\jdk1617\java\jdk1.6.0_17\jre\lib\endorsed]
    [120110_113243836][][EXCEPTION] [DEBUG] [os.arch]:[x86]
    [120110_113243836][][EXCEPTION] [DEBUG] [JTFDBCFILE]:[E:\Dev64Apps\oracle\dev64appl\fnd\11.5.0\secure\DEV64_web1vm\dev64.dbc]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.io.tmpdir]:[C:\WINDOWS\TEMP\]
    [120110_113243836][][EXCEPTION] [DEBUG] [line.separator]:[
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.specification.vendor]:[Sun Microsystems Inc.]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.variant]:[]
    [120110_113243836][][EXCEPTION] [DEBUG] [os.name]:[Windows 2003]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [120110_113243836][][EXCEPTION] [DEBUG] [cpid]:[76279]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.jnu.encoding]:[Cp1252]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.library.path]:[C:\jdk1617\java\jdk1.6.0_17\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;E:\Dev64Apps\oracle\dev64ora\iAS\bin;E:\Dev64Apps\oracle\dev64ora\8.0.6\bin;E:\Dev64Apps\oracle\dev64appl\fnd\11.5.0\bin;E:\Dev64Apps\oracle\dev64appl\au\11.5.0\bin;C:\jdk1617\java\jdk1.6.0_17\bin;E:\Dev64Apps\oracle\dev64ora\8.0.6\bin;C:\MKS\bin;C:\MKS\bin\X11;C:\MKS\mksnt;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.specification.name]:[Java Platform API Specification]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.class.version]:[50.0]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.management.compiler]:[HotSpot Client Compiler]
    [120110_113243836][][EXCEPTION] [DEBUG] [os.version]:[5.2]
    [120110_113243836][][EXCEPTION] [DEBUG] [LONG_RUNNING_JVM]:[true]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.home]:[C:\Documents and Settings\Default User]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.timezone]:[America/Chicago]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.awt.printerjob]:[sun.awt.windows.WPrinterJob]
    [120110_113243836][][EXCEPTION] [DEBUG] [file.encoding]:[Cp1252]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.specification.version]:[1.6]
    [120110_113243836][][EXCEPTION] [DEBUG] [CACHEMODE]:[DISTRIBUTED]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.class.path]:[C:\jdk1617\java\jdk1.6.0_17\lib\dt.jar;C:\jdk1617\java\jdk1.6.0_17\lib\tools.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\rt.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\charsets.jar;E:\Dev64Apps\oracle\dev64comn\java\appsborg2.zip;E:\Dev64Apps\oracle\dev64comn\java\apps.zip;E:\Dev64Apps\oracle\dev64ora\8.0.6\forms60\java;E:\Dev64Apps\oracle\dev64comn\java]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.name]:[SYSTEM]
    [120110_113243836][][EXCEPTION] [DEBUG] [DBCFILE]:[E:\Dev64Apps\oracle\dev64appl\fnd\11.5.0\secure\DEV64_web1vm\dev64.dbc]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.specification.version]:[1.0]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.home]:[C:\jdk1617\java\jdk1.6.0_17\jre]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.arch.data.model]:[32]
    [120110_113243836][][EXCEPTION] [DEBUG] [user.language]:[en]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.specification.vendor]:[Sun Microsystems Inc.]
    [120110_113243836][][EXCEPTION] [DEBUG] [awt.toolkit]:[sun.awt.windows.WToolkit]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vm.info]:[mixed mode, sharing]
    [120110_113243836][][EXCEPTION] [DEBUG] [logfile]:[E:\Dev64Apps\oracle\dev64comn\admin\log\DEV64_web1vm\FNDOPP76279.txt]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.version]:[1.6.0_17]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.ext.dirs]:[C:\jdk1617\java\jdk1.6.0_17\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.boot.class.path]:[C:\jdk1617\java\jdk1.6.0_17\jre\lib\resources.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\rt.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\sunrsasign.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\jsse.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\jce.jar;C:\jdk1617\java\jdk1.6.0_17\jre\lib\charsets.jar;C:\jdk1617\java\jdk1.6.0_17\jre\classes]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vendor]:[Sun Microsystems Inc.]
    [120110_113243836][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [120110_113243836][][EXCEPTION] [DEBUG] [file.separator]:[\]
    [120110_113243836][][EXCEPTION] [DEBUG] [java.vendor.url.bug]:[http://java.sun.com/cgi-bin/bugreport.cgi]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.io.unicode.encoding]:[UnicodeLittle]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.cpu.endian]:[little]
    [120110_113243836][][EXCEPTION] [DEBUG] [APPLOUT]:[out\DEV64_web1vm]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.desktop]:[windows]
    [120110_113243836][][EXCEPTION] [DEBUG] [sun.cpu.isalist]:[pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86]
    java.io.IOException: The filename, directory name, or volume label syntax is incorrect
         at java.io.WinNTFileSystem.canonicalize0(Native Method)
         at java.io.Win32FileSystem.canonicalize(Win32FileSystem.java:396)
         at java.io.File.getCanonicalPath(File.java:559)
         at oracle.apps.xdo.oa.util.FontCacheManager.getFontFilePath(FontCacheManager.java:152)
         at oracle.apps.xdo.oa.util.FontHelper.createFontProperties(FontHelper.java:432)
         at oracle.apps.xdo.oa.util.ConfigHelper.getFontProperties(ConfigHelper.java:166)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5807)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3458)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3547)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:290)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    [12/1/10 11:32:44 AM] [UNEXPECTED] [76279:RT13697194] java.io.IOException: The filename, directory name, or volume label syntax is incorrect
         at java.io.WinNTFileSystem.canonicalize0(Native Method)
         at java.io.Win32FileSystem.canonicalize(Win32FileSystem.java:396)
         at java.io.File.getCanonicalPath(File.java:559)
         at oracle.apps.xdo.oa.util.FontCacheManager.getFontFilePath(FontCacheManager.java:152)
         at oracle.apps.xdo.oa.util.FontHelper.createFontProperties(FontHelper.java:432)
         at oracle.apps.xdo.oa.util.ConfigHelper.getFontProperties(ConfigHelper.java:166)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5807)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3458)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3547)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:290)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    [12/1/10 11:32:44 AM] [76279:RT13697194] Completed post-processing actions for request 13697194.
    I'm not sure what directory or volume this would be referring to?
    thanks in advance for any help!
    Rob

  • Java.io.IOException Exception

    i just configured the tomcat5.5 server and when i try to run my servlet from JBuilder2006 it gives me the error:
    org.apache.catalina.startup. boostrap init classloader
    severe: class loader creation threw exception
    java.io.IOException : the file name, directory name or volume label syntax is incorrect;
    its my first servlet so if u could further i ll be greateful

    * Log files for Database Tier located under $ORACLE_HOME/appsutil/log/<SID>_<hostname>
    i.e. C:\oracle\proddb\9.2.0\appsutil\log\PROD_jccsoracle
    XXXXXXX.log - Main Oracle Applications Rapid Install Wizard Install log for DB Tier
    (Where XXXXXXXX = MMDDHHMM - Date and Time of run, e.g. 02030450.log)
    * Log files for Application Tier located under $APPL_TOP/admin/<SID>_<hostname>/log
    XXXXXXX.log - Main Oracle Applications Rapid Install Wizard Install log for Apps Tier
    (Where XXXXXXXX = MMDDHHMM - Date and Time of run, e.g. 02030450.log)

  • Java.io.IOException when starting with nodemanager

    Hello !
    I am on:
    Windows 2000 SP 3
    Weblogic Server 6.1 SP 4
    I obtain the error above when starting a managed server with
    nodemanager. After issuing the "start this server" commnad from withing
    Weblogic console I obtain:
    <2003-02-15 21:23:59 CET> <Info> <NodeManager@s1nodea:5001>
    <WindowsProcessControl: online successfully invoke
    d on server 'nodea', pid: 1844>
    and next the following exception in Console window:
    The server finally starts and is visible in console as "running".
    What is the problem ?
    sincerely Olek
    PS The message in polish language is "java.io.IOException: The system
    cannot find the path specified"
    <2003-02-15 21:23:59 CET> <Info> <NodeManager@s1nodea:5001>
    <WindowsProcessControl: online successfully invoked on server 'nodea', pid:
    1844>
    Starting WebLogic Server ....
    Connecting to http://s1admin:7001...
    <2003-02-15 21:24:07 CET> <Notice> <WebLogicServer> <Starting WebLogic
    Managed Server "nodea" for domain "onlinestore">
    Could not create deployment file.
    java.io.IOException: System nie mo|e odnalez okre[lonej [cie|ki
          at java.io.Win32FileSystem.createFileExclusively(Native Method)
          at java.io.File.createNewFile(File.java:688)
          at
    weblogic.management.internal.LocalDeploymentInfoManager.readDeploymentFile(L
    ocalDeploymentInfoManager.java:100)
          at
    weblogic.management.internal.LocalDeploymentInfoManager.<clinit>(LocalDeploy
    mentInfoManager.java:66)
          at
    weblogic.management.mbeans.custom.ApplicationManager.cleanUpTempDir(Applicat
    ionManager.java:685)
          at
    weblogic.management.mbeans.custom.ApplicationManager.createOrCleanupTempDir(
    ApplicationManager.java:664)
          at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(Appl
    icationManager.java:308)
          at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManage
    r.java:164)
          at java.lang.reflect.Method.invoke(Native Method)
          at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:636)
          at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:6
    21)
          at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:374)
          at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
          at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
          at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
          at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
          at $Proxy39.start(Unknown Source)
          at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.start(
    ApplicationManagerMBean_CachingStub.java:480)
          at weblogic.management.Admin.startApplicationManager(Admin.java:1309)
          at weblogic.management.Admin.finish(Admin.java:649)
          at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:542)
          at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:213)
          at weblogic.Server.main(Server.java:35)
          java.io.IOException: System nie mo|e odnalez okre[lonej [cie|ki
          at java.io.Win32FileSystem.createFileExclusively(Native Method)
          at java.io.File.createNewFile(File.java:688)
          at
    weblogic.management.internal.LocalDeploymentInfoManager.writeDeploymentFile(
    LocalDeploymentInfoManager.java:129)
          at
    weblogic.management.internal.LocalDeploymentInfoManager.put(LocalDeploymentI
    nfoManager.java:156)
          at weblogic.j2ee.Component.retrieveComponent(Component.java:343)
          at weblogic.j2ee.Component.<init>(Component.java:188)
          at weblogic.j2ee.WebAppComponent.<init>(WebAppComponent.java:45)
          at weblogic.j2ee.Application.addComponent(Application.java:149)
          at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:117)
          at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentT
    arget.java:364)
          at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentT
    arget.java:150)
          at
    weblogic.management.mbeans.custom.WebServer.addWebDeployment(WebServer.java:
    76)
          at java.lang.reflect.Method.invoke(Native Method)
          at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:636)
          at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:6
    21)
          at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:374)
          at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
          at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
          at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
          at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
          at $Proxy25.addWebDeployment(Unknown Source)
          at
    weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeploymen
    t(WebServerMBean_CachingStub.java:1256)
          at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentT
    arget.java:350)
          at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Deployment
    Target.java:286)
          at
    weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(D
    eploymentTarget.java:239)
          at
    weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(Deploym
    entTarget.java:199)
          at java.lang.reflect.Method.invoke(Native Method)
          at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:636)
          at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:6
    21)
          at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:374)
          at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
          at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
          at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
          at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
          at $Proxy0.updateDeployments(Unknown Source)
          at
    weblogic.management.configuration.ServerMBean_CachingStub.updateDeployments(
    ServerMBean_CachingStub.java:3015)
          at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(Appl
    icationManager.java:376)
          at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManage
    r.java:164)
          at java.lang.reflect.Method.invoke(Native Method)
          at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:636)
          at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:6
    21)
          at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:374)
          at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
          at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
          at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
          at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
          at $Proxy39.start(Unknown Source)
          at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.start(
    ApplicationManagerMBean_CachingStub.java:480)
          at weblogic.management.Admin.startApplicationManager(Admin.java:1309)
          at weblogic.management.Admin.finish(Admin.java:649)
          at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:542)
          at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:213)
          at weblogic.Server.main(Server.java:35)
          <2003-02-15 21:24:13 CET> <Notice> <WebLogicServer> <ListenThread
    listening on port 7001, ip address 192.168.1.4>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hello Per Rune,
    I have a similar problem. Where exactly did you add the paramters? In the offline tool for the j2ee engine?
    Many thanks for your answer.
    Regards
    Michael

  • Help...java.io.IOException Problem

    Hello,
    I am having problems running Weblogic 4.5.1 as Windows NT Service but no
    problems when running from command window.
    The configuration is such:
    Hardware:
    Dual Processor PIII, 1GB memory, 2 NICs, mirrored internal RAID SCSI drive
    on Compaq 1850R
    OS:
    Windows NT 4.0 SP5
    Configuration:
    JVM: JDK 1.2.2 (heap size 384M) from Sun
    Weblogic 4.5.1 (Server version value=4.5.1 - 128 bit domestic version)
    weblogic.system.executeThreadCount=40
    weblogic.system.nativeIO.enable=true
    weblogic.system.enableConsole=true
    If I start the weblogic server from the command window and start throwing
    https requests to it, the server works fine for as many number of messages
    as I want and for as long as I want.
    But when I start the server from the services window in the control panel,
    after 98th message it starts giving error (found ofcourse in the log file
    only). The snippet of the log file is shown below:
    Error found in log file:
    Thu Apr 27 05:57:34 PDT 2000:<I> <ListenThread> Listening on port: 80
    Thu Apr 27 05:57:35 PDT 2000:<I> <SSLListenThread> Listening on port: 443
    Thu Apr 27 05:57:35 PDT 2000:<I> <WebLogicServer> WebLogic Server started
    Thu Apr 27 05:58:01 PDT 2000:<I> <ServletContext-Servlets>
    com.mycompany.servlet.frontline.frontlineServlet: init
    Thu Apr 27 05:59:01 PDT 2000:<E> <CliCon-#|myserver|11.956840209531>
    FrontlineSessionBean.processMessage: error parsing message:
    java.io.IOException: The handle is invalid
    Thu Apr 27 05:59:01 PDT 2000:<E> <CliCon-#|myserver|11.956840209531>
    FrontlineSessionBean.processMessage: error parsing message:
    java.io.IOException: The handle is invalid
    Your insights will be highly helpful.
    thanks.
    Alay Desai

    Hello all,
    I'm having almost the same issue related to error message when I hit a button on my manufacturing software.
    *"ScriptException: Error in exec: java.io.IOException: CreateProcess*
    *exec(C:\\progra~1\\intern~1\\iexplore.exe http://cbweb4:81/barcode/CMbombyorder.asp\u003FR2=P&T2=12875424-P")*
    This is when I hit a button that works for us to show this webpage I wrote previously. Last week we didnt have this issue, this just started this morning and I dont know what do to, it shows something about JAVA, that's why I'm asking to you guys, I dont know if you could please enlight me a little bit.
    Thanks in advance.

  • OAF 12.2.4 - 500 Internal Server Error java.io.IOException when running a page from Jdeveloper

    Hi All,
    I face the following error message in the web browser when I try to run a simple page from JDeveloper:
    500 Internal Server Error java.io.IOException
    The message is the same when I run the Hello World test from the Tutorials project.
    Here is the error stack:
    500 Internal Server Error
    java.io.IOException
            at oracle.apps.fnd.common.WebRequestUtil.validateContextPrivate(WebRequestUtil.java:559)
            at oracle.apps.fnd.common.WebRequestUtil.validateContext(WebRequestUtil.java:334)
            at oracle.apps.fnd.common.WebRequestUtil.validateContext(WebRequestUtil.java:237)
            at _OAErrorPage._jspService(_OAErrorPage.java:337)
            [/OAErrorPage.jsp]
            at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.5.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
            at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473)
            at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
            at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:280)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:68)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:214)
            at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:219)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:871)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:816)
            at _OA._jspService(_OA.java:130)
            [/OA.jsp]
            at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.5.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
            at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473)
            at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
            at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:226)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:127)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:116)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.5.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:662)
    This is JDeveloper 10.1.3.5.0 from patch p19170592_R12_GENERIC.zip
    The OAF release is 12.2.4
    JDEV_USER_HOME is set to C:\Olivier\R12\jdev1224\jdevhome\jdev
    The .dbc file looks fine.
    I connect successfully to database.
    I tried to reinstall JDeveloper.
    I performed many searches on MOS, OTN, Google, etc...
    I tried to change the Startup Settings (Host Name, IP Address settings) of the Embedded OC4J Server Preferences.
    I am stuck.
    Any ideas?
    Thanks,
    Olivier

    Hi Peddi,
    Thanks for your reply.
    I checked again the .dbc file.
    I downloaded again the file from $INST_TOP/appl/fnd/12.0.0/secure to <JDEV_USER_HOME>\dbc_files\secure
    This file worked fine for JDeveloper for 12.2.3.
    I went again through "Oracle Application Framework Developer's Guide Release 12.2.4 July 2014" but could not find any part related to .dbc file having changed from previous release.
    I tried to comment out the parameter APPS_JDBC_URL in .dbc as per MOS note "Troubleshooting JDeveloper setup for Oracle Applications (Doc ID 357218.1)"
    But I still face the issue.
    According to the note "Configuring JDeveloper For Use With Oracle Applications 11i and R12 (Doc ID 330236.1)", I have added the following debug parameters in the project properties:
    -Djbo.debugoutput=console -Djbo.logging.trace.threshold=9 -Djbo.jdbc.driver.verbose=true -Djbo.jdbc.trace=true
    It generated the following OC4J server detailed log showing more error messages (in red below):
    [extract]
    15/02/04 17:13:56 [553] Successfully logged in
    15/02/04 17:13:56 [554] JDBCDriverVersion: 11.2.0.2.0
    15/02/04 17:13:56 [555] DatabaseProductName: Oracle
    15/02/04 17:13:56 [556] DatabaseProductVersion: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options
    15/02/04 17:13:56 [557] Root application module, oracle.apps.fnd.framework.toolbox.tutorial.server.HelloWorldAM, was created at 2015-02-04 17:13:56.283
    15/02/04 17:13:56 [558] setConnectionReleaseLevel - Set connection release level to 0
    15/02/04 17:13:56 [559]
    <ICX_SessionValues_Diagnostics - ICX Cookie = 4tzlN3OR7BSoTLXf4grnQylQ4l>: WebRequestUtil.validateContext is called.
    15/02/04 17:13:56 [560] SQLState(42000) vendor code(2248)
    15/02/04 17:13:56 [561] java.sql.SQLSyntaxErrorException: ORA-02248: invalid option for ALTER SESSION
    ORA-06512: at "SYS.DBMS_SESSION", line 164
    ORA-06512: at line 6
    15/02/04 17:13:56 [562] at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:94)
    15/02/04 17:13:56 [563] at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:147)
    15/02/04 17:13:56 [564] at oracle.jdbc.driver.DatabaseError.createSqlException(DatabaseError.java:206)
    15/02/04 17:13:56 [565] at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:456)
    15/02/04 17:13:56 [566] at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
    15/02/04 17:13:56 [567] at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:889)
    15/02/04 17:13:56 [568] at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)
    15/02/04 17:13:56 [569] at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
    15/02/04 17:13:56 [570] at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:540)
    15/02/04 17:13:56 [571] at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:213)
    15/02/04 17:13:56 [572] at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1075)
    15/02/04 17:13:56 [573] at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1466)
    15/02/04 17:13:56 [574] at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3752)
    15/02/04 17:13:56 [575] at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3937)
    15/02/04 17:13:56 [576] at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:9259)
    15/02/04 17:13:56 [577] at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1535)
    15/02/04 17:13:56 [578] at oracle.apps.fnd.sso.SessionMgr.loadInstalledLanguages(SessionMgr.java:4119)
    15/02/04 17:13:56 [579] at oracle.apps.fnd.sso.SessionMgr.getInstalledLanguages(SessionMgr.java:3872)
    15/02/04 17:13:56 [580] at oracle.apps.fnd.sso.Utils.getBaseInstalledLangCode(Utils.java:1491)
    15/02/04 17:13:56 [581] at oracle.apps.fnd.sso.Authenticator.<clinit>(Authenticator.java:45)
    15/02/04 17:13:56 [582] at oracle.apps.fnd.sso.Utils.<clinit>(Utils.java:675)
    15/02/04 17:13:56 [583] at oracle.apps.fnd.sso.SSOManager.canUpgradeToUserSession(SSOManager.java:3000)
    15/02/04 17:13:56 [584] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    15/02/04 17:13:56 [585] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    15/02/04 17:13:56 [586] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    15/02/04 17:13:56 [587] at java.lang.reflect.Method.invoke(Method.java:597)
    15/02/04 17:13:56 [588] at oracle.apps.fnd.common.WebRequestUtil.validateContextPrivate(WebRequestUtil.java:557)
    15/02/04 17:13:56 [589] at oracle.apps.fnd.common.WebRequestUtil.validateContext(WebRequestUtil.java:369)
    15/02/04 17:13:56 [590] at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.validateIcxCookie(Unknown Source)
    15/02/04 17:13:56 [591] at oracle.apps.fnd.framework.OASessionCookieHelper.validateIcxSession(Unknown Source)
    15/02/04 17:13:56 [592] at oracle.apps.fnd.framework.OASessionCookieHelper.initializeApplicationModule(Unknown Source)
    15/02/04 17:13:56 [593] at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.initializeApplicationModule(Unknown Source)
    15/02/04 17:13:56 [594] at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(Unknown Source)
    15/02/04 17:13:56 [595] at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
    15/02/04 17:13:56 [596] at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(Unknown Source)
    15/02/04 17:13:56 [597] at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(Unknown Source)
    15/02/04 17:13:56 [598] at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
    15/02/04 17:13:56 [599] at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
    15/02/04 17:13:56 [600] at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
    15/02/04 17:13:56 [601] at _OA._jspService(_OA.java:72)
    15/02/04 17:13:56 [602] at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    15/02/04 17:13:56 [603] at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473)
    15/02/04 17:13:56 [604] at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    15/02/04 17:13:56 [605] at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    15/02/04 17:13:56 [606] at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    15/02/04 17:13:56 [607] at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
    15/02/04 17:13:56 [608] at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
    15/02/04 17:13:56 [609] at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:280)
    15/02/04 17:13:56 [610] at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:68)
    15/02/04 17:13:56 [611] at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:214)
    15/02/04 17:13:56 [612] at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
    15/02/04 17:13:56 [613] at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:219)
    15/02/04 17:13:56 [614] at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
    15/02/04 17:13:56 [615] at _OA._jspService(_OA.java:81)
    15/02/04 17:13:56 [616] at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    15/02/04 17:13:56 [617] at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473)
    15/02/04 17:13:56 [618] at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    15/02/04 17:13:56 [619] at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    15/02/04 17:13:56 [620] at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    15/02/04 17:13:56 [621] at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
    15/02/04 17:13:56 [622] at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
    15/02/04 17:13:56 [623] at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908)
    15/02/04 17:13:56 [624] at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458)
    15/02/04 17:13:56 [625] at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:226)
    15/02/04 17:13:56 [626] at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:127)
    15/02/04 17:13:56 [627] at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:116)
    15/02/04 17:13:56 [628] at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    15/02/04 17:13:56 [629] at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    15/02/04 17:13:56 [630] at java.lang.Thread.run(Thread.java:662)
    15/02/04 17:13:56 [631] Could not load application module 'oracle.apps.fnd.framework.toolbox.tutorial.server.HelloWorldAM'.
    15/02/04 17:13:56 [632] oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.io.IOException;
      at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.validateIcxCookie(Unknown Source)
      at oracle.apps.fnd.framework.OASessionCookieHelper.validateIcxSession(Unknown Source)
      at oracle.apps.fnd.framework.OASessionCookieHelper.initializeApplicationModule(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.initializeApplicationModule(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(Unknown Source)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
      at _OA._jspService(_OA.java:72)
      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473)
      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
      at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:280)
      at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:68)
      at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:214)
      at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
      at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:219)
      at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
      at _OA._jspService(_OA.java:81)
      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473)
      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908)
      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458)
      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:226)
      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:127)
      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:116)
      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
      at java.lang.Thread.run(Thread.java:662)
    ## Detail 0 ##
    java.io.IOException
      at oracle.apps.fnd.common.WebRequestUtil.validateContextPrivate(WebRequestUtil.java:559)
      at oracle.apps.fnd.common.WebRequestUtil.validateContext(WebRequestUtil.java:369)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.validateIcxCookie(Unknown Source)
      at oracle.apps.fnd.framework.OASessionCookieHelper.validateIcxSession(Unknown Source)
      at oracle.apps.fnd.framework.OASessionCookieHelper.initializeApplicationModule(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.initializeApplicationModule(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(Unknown Source)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source)
      at _OA._jspService(_OA.java:72)
      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473)
      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
      at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:280)
      at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:68)
      at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:214)
      at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
      at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:219)
      at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
      at _OA._jspService(_OA.java:81)
      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473)
      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908)
      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458)
      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:226)
      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:127)
      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:116)
      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
      at java.lang.Thread.run(Thread.java:662)
    15/02/04 17:13:56 [633] In OADBTransactionImpl.rollback()
    15/02/04 17:13:56 [634]      conn.rollback();  // JBO-JDBC-INTERACT
    15/02/04 17:13:56 [635] Resetting AM=HelloWorldAM
    15/02/04 17:13:56 [636] OAApplicationPoolImpl.setConnectionReleaseLevel was called with isReleased = true, isReserved = false
    15/02/04 17:13:56 [637] setConnectionReleaseLevel - Set connection release level to 2
    Regards,
    Olivier

  • Web Service Error:java.io.IOException

    When I call a .NET web service to access Active Directory service. I got the following error:
    [SOAPException: faultCode=SOAP-ENV:IOException; msg=Not authenticated to the server.; targetException=java.io.IOException: Not authenticated to the server.]
    If I use the IE browser with user name and password it has no problem to access to the service. Any idea what the problem it is?
    I am using JDeveloper 9.0.5.0.0 and Java 1.4.1_02 as VM
    Thanks

    Hi Sunil,
    The URL i'm using to create the UDDI connection in JDeveloper is http://<server>:<port>/registry/uddi/inquiry.
    I am able to query the repository and find details which can be saved into JDevelopers UDDI heirarchy.
    Right clicking an endpoint intermittently generates "An error occurred while opening jdev.uddi.bindingtemplate:http://bpel2:7777/registry/uddi/inquiry/<uddi-ref>" - Selecting Details gives the message "The access point for the service is of type Other URL. Only http or https access points are supported."
    After finding a service in uddi, right clicking where the above message isn't generated results in java.io.IOException: The access point for the service is of type Other URL. Only http or https access points are supported.
    Toby

  • GlassFish: java.lang.NoClassDefFoundError: org/jdesktop/layout/GroupLayout$

    Hi,
    I am new to java, liked the tool nebeans and want to shift to it.
    I created a desktop swing application containing one blank form only, set its property to run on JWS. It works fine, then I created a project for deploying the app on GlassFish. Verified it, it gave no error. But on launching the app from GlassFish V2 b58g, I get following error;
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at com.sun.enterprise.appclient.jws.boot.JWSACCMain.run(JWSACCMain.java:218)
         at com.sun.enterprise.appclient.jws.boot.JWSACCMain.main(JWSACCMain.java:177)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.sun.javaws.Launcher.executeApplication(Unknown Source)
         at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
         at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
         at com.sun.javaws.Launcher.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.RuntimeException: java.lang.NoClassDefFoundError: org/jdesktop/layout/GroupLayout$Group
         at com.sun.enterprise.appclient.MainWithModuleSupport.<init>(MainWithModuleSupport.java:454)
         ... 15 more
    Caused by: java.lang.NoClassDefFoundError: org/jdesktop/layout/GroupLayout$Group
         at java.lang.Class.getDeclaredMethods0(Native Method)
         at java.lang.Class.privateGetDeclaredMethods(Unknown Source)
         at java.lang.Class.getMethod0(Unknown Source)
         at java.lang.Class.getMethod(Unknown Source)
         at com.sun.enterprise.util.Utility.invokeApplicationMain(Utility.java:236)
         at com.sun.enterprise.appclient.MainWithModuleSupport.<init>(MainWithModuleSupport.java:417)
         ... 15 more
    Please help me out.
    Thanks
    Krishnan

    krishnan wrote: I am new to java, liked the tool nebeans and want to shift to it.
    Since, at one post, it seems you are not just new to Netbeans, Java and JWS, but also the Sun forums, I will take this moment to point out that adding Dukes to a question encourages replies, and can be done at any point in a thread.
    krishnan wrote: Caused by: java.lang.NoClassDefFoundError: org/jdesktop/layout/GroupLayout$Group ..
    This is usually caused by the lack of the Jar containing the named class, in the application classpath. The application classpath is specified in the JNLP file.
    GroupLayout is also a Netbeans specific class. I recommend coding most GUIs in core J2SE layouts, to avoid you having to supply the Jar, and the user to download it.
    If you try to add the jar without success, it would be helpful to know the basic 'layout' of the server (e.g. describe where all the resources, including the JNLP file(s) and jar(s) are located) and the content of the JNLP file.
    Note also that Netbeans makes horrid JNLP files. You are better off writing your own and ensuring Netbeans never gets the idea it is expected to edit it. You can do this by abandoning some of the 'click a button' ease that you apparently quite like, and using Ant to build and deploy the project.
    Ant adds a bit more learning, but is well worth the effort, as projects that can be worked on in Netbeans, can also be worked on using Eclipse (and every other IDE that supports Ant), or can be built from the command line.

Maybe you are looking for

  • Error calling a method of the tree control in BDC

    I'm connecting two systems Iplan(project management tool) with SAP PS using SAP XI. I've written an BDC(RFC) to assign people for the activity in an project(cj20n) it works fine in the foreground. But it doesn't work in the background.It doesn't give

  • Missing parent object when using FXML - cannot manipulate other content

    Hi, today I was playing around with FXML and embedded it into a custom made "Dialog" class (an abstract class to provide some basic stuff, like add OK/Cancel Button, handle result type and so on programmatically). Basically I've created an implementa

  • J2EE SDK on Solaris 8 x86

    Does anyone know if there is a way to install J2EE on Solaris 8 x86? Sun seems to make it available for Windows, Linux, and Solarix SPARC, but not for their own Intel platform.

  • How to launch an Air desktop app from a second Air desktop app?

    Hi, Is there a way to launch an Air desktop app from a second Air desktop app? I'm using Air 4 with Flash CS 6 on Windows. Thanks

  • Xinerama on Solaris.

    I want to extend my solaris 10 developer edition desktop across my two monitor. I have an ati radeon x550 with two monitor support. I Try this tutorial http://www.sun.com/bigadmin/features/articles/xinerama_x86.html scanpci find two ati devices (corr