JDK 1.2.2 migration to SDK 1.4.0_01

I wrote several applets that compile and run great when I compiled them with jdk 1.2.2, but since i downloaded and installed the new sdk 1.4.0_01 package none of my applets will run. What do I need to check to get back on track with sdk1.4.0?
Two examples of new errors:
import Ticket; worked in jdk 1.2.2, but now won't compile even with my Ticket class in the same directory, why does it work in 1.2.2 and not in 1.4.0?
This is the error from the new java console on class' compiled before download, when run in the new environment:
load: MyClass.class is not public or has no public constructor.
java.lang.IllegalAccessException: Class sun.applet.AppletPanel can not access a member of class MyClass with modifiers "public"
     at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:57)
     at java.lang.Class.newInstance0(Class.java:290)
     at java.lang.Class.newInstance(Class.java:249)
     at sun.applet.AppletPanel.createApplet(AppletPanel.java:548)
     at sun.plugin.AppletViewer.createApplet(AppletViewer.java:1621)
     at sun.applet.AppletPanel.runLoader(AppletPanel.java:477)
     at sun.applet.AppletPanel.run(AppletPanel.java:290)
     at java.lang.Thread.run(Thread.java:536)
What changed and what should I look to fix?

What I've found so far is that in SDK 1.4.0 :
You can no longer import a class that is not in a named package. The >class that uses Ticket can also be in the default package or Ticket >can be in the same package as the other class, in which case you do >not need an import statement. Or you can put Ticket into a named >package and import it.And for some reason still unknown, yet working... making the applets public does resolve the other issue once the above fix is corrected.

