Error: invalid DICT array size

This is still happening to me, and it's completely up to date. Not sure how to proceed.
Melanie

If the error is coming from the font system, then these troubleshooting documents may be useful:
http://kb2.adobe.com/cps/327/327791.html
http://kb2.adobe.com/cps/832/cpsid_83223.html (#6 and #7 regarding fonts)

Similar Messages

  • After Effects error: Invalid DICT array size (83 :: 2)

    I've looked online and the only solution I've seen posted anywhere was using FontDoctor on a Mac system.  I'm using Windows 8 and tried a program called FontDoctor from Extensis, but it did not solve my issue when I corrected the "problems" it detected.
    Does anybody know how I can get rid of this error?  It's very annoying...

    Some crappy freeware fonts have been known to register as specific font families liek Arial while actualyl containing a completely different font (a ripped commercial font usually). Just saying. If you don't use such fonts, then that's not the issue. For checking your otehr fonts you will have to spend some time browsing the list. I'm not aware of a specific tool for this, though naturalyl, commercial font managers might have such a search feature...
    Mylenium

  • After effects CC (12.2.1.5) Error: Invalid DICT array size ( 83 :: 2 ) ??!

    Every time i launch AE, this message pops up, i had this in AE Cs6 and now in AE CC 12.2.1.5
    am using Windows 7, using Adobe After effects CC 12.2.1.5, 32 GB Ram, intel i7
    Once i click OK, the application works fine no problems, sometimes when i minimize it and use the browser for example, once i restore AE the message pop up again!
    Please Advice.

    THese are font or language settings issues. Check your system language and region setings and remove any fonts you don't need. There could be a"bad" one. Also of course start by reinstalling the program.
    Mylenium

  • Array size mismatch error (1047) from matlab to labview

    Hello all,
    I have a very strange situation here and I am hoping someone can come up with some ideas for me...
    I am running labview vi's through a web page, and one of my vi's contains a matlab script with two array inputs, one 2d with a varying length, and the second a 1d array with a fixed set of parameters.
    If I call this report on my local system, web server labview and matlab all running on my laptop. Everything works fine. I receive no errors and the matlab script runs and returns data as expected.
    The problem is I have an Identical setup (as near as I can tell) setup on a server, and I receive a 1047 error, reporting an array size mismatch.
    All the input arrays data sets are identical in the vi at the input into the matlab script. And as best as I can tell all sub VI's and M files are identical. The only difference I can come up with is that one setup is running on a server and the other is not, however other vi's using matlab script (although a simpler configuration (no direct inputs or outputs form matlab, all data transferred in and out via txt files )) run fine in both configurations.
    On both systems I running matlab ver 7 (R14) with a single user license and Labview 7.1.
    any ideas or suggestions would be greatly appreciated. Please let me know if any additional details are needed.
    Thank you in advance,
    Chris

    Hello Matt,
    Yes you were correct upgraded LV to 7.1.1 and everything is running fine now.
    thanks
    NPI_Chris wrote:
    Hello all,
    I have a very strange situation here and I am hoping someone can come up with some ideas for me...
    I am running labview vi's through a web page, and one of my vi's contains a matlab script with two array inputs, one 2d with a varying length, and the second a 1d array with a fixed set of parameters.
    If I call this report on my local system, web server labview and matlab all running on my laptop. Everything works fine. I receive no errors and the matlab script runs and returns data as expected.
    The problem is I have an Identical setup (as near as I can tell) setup on a server, and I receive a 1047 error, reporting an array size mismatch.
    All the input arrays data sets are identical in the vi at the input into the matlab script. And as best as I can tell all sub VI's and M files are identical. The only difference I can come up with is that one setup is running on a server and the other is not, however other vi's using matlab script (although a simpler configuration (no direct inputs or outputs form matlab, all data transferred in and out via txt files )) run fine in both configurations.
    On both systems I running matlab ver 7 (R14) with a single user license and Labview 7.1.
    any ideas or suggestions would be greatly appreciated. Please let me know if any additional details are needed.
    Thank you in advance,
    Chris

  • Invalid initial heap size in JVM 1.4.2_04 on Solaris 9 machine

    Hi,
    While running this command.
    # java -Xms8096m -Xmx8096m newserver.sh
    I am getting the following error:
    Invalid initial heap size: -Xms5000m
    Could not create the Java virtual machine
    I tried with - server option also. But same error. Can any one tell me what is the limit of heap size allowed in Solaris 9? Plz tell me work around for this.
    Thanks,
    Vasanth.

    cvringer wrote:
    I really hate this responses. If you bother others with your problems, at least take the trouble of informing others about the solution. You made this whole post worthless.Reply #2 answers the question. You need a 64-bit VM.
    I'm locking this zombie thread.
    Kaj

  • Invalid entry compressed size

    I am writing a program to edit the web.xml file and weblogic.xml file of a war file and create a new war file. below is my code. I am getting error:invalid entry compressed size(expected 320 and got 0bytes)
    public void modifyWar(String inputWar, String outputWar, String filterJar) throws FileNotFoundException,
    IOException {
    FileInputStream fis = new FileInputStream (inputWar);
    FileOutputStream fos = new FileOutputStream(outputWar);
    BufferedInputStream bis = new BufferedInputStream(fis);
    BufferedOutputStream bos = new BufferedOutputStream(fos);
    JarInputStream warsrc= new JarInputStream (bis);
    JarOutputStream wardest = new JarOutputStream (bos);
    int offset = 0;
    //Copy the war file into new one
    for (JarEntry zipentry = warsrc.getNextJarEntry(); zipentry != null; zipentry = warsrc.getNextJarEntry()){
    byte[] buf = new byte[4096 * 16];
    byte[] buf1 = new byte [4096 * 16 ];
    int nBytes = 0;
    System.out.println("zipentry " + zipentry.getName());
    wardest.putNextEntry(zipentry);
    String webChange= zipentry.getName();
    System.out.println ("Size of " + zipentry + " is " + zipentry.getCompressedSize());
    try{
    while ( ( nBytes = warsrc.read(buf,offset,buf.length)) != -1 ){
    if (webChange.endsWith("web.xml") || webChange.endsWith("weblogic.xml"))
    ByteArrayInputStream istr= new ByteArrayInputStrea(buf,offset,nBytes);
    InputSource is = new InputSource (istr);
    buf1= writetowebxml(is);
    wardest.write(buf1,offset,nBytes);
    offset += buf1.length;
    if(nBytes < buf1.length)
    break;
    else{
    wardest.write(buf, offset, nBytes);
    offset += nBytes;
    if(nBytes < buf.length)
    break;
    }catch (IndexOutOfBoundsException e){
    wardest.close();
    public static byte[] writetowebxml(InputSource isnew) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    try{
    DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
    Document doc = docBuilder.parse(isnew);
    Element root = doc.getDocumentElement();
    Element childElement = doc.createElement("Number");
    root.appendChild(childElement);
    Element NumberName = doc.createElement("Number-name");
    NumberName.appendChild(doc.createTextNode("Counter"));
    childElement.appendChild(NumberName);
    DOMSource source = new DOMSource(doc);
    Result result = new StreamResult(out);
    TransformerFactory factory = TransformerFactory.newInstance();
    Transformer transformer = factory.newTransformer();
    transformer.transform(source, result);
    catch(SAXException e) {
    e.printStackTrace();
    catch(IOException e) {
    e.printStackTrace();
    catch(ParserConfigurationException e) {
    e.printStackTrace();
    catch(TransformerConfigurationException e) {
    e.printStackTrace();
    catch(TransformerException e) {
    e.printStackTrace();
    return (out.toByteArray());
    Thanks,
    Kevin.
    Edited by: user13461628 on Dec 12, 2010 7:06 AM

    Moderator advice: Please read the announcement(s) at the top of the forum listings and the FAQ linked from every page. They are there for a purpose.
    Then edit your post and format the code correctly.
    db

  • Invalid initial heap size error when starting weblogic server 11g R1

    I installed JDeveloper Studio 11.1.1.2.0 . When iItried to start weblogic server 11g R1, I had this message :
    starting weblogic with Java version:
    java version "1.6.0_14"
    Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
    Java HotSpot(TM) Client VM (build 14.0-b16, mixed mode)
    Starting WLS with line:
    C:\Oracle\MIDDLE~1\JDK160~1.5-3\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Djavax.net.ssl.trustStore=C:\Oracle\Middleware\wlserver_10.3\server\lib\DemoTrust.jks -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=C:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Ddomain.home=C:\DOCUME~1\Admin\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1 -Dcommon.components.home=C:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.domain.config.dir=C:\DOCUME~1\Admin\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\FMWCON~1 -Doracle.server.config.dir=C:\DOCUME~1\Admin\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.security.jps.config=C:\DOCUME~1\Admin\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\fmwconfig\jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Digf.arisidbeans.carmlloc=C:\DOCUME~1\Admin\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\FMWCON~1\carml -Digf.arisidstack.home=C:\DOCUME~1\Admin\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\FMWCON~1\arisidprovider -Dweblogic.alternateTypesDirectory=\modules\oracle.ossoiap_11.1.1,\modules\oracle.oamprovider_11.1.1 -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=C:\DOCUME~1\Admin\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\oracle\store\gmds "-Xms512m -Xmx512m" -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1\patch_wls1032\profiles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic.Server
    Could not create the Java virtual machine.
    Invalid initial heap size: -Xms512m -Xmx512m
    Process exited.
    Please, how can I fixe this error ?

    For 2 GB machine set the parameters as below:
    /ide/bin/ide.conf
    AddVMOption -Xmx1232M
    AddVMOption -Xms64M
    /jdev/bin/jdef.conf
    AddVMOption -XX:MaxPermSize=128M
    For 3 GB machine set the parameters as below:
    /ide/bin/ide.conf
    AddVMOption -Xmx1488M
    AddVMOption -Xms64M
    /jdev/bin/jdef.conf
    AddVMOption -XX:MaxPermSize=128M

  • An unexpected 'invalid property array index' error occured in wdbrlog

    Hi experts,
    My system is :
    SAP_BW 7.0 Path  0012
    SAP GUI Final Release Patch 24
    In my query definition, I right-click on one of the characteristics..Eg. Posting Date --> Properties --> Change 'Suppress Results Rows' option from "Never" to "Always". --> Press OK.
    Then I get this pop-up with error message:
    <u>Program Error Intercepted
    An unexpected 'invalid property array index' error occured in wdbrlog.
    1 error(s) are logged.</u>
    If I say continue, it kicks me out of BeX. I need to re-login to do the stuff.
    I find some information, but i dont know what happens.
    Did anyone get the similar error?
    Thanks,
    Marc

    <FONT FACE = "Tahoma", Font Color = "Blue">
    Hi
    <Br>
    I am afraid you may have to re-install your SAP GUI and Business Explorer.
    <Br><Br>Hope it helps.
    <Br>
    <Br>
    Cheers
    Abhijit
    <Br>* Removed
    </FONT>

  • ATL COM server error (0x800706C6 The array bounds are invalid) in Windows 2012 server

    Hi,
    We have a ATL  COM server application which was developed using Visual Studio 6.0. This was ported to Visual Studio 2003 later.
    The application was running without any problems on Windows 2008 server. When we installed it on Windows 2012 server the services would not start at all. On contacting MS support we can to know that the code needs to be built using Visual Studio 2013. The
    same was done wherein we ported the application to be built using Visual Studio 2013.
    The application is still failing. On debugging I could trace it to CoResumeClassObjects() call. This call returns error "0x800706C6 The
    array bounds are invalid.". The same works perfectly fine on windows 2008. 
    Does anyone know what has changed between 2008 server and 2012 R2 server with respect to COM implementation.

    Hi Amit,
    Please try call CoResumeClassObjects to register classes in ServiceMain function.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Oracle 11gR2 Installation Error "Invalid Entry Size"

    Hi Gurus,
    I am getting this error **"invalid entry size (expected 3486269263 but got 19496 bytes) "** during Oracle 11gR2 installation on Solaris 5.10.
    Here is the config log
    INFO: Extracting files to '/export/home/perfuser/app/perfuser/product/11.2.0/dbhome_1'.
    INFO: Extracting files to '/export/home/perfuser/app/perfuser/product/11.2.0/dbhome_1'.
    INFO: Performing fastcopy operations based on the information in the file 'oracle.server_EE_exp_1.xml'.
    INFO: Performing fastcopy operations based on the information in the file 'racfiles.jar'.
    INFO: Performing fastcopy operations based on the information in the file 'oracle.server_EE_dirs.lst'.
    INFO: Performing fastcopy operations based on the information in the file 'oracle.server_EE_filemap.jar'.
    INFO: Performing fastcopy operations based on the information in the file 'oracle.server_EE_1.xml'.
    INFO: Performing fastcopy operations based on the information in the file 'setperms1.sh'.
    INFO: Number of threads for fast copy :1
    INFO: invalid entry size (expected 3486269263 but got 19496 bytes)
    SEVERE: oracle.sysman.oii.oiif.oiifb.OiifbEndIterateException: invalid entry size (expected 3486269263 but got 19496 bytes)
         at oracle.sysman.oii.oiic.OiicInstallAPISession.doOperation(OiicInstallAPISession.java:453)
         at oracle.sysman.oii.oiic.OiicAPIInstaller.doOperation(OiicAPIInstaller.java:973)
         at oracle.sysman.oii.oiic.OiicAPIInstaller.doOperation(OiicAPIInstaller.java:936)
         at oracle.install.driver.oui.OUISetupDriver.setup(OUISetupDriver.java:459)
         at oracle.install.driver.oui.SetupJob.call(SetupJob.java:166)
         at oracle.install.driver.oui.SetupJob.call(SetupJob.java:47)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:269)
         at java.util.concurrent.FutureTask.run(FutureTask.java:123)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    INFO: Update the state machine to STATE_READY
    INFO: isSuccessfullInstallation: false
    INFO: isSuccessfullRemoteInstallation: true
    INFO: Adding ExitStatus FAILURE to the exit status set
    INFO: Shutting down OUISetupDriver.JobExecutorThread
    SEVERE: [FATAL] invalid entry size (expected 3486269263 but got 19496 bytes)
    CAUSE: No additional information available.
    ACTION: Refer to the logs or contact Oracle Support Services
    SUMMARY:
    - invalid entry size (expected 3486269263 but got 19496 bytes).
    Refer associated stacktrace #oracle.install.commons.util.exception.DefaultErrorAdvisor:5850
    INFO: Advice is ABORT
    SEVERE: Unconditional Exit
    INFO: Adding ExitStatus FAILURE to the exit status set
    INFO: Finding the most appropriate exit status for the current application
    INFO: Exit Status is -1
    INFO: Shutdown Oracle Database 11g Release 2 Installer
    Please help me to solve this issue

    Hi Hans,
    Thanks for your reply, after downloading the new installer "invalid entry size" error is gone now.
    but once the installer reaches to 68% then its giving the error " Error in invoking target 'mkldflags ntcontab.o' of makefile '/export/home/perfuser/app/perfuser/product/11.2.0/dbhome_1/network/lib/ins_net_client.mk'
    Here is the log info:
    INFO: (if [ "assemble" = "assemble" ] ; then \
    /export/home/perfuser/app/perfuser/product/11.2.0/dbhome_1/bin/gennttab > ntcontab.s ;\
    /usr/ccs/bin/as -P -m64 -o ntcontab.o ntcontab.s ;\
    rm -f /export/home/perfuser/app/perfuser/product/11.2.0/dbhome_1/lib/ntcontab.o ;\
    mv ntcontab.o /export/home/perfuser/app/perfuser/product/11.2.0/dbhome_1/lib/ ;\
    /usr/ccs/bin/ar rv /export/home/perfuser/app/perfuser/product/11.2.0/dbhome_1/lib/libn11.a /export/home/perfuser/app/perfuser/product/11.2.0/dbhome_1
    INFO: /lib/ntcontab.o ; fi)
    INFO: /usr/ccs/bin/as: error: unknown option '6'
    /usr/ccs/bin/as: error: unknown option '4'
    usage: /usr/ccs/bin/as [-V] [-Q{y,n}] [-q] [-s]
         [-S] [-K {pic,PIC}] [-o objfile] [-L] [-T]
         [-P [[-Yc,path] [-Ipath] [-Dname] [-Dname=def] [-Uname]]...]
         [-m [-Ym,path]] [-n] [-ul] [-xF] [-xarch={v7,v8,v8a,v8plus,v8plusa,v8plusb,v9,v9a,v9b}] [-xcode={pic13,pic32}] file.s...
    INFO: *** Error code 1
    INFO: make: Fatal error: Command failed for target `ntcontab.o'
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'mkldflags ntcontab.o nnfgt.o' of makefile '/export/home/perfuser/app/perfuser/product/11.2.0/dbhome_1/network/lib/ins_net_client.mk'. See '/export/home/oemora/logs/installActions2010-03-08_08-42-39PM.log' for details.
    Exception Severity: 1
    INFO: Adding ExitStatus STOP_INSTALL to the exit status set
    INFO: Finding the most appropriate exit status for the current application
    INFO: Exit Status is -4
    INFO: Shutdown Oracle Database 11g Release 2 Installer
    INFO: Unloading Setup Driver
    Thanks
    Krishna

  • OSD-04001: invalid logical block size (OS 2800189884)

    My Windows 2003 crashed which was running Oracle XE.
    I installed Oracle XE on Windows XP on another machine.
    I coped my D:\oracle\XE10g\oradata folder of Win2003 to the same location in WinXP machine.
    When I start the database in WinXP using SQLPLUS i get the following message
    SQL> startup
    ORACLE instance started.
    Total System Global Area 146800640 bytes
    Fixed Size 1286220 bytes
    Variable Size 62918580 bytes
    Database Buffers 79691776 bytes
    Redo Buffers 2904064 bytes
    ORA-00205: error in identifying control file, check alert log for more info
    I my D:\oracle\XE10g\app\oracle\admin\XE\bdump\alert_xe I found following errors
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 4 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    Wed Apr 25 18:38:36 2007
    ALTER DATABASE MOUNT
    Wed Apr 25 18:38:36 2007
    ORA-00202: control file: 'D:\ORACLE\XE10G\ORADATA\XE\CONTROL.DBF'
    ORA-27047: unable to read the header block of file
    OSD-04001: invalid logical block size (OS 2800189884)
    Wed Apr 25 18:38:36 2007
    ORA-205 signalled during: ALTER DATABASE MOUNT...
    ORA-00202: control file: 'D:\ORACLE\XE10G\ORADATA\XE\CONTROL.DBF'
    ORA-27047: unable to read the header block of file
    OSD-04001: invalid logical block size (OS 2800189884)
    Please help.
    Regards,
    Zulqarnain

    Hi Zulqarnain,
    Error OSD-04001 is Windows NT specific Oracle message. It means that the logical block size is not a multiple of 512 bytes, or it is too large.
    So what you can do? Well you should try to change the value of DB_BLOCK_SIZE in the initialization parameter file.
    Regards

  • B2B EDIFACT over Internet AS2 - 5081: XEngine error - Invalid guideline.

    Hi,
    When get message from TP on EDI EDIFACT over Internet AS2-1.1 - INVOIC
    Get an error: "5081: XEngine error - Invalid guideline."
    Version: Oracle Application Server Integration B2B, Release 10.1.2, Build B2B_10.1.2.4.0_GENERIC_091027.
    Log:
    2012.03.26 at 14:51:52:051: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Enter
    2012.03.26 at 14:51:52:051: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Return = oracle.tip.adapter.b2b.document.edi.ISelectorImpl@18f729c
    2012.03.26 at 14:51:52:052: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = SeverityConfig
    2012.03.26 at 14:51:52:052: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = null
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Enter
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Return = oracle.tip.adapter.b2b.document.edi.ISelectorImpl@ad97f5
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:reset Enter
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:reset Leave
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Enter
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Return = oracle.tip.adapter.b2b.document.edi.ISelectorImpl@d38976
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup Enter
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = InterchangeReceiverQual, val = []
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [null]
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = InterchangeSenderID, val = [SEDIS-SVS]
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [SEDIS-SVS]
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = InterchangeReceiverID, val = [DSPGROUPSBI05]
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [DSPGROUPSBI05]
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = Standard, val = [EDIFACT]
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [EDIFACT]
    2012.03.26 at 14:51:52:059: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = InterchangeControlVersion, val = [4]
    2012.03.26 at 14:51:52:060: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [4]
    2012.03.26 at 14:51:52:060: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = ec_DataNodeName, val = [Interchange]
    2012.03.26 at 14:51:52:060: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = InterchangeSenderQual, val = []
    2012.03.26 at 14:51:52:060: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [null]
    2012.03.26 at 14:51:52:060: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup return = true
    2012.03.26 at 14:51:52:060: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup return = true
    2012.03.26 at 14:51:52:060: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = ecsFileKey
    2012.03.26 at 14:51:52:060: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = AC16026A13648E5FAB3000001EB90540
    2012.03.26 at 14:51:52:094: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValueBlob Param Name = ecsOptFileBlob
    2012.03.26 at 14:51:52:094: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValueBlob Param Name = ecsFileBlob
    2012.03.26 at 14:51:52:564: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getStream Enter
    2012.03.26 at 14:51:52:564: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getStream Leave
    2012.03.26 at 14:51:52:565: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = SeverityConfig
    2012.03.26 at 14:51:52:566: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = null
    2012.03.26 at 14:51:52:807: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:setControlNumber sName = Interchange, controlNumber = 30000000000022
    2012.03.26 at 14:51:52:808: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:setControlNumber return = true
    2012.03.26 at 14:51:52:809: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = TPName
    2012.03.26 at 14:51:52:809: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = SIEMENS
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doCommit Enter
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doCommit NodeGUID = {757D76FE-7742-11E1-B54E-00265524F072} position = 0
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doCommit Leave
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Enter
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:cloneSelector Return = oracle.tip.adapter.b2b.document.edi.ISelectorImpl@1e5c339
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup Enter
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = TransactionMessageVersionNumber, val = [D]
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [D]
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = TransactionID, val = [INVOIC]
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [INVOIC]
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = TransactionMessageReleaseNumber, val = [05A]
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [05A]
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = ec_DataNodeName, val = [Transaction]
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup key = TransactionAssociationAssignedCode, val = []
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup param = [null]
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup return = true
    2012.03.26 at 14:51:52:810: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doLookup return = true
    2012.03.26 at 14:51:52:811: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = ecsFileKey
    2012.03.26 at 14:51:52:811: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = BA78E50BF81BC5B0E04016AC6B024E8E-274-1-8
    2012.03.26 at 14:51:52:811: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValueBlob Param Name = ecsOptFileBlob
    2012.03.26 at 14:51:52:811: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValueBlob Param Name = ecsFileBlob
    2012.03.26 at 14:51:52:820: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Param Name = TPName
    2012.03.26 at 14:51:52:820: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:getValue Value = SIEMENS
    2012.03.26 at 14:51:52:821: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doCommit Enter
    2012.03.26 at 14:51:52:821: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doCommit NodeGUID = {757D82F2-7742-11E1-B54E-00265524F072} position = 0
    2012.03.26 at 14:51:52:821: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.ISelectorImpl:doCommit Leave
    2012.03.26 at 14:51:52:842: Thread-18: B2B - (DEBUG) iAudit report :
    Error Brief :
    5081: XEngine error - Invalid guideline.
    iAudit Report :
    <?xml version="1.0" encoding="UTF-16"?><AnalyzerResults Guid="{757D026E-7742-11E1-B54E-00265524F072}" InterchangeReceived="1" InterchangeProcessed="1" InterchangeAccepted="0"> <ExecutionDate>Monday, March 26, 2012</ExecutionDate> <ExecutionTime>02:51:52 PM (IST)</ExecutionTime> <AnalyzerReturn>Failed</AnalyzerReturn> <NumberOfErrors>1</NumberOfErrors> <ErrorByCategory> <Category Name="Rejecting"> <Severity Name="Normal">1</Severity> </Category> </ErrorByCategory> <Status>Finished</Status> <DataFile> <FilePath/> <FileName/> <LastModified/> <FileSize/> <DataURL>file://</DataURL> </DataFile> <Interchange Guid="{757D76FE-7742-11E1-B54E-00265524F072}" InterchangeAckCode="R" TransactionSetsReceived="1" TransactionSetsProcessed="1" TransactionSetsAccepted="0" RError="0" NError="0" OtherWI="0"> <DataXPointer> <StartPos>11</StartPos> <Size>9684</Size> </DataXPointer> <GuidelineInfo> <GuidelineFile> <FilePath>ByteStream</FilePath> <FileName>ByteStream</FileName> <LastModified/> <FileSize/> <GuidelineURL>file://ByteStream</GuidelineURL> </GuidelineFile> <DetailGuidelineInfo> <IID>4</IID> <ID>SS</ID> <Name>SERVICE SEGMENTS</Name> <GroupID>0</GroupID> <Standard>EDIFACT</Standard> <StdVersion>SYNTAX MESSAGES 4</StdVersion> </DetailGuidelineInfo> </GuidelineInfo> <NodeInfo> <Links> <Link Name="InterchangeControlVersion">4</Link> <Link Name="InterchangeSenderID">SEDIS-SVS</Link> <Link Name="InterchangeSenderQual"/> <Link Name="InterchangeReceiverID">DSPGROUPSBI05</Link> <Link Name="InterchangeReceiverQual"/> <Link Name="Standard">EDIFACT</Link> </Links> <Properties> <Property Name="CharSet">UNOB</Property> <Property Name="InterchangeControlVersion">4</Property> <Property Name="InterchangeDirectoryVersion"/> <Property Name="InterchangeEncoding">1</Property> <Property Name="InterchangeSyntaxReleaseNumber"/> <Property Name="InterchangeSenderID">SEDIS-SVS</Property> <Property Name="InterchangeSenderQual"/> <Property Name="InterchangeSenderAddress"/> <Property Name="InterchangeSenderSubAddress"/> <Property Name="InterchangeReceiverID">DSPGROUPSBI05</Property> <Property Name="InterchangeReceiverQual"/> <Property Name="InterchangeReceiverAddress"/> <Property Name="InterchangeReceiverSubAddress"/> <Property Name="InterchangeDate">20120326</Property> <Property Name="InterchangeTime">0300</Property> <Property Name="InterchangeControlNumber">30000000000022</Property> <Property Name="InterchangeRecipientRefPas"/> <Property Name="InterchangeRecipientRefPasQual"/> <Property Name="InterchangeAppReference"/> <Property Name="InterchangePriorityCode"/> <Property Name="InterchangeAckRequested"/> <Property Name="InterchangeAgreementID"/> <Property Name="InterchangeUsageIndicator">1</Property> <Property Name="DecimalSeparator">0x2e</Property> <Property Name="ElementDelimiter">0x2b</Property> <Property Name="ReleaseCharacter">0x3f</Property> <Property Name="RepeatingSeparator">0x2a</Property> <Property Name="SegmentDelimiter">0x270xd0xa</Property> <Property Name="SubelementDelimiter">0x3a</Property> <Property Name="InterchangeChildCount">1</Property> <Property Name="InterchangeTrailerControlNumber">30000000000022</Property> </Properties> </NodeInfo> <Transaction Guid="{757D82F2-7742-11E1-B54E-00265524F072}" TransactionAckCode="R" RError="1" NError="0" OtherWI="0"> <DataXPointer> <StartPos>87</StartPos> <Size>9585</Size> </DataXPointer> <GuidelineInfo> <GuidelineFile> <FilePath>ByteStream</FilePath> <FileName>ByteStream</FileName> <LastModified/> <FileSize/> <GuidelineURL>file://ByteStream</GuidelineURL> </GuidelineFile> <DetailGuidelineInfo> <IID>4</IID> <ID>SS</ID> <Name>SERVICE SEGMENTS</Name> <GroupID>0</GroupID> <Standard>EDIFACT</Standard> <StdVersion>SYNTAX MESSAGES 4</StdVersion> </DetailGuidelineInfo> </GuidelineInfo> <NodeInfo> <Links> <Link Name="TransactionID">INVOIC</Link> <Link Name="TransactionMessageVersionNumber">D</Link> <Link Name="TransactionMessageReleaseNumber">05A</Link> <Link Name="TransactionAssociationAssignedCode"/> </Links> <Properties> <Property Name="TransactionControlNumber">30000000000022</Property> <Property Name="TransactionID">INVOIC</Property> <Property Name="TransactionControllingAgency">UN</Property> <Property Name="TransactionMessageVersionNumber">D</Property> <Property Name="TransactionMessageReleaseNumber">05A</Property> <Property Name="TransactionAssociationAssignedCode"/> <Property Name="TransactionDirectoryVersion"/> <Property Name="TransactionMessageSubFunctionID"/> <Property Name="TransactionCommonAccessRef"/> <Property Name="TransactionSenderSequenceNumber"/> <Property Name="TransactionTransferPosition"/> <Property Name="TransactionMessageSubsetID"/> <Property Name="TransactionMessageSubsetVersion"/> <Property Name="TransactionMessageSubsetRelease"/> <Property Name="TransactionSubsetControllingAgency"/> <Property Name="TransactionImplementationID"/> <Property Name="TransactionImplementationVersion"/> <Property Name="TransactionImplementationRelease"/> <Property Name="TransactionImplemControllingAgency"/> <Property Name="TransactionScenarioID"/> <Property Name="TransactionScenarioVersion"/> <Property Name="TransactionScenarioRelease"/> <Property Name="TransactionScenarioControlAgency"/> <Property Name="TransactionChildCount">376</Property> <Property Name="TransactionTrailerControlNumber">30000000000022</Property> </Properties> </NodeInfo> <TransactionErrors> <Error ErrorCode="{AD01846F-A68B-409D-A264-AA1ECAE7FBA3}" Severity="Normal" Category="Rejecting" Index="1" ID="50810000"> <ErrorBrief>5081: XEngine error - Invalid guideline.</ErrorBrief> <ErrorMsg>Failed guideline.</ErrorMsg> <ErrorObjectInfo> <Parameter Name="ErrorLevel">0</Parameter> <Parameter Name="Name">XEngine</Parameter> <Parameter Name="_ec_dn_guid_">{757D82F2-7742-11E1-B54E-00265524F072}</Parameter> <Parameter Name="_ec_file_name_"/> <Parameter Name="_ec_index">0</Parameter> <Parameter Name="ec_error_scope">Transaction</Parameter> </ErrorObjectInfo> <ErrorDataInfo> <Part1/> <ErrData/> <Part3/> <DataXPointer> <StartPos>0</StartPos> <Size>0</Size> </DataXPointer> </ErrorDataInfo> </Error> </TransactionErrors> </Transaction> </Interchange></AnalyzerResults>
    2012.03.26 at 14:51:52:843: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processIncomingDocument sErrorGuid = {AD01846F-A68B-409D-A264-AA1ECAE7FBA3}
    2012.03.26 at 14:51:52:843: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processIncomingDocument sDescription = Failed guideline.
    2012.03.26 at 14:51:52:843: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processIncomingDocument sBrDescription = 5081: XEngine error - Invalid guideline.
    2012.03.26 at 14:51:52:844: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processIncomingDocument added Hash Key = {757D82F2-7742-11E1-B54E-00265524F072}
    2012.03.26 at 14:51:52:844: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processIncomingDocument Error Scope = Transaction
    2012.03.26 at 14:51:52:844: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:processIncomingDocument exit
    Thanks for help
    Adi

    Hello Anuj,
    Thanks for your replay.
    Please guide me at how do I need to do the match between the Document Protocol and the Payload
    Payload file:
    UNA:+.?*'
    UNB+UNOB:4::1+SEDIS-SVS+DSPGROUPSBI05+20120326:0300+30000000000022++++++1'
    UNH+30000000000022+INVOIC:D:05A:UN'
    BGM+389+AS2 TEST'
    MOA+124:6123.70'
    UNT+376+30000000000022'
    UNZ+1+30000000000022'
    TP and HOME Document Protocol log:
    2012.03.26 at 14:51:52:041: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceB2BMsg From Document Protocol Parameters
    2012.03.26 at 14:51:52:041: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupApplicationPassword = null
    2012.03.26 at 14:51:52:041: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupTime = #SystemTime(HHMM)#
    2012.03.26 at 14:51:52:041: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlNumber = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeAgreementIdentifier = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderInternalID = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupControlNumber = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverID = SEDIS-SVS
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderQual = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter DecimalSeparator = 0x2e
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeProcessingPriority = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverInternalSubID = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ElementDelimiter = 0x2b
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeRecipientRefPassword = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter CharSet = UNOA
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeTime = #SystemTime(HHMM)#
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeECSFileBlob
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeRecipientRefPasswordQual = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TagDelimiter = 0x3d
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter RepeatingSeparator = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupECSFileBlob
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TPName = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ReplacementChar = 0x7c
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ReleaseCharacter = 0x3f
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderQual = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeCharacterEncoding = null
    2012.03.26 at 14:51:52:042: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter SegmentDelimiter = 0x27
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeApplicationRef = null
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlVersion = 4
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupDate = #SystemDate(YYMMDD)#
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverQual = null
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverQual = null
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ImplementationClass = oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter SkipUNA = FALSE
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter Standard = EDIFACT
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter SubelementDelimiter = 0x3a
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter AcknowledgementOption = T2
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupAgencyCode = UN
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeServiceCodeList = null
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeDate = #SystemDate(YYMMDD)#
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverInternalID = null
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeTestIndicator = null
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderID = SEDIS-SVS
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupAssociationCode = null
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverID = SEDIS-SVS
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReleaseNumber = null
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter AcknowledgementType = CONTRL
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderID = SEDIS-SVS
    2012.03.26 at 14:51:52:043: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter FunctionalGroupCreation = TRUE
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderInternalSubID = null
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupVersion = null
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceB2BMsg To Document Protocol Parameters
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupApplicationPassword = null
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupTime = #SystemTime(HHMM)#
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlNumber = null
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeAgreementIdentifier = null
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderInternalID = null
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupControlNumber = null
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverID = DSPGROUPSBI05
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderQual = null
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter DecimalSeparator = 0x2e
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeProcessingPriority = null
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverInternalSubID = null
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ElementDelimiter = 0x2b
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeRecipientRefPassword = null
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter CharSet = UNOA
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeTime = #SystemTime(HHMM)#
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeECSFileBlob
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeRecipientRefPasswordQual = null
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TagDelimiter = 0x3d
    2012.03.26 at 14:51:52:044: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter RepeatingSeparator = null
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupECSFileBlob
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter TPName = null
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ReplacementChar = 0x7c
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ReleaseCharacter = 0x3f
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderQual = null
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeCharacterEncoding = null
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter SegmentDelimiter = 0x27
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeApplicationRef = null
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeControlVersion = 4
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupDate = #SystemDate(YYMMDD)#
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverQual = null
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverQual = null
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter ImplementationClass = oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter SkipUNA = FALSE
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter Standard = EDIFACT
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter SubelementDelimiter = 0x3a
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter AcknowledgementOption = T2
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupAgencyCode = UN
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeServiceCodeList = null
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeDate = #SystemDate(YYMMDD)#
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeReceiverInternalID = null
    2012.03.26 at 14:51:52:045: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeTestIndicator = null
    2012.03.26 at 14:51:52:046: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderID = DSPGROUPSBI05
    2012.03.26 at 14:51:52:046: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupAssociationCode = null
    2012.03.26 at 14:51:52:046: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReceiverID = DSPGROUPSBI05
    2012.03.26 at 14:51:52:046: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupReleaseNumber = null
    2012.03.26 at 14:51:52:046: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter AcknowledgementType = CONTRL
    2012.03.26 at 14:51:52:046: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupSenderID = DSPGROUPSBI05
    2012.03.26 at 14:51:52:046: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter FunctionalGroupCreation = TRUE
    2012.03.26 at 14:51:52:046: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter InterchangeSenderInternalSubID = null
    2012.03.26 at 14:51:52:046: Thread-18: B2B - (DEBUG) oracle.tip.adapter.b2b.document.edi.EDIDocumentPlugin:traceParameters Parameter GroupVersion = null
    Thanks
    Adi

  • Invalid initial heap size Problem with sdk1.4.2_03

    Hi,
    ich habe a troubling error with the java version 1.4.2_03.
    I use an Ant Task to start a Weblogic Server (J2EE Server). For this, I use the following Ant code :
    -----ANT CODE------------------------------------------------------------------------------------------------------------------------
    <java classname="weblogic.Server" fork="true" failonerror="true" dir="${weblogic.domain.dir}">
    <sysproperty key="bea.home" value="${bea.home.dir}"/>
    <sysproperty key="weblogic.Name" value="${weblogic.admin.server.name}"/>
    <sysproperty key="weblogic.management.username" value="${weblogic.user.name}"/>
    <sysproperty key="weblogic.management.password" value="${weblogic.user.password}"/>
    <sysproperty key="weblogic.ProductionModeEnabled" value="false"/>
    <sysproperty key="java.security.policy" value="${weblogic.home.dir}\server\lib\weblogic.policy"/>
    <sysproperty key="weblogic.security.SSL.trustedCAKeyStore" value="${weblogic.home.dir}\server\lib\cacerts"/>
         <jvmarg value="-Xms32m -Xmx200m"/>
    <classpath>
    <pathelement path="${windows.classpath.wls}"/>
    </classpath>
    </java>
    -----/ANT CODE------------------------------------------------------------------------------------------------------------------------
    This Task perfectly works with the sdk java version 1.4.1_05, but I have the following message with the sdk java version 1.4.2_03 :
    -----ERROR MESSAGE---------------------------------------------------
    Invalid initial heap size: -Xms32m -Xmx200m
    Could not create the Java virtual machine.
    -----/ERROR MESSAGE---------------------------------------------------
    The following parameter is anymore correct : <jvmarg value="-Xms32m -Xmx200m"/>
    I have tried with a lot of possibilty, 64-200, 128-200, 128-128, 256-256, 512-512, nothing works.
    I have tried without this parameter, this works fine.
    I have tried with the weblogic server without the Ant Task, and this works fine too.
    I think this is a bug in the JVM 1.4.2_03.
    What do you think about this problem ??? Do you have some solution ???
    I have also tried with another version of ant, I have the same problem. This works with JVM 1.4.1_05 and not with JVM 1.4.2_03.
    If you have an idea, please, help.
    Thanks

    If you can start a 1.4.2 JVM with all these parameters independently (i.e. not from Ant) and it works, but from Ant it doesn't work, it's more likely that the problem is somehow related to interaction between Ant and the JVM, rather than the JVM itself. So I would suggest trying some Ant forum first - I think it would also work faster than if you try to submit this bug to Sun.

  • Java.lang.OutOfMemoryError: Requested array size exceeds VM limit

    Hi!
    I've a this problem and I do not know how to reselve it:
    I' ve an oracle 11gr2 database in which I installed the Italian network
    when I try to execute a Shortest Path algorithm or a shortestPathAStar algorithm in a java program I got this error.
    [ConfigManager::loadConfig, INFO] Load config from specified inputstream.
    [oracle.spatial.network.NetworkMetadataImpl, DEBUG] History metadata not found for ROUTING.ITALIA_SPAZIO
    [LODNetworkAdaptorSDO::readMaximumLinkLevel, DEBUG] Query String: SELECT MAX(LINK_LEVEL) FROM ROUTING.ITALIA_SPAZIO_LINK$ WHERE LINK_LEVEL > -1
    *****Begin: Shortest Path with Multiple Link Levels
    *****Shortest Path Using Dijkstra
    [oracle.spatial.network.lod.LabelSettingAlgorithm, DEBUG] User data categories:
    [LODNetworkAdaptorSDO::isNetworkPartitioned, DEBUG] Query String: SELECT p.PARTITION_ID FROM ROUTING.ITA_SPAZIO_P_TABLE p WHERE p.LINK_LEVEL = ? AND ROWNUM = 1 [1]
    [QueryUtility::prepareIDListStatement, DEBUG] Query String: SELECT NODE_ID, PARTITION_ID FROM ROUTING.ITA_SPAZIO_P_TABLE p WHERE p.NODE_ID IN ( SELECT column_value FROM table(:varray) ) AND LINK_LEVEL = ?
    [oracle.spatial.network.lod.util.QueryUtility, FINEST] ID Array: [2195814]
    [LODNetworkAdaptorSDO::readNodePartitionIds, DEBUG] Query linkLevel = 1
    [NetworkIOImpl::readLogicalPartition, DEBUG] Read partition from blob table: partition 1181, level 1
    [LODNetworkAdaptorSDO::readPartitionBlobEntry, DEBUG] Query String: SELECT BLOB, NUM_INODES, NUM_ENODES, NUM_ILINKS, NUM_ELINKS, NUM_INLINKS, NUM_OUTLINKS, USER_DATA_INCLUDED FROM ROUTING.ITA_SPAZIO_P_BLOBS_TABLE WHERE PARTITION_ID = ? AND LINK_LEVEL = ? [1181,1]
    [oracle.spatial.network.lod.LabelSettingAlgorithm, WARN] Requested array size exceeds VM limit
    [NetworkIOImpl::readLogicalPartition, DEBUG] Read partition from blob table: partition 1181, level 1
    [LODNetworkAdaptorSDO::readPartitionBlobEntry, DEBUG] Query String: SELECT BLOB, NUM_INODES, NUM_ENODES, NUM_ILINKS, NUM_ELINKS, NUM_INLINKS, NUM_OUTLINKS, USER_DATA_INCLUDED FROM ROUTING.ITA_SPAZIO_P_BLOBS_TABLE WHERE PARTITION_ID = ? AND LINK_LEVEL = ? [1181,1]
    Exception in thread "main" java.lang.OutOfMemoryError: Requested array size exceeds VM limit
    I use the sdoapi.jar, sdomn.jar and sdoutl.jar stored in the jlib directory of the oracle installation path.
    When I performe this query : SELECT BLOB, NUM_INODES, NUM_ENODES, NUM_ILINKS, NUM_ELINKS, NUM_INLINKS, NUM_OUTLINKS, USER_DATA_INCLUDED FROM ROUTING.ITA_SPAZIO_P_BLOBS_TABLE WHERE PARTITION_ID = ? AND LINK_LEVEL = ? [1181,1]
    I got the following result
    BLOB NUM_INODES NUM_ENODES NUM_ILINKS NUM_ELINKS NUM_INLINKS NUM_OUTLINKS USER_DATA_INCLUDED
    (BLOB) 3408 116 3733 136 130 128 N
    then the java code I use is :
    package it.sistematica.oracle.spatial;
    import it.sistematica.oracle.network.data.Constant;
    import java.io.InputStream;
    import java.sql.Connection;
    import oracle.spatial.network.lod.DynamicLinkLevelSelector;
    import oracle.spatial.network.lod.GeodeticCostFunction;
    import oracle.spatial.network.lod.HeuristicCostFunction;
    import oracle.spatial.network.lod.LODNetworkManager;
    import oracle.spatial.network.lod.LinkLevelSelector;
    import oracle.spatial.network.lod.LogicalSubPath;
    import oracle.spatial.network.lod.NetworkAnalyst;
    import oracle.spatial.network.lod.NetworkIO;
    import oracle.spatial.network.lod.PointOnNet;
    import oracle.spatial.network.lod.config.LODConfig;
    import oracle.spatial.network.lod.util.PrintUtility;
    import oracle.spatial.util.Logger;
    public class SpWithMultiLinkLevel
         private static NetworkAnalyst analyst;
         private static NetworkIO networkIO;
         private static void setLogLevel(String logLevel)
         if("FATAL".equalsIgnoreCase(logLevel))
         Logger.setGlobalLevel(Logger.LEVEL_FATAL);
         else if("ERROR".equalsIgnoreCase(logLevel))
         Logger.setGlobalLevel(Logger.LEVEL_ERROR);
         else if("WARN".equalsIgnoreCase(logLevel))
         Logger.setGlobalLevel(Logger.LEVEL_WARN);
         else if("INFO".equalsIgnoreCase(logLevel))
         Logger.setGlobalLevel(Logger.LEVEL_INFO);
         else if("DEBUG".equalsIgnoreCase(logLevel))
         Logger.setGlobalLevel(Logger.LEVEL_DEBUG);
         else if("FINEST".equalsIgnoreCase(logLevel))
         Logger.setGlobalLevel(Logger.LEVEL_FINEST);
         else //default: set to ERROR
         Logger.setGlobalLevel(Logger.LEVEL_ERROR);
         public static void main(String[] args) throws Exception
              String configXmlFile =                "LODConfigs.xml";
              String logLevel =           "FINEST";
              String dbUrl =                Constant.PARAM_DB_URL;
              String dbUser =                Constant.PARAM_DB_USER;
              String dbPassword =                Constant.PARAM_DB_PASS;
              String networkName =                Constant.PARAM_NETWORK_NAME;
              long startNodeId = 2195814;
              long endNodeId = 3415235;
         int linkLevel = 1;
         double costThreshold = 1550;
         int numHighLevelNeighbors = 8;
         double costMultiplier = 1.5;
         Connection conn = null;
         //get input parameters
         for(int i=0; i<args.length; i++)
         if(args.equalsIgnoreCase("-dbUrl"))
         dbUrl = args[i+1];
         else if(args[i].equalsIgnoreCase("-dbUser"))
         dbUser = args[i+1];
         else if(args[i].equalsIgnoreCase("-dbPassword"))
         dbPassword = args[i+1];
         else if(args[i].equalsIgnoreCase("-networkName") && args[i+1]!=null)
         networkName = args[i+1].toUpperCase();
         else if(args[i].equalsIgnoreCase("-linkLevel"))
         linkLevel = Integer.parseInt(args[i+1]);
         else if(args[i].equalsIgnoreCase("-configXmlFile"))
         configXmlFile = args[i+1];
         else if(args[i].equalsIgnoreCase("-logLevel"))
         logLevel = args[i+1];
         // opening connection
         System.out.println("Connecting to ......... " + Constant.PARAM_DB_URL);
         conn = LODNetworkManager.getConnection(dbUrl, dbUser, dbPassword);
         System.out.println("Network analysis for "+networkName);
         setLogLevel(logLevel);
         //load user specified LOD configuration (optional),
         //otherwise default configuration will be used
         InputStream config = (new Network()).readConfig(configXmlFile);
         LODNetworkManager.getConfigManager().loadConfig(config);
         LODConfig c = LODNetworkManager.getConfigManager().getConfig(networkName);
         //get network input/output object
         networkIO = LODNetworkManager.getCachedNetworkIO(
         conn, networkName, networkName, null);
         //get network analyst
         analyst = LODNetworkManager.getNetworkAnalyst(networkIO);
         double[] costThresholds = {costThreshold};
         LogicalSubPath subPath = null;
         try
              System.out.println("*****Begin: Shortest Path with Multiple Link Levels");
              System.out.println("*****Shortest Path Using Dijkstra");
              String algorithm = "DIJKSTRA";
              linkLevel = 1;
              costThreshold = 5000;
              subPath = analyst.shortestPathDijkstra(new PointOnNet(startNodeId), new PointOnNet(endNodeId),linkLevel, null);
              PrintUtility.print(System.out, subPath, true, 10000, 0);
              System.out.println("*****End: Shortest path using Dijkstra");
              catch (Exception e)
              e.printStackTrace();
              try
              System.out.println("*****Shortest Path using Astar");
              HeuristicCostFunction costFunction = new GeodeticCostFunction(0,-1, 0, -2);
              LinkLevelSelector lls = new DynamicLinkLevelSelector(analyst, linkLevel, costFunction, costThresholds, numHighLevelNeighbors, costMultiplier, null);
              subPath = analyst.shortestPathAStar(
              new PointOnNet(startNodeId), new PointOnNet(endNodeId), null, costFunction, lls);
              PrintUtility.print(System.out, subPath, true, 10000, 0);
              System.out.println("*****End: Shortest Path Using Astar");
              System.out.println("*****End: Shortest Path with Multiple Link Levels");
              catch (Exception e)
              e.printStackTrace();
         if(conn!=null)
         try{conn.close();} catch(Exception ignore){}
    At first I create a two link level network with this command
    exec sdo_net.spatial_partition('ITALIA_SPAZIO', 'ITA_SPAZIO_P_TABLE', 5000, 'LOAD_DIR', 'sdlod_part.log', 'w', 1);
    exec sdo_net.spatial_partition('ITALIA_SPAZIO', 'ITA_SPAZIO_P_TABLE', 60000, 'LOAD_DIR', 'sdlod_part.log', 'w', 2);
    exec sdo_net.generate_partition_blobs('ITALIA_SPAZIO', 1, 'ITA_SPAZIO_P_BLOBS_TABLE', true, true, 'LOAD_DIR', 'sdlod_part_blob.log', 'w', false, true);
    exec sdo_net.generate_partition_blobs('ITALIA_SPAZIO', 2, 'ITA_SPAZIO_P_BLOBS_TABLE', true, true, 'LOAD_DIR', 'sdlod_part_blob.log', 'w', false, true);
    Then I try with a single level network but I got the same error.
    Please can samebody help me?

    I find the solution to this problem.
    In the LODConfig.xml file I have:
    <readPartitionFromBlob>true</readPartitionFromBlob>
                   <partitionBlobTranslator>oracle.spatial.network.lod.PartitionBlobTranslator11g</partitionBlobTranslator>
    but when I change it to
    <readPartitionFromBlob>true</readPartitionFromBlob>
                   <partitionBlobTranslator>oracle.spatial.network.lod.PartitionBlobTranslator11gR2</partitionBlobTranslator>
    The application starts without the obove mentioned error.

  • Array size calculation

    Hi All,
    I have a small question.I am using SunOS 5.9 and gcc 4.0 compiler.
    Please take a look at the below code
    When I compile the following program under gcc 4.0 it doesn't give me any compiler error and even the size comes correctly.
    #include<stdio.h>
    int main()
    int c;
    scanf("%d",&c);
    int x[c];
    printf("sizeof =%d\n",sizeof(x));
    But when I use visual studio 2003 compiler it gives me error ( like cannot allocate an array of constant size 0).
    I am bit confused as normall array size should be static rather during runtime.And I am not using malloc in this case also.
    Could you please clarify this.Or is it possible to allocate the array size like this in advanced compilers?
    Looking forward for your response.

    Hello.
    I just tested initializing an array with a variable. It works under GCC 3.3.2. I know no other C compiler which is able to do this! In a C tutorial in the internet I found this:
    You cannot initialize an array using a variable. [...] For example:
      int x = 5;
      int ia[x];Obviously initializing arrays with variables is a GCC extension.
    If the compiler supports the "alloca" instruction you may use this instead:
      int x = 5;
      int *ia = (int *)alloca(sizeof(int) * x);
      // sizeof(ia) is 4 or 8 (32 or 64 bit) here independent of xMartin

Maybe you are looking for