Similar Messages

  • Migrate from SDK 3 to 4 or 5

    Im using a borrowed imac with os x leopard version to develop my first iphone app. The problem is that i can't use the sdk 4 or 5. In case i need to migrate my sdk 3 based app to those versions, will be any problem with xcode or anything?

    iOS requires Snow Leopard/Lion.
    Get there and then download the latest Xcode (v3.x or 4.x) release version tools and SDK. iOS 5 is beta and can't be used when building apps for distribution to the store.

  • Porting from JDK 1.2.2 to MS SDK for Java 4.0 - Help!!!

    Hi All!
    My company is developing big project using WLS 4.5.1. + JDK 1.2.2 + Java
    Plug-In 1.2.2 on clients. A lot of applied code depend on Java 2 APIs,
    javax/swing is actively used as well. But the customer decide to use
    Microsoft VM both on server and client sides - they have support contract
    (for other products) with MS and MS may decide to cancel support if our
    customer will use Sun JDK and Sun JVM.
    So, I have to try to port all project to MS SDK for Java and the question
    is: Do I have a chance not to rewrite 100% of my code?
    Somewhere I read: ":I've downloaded the new MS Virtual Machine
    (msjavx86.exe) that should be compatible to Java2:" - is it really so? Does
    anybody knows if MS will support Java 2 platform specifications? As I found
    at MS, latest MS JDK 4.0 (on which WLS 5.1 can run) meets specification of
    Java 1.1 and after installing it I found that I must rewrite about 90% of my
    code. Can someone clarify the situation with MS JDK?
    Thanks in advance,
    Andrey Bogush
    PS: Any information, links, documents, overviews on how to persuade the
    customer to use Sun JDK and JVM against MS one are VERY and STRONGLY welcome

    Andrey Bogush wrote:
    >
    Hi All!
    My company is developing big project using WLS 4.5.1. + JDK 1.2.2 + Java
    Plug-In 1.2.2 on clients. A lot of applied code depend on Java 2 APIs,
    javax/swing is actively used as well. But the customer decide to use
    Microsoft VM both on server and client sides - they have support contract
    (for other products) with MS and MS may decide to cancel support if our
    customer will use Sun JDK and Sun JVM.MS can cancel their support if they use Sun's JDK! That's an
    "interesting" clause in your support contract.
    >
    So, I have to try to port all project to MS SDK for Java and the question
    is: Do I have a chance not to rewrite 100% of my code?
    Somewhere I read: ":I've downloaded the new MS Virtual Machine
    (msjavx86.exe) that should be compatible to Java2:" - is it really so?I don't believe any versions of Microsoft's JVMs support Java2.
    Personally, I think it would be a big waste of time to port working
    Java2 code to JDK 1.1 just to run MS's JVM.
    -- Rob
    Does
    anybody knows if MS will support Java 2 platform specifications? As I found
    at MS, latest MS JDK 4.0 (on which WLS 5.1 can run) meets specification of
    Java 1.1 and after installing it I found that I must rewrite about 90% of my
    code. Can someone clarify the situation with MS JDK?
    Thanks in advance,
    Andrey Bogush
    PS: Any information, links, documents, overviews on how to persuade the
    customer to use Sun JDK and JVM against MS one are VERY and STRONGLY welcome

  • Migration to SDK 2.1, from HWC to IIS

    Hello,
    I have an azure webrole running on SDK 1.8, it has a handful WCF services and a common data access component to access an Azure SQL database and Azure Storage. It was running using the Hosted Web Core (HWC) - no Site definitions as I do not host websites
    on it - so far this worked really fine for the last two years.
    Now I wanted to update it to SDK 2.1 (which should be latest for VS2010) and I am facing several issues:
    I learned that hosting the WCF services via HWC is no longer possible since SDK 2.0 and I have to use IIS.
    This leads to the problem that the webrole is running under a different process as the webservices.
    So far I have created a common component that is initialized when the webrole was started. It read the configuration, which contained the parameters to access the SQL database and the storage. This component was used by the webservices to read/write data
    to database and storage.
    Now with IIS, the initialization only happens for the process of the webrole. This leaves the webservices with a non-initialized data access component.
    To the questions:
    1: What would be the best practice to access a SQL database and the storage from the webservices. These have been completely stateless so far, but now they each would need to read the access parameters for the database and storage.
    I am lacking a defined entry point there to initialized the component.
    2: Why was HWC hosting removed? For my scenario (Webservices with database/storage backend) I see no benefits of using IIS (just a lot of issues for migrating and redesigning the architecture).
    Any advice would be helpful, also an explanation why HWC was removed (so I can understand it).

    Hello Will, thanks for the answer,
    Yes, I am using an Azure hosted SQL database. I would like to retain having the sql server connection parameters in the webrole configuration instead of the web.config. That way I can react to the role configuration changes and don't need to recycle the
    role when switching databases. Same when storage settings change.
    I have found the article you posted about IIS and changes from HWC as well, but I found no explanation why the possibility hosting a webservice HWC style was removed.
    Did it cause problems or issues or was it a strategic change to only go the IIS way? So far I did not have many issues hosting webservices without IIS (in contrast to experiences with IIS, which did not always go smoothly).
    I am now rewriting the data access component to initialize itself lazy-loading style on the 1st access (even if I am no big fan of that pattern, I usually prefer to have a well-defined initialization at startup).
    Anyway, I know I can't go back because sooner or later the older SDK versions will become unsupported. Learning why HWC was removed would help to understand things better.
    Maybe this post helps others to identify migration issues early without a lot of searching.
    Thanks for the help.

  • Trouble migrating from SDK 4.1.0 to 4.5.1 with auto updater

    I have just upgraded to Flash Builder 4.5 from 4 but am now having problems with the auto updater.
    I am getting this error: There was an error downloading the update. Error# 16824
    I have followed these instructions: http://www.adobe.com/devnet/air/articles/air_update_framework.html#articlecontentAdobe_num beredheader_4
    But have yet to succeed.
    Currently my app contains the new update swcs as instructed in the above and points to the following xml file:
    <?xml version="1.0" encoding="utf-8"?>
    <update xmlns="http://ns.adobe.com/air/framework/update/description/1.0">
              <version>Beta 1.0.2</version>
              <force>true</force>
        <url>http://domain.com/Beta_1_0_2.air</url>
        <description><![CDATA[
              Change over to new update procedure
        ]]></description>
    </update>
    but i am still getting that error.
    I have tried swapping the framework description and checking through all my code but still nothing.
    Any help would be greatly appreciated as I need to know I can push the new version out as an update.

    If you have the right software and follow strictly the instructions you shouldn't face any issue to upgrade, here are a few advises:
    1. Create and save in an external location a backup file of the appliance, for this you can go to System Configuration/ACS Backup.
    2. To upgrade from 4.2.0.124 to 4.2.1.15 you will need to download two files from the Cisco page:
    Make sure to install FIRST the one called "ACSse-Upgrade-Pkg-appl-mng-v4.2.1.15-K9.zip", after that you can install the other one. This installation order is very very important, otherwise the upgrade will fail.
    3. In case that something goes wrong with the upgrade don't worry, you have a backup file so you still can install again 4.2.0.124, restore the backup and start the upgrade again.
    Rate if it helps!

  • Package javax.servlet not found in sdk 1.4.0_01

    Hi,
    Please correct me if i'm wrong. I was using j2sdk 1.3.1 (standard edition) and have recently upgraded to j2sdk1.4.0_01. I can't find the javax.servlet package in the API. I referred to the j2ee sdk and found the package there. Does it mean that I need to have both the j2sdk1.4.0_01 and the j2sdkee1.3.1 (j2ee) in order to be able to compile and run my codes?
    Thanks.
    Karen

    The servlet packages don't come with the standard SDK.
    You can get them from javasoft.com or if you use the
    Tomcat server they come packaged in a jar file called
    servlet.jar

  • JTextField - SDK 1.4.0_01

    Question, I've created 3 JTextFields and set them all to
    the same length. Initially opening the GUI, everything looks fine. But if text is in any of the 3 JTextFields when the GUI is updated the JTextField expands because of the entered text. How do I get the JTextField's to stay the same size if text exist in the JTextFields or not.
    Thanks in advance,
    Wes G.

    Setting the columns of a JTextField affects the preferred size. After you set the number of columns, you should then call textfield.setMaximumSize(textfield.getPreferredSize()); Your textfields should no longer resize themselves depending on how many characters are in them. You should use a layout manager that respects the maximum size of the component.
    Hope this helps
    Edward West

  • JDK & SDK

    Ok JDK is for Java development and SDK is for software development? What is the difference? I googled SDK and JDK and that is what it said anyway. Then another site said SDK is a new version of JDK, I knew i could only get the right answer here. Before i forget what about JRE and JVM? JRE is what you need to run java programs right? Does JRE run on the java virtual machine (JVM)? Why dont they make it one thing if thats the way it is? Like the JRM is a combination of JVM & JRE?
    So if i read correct i need JRE to run java programs does JRE already have a JVM included?

    JDK and SDK are the same.
    For version 1.4.x term SDK is used.
    http://java.sun.com/j2se/1.4.2/download.html
    SDK includes JRE. JRE is required for running Java applications
    For 1.5 and later JDK is used.
    http://java.sun.com/javase/downloads/index_jdk5.jsp
    http://java.sun.com/javase/downloads/index.jsp
    JDK includes the JRE.
    JDeveloper includes the JDK/SDK.
    http://wiki.answers.com/Q/What_is_difference_between_JVM_and_JRE
    http://java.sun.com/developer/onlineTraining/new2java/programming/learn/unravelingjava.html

  • SDK vs. JDK

    I got confused. Is there a difference between terms SDK and JDK?
    I'm currently using SDK 1.4.2.
    On the other hand the 5.0 would be JDK?
    JDK 5.0 source code is available for those interested in exploring the details of the JDK...

    I got confused. Is there a difference between terms
    SDK and JDK?
    I'm currently using SDK 1.4.2.
    On the other hand the 5.0 would be JDK?
    JDK 5.0 source code is available for those interested
    in exploring the details of the JDK...Sun likes to rename their stuff, and they used to call a JDK bundled with Netbeans for SDK.

  • Difference between JDK ad SDK

    Hi All,
    I have simple query what is the exact difference between SDK ad JDK.
    Thanks,
    Alok

    Hi All,
    I have simple query what is the exact difference
    between SDK ad JDK.
    Thanks,
    AlokThere is actually no difference. Two different names
    referring to the same thing.
    You may want to look at this:
    http://mindprod.com/jgloss/jdk.html"
    well, there are many SDKs for things other than Java, so the definition of J(s)DK is a subdefinition of SDK :)

  • Difference between SDK and JDK

    Who can tell me what is the difference between SDK and JDK?

    JDK (Java Development/Developer's Kit)
    SDK (Software Development/Developer's Kit)
    The JDK is one variety of SDK.
    Chuck

  • OIM 9102 BP12 Migration from WebSphere 6.1 to Weblogic 10.3

    Hello,
    We're planning to move(9102BP12) from WebSphere6.1 to Weblogic10.3.
    I found Oracle metalink which says -
    ================================================
    JDK Migration restriction:
    You can only migrate to JDKs that falls with in the same groupings.
    Group 1: Sun JDK, Oracle JRockit, HP JDK
    Group 2: IBM JDK.
    Example: If you are running OC4J using Sun JDK then you can migrate to Oracle WebLogic Server using Sun JDK, Oracle JRockit or HP JDK. However, you can't migrate to IBM JDK.
    ==============================================
    This is because the data in the OIM schema is encrypted using the IBM's encryption libraries which are not available for Sun JDK. What i understand is that the IT resource configuration details are encrypted with installed JDK. However, if we re-configure the IT resource with Weblogic setup (after installing oim on Weblogic poining to the existing database), we could proceed with this migration.
    Has anyone executed Websphere to Weblogic migration before for OIM? Any input will help.
    Thanks,

    Sorry for the delay as I got busy with my current project. Here are the answers to your questions.
    1) If i install WLS point to existing OIMDB, do i necessarily need to copy old .databasekey from WAS environment?
    <Abhi>: Yes, you will have to copy these files to the WLS environment.
    2) During WLS install, it'll ask for xelsysadm password. Will this password overrides to existing one in OIM DB? And later on when i'll try to login to OIM-WLS using this password, will that work?
    <Abhi>: Yes, but are you planning to have different passwords. The xelsysadm password is stored in OIM database. So if you update it, it will reflect in all the OIM middle-tier instances attached to this database.
    How about handling the encrypted values in WLS environment:
    (1) IT resource params - reconfigure them after migration - through design console in Weblogic environment
    <Abhi>: Yes. you may have to review the values in the IT resource params and the other atrifacts as RO, process forms etc. But most of the work will be done by the deployment manager export/import functionality.
    (2) User password and security Q&A - We're using SSO to login to OIM, so not a concern
    <Abhi>: You are good with this.
    (3) UDF encrypted attribute - After doing the migration, if we run the user trusted recon 1 more time.. then all the user attrs values would be overriden (including encrytped UDF).
    <Abhi>: If there is an encrypted UDF field, you will have to take care of this manually. BTW, is this field encrypted on the OIM side as well as the application side.
    (4) Encrypted object/process forms - i've pending task to analyze if we've any such attrs(process form encrypted 'password' to target(e.g. AD) - i could think of such cases)
    <Abhi>: If there is something like this, you will have to take care of this manually. Check the possibility of writing a custom code to go thru the OIM users and dump the decrypted data in some file. Later you can update the selective user data in the new environment
    Did you follow the similar process? What issues did you face because of the IBM to SUN JDK use?
    <Abhi>: Yes, I followed the same steps and did not faced much issues. It was pretty straight-forward. Just make sure that the export/import using Deployment manager is successful.
    Please let me know if you have more questions.

  • Crash and hang application server

    hi every body
    im using sun java system application server platform edition update 9 on windows 2003 service pak 2 with 4 processor and 6 gb phisycal ram
    my running application alot of time hanging and some time crash
    when application hangs then i stop server and start again getting
    java.lang.stackoverflow error
    so i have to deploy application again to run it.
    when application crash i get this error
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6da17b6e, pid=2636, tid=2768
    # Java VM: Java HotSpot(TM) Server VM (1.5.0-b64 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x1d7b6e]
    --------------- T H R E A D ---------------
    Current thread (0x00aca7a8): VMThread [id=2768]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000058
    Registers:
    EAX=0x4c552aa8, EBX=0x0391e298, ECX=0x0041004d, EDX=0x00000000
    ESP=0x544cfb0c, EBP=0x2d23f410, ESI=0x00000000, EDI=0x00000000
    EIP=0x6da17b6e, EFLAGS=0x00010206
    Top of Stack: (sp=0x544cfb0c)
    0x544cfb0c: 4c552aa8 6da5b175 00a3ef18 00000000
    0x544cfb1c: 6da37466 00000000 00000001 00000001
    0x544cfb2c: 6d910ed2 00000000 00000000 00aca880
    0x544cfb3c: 00006c78 00000000 00006c78 00000001
    0x544cfb4c: 000360f8 6da5a975 544cfb9c 00000000
    0x544cfb5c: 00000005 00a3ed18 6498ee84 00a4be20
    0x544cfb6c: 00a3ed18 00a3ef68 00a51da0 00a4be20
    0x544cfb7c: 06ad0000 00aca030 00a51da0 0000000c
    Instructions: (pc=0x6da17b6e)
    0x6da17b5e: 08 8b 40 08 8b 04 88 50 8b 48 04 83 c1 08 8b 11
    0x6da17b6e: ff 52 58 a1 c0 9b b5 6d 83 38 00 75 df c3 90 90
    Stack: [0x540d0000,0x544d0000), sp=0x544cfb0c, free space=4094k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x1d7b6e]
    VM_Operation (0x6498ee68): parallel gc failed allocation, mode: safepoint, requested by thread 0x56e614e8
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x568bd888 JavaThread "httpWorkerThread-8080-4" daemon [_thread_blocked, id=2300]
    0x5686fd58 JavaThread "httpWorkerThread-8080-3" daemon [_thread_blocked, id=2484]
    0x56ab1a60 JavaThread "Timer-5" daemon [_thread_blocked, id=1868]
    0x5b185030 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv].StandardHost[server].StandardContext[umra_systems]]" daemon [_thread_blocked, id=3748]
    0x56afb9c0 JavaThread "Timer-4" daemon [_thread_blocked, id=1800]
    0x56a6faa0 JavaThread "httpWorkerThread-8080-2" daemon [_thread_blocked, id=1364]
    0x0003dbd8 JavaThread "DestroyJavaVM" [_thread_blocked, id=2704]
    0x56fdfe28 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv].StandardHost[server].StandardContext[__JWSappclients]]" daemon [_thread_blocked, id=892]
    0x5b30cb78 JavaThread "GrizzlyPipelineStatWorkerThread-4848-2" daemon [_thread_blocked, id=1128]
    0x5b30c970 JavaThread "GrizzlyPipelineStatWorkerThread-4848-1" daemon [_thread_blocked, id=812]
    0x5c839e28 JavaThread "GrizzlyPipelineStatWorkerThread-4848-0" daemon [_thread_blocked, id=1120]
    0x5b34cf58 JavaThread "httpWorkerThread-4848-1" daemon [_thread_blocked, id=1116]
    0x56887290 JavaThread "httpWorkerThread-4848-0" daemon [_thread_blocked, id=1076]
    0x5b4c2bd8 JavaThread "SelectorThread-4848" [_thread_blocked, id=1072]
    0x5ae662f8 JavaThread "GrizzlyPipelineStatWorkerThread-8181-2" daemon [_thread_blocked, id=1004]
    0x5bbc8008 JavaThread "GrizzlyPipelineStatWorkerThread-8181-1" daemon [_thread_blocked, id=992]
    0x56dcd870 JavaThread "GrizzlyPipelineStatWorkerThread-8181-0" daemon [_thread_blocked, id=984]
    0x5b1b20f0 JavaThread "httpWorkerThread-8181-1" daemon [_thread_blocked, id=976]
    0x5687f720 JavaThread "httpWorkerThread-8181-0" daemon [_thread_blocked, id=972]
    0x5b2eee80 JavaThread "SelectorThread-8181" [_thread_in_native, id=968]
    0x5b970e88 JavaThread "GrizzlyPipelineStatWorkerThread-8080-2" daemon [_thread_blocked, id=948]
    0x56dcdbe8 JavaThread "GrizzlyPipelineStatWorkerThread-8080-1" daemon [_thread_blocked, id=940]
    0x5686fa78 JavaThread "GrizzlyPipelineStatWorkerThread-8080-0" daemon [_thread_blocked, id=936]
    0x56e614e8 JavaThread "httpWorkerThread-8080-1" daemon [_thread_blocked, id=1716]
    0x56fa47c8 JavaThread "httpWorkerThread-8080-0" daemon [_thread_blocked, id=612]
    0x5b8cee50 JavaThread "SelectorThread-8080" [_thread_in_native, id=608]
    0x5bc2caa8 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv]]" daemon [_thread_blocked, id=3964]
    0x5c4e90d8 JavaThread "SingleSignOnExpiration" daemon [_thread_blocked, id=3960]
    0x5c549bd0 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv].StandardHost[server].StandardContext[]]" daemon [_thread_blocked, id=3956]
    0x56fef488 JavaThread "SingleSignOnExpiration" daemon [_thread_blocked, id=3916]
    0x5aed2d48 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv].StandardHost[__asadmin].StandardContext[]]" daemon [_thread_blocked, id=3912]
    0x5af2b188 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv].StandardHost[__asadmin].StandardContext[web1]]" daemon [_thread_blocked, id=3908]
    0x56dcd578 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv].StandardHost[__asadmin].StandardContext[asadmin]]" daemon [_thread_blocked, id=3904]
    0x5ade2a20 JavaThread "Timer-3" [_thread_blocked, id=3832]
    0x5b2aee38 JavaThread "RMI RenewClean-[192.168.2.9:1140]" daemon [_thread_blocked, id=3756]
    0x56f7a250 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=3696]
    0x56fa9750 JavaThread "RMI TCP Accept-8686" daemon [_thread_in_native, id=3684]
    0x5b2ad150 JavaThread "Thread-15" [_thread_blocked, id=3592]
    0x5ae112a0 JavaThread "Thread-14" [_thread_blocked, id=3588]
    0x56b13c28 JavaThread "Thread-13" [_thread_blocked, id=3584]
    0x5b9cde88 JavaThread "RMI RenewClean-[192.168.2.9:1088,com.sun.enterprise.admin.server.core.channel.LocalRMIClientSocketFactory@77a748]" daemon [_thread_blocked, id=3516]
    0x5ae56328 JavaThread "Timer-2" daemon [_thread_blocked, id=3508]
    0x56b10db8 JavaThread "Timer-1" [_thread_blocked, id=3500]
    0x56add808 JavaThread "RMI LeaseChecker" daemon [_thread_blocked, id=3228]
    0x56967788 JavaThread "Thread-10" [_thread_in_native, id=2284]
    0x5678ca60 JavaThread "Thread-8" [_thread_in_native, id=2816]
    0x56637b08 JavaThread "Thread-7" [_thread_in_native, id=3136]
    0x5686ed50 JavaThread "Thread-6" [_thread_in_native, id=3124]
    0x56601280 JavaThread "RMI Reaper" [_thread_blocked, id=3072]
    0x56967a70 JavaThread "Timer-0" daemon [_thread_blocked, id=3068]
    0x540a1d90 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=3064]
    0x540cf9f8 JavaThread "GC Daemon" daemon [_thread_blocked, id=2984]
    0x53f18ed8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2956]
    0x53f17b40 JavaThread "CompilerThread1" daemon [_thread_blocked, id=2952]
    0x53f16cd8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2948]
    0x00acfe30 JavaThread "AdapterThread" daemon [_thread_blocked, id=2944]
    0x00acf200 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2940]
    0x53f09db0 JavaThread "Finalizer" daemon [_thread_blocked, id=2932]
    0x00acb9b8 JavaThread "Reference Handler" daemon [_thread_blocked, id=2928]
    Other Threads:
    =>0x00aca7a8 VMThread [id=2768]
    0x53f1a288 WatcherThread [id=2960]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x0003a460/0x0000071c] Threads_lock - owner thread: 0x00aca7a8
    [0x0003a5e0/0x000006e0] Heap_lock - owner thread: 0x56e614e8
    Heap
    PSYoungGen total 414912K, used 10240K [0x358d0000, 0x51ad0000, 0x51ad0000)
    eden space 368448K, 0% used [0x358d0000,0x358d0000,0x4c0a0000)
    from space 46464K, 22% used [0x4ed70000,0x4f770000,0x51ad0000)
    to space 45888K, 0% used [0x4c0a0000,0x4c0a0000,0x4ed70000)
    PSOldGen total 768000K, used 739581K [0x06ad0000, 0x358d0000, 0x358d0000)
    object space 768000K, 96% used [0x06ad0000,0x33d0f410,0x358d0000)
    PSPermGen total 65536K, used 58488K [0x02ad0000, 0x06ad0000, 0x06ad0000)
    object space 65536K, 89% used [0x02ad0000,0x063ee298,0x06ad0000)
    Dynamic libraries:
    0x00400000 - 0x0040c000      C:\Program Files\Java\jdk1.5.0\bin\java.exe
    0x77f40000 - 0x77ffa000      C:\WINDOWS\system32\ntdll.dll
    0x77e40000 - 0x77f34000      C:\WINDOWS\system32\kernel32.dll
    0x77da0000 - 0x77e30000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000 - 0x77cf4000      C:\WINDOWS\system32\RPCRT4.dll
    0x77ba0000 - 0x77bf4000      C:\WINDOWS\system32\MSVCRT.dll
    0x71c20000 - 0x71c31000      C:\WINDOWS\system32\tsappcmp.dll
    0x6d840000 - 0x6dba7000      C:\Program Files\Java\jdk1.5.0\jre\bin\server\jvm.dll
    0x77d00000 - 0x77d8f000      C:\WINDOWS\system32\USER32.dll
    0x77c00000 - 0x77c44000      C:\WINDOWS\system32\GDI32.dll
    0x76aa0000 - 0x76acc000      C:\WINDOWS\system32\WINMM.dll
    0x62d80000 - 0x62d89000      C:\WINDOWS\system32\LPK.DLL
    0x73010000 - 0x7306e000      C:\WINDOWS\system32\USP10.dll
    0x71bc0000 - 0x71bc8000      C:\WINDOWS\system32\rdpsnd.dll
    0x76260000 - 0x76270000      C:\WINDOWS\system32\WINSTA.dll
    0x71c40000 - 0x71c93000      C:\WINDOWS\system32\NETAPI32.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d280000 - 0x6d288000      C:\Program Files\Java\jdk1.5.0\jre\bin\hpi.dll
    0x6d610000 - 0x6d61c000      C:\Program Files\Java\jdk1.5.0\jre\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\Program Files\Java\jdk1.5.0\jre\bin\java.dll
    0x6d630000 - 0x6d63f000      C:\Program Files\Java\jdk1.5.0\jre\bin\zip.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jdk1.5.0\jre\bin\net.dll
    0x71c00000 - 0x71c18000      C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71b20000 - 0x71b63000      C:\WINDOWS\System32\mswsock.dll
    0x76ed0000 - 0x76ef7000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3f000      C:\WINDOWS\system32\WLDAP32.dll
    0x76f80000 - 0x76f85000      C:\WINDOWS\system32\rasadhlp.dll
    0x570d0000 - 0x570fd000      C:\WINDOWS\system32\rsaenh.dll
    0x75970000 - 0x75a2a000      C:\WINDOWS\system32\USERENV.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jdk1.5.0\jre\bin\nio.dll
    0x6d5f0000 - 0x6d5f6000      C:\Program Files\Java\jdk1.5.0\jre\bin\rmi.dll
    0x6d4b0000 - 0x6d4b8000      C:\Program Files\Java\jdk1.5.0\jre\bin\management.dll
    VM Arguments:
    jvm_args: -Xms1200m -Xmx1200m -XX:NewRatio=12 -Xss4000k -Xoss1024k -XX:+AggressiveHeap -XX:+UseParallelGC -Dcom.sun.aas.defaultLogFile=C:/Sun/AppServer/domains/domain1/logs/server.log -Djava.endorsed.dirs=C:/Sun/AppServer/lib/endorsed -Djava.security.auth.login.config=C:/Sun/AppServer/domains/domain1/config/login.conf -Dsun.rmi.dgc.server.gcInterval=3600000 -Dsun.rmi.dgc.client.gcInterval=3600000 -Djavax.net.ssl.keyStore=C:/Sun/AppServer/domains/domain1/config/keystore.jks -Djavax.net.ssl.trustStore=C:/Sun/AppServer/domains/domain1/config/cacerts.jks -Djava.ext.dirs=C:/Program Files/Java/jdk1.5.0/jre/lib/ext;C:/Sun/AppServer/domains/domain1/lib/ext;C:/Sun/AppServer/javadb/lib -Djdbc.drivers=org.apache.derby.jdbc.ClientDriver -Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory -Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar -Dcom.sun.enterprise.taglisteners=jsf-impl.jar -Dcom.sun.aas.classloader.optionalOverrideableChain=appserv-ws.jar,commons-logging.jar,commons-launcher.jar -Dcom.sun.aas.classloader.appserverChainJars=admin-cli.jar,admin-cli-ee.jar,dbschema.jar,j2ee-svc.jar -Dcom.sun.aas.classloader.serverClassPath.ee=%HADB_HOME%/lib/hadbjdbc4.jar,C:/Sun/AppServer/lib/SUNWjdmk/5.1/lib/jdmkrt.jar,%HADB_HOME%/lib/dbstate.jar,%HADB_HOME%/lib/hadbm.jar,%HADB_HOME%/lib/hadbmgt.jar,C:/Sun/AppServer/lib/SUNWmfwk/lib/mfwk_instrum_tk.jar -Dcom.sun.aas.configName=server-config -Ddomain.name=domain1 -Djmx.invoke.getters=true -Dcom.sun.aas.promptForIdentity=true -Dcom.sun.aas.classloader.optionalOverrideableChain.ee= -Dcom.sun.aas.instanceRoot=C:/Sun/AppServer/domains/domain1 -Dcom.sun.aas.domainName=domain1 -Dcom.sun.aas.classloader.sharedChainJars=javaee.jar,C:/Program Files/Java/jdk1.5.0/lib/tools.jar,install/applications/jmsra/imqjmsra.jar,commons-launcher.jar,C:/Sun/AppServer/i
    java_command: com.sun.enterprise.server.PELaunch start
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.5.0
    PATH=C:\Sun\AppServer\lib;C:\Sun\AppServer\bin;C:\Sun\AppServer\bin;C:\Sun\AppServer\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Sun\AppServer\bin
    USERNAME=Administrator
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 6, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows Server 2003 family Build 3790
    CPU:total 8 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 2097151k(2097151k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0-b64) for windows-x86, built on Sep 15 2004 02:42:57 by "java_re" with MS VC++ 6.0

    latest crash
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6db038c3, pid=3288, tid=2884
    # Java VM: Java HotSpot(TM) Server VM (1.6.0-b105 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x438c3]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x5f849800): JavaThread "httpWorkerThread-8080-1" daemon [_thread_in_vm, id=2884]
    siginfo: ExceptionCode=0xc0000005, reading address 0x006f0069
    Registers:
    EAX=0x60fd8010, EBX=0x00000005, ECX=0x006f0069, EDX=0x00000000
    ESP=0x63abe738, EBP=0x56886c00, ESI=0x00000000, EDI=0x61ab0c00
    EIP=0x6db038c3, EFLAGS=0x00010202
    Top of Stack: (sp=0x63abe738)
    0x63abe738: 60fd8424 5f849800 63abe7f0 5f849800
    0x63abe748: 00000005 0614361c 00000001 d84be7fb
    0x63abe758: 6db0347a 6db03e43 00000001 00000000
    0x63abe768: 00000000 5f849800 60fd8424 5f849800
    0x63abe778: 63abe83c 00000072 00000019 57740878
    0x63abe788: 5686e8a8 00000019 00000019 00000019
    0x63abe798: 00000000 06cf9dd0 05df0738 00000000
    0x63abe7a8: 63abe7b4 63abe7dc 008f2ca1 00000000
    Instructions: (pc=0x6db038c3)
    0x6db038b3: d2 33 f6 85 c9 7e 67 8d 9b 00 00 00 00 8b 48 0c
    0x6db038c3: 8b 0c b1 39 29 75 09 8b 51 04 c7 02 00 00 00 00
    Stack: [0x63aa0000,0x63ac0000), sp=0x63abe738, free space=121k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x438c3]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j java.beans.PropertyDescriptor.getReadMethod()Ljava/lang/reflect/Method;+0
    j javax.el.BeanELResolver$BeanProperty.getReadMethod()Ljava/lang/reflect/Method;+16
    j javax.el.BeanELResolver.getValue(Ljavax/el/ELContext;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+33
    j javax.el.CompositeELResolver.getValue(Ljavax/el/ELContext;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+43
    j com.sun.faces.el.FacesCompositeELResolver.getValue(Ljavax/el/ELContext;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+24
    j com.sun.el.parser.AstValue.getValue(Lcom/sun/el/lang/EvaluationContext;)Ljava/lang/Object;+73
    j com.sun.el.ValueExpressionImpl.getValue(Ljavax/el/ELContext;)Ljava/lang/Object;+22
    j com.sun.faces.application.ValueBindingValueExpressionAdapter.getValue(Ljavax/faces/context/FacesContext;)Ljava/lang/Object;+24
    j com.sun.rave.web.ui.appbase.FacesBean.getValue(Ljava/lang/String;)Ljava/lang/Object;+14
    j tawaf_new.SessionBean1._init()V+4786
    j tawaf_new.SessionBean1.init()V+190
    j com.sun.rave.web.ui.appbase.servlet.LifecycleListener.attributeAdded(Ljavax/servlet/http/HttpSessionBindingEvent;)V+20
    j org.apache.catalina.session.StandardSession.setAttribute(Ljava/lang/String;Ljava/lang/Object;)V+416
    j org.apache.catalina.session.StandardSessionFacade.setAttribute(Ljava/lang/String;Ljava/lang/Object;)V+6
    j com.sun.faces.context.SessionMap.put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+37
    j com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(Ljavax/faces/context/FacesContext;Ljava/lang/String;)Ljava/lang/Object;+376
    j com.sun.faces.el.ManagedBeanELResolver.getValue(Ljavax/el/ELContext;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+126
    j javax.el.CompositeELResolver.getValue(Ljavax/el/ELContext;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+43
    j com.sun.faces.el.FacesCompositeELResolver.getValue(Ljavax/el/ELContext;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+24
    j com.sun.faces.el.ChainAwareVariableResolver.resolveVariable(Ljavax/faces/context/FacesContext;Ljava/lang/String;)Ljava/lang/Object;+134
    j com.sun.rave.web.ui.appbase.faces.VariableResolverImpl.resolveVariable(Ljavax/faces/context/FacesContext;Ljava/lang/String;)Ljava/lang/Object;+47
    j com.sun.faces.el.VariableResolverChainWrapper.getValue(Ljavax/el/ELContext;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+140
    j javax.el.CompositeELResolver.getValue(Ljavax/el/ELContext;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+43
    j com.sun.faces.el.FacesCompositeELResolver.getValue(Ljavax/el/ELContext;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+24
    j com.sun.faces.el.VariableResolverImpl.resolveVariable(Ljavax/faces/context/FacesContext;Ljava/lang/String;)Ljava/lang/Object;+72
    j com.sun.rave.web.ui.appbase.FacesBean.getBean(Ljava/lang/String;)Ljava/lang/Object;+12
    j tawaf_new.sign.getSessionBean1()Ltawaf_new/SessionBean1;+3
    j tawaf_new.sign.init()V+68
    j com.sun.rave.web.ui.appbase.faces.VariableResolverImpl.resolveVariable(Ljavax/faces/context/FacesContext;Ljava/lang/String;)Ljava/lang/Object;+153
    j com.sun.faces.el.VariableResolverChainWrapper.getValue(Ljavax/el/ELContext;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+140
    j javax.el.CompositeELResolver.getValue(Ljavax/el/ELContext;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+43
    j com.sun.faces.el.FacesCompositeELResolver.getValue(Ljavax/el/ELContext;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+24
    j com.sun.el.parser.AstIdentifier.getValue(Lcom/sun/el/lang/EvaluationContext;)Ljava/lang/Object;+46
    j com.sun.el.ValueExpressionImpl.getValue(Ljavax/el/ELContext;)Ljava/lang/Object;+22
    j com.sun.faces.application.ValueBindingValueExpressionAdapter.getValue(Ljavax/faces/context/FacesContext;)Ljava/lang/Object;+24
    j com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.pageBean(Ljavax/faces/context/FacesContext;Ljava/lang/String;)Lcom/sun/rave/web/ui/appbase/AbstractPageBean;+56
    j com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.pageBean(Ljavax/faces/context/FacesContext;)Lcom/sun/rave/web/ui/appbase/AbstractPageBean;+25
    j com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(Ljavax/faces/context/FacesContext;Ljavax/faces/component/UIViewRoot;)V+6
    j com.sun.faces.lifecycle.RenderResponsePhase.execute(Ljavax/faces/context/FacesContext;)V+155
    j com.sun.faces.lifecycle.LifecycleImpl.phase(Ljavax/faces/event/PhaseId;Lcom/sun/faces/lifecycle/Phase;Ljavax/faces/context/FacesContext;)V+279
    j com.sun.faces.lifecycle.LifecycleImpl.render(Ljavax/faces/context/FacesContext;)V+84
    j javax.faces.webapp.FacesServlet.service(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+107
    j org.apache.catalina.core.ApplicationFilterChain.servletService(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/Servlet;Lorg/apache/catalina/util/InstanceSupport;)V+93
    j org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+267
    j org.apache.catalina.core.ApplicationFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+101
    j com.sun.rave.web.ui.util.UploadFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+225
    j org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+120
    j org.apache.catalina.core.ApplicationFilterChain.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+101
    j org.apache.catalina.core.StandardWrapperValve.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)I+627
    j org.apache.catalina.core.StandardPipeline.doInvoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+77
    j org.apache.catalina.core.StandardPipeline.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+3
    j org.apache.catalina.core.StandardContextValve.invokeInternal(Lorg/apache/catalina/Wrapper;Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)I+238
    j org.apache.catalina.core.StandardContextValve.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)I+252
    j org.apache.catalina.core.StandardPipeline.doInvoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+77
    j com.sun.enterprise.web.WebPipeline.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+53
    j org.apache.catalina.core.StandardHostValve.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)I+89
    j org.apache.catalina.core.StandardPipeline.doInvoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+77
    j com.sun.enterprise.web.VirtualServerPipeline.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+149
    j org.apache.catalina.core.ContainerBase.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+6
    j org.apache.catalina.core.StandardEngineValve.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)I+58
    j org.apache.catalina.core.StandardPipeline.doInvoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+77
    j org.apache.catalina.core.StandardPipeline.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+3
    j org.apache.catalina.core.ContainerBase.invoke(Lorg/apache/catalina/Request;Lorg/apache/catalina/Response;)V+6
    j org.apache.coyote.tomcat5.CoyoteAdapter.service(Lorg/apache/coyote/Request;Lorg/apache/coyote/Response;)V+296
    j com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter()V+19
    j com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(Ljava/io/InputStream;Ljava/io/OutputStream;)Z+15
    j com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(Ljava/io/InputStream;Ljava/io/OutputStream;)Z+25
    j com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask()Z+74
    j com.sun.enterprise.web.connector.grizzly.ReadTask.doTask()V+161
    j com.sun.enterprise.web.connector.grizzly.TaskBase.run()V+1
    j com.sun.enterprise.web.connector.grizzly.WorkerThread.run()V+22
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x609c9400 JavaThread "Timer-5" daemon [_thread_blocked, id=1160]
    0x5f3e7c00 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv].StandardHost[server].StandardContext[etawaf11]]" daemon [_thread_blocked, id=3940]
    0x61ab0c00 JavaThread "httpWorkerThread-8080-4" daemon [_thread_blocked, id=4004]
    0x61ab0800 JavaThread "httpWorkerThread-8080-3" daemon [_thread_in_vm, id=820]
    0x6058a800 JavaThread "httpWorkerThread-8080-2" daemon [_thread_blocked, id=2868]
    0x607afc00 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv].StandardHost[server].StandardContext[__JWSappclients]]" daemon [_thread_blocked, id=4064]
    0x5f85c800 JavaThread "GrizzlyPipelineStatWorkerThread-4848-2" daemon [_thread_blocked, id=2188]
    0x617f2c00 JavaThread "GrizzlyPipelineStatWorkerThread-4848-1" daemon [_thread_blocked, id=1764]
    0x617d6800 JavaThread "GrizzlyPipelineStatWorkerThread-4848-0" daemon [_thread_blocked, id=3912]
    0x60c71c00 JavaThread "httpWorkerThread-4848-1" daemon [_thread_blocked, id=1140]
    0x5f438000 JavaThread "httpWorkerThread-4848-0" daemon [_thread_blocked, id=2292]
    0x619f7c00 JavaThread "SelectorThread-4848" [_thread_in_native, id=2404]
    0x61a07800 JavaThread "GrizzlyPipelineStatWorkerThread-8181-2" daemon [_thread_blocked, id=2520]
    0x61969800 JavaThread "GrizzlyPipelineStatWorkerThread-8181-1" daemon [_thread_blocked, id=4072]
    0x61a47800 JavaThread "GrizzlyPipelineStatWorkerThread-8181-0" daemon [_thread_blocked, id=3596]
    0x60732800 JavaThread "httpWorkerThread-8181-1" daemon [_thread_blocked, id=1760]
    0x60127800 JavaThread "httpWorkerThread-8181-0" daemon [_thread_blocked, id=1236]
    0x61a5fc00 JavaThread "SelectorThread-8181" [_thread_in_native, id=1124]
    =>0x5f849800 JavaThread "httpWorkerThread-8080-1" daemon [_thread_in_vm, id=2884]
    0x60c1b800 JavaThread "httpWorkerThread-8080-0" daemon [_thread_blocked, id=2216]
    0x60bca400 JavaThread "GrizzlyPipelineStatWorkerThread-8080-2" daemon [_thread_blocked, id=412]
    0x612c8800 JavaThread "GrizzlyPipelineStatWorkerThread-8080-1" daemon [_thread_blocked, id=3664]
    0x60b62400 JavaThread "GrizzlyPipelineStatWorkerThread-8080-0" daemon [_thread_blocked, id=3540]
    0x60af2400 JavaThread "SelectorThread-8080" [_thread_in_native, id=2904]
    0x5ff17800 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv]]" daemon [_thread_blocked, id=3704]
    0x61c69800 JavaThread "SingleSignOnExpiration" daemon [_thread_blocked, id=2896]
    0x61b4cc00 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv].StandardHost[server].StandardContext[]]" daemon [_thread_blocked, id=1692]
    0x60fba400 JavaThread "SingleSignOnExpiration" daemon [_thread_blocked, id=3188]
    0x60adac00 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv].StandardHost[__asadmin].StandardContext[asadmin]]" daemon [_thread_blocked, id=2016]
    0x61959c00 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv].StandardHost[__asadmin].StandardContext[web1]]" daemon [_thread_blocked, id=2316]
    0x6113ac00 JavaThread "ContainerBackgroundProcessor[StandardEngine[com.sun.appserv].StandardHost[__asadmin].StandardContext[]]" daemon [_thread_blocked, id=3360]
    0x6188d400 JavaThread "BPELSEInOutThread9" [_thread_blocked, id=2296]
    0x60e99400 JavaThread "BPELSEInOutThread8" [_thread_blocked, id=2444]
    0x6184cc00 JavaThread "BPELSEInOutThread7" [_thread_blocked, id=3408]
    0x60af2c00 JavaThread "BPELSEInOutThread6" [_thread_blocked, id=924]
    0x60b52c00 JavaThread "BPELSEInOutThread5" [_thread_blocked, id=3636]
    0x606ca000 JavaThread "BPELSEInOutThread4" [_thread_blocked, id=3196]
    0x60f3c400 JavaThread "BPELSEInOutThread3" [_thread_blocked, id=728]
    0x61b55400 JavaThread "BPELSEInOutThread2" [_thread_blocked, id=3684]
    0x61271400 JavaThread "BPELSEInOutThread1" [_thread_blocked, id=2928]
    0x6135a400 JavaThread "BPELSEInOutThread0" [_thread_blocked, id=2940]
    0x5f844800 JavaThread "Thread-23" [_thread_blocked, id=2936]
    0x5fcb8800 JavaThread "pool-1-thread-10" [_thread_blocked, id=916]
    0x60f3c800 JavaThread "pool-1-thread-9" [_thread_blocked, id=1204]
    0x61b82400 JavaThread "pool-1-thread-8" [_thread_blocked, id=2948]
    0x61b7f400 JavaThread "pool-1-thread-7" [_thread_blocked, id=1092]
    0x617de800 JavaThread "pool-1-thread-6" [_thread_blocked, id=1148]
    0x61798800 JavaThread "pool-1-thread-5" [_thread_blocked, id=2952]
    0x619db000 JavaThread "pool-1-thread-4" [_thread_blocked, id=2144]
    0x5fe4b400 JavaThread "pool-1-thread-3" [_thread_blocked, id=2588]
    0x60acc400 JavaThread "pool-1-thread-2" [_thread_blocked, id=2932]
    0x61a47400 JavaThread "pool-1-thread-1" [_thread_blocked, id=1536]
    0x61969c00 JavaThread "Thread-22" [_thread_blocked, id=1596]
    0x60924800 JavaThread "Timer-4" [_thread_blocked, id=3332]
    0x002a8c00 JavaThread "DestroyJavaVM" [_thread_blocked, id=4008]
    0x61207400 JavaThread "Timer-3" daemon [_thread_blocked, id=3068]
    0x6000e400 JavaThread "Timer-2" [_thread_blocked, id=2320]
    0x5fdb0400 JavaThread "RMI TCP Connection(6)-127.0.0.1" daemon [_thread_in_native, id=2696]
    0x61281800 JavaThread "RMI RenewClean-[192.168.2.9:2147]" daemon [_thread_blocked, id=3204]
    0x5fe84c00 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=2888]
    0x5fc9e400 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=920]
    0x611cfc00 JavaThread "RMI TCP Accept-8686" daemon [_thread_in_native, id=1632]
    0x612f1000 JavaThread "Thread-14" [_thread_blocked, id=2484]
    0x612f0800 JavaThread "Thread-13" [_thread_blocked, id=2548]
    0x61506800 JavaThread "Thread-12" [_thread_blocked, id=3056]
    0x60ea0c00 JavaThread "RMI RenewClean-[192.168.2.9:2111,com.sun.enterprise.admin.server.core.channel.LocalRMIClientSocketFactory@429be9]" daemon [_thread_blocked, id=596]
    0x5fe90800 JavaThread "Timer-1" daemon [_thread_blocked, id=708]
    0x60047c00 JavaThread "Timer-0" [_thread_blocked, id=3776]
    0x5fbb5800 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=260]
    0x5ff17000 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=632]
    0x5fc9e800 JavaThread "Thread-9" [_thread_in_native, id=2500]
    0x5faf3800 JavaThread "Thread-7" [_thread_in_native, id=1088]
    0x5f7f3400 JavaThread "Thread-6" [_thread_in_native, id=1400]
    0x5f7f2000 JavaThread "Thread-5" [_thread_in_native, id=3228]
    0x5fb51400 JavaThread "GC Daemon" daemon [_thread_blocked, id=2272]
    0x5fcf6c00 JavaThread "RMI Reaper" [_thread_blocked, id=1964]
    0x5fcf6400 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=220]
    0x5f02fc00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=4000]
    0x5f02e000 JavaThread "CompilerThread1" daemon [_thread_in_native, id=2632]
    0x5f029800 JavaThread "CompilerThread0" daemon [_thread_in_native, id=4060]
    0x5f324400 JavaThread "Attach Listener" daemon [_thread_blocked, id=2224]
    0x5f028800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2988]
    0x5f311000 JavaThread "Finalizer" daemon [_thread_blocked, id=3984]
    0x5f310400 JavaThread "Reference Handler" daemon [_thread_blocked, id=2248]
    Other Threads:
    0x5f01f800 VMThread [id=4036]
    0x5f326400 WatcherThread [id=4056]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 103104K, used 40395K [0x56460000, 0x5e9b0000, 0x5e9b0000)
    eden space 69952K, 29% used [0x56460000,0x578a9350,0x5a8b0000)
    from space 33152K, 59% used [0x5c950000,0x5dc79900,0x5e9b0000)
    to space 33280K, 0% used [0x5a8b0000,0x5a8b0000,0x5c930000)
    PSOldGen total 1092288K, used 22192K [0x139b0000, 0x56460000, 0x56460000)
    object space 1092288K, 2% used [0x139b0000,0x14f5c258,0x56460000)
    PSPermGen total 52608K, used 52600K [0x039b0000, 0x06d10000, 0x139b0000)
    object space 52608K, 99% used [0x039b0000,0x06d0e4d0,0x06d10000)
    Dynamic libraries:
    0x00400000 - 0x00423000      C:\Sun\SDK\jdk\bin\java.exe
    0x7c800000 - 0x7c8c0000      C:\WINDOWS\system32\ntdll.dll
    0x77e40000 - 0x77f42000      C:\WINDOWS\system32\kernel32.dll
    0x77f50000 - 0x77feb000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000 - 0x77cef000      C:\WINDOWS\system32\RPCRT4.dll
    0x76f50000 - 0x76f63000      C:\WINDOWS\system32\Secur32.dll
    0x71c20000 - 0x71c32000      C:\WINDOWS\system32\tsappcmp.dll
    0x77ba0000 - 0x77bfa000      C:\WINDOWS\system32\msvcrt.dll
    0x7c340000 - 0x7c396000      C:\Sun\SDK\jdk\jre\bin\msvcr71.dll
    0x6dac0000 - 0x6ddf5000      C:\Sun\SDK\jdk\jre\bin\server\jvm.dll
    0x77380000 - 0x77411000      C:\WINDOWS\system32\USER32.dll
    0x77c00000 - 0x77c48000      C:\WINDOWS\system32\GDI32.dll
    0x76aa0000 - 0x76acd000      C:\WINDOWS\system32\WINMM.dll
    0x76290000 - 0x762ad000      C:\WINDOWS\system32\IMM32.DLL
    0x7f000000 - 0x7f009000      C:\WINDOWS\system32\LPK.DLL
    0x75490000 - 0x754f5000      C:\WINDOWS\system32\USP10.dll
    0x71bc0000 - 0x71bc8000      C:\WINDOWS\system32\rdpsnd.dll
    0x771f0000 - 0x77201000      C:\WINDOWS\system32\WINSTA.dll
    0x71c40000 - 0x71c97000      C:\WINDOWS\system32\NETAPI32.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d3c0000 - 0x6d3c8000      C:\Sun\SDK\jdk\jre\bin\hpi.dll
    0x6d820000 - 0x6d82c000      C:\Sun\SDK\jdk\jre\bin\verify.dll
    0x6d460000 - 0x6d47f000      C:\Sun\SDK\jdk\jre\bin\java.dll
    0x6d860000 - 0x6d86f000      C:\Sun\SDK\jdk\jre\bin\zip.dll
    0x6d620000 - 0x6d633000      C:\Sun\SDK\jdk\jre\bin\net.dll
    0x71c00000 - 0x71c17000      C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71b20000 - 0x71b61000      C:\WINDOWS\System32\mswsock.dll
    0x76ed0000 - 0x76efa000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3e000      C:\WINDOWS\system32\WLDAP32.dll
    0x76f80000 - 0x76f85000      C:\WINDOWS\system32\rasadhlp.dll
    0x68000000 - 0x68035000      C:\WINDOWS\system32\rsaenh.dll
    0x76920000 - 0x769e2000      C:\WINDOWS\system32\USERENV.dll
    0x6d640000 - 0x6d649000      C:\Sun\SDK\jdk\jre\bin\nio.dll
    0x60350000 - 0x603aa000      C:\WINDOWS\system32\hnetcfg.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x6d610000 - 0x6d619000      C:\Sun\SDK\jdk\jre\bin\management.dll
    0x6d7c0000 - 0x6d7c6000      C:\Sun\SDK\jdk\jre\bin\rmi.dll
    0x6d800000 - 0x6d808000      C:\Sun\SDK\jdk\jre\bin\sunmscapi.dll
    0x761b0000 - 0x76243000      C:\WINDOWS\system32\CRYPT32.dll
    0x76190000 - 0x761a2000      C:\WINDOWS\system32\MSASN1.dll
    VM Arguments:
    jvm_args: -Xmx1200m -XX:NewRatio=8 -XX:MaxPermSize=256m -Xms1200m -Xss128k -Dcom.sun.aas.defaultLogFile=C:/Sun/SDK/domains/domain1/logs/server.log -Djava.endorsed.dirs=C:/Sun/SDK/lib/endorsed -Djava.security.policy=C:/Sun/SDK/domains/domain1/config/server.policy -Djava.security.auth.login.config=C:/Sun/SDK/domains/domain1/config/login.conf -Dsun.rmi.dgc.server.gcInterval=3600000 -Dsun.rmi.dgc.client.gcInterval=3600000 -Djavax.net.ssl.keyStore=C:/Sun/SDK/domains/domain1/config/keystore.jks -Djavax.net.ssl.trustStore=C:/Sun/SDK/domains/domain1/config/cacerts.jks -Djava.ext.dirs=C:/Sun/SDK/jdk/jre/lib/ext;C:/Sun/SDK/domains/domain1/lib/ext;C:/Sun/SDK/javadb/lib -Djdbc.drivers=org.apache.derby.jdbc.ClientDriver -Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory -Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar -Dcom.sun.enterprise.taglisteners=jsf-impl.jar -Dcom.sun.aas.classloader.optionalOverrideableChain=appserv-ws.jar,commons-logging.jar,commons-launcher.jar -Dcom.sun.aas.classloader.appserverChainJars=admin-cli.jar,admin-cli-ee.jar,dbschema.jar,j2ee-svc.jar -Dcom.sun.aas.classloader.serverClassPath.ee=%HADB_HOME%/lib/hadbjdbc4.jar,C:/Sun/SDK/lib/SUNWjdmk/5.1/lib/jdmkrt.jar,%HADB_HOME%/lib/dbstate.jar,%HADB_HOME%/lib/hadbm.jar,%HADB_HOME%/lib/hadbmgt.jar,C:/Sun/SDK/lib/SUNWmfwk/lib/mfwk_instrum_tk.jar -Dcom.sun.aas.configName=server-config -Ddomain.name=domain1 -Djmx.invoke.getters=true -Dcom.sun.aas.promptForIdentity=true -Dcom.sun.aas.classloader.optionalOverrideableChain.ee= -Dcom.sun.aas.instanceRoot=C:/Sun/SDK/domains/domain1 -Dcom.sun.aas.domainName=domain1 -Dcom.sun.aas.classloader.sharedChainJars=javaee.jar,C:/Sun/SDK/jdk/lib/tools.jar,install/applications/jmsra/imqjmsra.jar,commons-launcher.jar,C:/Sun/SDK/imq/lib/jaxm-api.jar,C:/Sun/SDK/imq/lib/fscontext.jar,C:/Su
    java_command: com.sun.enterprise.server.PELaunch start
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Sun\SDK\jdk
    PATH=C:\Sun\SDK\lib;C:\Sun\SDK\bin;C:\Sun\SDK\bin;C:\Sun\SDK\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Sun\SDK\bin;;x�
    USERNAME=Administrator
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 6, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 2
    CPU:total 8 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 2097151k(2097151k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Server VM (1.6.0-b105) for windows-x86, built on Nov 29 2006 00:44:51 by "java_re" with unknown MS VC++:1310

  • JNDIConnector datasource name= null,Problem in connection of Mysql and bean

    Hi
    I am using Sun App Server9.0, Mysql5.0, and Netbeans 5.5. When I am trying to run my facade, it is not detacting datasource.
    Do I have to set some property in server.
    I am getting this exception.
    deployed with moduleid = EnterpriseApplication1-app-client
    [TopLink Config]: 2007.05.13 01:33:53.906--ServerSession(14411981)--property toplink.server.platform.class.name is deprecated, property toplink.target-server should be used instead.
    topLink_version
    application_server_name_and_version
    platform=>MySQL4Platform
    user name=> ""
    connector=>JNDIConnector datasource name=>null
    );|connecting
    ;|connected_user_database_driver
    platform=>MySQL4Platform
    user name=> ""
    connector=>JNDIConnector datasource name=>null
    );|connecting
    ;|connected_user_database_driver
    login_successful
    mohi d0one
    code is
    public void addEmail (UserEntity key, EmailEntity emailObj)throws EmailExistsException, EmailAlreadyAddedException
    Query query;
    Query query_return;
    List list;
    EmailEntity emailObjList;
    EntityTransaction tx ;
    String email = emailObj.getEmailAddress();
    // if(verifyEmailAddress(email)){
    list = find(key.getUser_Id());
    query_return = em.createQuery(
    "from EmailEntity c where c.user_id=:user_id");
    query_return.setParameter("user_id", key.getUserId());
    list = query_return.getResultList( );
    tx = em.getTransaction();
    tx.begin();
    em.persist(emailObj);
    tx.commit();
    Please suggest me what I am missing.
    In server console I have-----
    C:/Sun/SDK/jdk\bin\java
    -client
    -Xmx512m
    -XX:NewRatio=2
    -Dcom.sun.aas.defaultLogFile=C:/Sun/SDK/domains/domain1/logs/server.log
    -Djava.endorsed.dirs=C:/Sun/SDK/lib/endorsed
    -Djava.security.policy=C:/Sun/SDK/domains/domain1/config/server.policy
    -Djava.security.auth.login.config=C:/Sun/SDK/domains/domain1/config/login.conf
    -Dsun.rmi.dgc.server.gcInterval=3600000
    -Dsun.rmi.dgc.client.gcInterval=3600000
    -Djavax.net.ssl.keyStore=C:/Sun/SDK/domains/domain1/config/keystore.jks
    -Djavax.net.ssl.trustStore=C:/Sun/SDK/domains/domain1/config/cacerts.jks
    -Djava.ext.dirs=C:/Sun/SDK/jdk/jre/lib/ext;C:/Sun/SDK/domains/domain1/lib/ext;C:/Sun/SDK/javadb/lib
    -Djdbc.drivers=org.apache.derby.jdbc.ClientDriver
    -Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder
    -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory
    -Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar
    -Dcom.sun.enterprise.taglisteners=jsf-impl.jar
    -Dcom.sun.aas.classloader.optionalOverrideableChain=appserv-ws.jar,commons-logging.jar,commons-launcher.jar
    -Dcom.sun.aas.classloader.appserverChainJars=admin-cli.jar,admin-cli-ee.jar,dbschema.jar,j2ee-svc.jar
    -Dcom.sun.aas.classloader.serverClassPath.ee=%HADB_HOME%/lib/hadbjdbc4.jar,C:/Sun/SDK/lib/SUNWjdmk/5.1/lib/jdmkrt.jar,%HADB_HOME%/lib/dbstate.jar,%HADB_HOME%/lib/hadbm.jar,%HADB_HOME%/lib/hadbmgt.jar,C:/Sun/SDK/lib/SUNWmfwk/lib/mfwk_instrum_tk.jar
    -Dcom.sun.aas.configName=server-config
    -Ddomain.name=domain1
    -Djmx.invoke.getters=true
    -Dcom.sun.aas.promptForIdentity=true
    -Dcom.sun.aas.classloader.optionalOverrideableChain.ee=
    -Dcom.sun.aas.instanceRoot=C:/Sun/SDK/domains/domain1
    -Dcom.sun.aas.domainName=domain1
    -Dcom.sun.aas.classloader.sharedChainJars=javaee.jar,C:/Sun/SDK/jdk/lib/tools.jar,install/applications/jmsra/imqjmsra.jar,commons-launcher.jar,C:/Sun/SDK/imq/lib/jaxm-api.jar,C:/Sun/SDK/imq/lib/fscontext.jar,C:/Sun/SDK/imq/lib/imqbroker.jar,C:/Sun/SDK/imq/lib/imqjmx.jar,C:/Sun/SDK/imq/lib/imqxm.jar,C:/Sun/SDK/lib/ant/lib/ant.jar,appserv-ws.jar,mail.jar,jsf-api.jar,jsf-impl.jar,appserv-jstl.jar,appserv-env.jar,jmxremote_optional.jar,C:/Sun/SDK/lib/SUNWjdmk/5.1/lib/jdmkrt.jar,commons-logging.jar,activation.jar,appserv-rt.jar,appserv-admin.jar,appserv-cmp.jar
    -Dcom.sun.aas.classloader.sharedChainJars.ee=appserv-se.jar,appserv-ee.jar,%HADB_HOME%/lib/dbstate.jar,%HADB_HOME%/lib/hadbjdbc4.jar,jgroups-all.jar,C:/Sun/SDK/lib/SUNWmfwk/lib/mfwk_instrum_tk.jar
    -Djava.util.logging.manager=com.sun.enterprise.server.logging.ServerLogManager
    -Dcom.sun.enterprise.overrideablejavaxpackages=javax.xml.bind,javax.help,javax.portlet
    -Dcom.sun.aas.classloader.serverClassPath=C:/Sun/SDK/lib/install/applications/jmsra/imqjmsra.jar,C:/Sun/SDK/imq/lib/jaxm-api.jar,C:/Sun/SDK/imq/lib/fscontext.jar,C:/Sun/SDK/imq/lib/imqbroker.jar,C:/Sun/SDK/imq/lib/imqjmx.jar,C:/Sun/SDK/lib/ant/lib/ant.jar,C:/Sun/SDK/lib/SUNWjdmk/5.1/lib/jdmkrt.jar
    -Dcom.sun.aas.classloader.appserverChainJars.ee=
    -Dcom.sun.aas.configRoot=C:/Sun/SDK/config
    -Djava.library.path=C:\Sun\SDK\lib;C:\Sun\SDK\lib;C:\Sun\SDK\jdk\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Sun\SDK\lib;C:\Sun\SDK\bin;C:\Sun\SDK\bin;C:\Sun\SDK\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Common Files\GTK\2.0\bin;C:\Softwares;C:\Program Files\jboss-4.0.5.GA\bin;C:\Program Files\Java\jre1.6.0\bin;C:\Program Files\Java\jdk1.6.0\bin;C:\Sun\SDK\bin;;C:\PROGRA~1\COMMON~1\MUVEET~1\030625
    -Dcom.sun.aas.instanceName=server
    -Dcom.sun.aas.processLauncher=SE
    -Dcom.sun.aas.installRoot=C:/Sun/SDK
    -Dcom.sun.aas.ClassPathPrefix=
    -Dcom.sun.aas.ClassPathSuffix=
    -Dcom.sun.aas.ServerClassPath=
    -cp
    ;C:/Sun/SDK/lib/appserv-launch.jar
    com.sun.enterprise.server.PELaunch
    start
    Starting Sun Java System Application Server Platform Edition 9.0_01 (build b02-p01) ...
    CORE5098: AS Socket Service Initialization has been completed.
    CORE5076: Using [Java HotSpot(TM) Client VM, Version 1.6.0] from [Sun Microsystems Inc.]
    SEC1002: Security Manager is OFF.
    ADM0001:MBeanServer initialized successfully
    SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.
    sgmt.service_initialized
    DPL5400:Exception occurred : error in opening zip file.
    ADM1079: Initialization of AMX MBeans successful
    ADM1504: Here is the JMXServiceURL for the Standard JMXConnectorServer: [service:jmx:rmi:///jndi/rmi://software-3bf780.gateway.2wire.net:8686/jmxrmi]. This is where the remote administrative clients should connect using the standard JMX connectors
    ADM1506: Status of Standard JMX Connector: Active = [true]
    JTS5014: Recoverable JTS instance, serverId = [3700]
    About to load the system app: MEjbApp
    LDR5010: All ejb(s) of [MEjbApp] loaded successfully!
    About to load the system app: __ejb_container_timer_app
    EJB5109:EJB Timer Service started successfully for datasource [jdbc/__TimerPool]
    LDR5010: All ejb(s) of [__ejb_container_timer_app] loaded successfully!
    [TopLink Config]: 2007.05.13 12:48:24.234--ServerSession(10697984)--The alias name for the entity class [class Entity.UserFeedlEntity] is being defaulted to: UserFeedlEntity.
    [TopLink Config]: 2007.05.13 12:48:24.375--ServerSession(10697984)--The alias name for the entity class [class Entity.FeedlEntity] is being defaulted to: FeedlEntity.
    [TopLink Config]: 2007.05.13 12:48:24.375--ServerSession(10697984)--The alias name for the entity class [class Entity.TaglEntity] is being defaulted to: TaglEntity.
    [TopLink Config]: 2007.05.13 12:48:24.375--ServerSession(10697984)--The alias name for the entity class [class Entity.EventlEntity] is being defaulted to: EventlEntity.
    [TopLink Config]: 2007.05.13 12:48:24.390--ServerSession(10697984)--The alias name for the entity class [class Entity.EventInvitelEntity] is being defaulted to: EventInvitelEntity.
    [TopLink Config]: 2007.05.13 12:48:24.390--ServerSession(10697984)--The alias name for the entity class [class Entity.WeatherFeedEntrylEntity] is being defaulted to: WeatherFeedEntrylEntity.
    [TopLink Config]: 2007.05.13 12:48:24.390--ServerSession(10697984)--The alias name for the entity class [class Entity.EmailEntity] is being defaulted to: EmailEntity.
    [TopLink Config]: 2007.05.13 12:48:24.390--ServerSession(10697984)--The alias name for the entity class [class Entity.UserBuddylEntity] is being defaulted to: UserBuddylEntity.
    [TopLink Config]: 2007.05.13 12:48:24.437--ServerSession(10697984)--The alias name for the entity class [class Entity.DefaultFeedEntrylEntity] is being defaulted to: DefaultFeedEntrylEntity.
    [TopLink Config]: 2007.05.13 12:48:24.437--ServerSession(10697984)--The alias name for the entity class [class Entity.FeedTypelEntity] is being defaulted to: FeedTypelEntity.
    [TopLink Config]: 2007.05.13 12:48:24.437--ServerSession(10697984)--The alias name for the entity class [class Entity.UserlEntity] is being defaulted to: UserlEntity.
    [TopLink Config]: 2007.05.13 12:48:24.437--ServerSession(10697984)--The alias name for the entity class [class Entity.EventTaglEntity] is being defaulted to: EventTaglEntity.
    [TopLink Config]: 2007.05.13 12:48:24.453--ServerSession(10697984)--The alias name for the entity class [class Entity.lUserTasklEntity] is being defaulted to: lUserTasklEntity.
    [TopLink Config]: 2007.05.13 12:48:24.453--ServerSession(10697984)--The alias name for the entity class [class Entity.EventRepeatInfolEntity] is being defaulted to: EventRepeatInfolEntity.
    [TopLink Config]: 2007.05.13 12:48:24.453--ServerSession(10697984)--The alias name for the entity class [class Entity.UserBuddyVisibleTagslEntity] is being defaulted to: UserBuddyVisibleTagslEntity.
    [TopLink Config]: 2007.05.13 12:48:24.484--ServerSession(10697984)--The alias name for the entity class [class Entity.UserEventlEntity] is being defaulted to: UserEventlEntity.
    [TopLink Config]: 2007.05.13 12:48:24.484--ServerSession(10697984)--The alias name for the entity class [class Entity.UserWebCalendarlEntity] is being defaulted to: UserWebCalendarlEntity.
    [TopLink Config]: 2007.05.13 12:48:24.484--ServerSession(10697984)--The alias name for the entity class [class Entity.TimeZonelEntity] is being defaulted to: TimeZonelEntity.
    [TopLink Config]: 2007.05.13 12:48:24.500--ServerSession(10697984)--The alias name for the entity class [class Entity.WebCalendarEventlEntity] is being defaulted to: WebCalendarEventlEntity.
    [TopLink Config]: 2007.05.13 12:48:24.500--ServerSession(10697984)--The alias name for the entity class [class Entity.UserTaskTaglEntity] is being defaulted to: UserTaskTaglEntity.
    [TopLink Config]: 2007.05.13 12:48:24.500--ServerSession(10697984)--The alias name for the entity class [class Entity.WebCalendarlEntity] is being defaulted to: WebCalendarlEntity.
    [TopLink Config]: 2007.05.13 12:48:24.500--ServerSession(10697984)--The target entity (reference) class for the many to one mapping element [private Entity.UserBuddylEntity Entity.UserBuddyVisibleTagslEntity.userBuddylEntity] is being defaulted to: class Entity.UserBuddylEntity.
    [TopLink Config]: 2007.05.13 12:48:24.703--ServerSession(10697984)--The target entity (reference) class for the one to many mapping element [private java.util.Collection Entity.UserBuddylEntity.userBuddyVisibleTagslEntityCollection] is being defaulted to: class Entity.UserBuddyVisibleTagslEntity.
    [TopLink Config]: 2007.05.13 12:48:24.703--ServerSession(10697984)--The target entity (reference) class for the one to many mapping element [private java.util.Collection Entity.lUserTasklEntity.userTaskTaglEntityCollection] is being defaulted to: class Entity.UserTaskTaglEntity.
    [TopLink Config]: 2007.05.13 12:48:24.703--ServerSession(10697984)--The target entity (reference) class for the many to one mapping element [private Entity.lUserTasklEntity Entity.UserTaskTaglEntity.lUserTasklEntity] is being defaulted to: class Entity.lUserTasklEntity.
    naming.bind
    **RemoteBusinessJndiName: session.EmailEntityFacadeRemote; remoteBusIntf: session.EmailEntityFacadeRemote
    LDR5010: All ejb(s) of [EnterpriseApplication1-ejb] loaded successfully!
    SMGT0007: Self Management Rules service is enabled
    Application server startup complete.
    WEB0302: Starting Sun-Java-System/Application-Server.
    WEB0100: Loading web module [__default-admingui] in virtual server [__asadmin] at []
    WEB0100: Loading web module [adminapp] in virtual server [__asadmin] at [web1]
    WEB0100: Loading web module [admingui] in virtual server [__asadmin] at [asadmin]
    Initializing Sun's JavaServer Faces implementation (1.2_02-b03-FCS) for context ''
    Completed initializing Sun's JavaServer Faces implementation (1.2_02-b03-FCS) for context ''
    Initializing Sun's JavaServer Faces implementation (1.2_02-b03-FCS) for context '/asadmin'
    Completed initializing Sun's JavaServer Faces implementation (1.2_02-b03-FCS) for context '/asadmin'
    WEB0712: Starting Sun-Java-System/Application-Server HTTP/1.1 on 8080
    WEB0712: Starting Sun-Java-System/Application-Server HTTP/1.1 on 8181
    WEB0712: Starting Sun-Java-System/Application-Server HTTP/1.1 on 4848
    About to load the system app: __JWSappclients
    WEB0100: Loading web module [__JWSappclients:sys.war] in virtual server [server] at [__JWSappclients]
    CORE5024: EJB module [EnterpriseApplication1-ejb] unloaded successfully!
    DeployedItemRef postDeregistration failed. Load Balancer Monitoring MBeans might be lying around if this application is being load balanced
    ADM1006:Uploading the file to:[C:\Documents and Settings\mohini kharb\Local Settings\Temp\s1astempdomain1server-1036455939\EnterpriseApplication1-ejb.jar]
    deployed with moduleid = EnterpriseApplication1-ejb
    ADM1041:Sent the event to instance:[ModuleDeployEvent -- enable ejb/EnterpriseApplication1-ejb]
    [TopLink Config]: 2007.05.13 01:30:58.265--ServerSession(14411981)--The alias name for the entity class [class Entity.UserFeedlEntity] is being defaulted to: UserFeedlEntity.
    [TopLink Config]: 2007.05.13 01:30:58.265--ServerSession(14411981)--The alias name for the entity class [class Entity.FeedlEntity] is being defaulted to: FeedlEntity.
    [TopLink Config]: 2007.05.13 01:30:58.265--ServerSession(14411981)--The alias name for the entity class [class Entity.TaglEntity] is being defaulted to: TaglEntity.
    [TopLink Config]: 2007.05.13 01:30:58.265--ServerSession(14411981)--The alias name for the entity class [class Entity.EventlEntity] is being defaulted to: EventlEntity.
    [TopLink Config]: 2007.05.13 01:30:58.281--ServerSession(14411981)--The alias name for the entity class [class Entity.EventInvitelEntity] is being defaulted to: EventInvitelEntity.
    [TopLink Config]: 2007.05.13 01:30:58.281--ServerSession(14411981)--The alias name for the entity class [class Entity.WeatherFeedEntrylEntity] is being defaulted to: WeatherFeedEntrylEntity.
    [TopLink Config]: 2007.05.13 01:30:58.281--ServerSession(14411981)--The alias name for the entity class [class Entity.EmailEntity] is being defaulted to: EmailEntity.
    [TopLink Config]: 2007.05.13 01:30:58.281--ServerSession(14411981)--The alias name for the entity class [class Entity.UserBuddylEntity] is being defaulted to: UserBuddylEntity.
    [TopLink Config]: 2007.05.13 01:30:58.281--ServerSession(14411981)--The alias name for the entity class [class Entity.DefaultFeedEntrylEntity] is being defaulted to: DefaultFeedEntrylEntity.
    [TopLink Config]: 2007.05.13 01:30:58.281--ServerSession(14411981)--The alias name for the entity class [class Entity.FeedTypelEntity] is being defaulted to: FeedTypelEntity.
    [TopLink Config]: 2007.05.13 01:30:58.296--ServerSession(14411981)--The alias name for the entity class [class Entity.UserlEntity] is being defaulted to: UserlEntity.
    [TopLink Config]: 2007.05.13 01:30:58.296--ServerSession(14411981)--The alias name for the entity class [class Entity.EventTaglEntity] is being defaulted to: EventTaglEntity.
    [TopLink Config]: 2007.05.13 01:30:58.296--ServerSession(14411981)--The alias name for the entity class [class Entity.lUserTasklEntity] is being defaulted to: lUserTasklEntity.
    [TopLink Config]: 2007.05.13 01:30:58.296--ServerSession(14411981)--The alias name for the entity class [class Entity.EventRepeatInfolEntity] is being defaulted to: EventRepeatInfolEntity.
    [TopLink Config]: 2007.05.13 01:30:58.296--ServerSession(14411981)--The alias name for the entity class [class Entity.UserBuddyVisibleTagslEntity] is being defaulted to: UserBuddyVisibleTagslEntity.
    [TopLink Config]: 2007.05.13 01:30:58.312--ServerSession(14411981)--The alias name for the entity class [class Entity.UserEventlEntity] is being defaulted to: UserEventlEntity.
    [TopLink Config]: 2007.05.13 01:30:58.312--ServerSession(14411981)--The alias name for the entity class [class Entity.UserWebCalendarlEntity] is being defaulted to: UserWebCalendarlEntity.
    [TopLink Config]: 2007.05.13 01:30:58.312--ServerSession(14411981)--The alias name for the entity class [class Entity.TimeZonelEntity] is being defaulted to: TimeZonelEntity.
    [TopLink Config]: 2007.05.13 01:30:58.312--ServerSession(14411981)--The alias name for the entity class [class Entity.WebCalendarEventlEntity] is being defaulted to: WebCalendarEventlEntity.
    [TopLink Config]: 2007.05.13 01:30:58.312--ServerSession(14411981)--The alias name for the entity class [class Entity.UserTaskTaglEntity] is being defaulted to: UserTaskTaglEntity.
    [TopLink Config]: 2007.05.13 01:30:58.312--ServerSession(14411981)--The alias name for the entity class [class Entity.WebCalendarlEntity] is being defaulted to: WebCalendarlEntity.
    [TopLink Config]: 2007.05.13 01:30:58.312--ServerSession(14411981)--The target entity (reference) class for the many to one mapping element [private Entity.lUserTasklEntity Entity.UserTaskTaglEntity.lUserTasklEntity] is being defaulted to: class Entity.lUserTasklEntity.
    [TopLink Config]: 2007.05.13 01:30:58.312--ServerSession(14411981)--The target entity (reference) class for the one to many mapping element [private java.util.Collection Entity.lUserTasklEntity.userTaskTaglEntityCollection] is being defaulted to: class Entity.UserTaskTaglEntity.
    [TopLink Config]: 2007.05.13 01:30:58.312--ServerSession(14411981)--The target entity (reference) class for the many to one mapping element [private Entity.UserBuddylEntity Entity.UserBuddyVisibleTagslEntity.userBuddylEntity] is being defaulted to: class Entity.UserBuddylEntity.
    [TopLink Config]: 2007.05.13 01:30:58.312--ServerSession(14411981)--The target entity (reference) class for the one to many mapping element [private java.util.Collection Entity.UserBuddylEntity.userBuddyVisibleTagslEntityCollection] is being defaulted to: class Entity.UserBuddyVisibleTagslEntity.
    naming.bind
    **RemoteBusinessJndiName: session.EmailEntityFacadeRemote; remoteBusIntf: session.EmailEntityFacadeRemote
    LDR5010: All ejb(s) of [EnterpriseApplication1-ejb] loaded successfully!
    ADM1006:Uploading the file to:[C:\Documents and Settings\mohini kharb\Local Settings\Temp\s1astempdomain1server-1036455939\EnterpriseApplication1.ear]
    deployed with moduleid = EnterpriseApplication1
    ADM1041:Sent the event to instance:[ApplicationDeployEvent -- enable EnterpriseApplication1]
    [TopLink Config]: 2007.05.13 01:31:19.796--ServerSession(25852780)--The alias name for the entity class [class Entity.UserFeedlEntity] is being defaulted to: UserFeedlEntity.
    [TopLink Config]: 2007.05.13 01:31:19.812--ServerSession(25852780)--The alias name for the entity class [class Entity.FeedlEntity] is being defaulted to: FeedlEntity.
    [TopLink Config]: 2007.05.13 01:31:19.812--ServerSession(25852780)--The alias name for the entity class [class Entity.TaglEntity] is being defaulted to: TaglEntity.
    [TopLink Config]: 2007.05.13 01:31:19.812--ServerSession(25852780)--The alias name for the entity class [class Entity.EventlEntity] is being defaulted to: EventlEntity.
    [TopLink Config]: 2007.05.13 01:31:19.812--ServerSession(25852780)--The alias name for the entity class [class Entity.EventInvitelEntity] is being defaulted to: EventInvitelEntity.
    [TopLink Config]: 2007.05.13 01:31:19.812--ServerSession(25852780)--The alias name for the entity class [class Entity.WeatherFeedEntrylEntity] is being defaulted to: WeatherFeedEntrylEntity.
    [TopLink Config]: 2007.05.13 01:31:19.812--ServerSession(25852780)--The alias name for the entity class [class Entity.EmailEntity] is being defaulted to: EmailEntity.
    [TopLink Config]: 2007.05.13 01:31:19.812--ServerSession(25852780)--The alias name for the entity class [class Entity.UserBuddylEntity] is being defaulted to: UserBuddylEntity.
    [TopLink Config]: 2007.05.13 01:31:19.812--ServerSession(25852780)--The alias name for the entity class [class Entity.DefaultFeedEntrylEntity] is being defaulted to: DefaultFeedEntrylEntity.
    [TopLink Config]: 2007.05.13 01:31:19.828--ServerSession(25852780)--The alias name for the entity class [class Entity.FeedTypelEntity] is being defaulted to: FeedTypelEntity.
    [TopLink Config]: 2007.05.13 01:31:19.828--ServerSession(25852780)--The alias name for the entity class [class Entity.UserlEntity] is being defaulted to: UserlEntity.
    [TopLink Config]: 2007.05.13 01:31:19.828--ServerSession(25852780)--The alias name for the entity class [class Entity.EventTaglEntity] is being defaulted to: EventTaglEntity.
    [TopLink Config]: 2007.05.13 01:31:19.828--ServerSession(25852780)--The alias name for the entity class [class Entity.lUserTasklEntity] is being defaulted to: lUserTasklEntity.
    [TopLink Config]: 2007.05.13 01:31:19.828--ServerSession(25852780)--The alias name for the entity class [class Entity.EventRepeatInfolEntity] is being defaulted to: EventRepeatInfolEntity.
    [TopLink Config]: 2007.05.13 01:31:19.843--ServerSession(25852780)--The alias name for the entity class [class Entity.UserBuddyVisibleTagslEntity] is being defaulted to: UserBuddyVisibleTagslEntity.
    [TopLink Config]: 2007.05.13 01:31:19.843--ServerSession(25852780)--The alias name for the entity class [class Entity.UserEventlEntity] is being defaulted to: UserEventlEntity.
    [TopLink Config]: 2007.05.13 01:31:19.843--ServerSession(25852780)--The alias name for the entity class [class Entity.UserWebCalendarlEntity] is being defaulted to: UserWebCalendarlEntity.
    [TopLink Config]: 2007.05.13 01:31:19.843--ServerSession(25852780)--The alias name for the entity class [class Entity.TimeZonelEntity] is being defaulted to: TimeZonelEntity.
    [TopLink Config]: 2007.05.13 01:31:19.843--ServerSession(25852780)--The alias name for the entity class [class Entity.WebCalendarEventlEntity] is being defaulted to: WebCalendarEventlEntity.
    [TopLink Config]: 2007.05.13 01:31:19.843--ServerSession(25852780)--The alias name for the entity class [class Entity.UserTaskTaglEntity] is being defaulted to: UserTaskTaglEntity.
    [TopLink Config]: 2007.05.13 01:31:19.843--ServerSession(25852780)--The alias name for the entity class [class Entity.WebCalendarlEntity] is being defaulted to: WebCalendarlEntity.
    [TopLink Config]: 2007.05.13 01:31:19.843--ServerSession(25852780)--The target entity (reference) class for the one to many mapping element [private java.util.Collection Entity.lUserTasklEntity.userTaskTaglEntityCollection] is being defaulted to: class Entity.UserTaskTaglEntity.
    [TopLink Config]: 2007.05.13 01:31:19.843--ServerSession(25852780)--The target entity (reference) class for the many to one mapping element [private Entity.lUserTasklEntity Entity.UserTaskTaglEntity.lUserTasklEntity] is being defaulted to: class Entity.lUserTasklEntity.
    [TopLink Config]: 2007.05.13 01:31:19.843--ServerSession(25852780)--The target entity (reference) class for the one to many mapping element [private java.util.Collection Entity.UserBuddylEntity.userBuddyVisibleTagslEntityCollection] is being defaulted to: class Entity.UserBuddyVisibleTagslEntity.
    [TopLink Config]: 2007.05.13 01:31:19.843--ServerSession(25852780)--The target entity (reference) class for the many to one mapping element [private Entity.UserBuddylEntity Entity.UserBuddyVisibleTagslEntity.userBuddylEntity] is being defaulted to: class Entity.UserBuddylEntity.
    naming.bind
    EJB5090: Exception in creating EJB container [javax.naming.NameAlreadyBoundException: Use rebind to override]
    appId=EnterpriseApplication1 moduleName=EnterpriseApplication1-ejb_jar ejbName=EmailEntityFacade
    LDR5012: Jndi name conflict found in [EnterpriseApplication1]. Jndi name [session.EmailEntityFacadeRemote] for bean [EmailEntityFacade] is already in use.
    LDR5013: Naming exception while creating EJB container:
    javax.naming.NameAlreadyBoundException: Use rebind to override
    at com.sun.enterprise.naming.TransientContext.doBindOrRebind(TransientContext.java:279)
    at com.sun.enterprise.naming.TransientContext.bind(TransientContext.java:219)
    at com.sun.enterprise.naming.SerialContextProviderImpl.bind(SerialContextProviderImpl.java:98)
    at com.sun.enterprise.naming.LocalSerialContextProviderImpl.bind(LocalSerialContextProviderImpl.java:77)
    at com.sun.enterprise.naming.SerialContext.bind(SerialContext.java:372)
    at com.sun.enterprise.naming.SerialContext.bind(SerialContext.java:387)
    at javax.naming.InitialContext.bind(InitialContext.java:404)
    at com.sun.enterprise.naming.NamingManagerImpl.publishObject(NamingManagerImpl.java:215)
    at com.sun.enterprise.naming.NamingManagerImpl.publishObject(NamingManagerImpl.java:168)
    at com.sun.ejb.containers.BaseContainer.initializeHome(BaseContainer.java:948)
    at com.sun.ejb.containers.StatelessSessionContainer.initializeHome(StatelessSessionContainer.java:220)
    at com.sun.ejb.containers.ContainerFactoryImpl.createContainer(ContainerFactoryImpl.java:671)
    at com.sun.enterprise.server.AbstractLoader.loadEjbs(AbstractLoader.java:490)
    at com.sun.enterprise.server.ApplicationLoader.load(ApplicationLoader.java:184)
    at com.sun.enterprise.server.TomcatApplicationLoader.load(TomcatApplicationLoader.java:113)
    at com.sun.enterprise.server.ApplicationManager.applicationDeployed(ApplicationManager.java:322)
    at com.sun.enterprise.server.ApplicationManager.applicationDeployed(ApplicationManager.java:216)
    at com.sun.enterprise.server.ApplicationManager.applicationDeployed(ApplicationManager.java:189)
    at com.sun.enterprise.server.ApplicationManager.applicationEnabled(ApplicationManager.java:754)
    at com.sun.enterprise.admin.event.AdminEventMulticaster.invokeApplicationDeployEventListener(AdminEventMulticaster.java:914)
    at com.sun.enterprise.admin.event.AdminEventMulticaster.handleApplicationDeployEvent(AdminEventMulticaster.java:892)
    at com.sun.enterprise.admin.event.AdminEventMulticaster.processEvent(AdminEventMulticaster.java:445)
    at com.sun.enterprise.admin.event.AdminEventMulticaster.multicastEvent(AdminEventMulticaster.java:160)
    at com.sun.enterprise.admin.server.core.AdminNotificationHelper.sendNotification(AdminNotificationHelper.java:128)
    at com.sun.enterprise.admin.server.core.ConfigInterceptor.postInvoke(ConfigInterceptor.java:109)
    at com.sun.enterprise.admin.util.proxy.ProxyClass.invoke(ProxyClass.java:97)
    at $Proxy1.invoke(Unknown Source)
    at com.sun.enterprise.admin.server.core.jmx.SunoneInterceptor.invoke(SunoneInterceptor.java:297)
    at com.sun.enterprise.admin.jmx.remote.server.callers.InvokeCaller.call(InvokeCaller.java:56)
    at com.sun.enterprise.admin.jmx.remote.server.MBeanServerRequestHandler.handle(MBeanServerRequestHandler.java:142)
    at com.sun.enterprise.admin.jmx.remote.server.servlet.RemoteJmxConnectorServlet.processRequest(RemoteJmxConnectorServlet.java:109)
    at com.sun.enterprise.admin.jmx.remote.server.servlet.RemoteJmxConnectorServlet.doPost(RemoteJmxConnectorServlet.java:180)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:278)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:240)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:179)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:239)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
    at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    Registering ad hoc servlet: WebPathPath: context root = "/EnterpriseApplication1", path = "/EnterpriseApplication1-app-client'
    Java Web Start services started for application com.sun.enterprise.appclient.jws.ApplicationContentOrigin@fa6240 registration name=En

    The server log indicates that
    "Application NOT loaded: [EnterpriseApplication1]"
    I also see:
    "Jndi name conflict found in [EnterpriseApplication1]. Jndi name [session.EmailEntityFacadeRemote] for bean [EmailEntityFacade] is already in use."
    Will forward this the deployment team. Will get back to you soon

  • PhoneGap Dreamweaver CS5.5 Android App Fail

    I am attempting the to create an Android app using Dreamweaver CS 5.5 and PhoneGap. The build always fails with the following message at the end of the error log:
    -dex:
         [echo] Converting compiled files and external libraries into C:\Users\ROG\Desktop\COMCOM~1.DEV\bin\classes.dex...
        [apply] Could not create the Java virtual machine.
        [apply] Error occurred during initialization of VM
        [apply] Could not reserve enough space for object heap
    BUILD FAILED
    F:\android-sdk\tools\ant\main_rules.xml:486: The following error occurred while executing this line:
    F:\android-sdk\tools\ant\main_rules.xml:203: apply returned: 1
    Total time: 2 seconds
    I was told by Adobe that this feature was not supported and that I needed to seek help here. I am running Windows 7 64 bit. I have the 64 bit version of 6.27 JDK installed and the latest Android SDK. I have successfullt created an app using PhoneGap directly through the command line. the Android SDK also doesn't like some of the config and build files created by Dw when I try to install the application files. It will still work, it just complains. I have also made sure that the emulator is up and running before running the build command in Dw.
    Any help would be appreciated.
    Thanks

    Today I follwed David Powers tutorial about creating an app by Phonegap from DW CS5_5.
    It is in the book: Studio Techniques. De iPhone app created worked as it should in the simulator. The Android version didn't show the map it should show in the emulator.
    Because creating the Android SDK by DW failed I installed it myself. Dw tried to install an linux version of Phonegap on my Mac. (Something the DW team should look after!). After installing and following David Powers instructions it worked as descripted above.
    It takes a little time to get used to the Android SDK and besides that it behaves terribly slow.
    I cannot help you any further but I want to let you what I experienced myself up to now.

Maybe you are looking for

  • How do I enable TPM in the bios on Product name: HP Pavilion dv7 Notebook PC

    Hi, I have run into a problem trying to enable MS Bitlocker on Windows 8.1 on Product name: HP Pavilion dv7 Notebook PC BIOS version is: F.1C In the Windows UI, the TPM (Trusted Computing Module) management console says that I need to enable TPM in t

  • Granting SocketPermission using signed applet

    I have had a dream of locally caching a jar file for an applet so that all the code will be on the client machine after the first time the applet was loaded. Basically, I have a very thin applet composed of a jar class loader and a tiny applet which

  • Question regd. IS-RETAIL in SAP SD

    Hi All, I need an urgent clarification. If a company in Retail industry implements SAP, is it mandatory that they will be using IS-RETAIL only for SAP SD. Or can they use the normal SAP SD inspite of being in the retail industry (for eg. a company li

  • TEXT_CONVERT_XLS_TO_SAP error

    Hi friends i am using the following FM FORM GET_MAT_FROM_SPREAD .     CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'     EXPORTING     I_FIELD_SEPERATOR        =       i_line_header            =  'X'       i_tab_raw_data           =  it_raw       " WORK TAB

  • RG1 Update

    Hi Experts We have a scenario where we are manufacturing cables 1000 M and then out of the total quanity we are cutting 5 M of cable for the testing purpose and then scraping it. So at the end of the day we are dispatching 995 M to the Customer and 5