Dead-end with EJB3.0 and Sun's Java WebApp

Hi,
Wondering if you can help me as I'm a bit stuck with my EJB3.0 remote connection using Sun's Java WebApp9.0 Server.
Quick over-view:
I have a Client.war file which contains my Servlets and the Remote interfaces for teh EJB and other 'client' classes
I have a EJB.jar which contains the EJBs with their interfaces
I need to make a remote connection to the CreateNewUserAccountBean (Stateless) which connects to the Uploader (Entity) Bean
I have tried to post all the relivent parts of the code, but it's quite hard to make sure I have everything.
My code gets as far as the [InitialContext ic = new InitialContext(this.getEjbRemoteProps());] then bombs out claiming it can not find the Uploader class (under EJB.jar)
As I say, there is rather a lost here and it's not the easiest to look through, but kust wondering if there are any glaring erroes in the code.
All the code bits.........
THESE ARE IN THE CLIENT WAR
============================
CreateUserAccountServlet
code:
     final private boolean uploadUserAccountDetails(CreateNewUserAccountBean crUsrAccBean) {
          System.out.println("uploadUserAccountDetails()");
          try {
               System.out.println("point 1");
               ICreateUserAccountManager crUsrAccMan = new CreateUserAccountManager();
               isSuccessful = crUsrAccMan.uploadAccountDetails(crUsrAccBean);
          } catch (NamingException e) {
               e.printStackTrace();
               isSuccessful = false;
          return isSuccessful;
CreateUserAccountManager
code:
     final public boolean uploadAccountDetails(CreateNewUserAccountBean crUsrAccBean) throws NamingException {
          System.out.println("point 2");
          IRemoteEjbConnector remEjbConn = new RemoteEjbConnectionManager();
          ICreateAccountRemote createAccRem = remEjbConn.createUserAccountRemoteConnection();
          createAccRem.setFirstname(crUsrAccBean.getFirstname());
          isValid = remEjbConn.uploadAccountDetails(createAccRem);
          return isValid;          
RemoteEjbConnectionManager
code:
final private Properties getEjbRemoteProps() {
          Properties props = new Properties();
          // To be put into a Properties file!
     props.setProperty("java.naming.factory.initial", "com.sun.enterprise.naming.SerialInitContextFactory");
     props.setProperty("java.naming.factory.url.pkgs", "com.sun.enterprise.naming");
     props.setProperty("java.naming.factory.state", "com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl");
     props.setProperty("org.omg.CORBA.ORBInitialHost", "localhost");
     props.setProperty("org.omg.CORBA.ORBInitialPort", "3700");          
          return props;
     final public ICreateAccountRemote createUserAccountRemoteConnection() throws NamingException {
          System.out.println("point 3");
          InitialContext ic = new InitialContext(this.getEjbRemoteProps());
          System.out.println("point 4");
          // ##### SEEMS TO ONLY GET THIS FAR, THEN BOMBS OUT! #####
          ICreateAccountRemote createAccRem = (ICreateAccountRemote) ic.lookup("createNewUserAccountEjb");
          System.out.println("point 5");
          return createAccRem;
THESE TWO ARE IN THE EJB3.0 JAR
===============================
CreateNewUserAccountBean
code:
     @Stateless (mappedName="createNewUserAccountEjb")
     @Remote ({ICreateAccountRemote.class})
     public Uploader findByPrimaryKey(String fname) {
          Uploader uploader;
          try {
               EntityManager em = emf.createEntityManager();
               uploader = (Uploader)em.find(Uploader.class, fname);
               em.close();
               return uploader;
          } catch (Exception ex) {
               ex.printStackTrace();
               uploader = null;
          return uploader;
ICreateAccountRemote
======================
code:
@Remote
public interface ICreateAccountRemote {
public String getFirstname();
public void setFirstname(String sFname);
public boolean createNewUserAccount();
public Uploader findByPrimaryKey(String name);
Uploader
code:
     @Entity
     @Table(name="tbl_user_details")
persistence.xml (under EJB.jar)
================================
code:
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
     <persistence-unit name="create_account_persistence_ctx" transaction-type="JTA">
          <provider>oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider</provider>
               <jta-data-source>jdbc/testDB</jta-data-source>
          <properties>
               <!-- empty -->
          </properties>
     </persistence-unit>
</persistence>
SERVER.LOG OUTPUT
=================
code:
[#|2008-08-26T10:15:55.387+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|2008-08-26 10:15:55,387 INFO [com.test.client.web.pageloader.PageLoader] - <Loading page [pages/welcome.jsp]>
|#]
[#|2008-08-26T10:15:58.662+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|2008-08-26 10:15:58,662 INFO [com.test.client.web.servlets.CreateUserAccountServlet] - <createUserAccount()>
|#]
[#|2008-08-26T10:15:58.662+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|2008-08-26 10:15:58,662 INFO [com.test.client.web.servlets.CreateUserAccountServlet] - <iStep: 1>
|#]
[#|2008-08-26T10:15:58.662+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|loadRegistrationPage()|#]
[#|2008-08-26T10:16:11.060+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-80-0;|
2008-08-26 10:16:11,060 INFO [com.test.client.web.servlets.CreateUserAccountServlet] - <createUserAccount()>
|#]
[#|2008-08-26T10:16:11.060+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-80-0;|2008-08-26 10:16:11,060 INFO [com.test.client.web.servlets.CreateUserAccountServlet] - <iStep: 2>
|#]
[#|2008-08-26T10:16:11.150+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-80-0;|>> CreateUserAccountServlet step 2 - crUsrAccBean.setFirstname: bob|#]
[#|2008-08-26T10:16:11.150+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-80-0;|
>> CreateUserAccountServlet step 2 - crUsrAccBean.setSurname: fish|#]
[#|2008-08-26T10:16:11.170+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-80-0;|
validateRegistrationDetails()|#]
[#|2008-08-26T10:16:11.210+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-80-0;|
loadRegistraionConfirmation()|#]
[#|2008-08-26T10:16:12.822+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|
2008-08-26 10:16:12,822 INFO [com.test.client.web.servlets.CreateUserAccountServlet] - <createUserAccount()>
|#]
[#|2008-08-26T10:16:12.822+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|2008-08-26 10:16:12,822 INFO [com.test.client.web.servlets.CreateUserAccountServlet] - <iStep: 3>
|#]
[#|2008-08-26T10:16:12.832+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|>> CreateUserAccountServlet step 3 - crUsrAccBean.setFirstname: bob|#]
[#|2008-08-26T10:16:12.832+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|
>> CreateUserAccountServlet step 3 - crUsrAccBean.setSurname: fish|#]
[#|2008-08-26T10:16:12.832+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|
uploadUserAccountDetails()|#]
[#|2008-08-26T10:16:12.832+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|
point 1|#]
[#|2008-08-26T10:16:12.832+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|
point 2|#]
[#|2008-08-26T10:16:12.862+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|
point 3|#]
[#|2008-08-26T10:16:12.882+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|
point 4|#]
[#|2008-08-26T10:16:12.882+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|
java.naming.factory.initial: com.sun.enterprise.naming.SerialInitContextFactory|#]
[#|2008-08-26T10:16:12.882+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|
java.naming.factory.url.pkgs: com.sun.enterprise.naming|#]
[#|2008-08-26T10:16:12.882+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|
java.naming.factory.state: com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl|#]
[#|2008-08-26T10:16:12.892+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|
org.omg.CORBA.ORBInitialHost: localhost|#]
[#|2008-08-26T10:16:12.892+0100|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;|
org.omg.CORBA.ORBInitialPort: 3700|#]
[#|2008-08-26T10:16:13.043+0100|SEVERE|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-80-1;_RequestID=c61ac1aa-c2f1-4535-941f-572cf6e3e528;|StandardWrapperValve[RegisterUserAccount]: Servlet.service() for servlet RegisterUserAccount threw exception
java.lang.NoClassDefFoundError: com/test/ejb/user/createaccount/Uploader
     at java.lang.Class.getDeclaredMethods0(Native Method)
     at java.lang.Class.privateGetDeclaredMethods(Class.java:2365)
     at java.lang.Class.privateGetPublicMethods(Class.java:2488)
     at java.lang.Class.getMethods(Class.java:1406)
     at com.sun.ejb.codegen.RemoteGenerator.<init>(RemoteGenerator.java:108)
     at com.sun.ejb.EJBUtils.loadGeneratedRemoteBusinessClasses(EJBUtils.java:367)
     at com.sun.ejb.EJBUtils.loadGeneratedRemoteBusinessClasses(EJBUtils.java:332)
     at com.sun.ejb.EJBUtils.lookupRemote30BusinessObject(EJBUtils.java:297)
     at com.sun.ejb.containers.RemoteBusinessObjectFactory.getObjectInstance(RemoteBusinessObjectFactory.java:61)
     at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
     at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:314)
     at javax.naming.InitialContext.lookup(InitialContext.java:351)
     at com.test.client.ejb.RemoteEjbConnectionManager.createUserAccountRemoteConnection(RemoteEjbConnectionManager.java:53)
     at com.test.client.user.account.CreateUserAccountManager.uploadAccountDetails(CreateUserAccountManager.java:55)
     at com.test.client.web.servlets.CreateUserAccountServlet.uploadUserAccountDetails(CreateUserAccountServlet.java:225)
     at com.test.client.web.servlets.CreateUserAccountServlet.createUserAccount(CreateUserAccountServlet.java:168)
     at com.test.client.web.servlets.CreateUserAccountServlet.doPost(CreateUserAccountServlet.java:43)
     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:231)
     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)
|#]
Any help would be fantastic, cheers!!!

KPS_UK wrote:
It has been deployed, incorrectly.
it's in the ejb.jar which is deplyed under the 'Applications/EJB Modules' in Sun's WebApp 9.0.it's still incorrect - the app server is telling you so.
I don't know if there is any other config that needs to be done with the WebApp to tell it where the WebApp .war should look to find the EJB Module?I use weblogic, so I don't know. Without seeing anything else, I'd say it's not packaged correctly. You think that class is available, but the app server disagrees with you. Believe the app server and figure out where you've gone wrong. Check your assumptions.
%

Similar Messages

  • Im at my wits end with my n93i and WLAN. Could any...

    OK i havea netgear WG121 router and recently got an n93i.
    Now I had an n95 for a few days before and that used to connect to my WLAN fine by just using the wlan wizzard. But with this N93I it gives me no end of troubles.
    First of all I kept getting incorrect wep key error (even though I was entering in the wep key that I use on my pc). PS Out of curiosity should I be using the password that my PC connects to or the admin password to the router? Both didnt work anyway.
    So found this site http://www.wepkey.com/ for converting your ASCII key to Hex. Still didnt work. Only this time it said WLAN network not found.
    So then someone said I should try setting a static ip by entering in the gateway address, subnet from my PC as well as the ip address of my phone. When this was done the web page looked to be loading but then said no gateway reply.
    I honestley dont know what to do now. It seems there are so many people with WIFI problems around but I dont see any solutions.
    Can anyone assist me?

    I'm even more concerned now after hearing back regarding my initial post. Apparently any cancellations or changes are showing as done by me using the self help platform on my BT account. This isn't the case. The actions carried out on certain dates listed on the email I received were all carried out by BT over the phone and not myself. I didn't even know it was possible to cancel a direct debit using the BT website. I thought it had to be cancelled at the bank and then a phone call to BT. I was logged onto my BT account while the phone calls were taking place but any action was carried out by BT and not myself. 
    BT are insisting I have no DD set up. Yet it clearly shows on my bank account that there is an active DD for BT. To confirm that, I've spoken to my bank today who have verified there is most definitely a DD set up to pay BT on the bank account. They've double checked the account number with me and it's definitely for my BT account. The bank are sending me a letter confirming it's an active DD for me to include all other details for the Ombudsman because I really feel this needs fetching to their attention. 
    To be fair to the person who has replied I have been told I can pay a small amount and set the DD up rather than pay in full or face restrictions. But despite BT's insistence that I have no DD set up my bank clearly states I have. I'm now going to have to cancel the DD that BT are sure isn't active and set it up again.
    Incidentally the monthly payments I'm to make are £45 - less than the £60 and a lot less than the £104 previously mentioned! So on one hand I will have a satisfactory conclusion but on the other I have to still cancel a "none existent" existing DD, set a new one up and am out of pocket on bank charges caused by BT trying to take payment on the wrong date. I then have to trust they'll not do the same thing again.......
    It's all like a stupid joke that's just not funny. 

  • Video Chat ended with error -8 and sign off

    Hey everyone, hope you're all doing well. I'm sorry if this comes out as a nuisance to people seeing as there are 234234234 people with the same sort of problem. I tried searching, but unfortunately nothing came up. So here's my problem/story.
    I'm connected to iChat AV through my Airport, with a connection of 10mb/s running with a Netgear router. I recently got this because I was video chatting with my gf previously on a wireless 1MB/s connection (oh the annoyance!) that I was sharing with 20 other people in my complex (Oh the headaches! but it was free!), so after repeated frustrations I bit the bullet and bought my current connection and I loooove it, except for one thing: Video Chat doesnt work properly now! D'oh >.<
    I don't know what is now, but I have try literally 20 times over and over again to connect to video chat with her. I repeatedly get the Error 8 message, and not only that but sometimes iChat closes completely when I click connect! sdksjkjsdhgjdfghkjfdl <---- me angry! Below is the message I get when I'm signed off without permission, and if I get the Error 8 message again, Ill post the details here.
    Help me! Haha, my gf lives in Boston (Go Sox!) and I live in Florida (Go Gators!) so it's really necessary for us to video chat. Plus, she's really hot so I want to look at her, you know what I'm saying? Help a brother out. Oh and she has the exact same model I have.
    Details:
    Date/Time: 2007-11-11 13:29:22.489 -0500
    OS Version: 10.4.10 (Build 8R2232)
    Report Version: 4
    Command: iChat
    Path: /Applications/iChat.app/Contents/MacOS/iChat
    Parent: WindowServer [58]
    Version: 3.1.8 (445)
    Build Version: 3
    Project Name: iChat
    Source Version: 4450000
    PID: 585
    Thread: 29
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x20946000
    Thread 0:
    0 com.apple.CoreFoundation 0x9084367d _CFDictionaryDecrementValue + 110
    1 com.apple.Foundation 0x927db96e NSDecrementExtraRefCountWasZero + 120
    2 com.apple.Foundation 0x927db8d4 -[NSObject release] + 24
    3 com.apple.AppKit 0x932bb288 +[NSGraphicsContext setCurrentContext:] + 139
    4 com.apple.AppKit 0x932bd1b8 -[NSWindow _windowDeviceRound] + 64
    5 com.apple.AppKit 0x932bf8f4 -[NSFocusState flush] + 42
    6 com.apple.AppKit 0x932be627 -[NSView _focusFromView:withContext:] + 436
    7 com.apple.AppKit 0x932be1eb -[NSView lockFocusIfCanDraw] + 726
    8 com.apple.AppKit 0x932bdd62 -[NSView lockFocus] + 35
    9 com.apple.AppKit 0x932f52cc -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 373
    10 com.apple.AppKit 0x932f4c8e -[NSView displayIfNeeded] + 439
    11 com.apple.AppKit 0x932f4a32 -[NSWindow displayIfNeeded] + 168
    12 com.apple.iChat 0x00061cf0 0x1000 + 396528
    13 com.apple.iChat 0x00060aad 0x1000 + 391853
    14 com.apple.iChat 0x000608f5 0x1000 + 391413
    15 com.apple.iChat 0x00060810 0x1000 + 391184
    16 com.apple.iChat 0x0006083f 0x1000 + 391231
    17 com.apple.iChat 0x0005fbe7 0x1000 + 388071
    18 com.apple.iChat 0x0005f511 0x1000 + 386321
    19 com.apple.iChat 0x0005f36d 0x1000 + 385901
    20 com.apple.AppKit 0x932f83b1 -[NSView _drawRect:clip:] + 3228
    21 com.apple.AppKit 0x932f740b -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 614
    22 com.apple.AppKit 0x932f6473 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 217
    23 com.apple.AppKit 0x932f7041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    24 com.apple.AppKit 0x932f7041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    25 com.apple.AppKit 0x932f7041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    26 com.apple.AppKit 0x932f7041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    27 com.apple.AppKit 0x932f5b78 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 290
    28 com.apple.AppKit 0x932f5362 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 523
    29 com.apple.AppKit 0x932f4c8e -[NSView displayIfNeeded] + 439
    30 com.apple.AppKit 0x932f4a32 -[NSWindow displayIfNeeded] + 168
    31 com.apple.AppKit 0x93344d6c _handleWindowNeedsDisplay + 206
    32 com.apple.CoreFoundation 0x9082dd6e __CFRunLoopDoObservers + 342
    33 com.apple.CoreFoundation 0x9082ce10 CFRunLoopRunSpecific + 827
    34 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    35 com.apple.HIToolbox 0x92df29b8 RunCurrentEventLoopInMode + 285
    36 com.apple.HIToolbox 0x92df20c2 ReceiveNextEventCommon + 385
    37 com.apple.HIToolbox 0x92df1f19 BlockUntilNextEventMatchingListInMode + 81
    38 com.apple.AppKit 0x93279465 _DPSNextEvent + 572
    39 com.apple.AppKit 0x93279056 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    40 com.apple.AppKit 0x93272ddb -[NSApplication run] + 512
    41 com.apple.AppKit 0x93266d2f NSApplicationMain + 573
    42 com.apple.iChat 0x00002a2e 0x1000 + 6702
    43 com.apple.iChat 0x0007e515 0x1000 + 513301
    Thread 1:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.viceroy.framework 0x97a985c5 CameraList_Thread + 423
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 libGLProgrammability.dylib 0x941a6a4f glvmDoWork + 150
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.viceroy.framework 0x97a9a7f3 Queue_Get + 253
    2 com.apple.viceroy.framework 0x97a99428 -[VCNotificationGateway notificationGatewayProc:] + 209
    3 com.apple.Foundation 0x927f52e0 forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x9001a1cc select + 12
    1 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x9001a1cc select + 12
    1 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9282aa0f +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4 com.apple.Foundation 0x927f52e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92851bc2 +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x927f52e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 8:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9282ad3a -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x9282ac36 -[NSRunLoop run] + 75
    5 com.apple.WebKit 0x95310b89 +[WebFileDatabase _syncLoop:] + 198
    6 com.apple.Foundation 0x927f52e0 forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 9:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x9284b26c -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.AppKit 0x93350270 -[NSUIHeartBeat _heartBeatThread:] + 377
    3 com.apple.Foundation 0x927f52e0 forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 10:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.ColorSync 0x915a96cf pthreadSemaphoreWait(t_pthreadSemaphore*) + 35
    2 com.apple.ColorSync 0x915c3de0 CMMConvTask(void*) + 60
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 11:
    0 libSystem.B.dylib 0x90026d5c kevent + 12
    1 ...ple.CoreServices.CarbonCore 0x90cb8c6c PrivateMPEntryPoint + 51
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 12:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90cb8e11 MPWaitOnQueue + 198
    2 com.apple.DesktopServices 0x9271c953 TNodeSyncTask::SyncTaskProc(void*) + 143
    3 ...ple.CoreServices.CarbonCore 0x90cb8c6c PrivateMPEntryPoint + 51
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 13:
    0 libSystem.B.dylib 0x9001a1cc select + 12
    1 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 14:
    0 libSystem.B.dylib 0x9001a1cc select + 12
    1 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 15:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9083e188 CFRunLoopRun + 60
    3 com.apple.viceroy.framework 0x97b0b893 Camera_IdleThread2 + 101
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 16:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 com.apple.viceroy.framework 0x97b0e50c Camera_FrameThread + 408
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 17:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9083e188 CFRunLoopRun + 60
    3 ...le.QuickTimeUSBVDCDigitizer 0x15ff0274 APW::PTA::IsochronousThread::Start(APW::PTA::IsochronousThread*) + 304
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 18:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9083e188 CFRunLoopRun + 60
    3 ...le.QuickTimeUSBVDCDigitizer 0x15ff0274 APW::PTA::IsochronousThread::Start(APW::PTA::IsochronousThread*) + 304
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 19:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 ...le.QuickTimeUSBVDCDigitizer 0x15ff52bb APW::VDO::USBVDC::NativeQueue::WaitForFilledFrame() + 61
    2 ...le.QuickTimeUSBVDCDigitizer 0x15ffc764 APW::VDO::USBVDC::Wave::ConversionThread::Start(APW::VDO::USBVDC::Wave::Convers ionThread*) + 54
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 20:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 com.apple.viceroy.framework 0x97aeae1d Microphone_CallbackThread + 1760
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 21:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.viceroy.framework 0x97aea538 Microphone_NullDevice + 374
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 22:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 com.apple.audio.CoreAudio 0x9147665c CAGuard::WaitFor(unsigned long long) + 212
    2 com.apple.audio.CoreAudio 0x9147657e CAGuard::WaitUntil(unsigned long long) + 66
    3 com.apple.audio.CoreAudio 0x91474efa HP_IOThread::WorkLoop() + 690
    4 com.apple.audio.CoreAudio 0x91474c43 HPIOThread::ThreadEntry(HPIOThread*) + 17
    5 com.apple.audio.CoreAudio 0x91469239 CAPThread::Entry(CAPThread*) + 93
    6 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 23:
    0 libSystem.B.dylib 0x9000ffec read + 12
    1 com.apple.viceroy.framework 0x97ae79a9 EncRspProc + 225
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 24:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.viceroy.framework 0x97b3edde RTPRecvProc + 4136
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 25:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.viceroy.framework 0x97adb0f5 RTPSendNetworkProbe + 1234
    2 com.apple.viceroy.framework 0x97ad0391 Conference_DetermineUpstreamBandwidth + 74
    3 com.apple.viceroy.framework 0x97ac44f7 -[VideoConferenceMultiController(NSThreadProcs) VCSendNotificationProc:] + 1407
    4 com.apple.Foundation 0x927f52e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 26:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 com.apple.viceroy.framework 0x97b24985 SubscriptionHandleProc + 342
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 27:
    0 libSystem.B.dylib 0x9001a1cc select + 12
    1 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 28:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 com.apple.viceroy.framework 0x97aa55a4 MQGet + 202
    2 com.apple.viceroy.framework 0x97ab15fc TANonInviteClientProc + 830
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 29 Crashed:
    0 com.apple.CoreFoundation 0x9081acab __CFStringHash + 1234
    1 com.apple.CoreFoundation 0x9082b7ef __CFSetFindBuckets1b + 88
    2 com.apple.CoreFoundation 0x9085b253 CFSetGetValueIfPresent + 225
    3 com.apple.CoreFoundation 0x908689ef _inputStreamScanXMLName + 724
    4 com.apple.CoreFoundation 0x90869906 parseTag + 1896
    5 com.apple.CoreFoundation 0x90867d7a CFXMLParserParse + 687
    6 com.apple.CoreFoundation 0x9089dafb CFXMLTreeCreateFromDataWithError + 107
    7 com.apple.viceroy.framework 0x97b26cec CS_Parse + 104
    8 com.apple.viceroy.framework 0x97b2521f SBCSGetParticipantData + 39
    9 com.apple.viceroy.framework 0x97b073ed SIPNotifyProc + 1219
    10 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 30:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.viceroy.framework 0x97aa56b1 MQGet + 471
    2 com.apple.viceroy.framework 0x97ab1e1b TANonInviteServerProc + 250
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 29 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x9081a7e7 ecx: 0x00000000 edx: 0x20945ffc
    edi: 0x9a49735e esi: 0xec4aeb5e ebp: 0xb10d2b28 esp: 0xb10d2aec
    ss: 0x0000001f efl: 0x00010282 eip: 0x9081acab cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x17dfff com.apple.iChat 3.1.8 (445) /Applications/iChat.app/Contents/MacOS/iChat
    0x1108000 - 0x1110fff com.apple.iokit.IOUSBLib 2.7.5 /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x15e05000 - 0x15e0efff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x15e2a000 - 0x15e2ffff com.apple.audio.AppleHDAHALPlugIn 1.3.3 (1.3.3a1) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x15e8e000 - 0x15efbfff com.DivXInc.DivXDecoder 6.6.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x15f0a000 - 0x15f5afff com.DivXInc.DivXDecoder 6.0.5 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x15f6c000 - 0x15fa8fff com.apple.QuickTimeFireWireDV.component 7.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x15fb4000 - 0x15fe4fff com.apple.QuickTimeIIDCDigitizer 7.3 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x15fee000 - 0x16034fff com.apple.QuickTimeUSBVDCDigitizer 2.0.0 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x1605c000 - 0x161c5fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x161f3000 - 0x164edfff com.apple.GeForce8xxxGLDriver 1.5.8 (5.0.8) /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x16597000 - 0x165b4fff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1797b000 - 0x17994fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x179c2000 - 0x179dbfff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x17a0f000 - 0x17a11fff com.apple.AutomatorCMM 1.0.1 (87) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x17a2d000 - 0x17a2dfff com.apple.SpotLightCM 1.0 (121.36) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x17b13000 - 0x17b16fff com.apple.audio.AudioIPCPlugIn 1.0.2 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x17b32000 - 0x17b5cfff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x18105000 - 0x182fbfff net.telestream.wmv.import 2.1.2.72 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1832c000 - 0x184ddfff net.telestream.wmv.advanced 2.1.2.72 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x185f5000 - 0x185f9fff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x18669000 - 0x1866cfff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x1869a000 - 0x186a0fff com.roxio.ToastItPlugin ToastIt 1.1.2 (build 17) (1.1.2) /Users/awiggins/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x186c7000 - 0x186d3fff com.apple.airport.diskmenu 1.2.1 (121.4) /System/Library/Contextual Menu Items/AirPort Disk Menu.plugin/Contents/MacOS/AirPort Disk Menu
    0x88d70000 - 0x88d74fff com.apple.CoreMediaAuthoringPrivate 1.1 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x88fc0000 - 0x88fe3fff com.apple.CoreMediaPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x89030000 - 0x890cffff com.apple.QuickTimeImporters.component 7.3 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x8fe00000 - 0x8fe4afff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.26 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.21 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91521000 - 0x9154dfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916e2fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91710000 - 0x917b9fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917df000 - 0x9182afff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91849000 - 0x9185ffff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186b000 - 0x91886fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91891000 - 0x918cefff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e2000 - 0x918eefff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f5000 - 0x91935fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91948000 - 0x919fafff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a40000 - 0x91a56fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a5b000 - 0x91a79fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7e000 - 0x91addfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aef000 - 0x91af3fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af5000 - 0x91b7bfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7f000 - 0x91bbcfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bc2000 - 0x91bdcfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be1000 - 0x91be3fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be5000 - 0x91cc3fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91ce0000 - 0x91ce0fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce2000 - 0x91d70fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d77000 - 0x91d77fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d79000 - 0x91dd2fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ddb000 - 0x91dfffff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e07000 - 0x92210fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9224a000 - 0x925fefff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9262b000 - 0x92718fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9271a000 - 0x92797fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d8000 - 0x92a08fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b22000 - 0x92b3dfff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b49000 - 0x92ba1fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bb5000 - 0x92bb5fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb7000 - 0x92bc7fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd6000 - 0x92bdefff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92be4000 - 0x92beafff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bf0000 - 0x92c81fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c95000 - 0x92c99fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c9c000 - 0x92cbafff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92ccc000 - 0x92cd2fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd8000 - 0x92d3bfff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d62000 - 0x92da3fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dca000 - 0x92dd8fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92ddf000 - 0x92de4fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de9000 - 0x930defff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931e4000 - 0x931f0fff com.apple.opengl 1.5.1 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931f5000 - 0x93210fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93260000 - 0x93260fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93262000 - 0x93918fff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c99000 - 0x93d14fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d4d000 - 0x93e07fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e4a000 - 0x93e4afff com.apple.audio.units.AudioUnit 1.4.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e4c000 - 0x9400dfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94053000 - 0x94094fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9409c000 - 0x940dffff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940e3000 - 0x940f9fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94109000 - 0x945c5fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x946f7000 - 0x9473ffff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94749000 - 0x94787fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x947cb000 - 0x947dcfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x947ea000 - 0x94828fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94844000 - 0x94853fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9485a000 - 0x94865fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x948b1000 - 0x948cbfff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x948d1000 - 0x94be6fff com.apple.QuickTime 7.3.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94d6b000 - 0x94eb1fff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94f3d000 - 0x94f4cfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94f53000 - 0x94f7cfff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94f82000 - 0x94f91fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94f95000 - 0x94fbafff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94fc6000 - 0x94fe3fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94fea000 - 0x9504ffff com.apple.Bluetooth 1.9 (1.9f8) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x9530e000 - 0x953a1fff com.apple.WebKit 419.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x953fb000 - 0x9547bfff com.apple.JavaScriptCore 418.6.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x954b4000 - 0x95793fff com.apple.WebCore 418.23 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95912000 - 0x95935fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95c14000 - 0x95c18fff com.apple.URLMount 2.1.7 /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    0x96231000 - 0x96232fff libCyrillicConverter.dylib /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x96234000 - 0x96235fff libGreekConverter.dylib /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0x96239000 - 0x9624ffff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x96251000 - 0x96272fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x9627f000 - 0x9628dfff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x96292000 - 0x96293fff libThaiConverter.dylib /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    0x96295000 - 0x962a7fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x96c4a000 - 0x96c4afff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97131000 - 0x97153fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x971c4000 - 0x971c9fff com.apple.agl 2.6.2 (AGL-2.6.2) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9732d000 - 0x9732dfff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97a8f000 - 0x97b79fff com.apple.viceroy.framework 278.3.11 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x982bd000 - 0x982bffff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x984ec000 - 0x99384fff com.apple.QuickTimeComponents.component 7.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x995c8000 - 0x995cafff com.apple.QuickTimeH264.component 7.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x999c2000 - 0x99a89fff com.apple.QuickTimeMPEG4.component 7.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x99f11000 - 0x99f1cfff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x99f26000 - 0x9a092fff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Model: MacBookPro3,1, BootROM MBP31.0070.B02, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB
    Graphics: GeForce 8600M GT, GeForce 8600M GT, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x87), 1.1.9.3
    Bluetooth: Version 1.9.0f8, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Parallels Host-Guest, Ethernet, en2
    Network Service: Parallels NAT, Ethernet, en3
    PCI Card: pci168c,24, sppci_othernetwork, PCI Slot 5
    Serial ATA Device: ST9160823AS, 149.05 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857E
    USB Device: Built-in iSight, Apple Inc., Up to 480 Mb/sec, 500 mA
    USB Device: External HDD, Western Digital, Up to 480 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 1.5 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA

    Hi,
    Two things.
    Stop Parallels sharing an IP
    In the Netgear > WAN Page Disable DOS or SPI Blocking and Enable Respond to Internet Ping
    Hopefully you have not got the netgear and the Airport both doing DHCP ?
    I know that is three now. Consider it a bonus.
    11:40 PM Sunday; November 11, 2007

  • AT A DEAD END WITH FP please help!

    This is really a long story that I have been battling for 8 months or longer and now think I have made a bigger mess than before.....It started all in facebook when I was having problems playing one game Cafe World......everything was fine and and then it started saying plug in shockwave unresponsive....I want to say all this start not long after I done some long over due windows updates.....I have uninstalled all adobe's and tried to start over.....also removed google chrome and FF to the beginning......reinstalled the flash player and chrome and everything was ok but freezing and running very slow then it asked to install a plugin i did and then the shockwave unresponsive started again.  I only have the problem in that game on facebook.....at this time tho I feel I have made a bigger mess and I really need a starting point to start over......can someone please help me get this problem resolved....I have read and read for a solution so that not to be a bother but this is crazy!!!! I enjoy Chrome but I will remove it again if need be.
    OS Windows xp IE8 service pack 3
    not sure what all is needed...please just let me know I will find it
    I am not highly educated on computers.
    Thanks,
    Dawn

    Hi dd, I'm surprised you didn't ask for help from here much sooner. I could not deal with that for 8 months:-)
    Let's take a look and see where you are today. Go to C:\Windows\System32\Macromed\Flash  Right click on the Flash folder and post back all files listed there. The files NPSWF, you will need to right click on each one and then click Properties to obtain the version numbers. Post all of that back as I need the info.
    Then Using IE, go to Tools, Manage add ons(all add ons) and you should find this listed among the add ons:
    Shockwave Flash Object...ActiveX Control...Flash10e.ocx (vs 10.0.45.2) and be Enabled.
    Using FF find the plug-in SWF vs 10.0.45.2 and it must be Enabled.
    Thanks,
    eidnolb

  • Dead ipod with unsynched music and movies, how do I get the music and movies onto new ipod

    my old ipod died before i was able to sync the latest purchases to my computer.  How do I redownload purchases to new ipod

    If the iPod is dead and you never synced it and you have no backup, say "bye-bye" to the contents.
    You can individually download the apps and songs from iTunes without charge provided that you use the same Apple ID.

  • Help with EJB3.0 and JNDI in sunone apps server 9.0 please

    I deployed the enterprise module in sun apps server9.0 .. When I
    starting the stand alone client ,I am getting a jndi lookup problem,Pls see
    the code below and error I am getting...
    try {
    System.out.println("before getting initial context");
    // Set initial context and URL properties
    Properties env = new Properties();
    env.put(Context.INITIAL_CONTEXT_FACTORY,"org.jnp.interfaces.NamingContextFactory");
    System.out.println("Looking up HelloWorld");
    Context context = new InitialContext(env);
    //HelloWorldRemote helloWorld = (HelloWorldRemote)context.lookup(HelloWorldRemote.class.getName());
    HelloWorldRemote helloWorld = (HelloWorldRemote)context.lookup("HelloWorldRemote");
    helloWorld.sayHello(" welcome to ejb 3.0" );
    } catch (NamingException ex) {
    ex.printStackTrace();
    javax.naming.ConfigurationException: Invalid URL: http://wks72u:9010
    [Root exception is java.net.ConnectException: Connection refused:
    connect]
    at com.sun.jndi.cosnaming.CNCtx.getStringifiedIor(CNCtx.java:415)
    at
    com.sun.jndi.cosnaming.CNCtx.initOrbAndRootContext(CNCtx.java:198)
    at com.sun.jndi.cosnaming.CNCtx.<init>(CNCtx.java:69)
    at
    com.sun.jndi.cosnaming.CNCtxFactory.getInitialContext(CNCtxFactory.java:32)
    what is the values for below in sun appserver9.0
    1. InitialContext Factory
    2.provider URL .

    Hi Ken
    I have tried 2 ways in my Servlet
    1.Using Annotation
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.List;
    import javax.ejb.EJB;
    * @author admin
    * @version
    public class NewServlet extends HttpServlet {
    /** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
    * @param request servlet request
    * @param response servlet response
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    response.setContentType("text/html;charset=UTF-8");
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head>");
    out.println("<body>");
    try
    Customer oCustomer = new Customer();
    oCustomer.setCustomerId(new Integer("1"));
    //out.println("Remote:"+oCustomerRemote);
    Customer oCustomerObject= oNewSessionRemote.viewCustomerDetails(oCustomer);
    out.println("Customer Name is"+oCustomerObject.getName());
    out.println("<br>");
    out.println("Customer Id is:"+oCustomerObject.getCustomerId());
    out.println("<br>");
    out.println("Customer Email is:"+oCustomerObject.getEmail());
    catch(Exception e)
    System.out.println("I am inside Exception");
    finally
    out.println("</body>");
    out.println("</html>");
    out.close();
    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    /** Handles the HTTP <code>GET</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    /** Handles the HTTP <code>POST</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    /** Returns a short description of the servlet.
    public String getServletInfo() {
    return "Short description";
    // </editor-fold>
    @EJB() NewSessionRemote oNewSessionRemote;
    on runnin this servlet i get this Exception:(in Sun Server 9.0 logs):
    java.lang.RuntimeException: WEB5002: Exception in handleBeforeEvent.
    at com.sun.web.server.J2EEInstanceListener.handleBeforeEvent(J2EEInstanceListener.java:260)
    at com.sun.web.server.J2EEInstanceListener.instanceEvent(J2EEInstanceListener.java:97)
    at org.apache.catalina.util.InstanceSupport.fireInstanceEvent(InstanceSupport.java:318)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1118)
    at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:787)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:183)
    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:231)
    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)
    Caused by: com.sun.enterprise.InjectionException: Exception attempting to inject Unresolved Ejb-Ref
    com.ail.NewServlet/oNewSessionRemote@jndi:
    com.ail.sepa.NewSessionRemote@[email protected]@Session@nullinto class com.ail.NewServlet
    at com.sun.enterprise.util.InjectionManagerImpl._inject(InjectionManagerImpl.java:356)
    at com.sun.enterprise.util.InjectionManagerImpl.inject(InjectionManagerImpl.java:193)
    at com.sun.enterprise.util.InjectionManagerImpl.injectInstance(InjectionManagerImpl.java:104)
    at com.sun.web.server.J2EEInstanceListener.handleBeforeEvent(J2EEInstanceListener.java:255)
    ... 27 more
    Caused by: javax.naming.NameNotFoundException: com.ail.sepa.NewSessionRemote#com.ail.sepa.NewSessionRemote
    not found
    at com.sun.enterprise.naming.TransientContext.doLookup(TransientContext.java:203)
    at com.sun.enterprise.naming.TransientContext.lookup(TransientContext.java:175)
    at com.sun.enterprise.naming.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:61)
    at
    com.sun.enterprise.naming.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:98)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:309)
    at com.sun.enterprise.naming.NamingManagerImpl.lookup(NamingManagerImpl.java:833)
    at com.sun.enterprise.naming.java.javaURLContext.lookup(javaURLContext.java:156)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:307)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at com.sun.enterprise.util.InjectionManagerImpl._inject(InjectionManagerImpl.java:274)
    ... 30 more
    |#]
    StandardWrapperValve[NewServlet]: Allocate exception for servlet NewServlet
    java.lang.RuntimeException: WEB5002: Exception in handleBeforeEvent.
    at com.sun.web.server.J2EEInstanceListener.handleBeforeEvent(J2EEInstanceListener.java:260)
    at com.sun.web.server.J2EEInstanceListener.instanceEvent(J2EEInstanceListener.java:97)
    at org.apache.catalina.util.InstanceSupport.fireInstanceEvent(InstanceSupport.java:318)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1118)
    at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:787)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:183)
    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:231)
    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)
    Caused by: com.sun.enterprise.InjectionException: Exception attempting to inject Unresolved Ejb-Ref
    com.ail.NewServlet/oNewSessionRemote@jndi:
    com.ail.sepa.NewSessionRemote@[email protected]@Session@nullinto class com.ail.NewServlet
    at com.sun.enterprise.util.InjectionManagerImpl._inject(InjectionManagerImpl.java:356)
    at com.sun.enterprise.util.InjectionManagerImpl.inject(InjectionManagerImpl.java:193)
    at com.sun.enterprise.util.InjectionManagerImpl.injectInstance(InjectionManagerImpl.java:104)
    at com.sun.web.server.J2EEInstanceListener.handleBeforeEvent(J2EEInstanceListener.java:255)
    ... 27 more
    Caused by: javax.naming.NameNotFoundException: com.ail.sepa.NewSessionRemote#com.ail.sepa.NewSessionRemote
    not found
    at com.sun.enterprise.naming.TransientContext.doLookup(TransientContext.java:203)
    at com.sun.enterprise.naming.TransientContext.lookup(TransientContext.java:175)
    at com.sun.enterprise.naming.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:61)
    at
    com.sun.enterprise.naming.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:98)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:309)
    at com.sun.enterprise.naming.NamingManagerImpl.lookup(NamingManagerImpl.java:833)
    at com.sun.enterprise.naming.java.javaURLContext.lookup(javaURLContext.java:156)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:307)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at com.sun.enterprise.util.InjectionManagerImpl._inject(InjectionManagerImpl.java:274)
    ... 30 more
    |#]
    I have also wriiten my Servlet using lookup and giving a mapped name to my Session bean which is
    * NewServlet.java
    * Created on June 22, 2006, 5:16 PM
    package com.ail;
    import com.ail.sepa.Customer;
    import com.ail.sepa.NewSessionRemote;
    import com.ail.sepa.NewSessionRemote;
    import java.io.*;
    import java.net.*;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.rmi.PortableRemoteObject;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.List;
    import javax.ejb.EJB;
    * @author admin
    * @version
    public class NewServlet extends HttpServlet {
    /** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
    * @param request servlet request
    * @param response servlet response
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    response.setContentType("text/html;charset=UTF-8");
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head>");
    out.println("<body>");
    try {
    Customer oCustomer = new Customer();
    oCustomer.setCustomerId(new Integer("1"));
    InitialContext oInitialContext = new InitialContext();
    Object obj = oInitialContext.lookup("ejb/TestBean");
    NewSessionRemote oNewSessionRemote = (NewSessionRemote) PortableRemoteObject.narrow(obj,NewSessionRemote.class);
    Customer oCustomerObject= oNewSessionRemote.viewCustomerDetails(oCustomer);
    out.println("Customer Name is"+oCustomerObject.getName());
    out.println("<br>");
    out.println("Customer Id is:"+oCustomerObject.getCustomerId());
    out.println("<br>");
    out.println("Customer Email is:"+oCustomerObject.getEmail());
    } catch(NamingException ne) {
    System.out.println("Inside Naming Exception"+ne.getCause());
    } catch(Exception e) {
    System.out.println("I am inside Exception"+e.getCause());
    } finally {           
    out.println("</body>");
    out.println("</html>");
    out.close();
    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    /** Handles the HTTP <code>GET</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    /** Handles the HTTP <code>POST</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    /** Returns a short description of the servlet.
    public String getServletInfo() {
    return "Short description";
    // </editor-fold>
    // @EJB() NewSessionRemote oNewSessionRemote;
    on running this servlet i get NamingException and cause is null
    as u asked me to chk the generated xml which looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" metadata-complete="true" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <display-name>security</display-name>
    <servlet>
    <servlet-name>default</servlet-name>
    <servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>
    <init-param>
    <param-name>debug</param-name>
    <param-value>0</param-value>
    </init-param>
    <init-param>
    <param-name>listings</param-name>
    <param-value>true</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>jsp</servlet-name>
    <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
    <init-param>
    <param-name>xpoweredBy</param-name>
    <param-value>true</param-value>
    </init-param>
    <load-on-startup>3</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>NewServlet</servlet-name>
    <servlet-class>com.ail.NewServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>default</servlet-name>
    <url-pattern>/</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>jsp</servlet-name>
    <url-pattern>*.jspx</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>jsp</servlet-name>
    <url-pattern>*.jsp</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>NewServlet</servlet-name>
    <url-pattern>/NewServlet</url-pattern>
    </servlet-mapping>
    <mime-mapping>
    <extension>pnt</extension>
    <mime-type>image/x-macpaint</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>png</extension>
    <mime-type>image/png</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>tsv</extension>
    <mime-type>text/tab-separated-values</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>midi</extension>
    <mime-type>audio/x-midi</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>pdf</extension>
    <mime-type>application/pdf</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>ms</extension>
    <mime-type>application/x-wais-source</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>z</extension>
    <mime-type>application/x-compress</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>wrl</extension>
    <mime-type>x-world/x-vrml</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>sv4cpio</extension>
    <mime-type>application/x-sv4cpio</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>movie</extension>
    <mime-type>video/x-sgi-movie</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>ras</extension>
    <mime-type>image/x-cmu-raster</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>ustar</extension>
    <mime-type>application/x-ustar</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>rtx</extension>
    <mime-type>text/richtext</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>t</extension>
    <mime-type>application/x-troff</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>avx</extension>
    <mime-type>video/x-rad-screenplay</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>js</extension>
    <mime-type>text/javascript</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>wml</extension>
    <mime-type>text/vnd.wap.wml</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mpeg</extension>
    <mime-type>video/mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mpv2</extension>
    <mime-type>video/mpeg2</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>tiff</extension>
    <mime-type>image/tiff</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>kar</extension>
    <mime-type>audio/x-midi</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>dib</extension>
    <mime-type>image/bmp</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>xwd</extension>
    <mime-type>image/x-xwindowdump</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>pnm</extension>
    <mime-type>image/x-portable-anymap</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>shar</extension>
    <mime-type>application/x-shar</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>pct</extension>
    <mime-type>image/pict</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>xml</extension>
    <mime-type>application/xml</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>jar</extension>
    <mime-type>application/java-archive</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mif</extension>
    <mime-type>application/x-mif</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>tcl</extension>
    <mime-type>application/x-tcl</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mp2</extension>
    <mime-type>audio/x-mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>xpm</extension>
    <mime-type>image/x-xpixmap</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>aif</extension>
    <mime-type>audio/x-aiff</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>eps</extension>
    <mime-type>application/postscript</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>me</extension>
    <mime-type>application/x-troff-me</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>tar</extension>
    <mime-type>application/x-tar</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>exe</extension>
    <mime-type>application/octet-stream</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mpega</extension>
    <mime-type>audio/x-mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>aifc</extension>
    <mime-type>audio/x-aiff</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>tr</extension>
    <mime-type>application/x-troff</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>oda</extension>
    <mime-type>application/oda</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>wbmp</extension>
    <mime-type>image/vnd.wap.wbmp</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>m3u</extension>
    <mime-type>audio/x-mpegurl</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>jpg</extension>
    <mime-type>image/jpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>css</extension>
    <mime-type>text/css</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>class</extension>
    <mime-type>application/java</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>nc</extension>
    <mime-type>application/x-netcdf</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>ps</extension>
    <mime-type>application/postscript</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>bmp</extension>
    <mime-type>image/bmp</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>sh</extension>
    <mime-type>application/x-sh</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>ulw</extension>
    <mime-type>audio/basic</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>tif</extension>
    <mime-type>image/tiff</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>qt</extension>
    <mime-type>video/quicktime</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>wmlc</extension>
    <mime-type>application/vnd.wap.wmlc</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>xslt</extension>
    <mime-type>application/xslt+xml</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>au</extension>
    <mime-type>audio/basic</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>art</extension>
    <mime-type>image/x-jg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mid</extension>
    <mime-type>audio/x-midi</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>wav</extension>
    <mime-type>audio/x-wav</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>smf</extension>
    <mime-type>audio/x-midi</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mpa</extension>
    <mime-type>audio/x-mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>pic</extension>
    <mime-type>image/pict</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>bcpio</extension>
    <mime-type>application/x-bcpio</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>aiff</extension>
    <mime-type>audio/x-aiff</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>cpio</extension>
    <mime-type>application/x-cpio</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>jnlp</extension>
    <mime-type>application/x-java-jnlp-file</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>xbm</extension>
    <mime-type>image/x-xbitmap</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>abs</extension>
    <mime-type>audio/x-mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>psd</extension>
    <mime-type>image/x-photoshop</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>roff</extension>
    <mime-type>application/x-troff</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>Z</extension>
    <mime-type>application/x-compress</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mac</extension>
    <mime-type>image/x-macpaint</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>rgb</extension>
    <mime-type>image/x-rgb</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>qti</extension>
    <mime-type>image/x-quicktime</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>cdf</extension>
    <mime-type>application/x-cdf</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>swf</extension>
    <mime-type>application/x-shockwave-flash</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>texi</extension>
    <mime-type>application/x-texinfo</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>hdf</extension>
    <mime-type>application/x-hdf</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>cer</extension>
    <mime-type>application/x-x509-ca-cert</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>xsl</extension>
    <mime-type>application/xml</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>jpeg</extension>
    <mime-type>image/jpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>pict</extension>
    <mime-type>image/pict</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mp1</extension>
    <mime-type>audio/x-mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>doc</extension>
    <mime-type>application/msword</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>etx</extension>
    <mime-type>text/x-setext</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>texinfo</extension>
    <mime-type>application/x-texinfo</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>jad</extension>
    <mime-type>text/vnd.sun.j2me.app-descriptor</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>snd</extension>
    <mime-type>audio/basic</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>aim</extension>
    <mime-type>application/x-aim</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mov</extension>
    <mime-type>video/quicktime</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>wmlscriptc</extension>
    <mime-type>application/vnd.wap.wmlscriptc</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>dvi</extension>
    <mime-type>application/x-dvi</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>csh</extension>
    <mime-type>application/x-csh</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>sv4crc</extension>
    <mime-type>application/x-sv4crc</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>ai</extension>
    <mime-type>application/postscript</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>man</extension>
    <mime-type>application/x-troff-man</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>hqx</extension>
    <mime-type>application/mac-binhex40</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>java</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>latex</extension>
    <mime-type>application/x-latex</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>pgm</extension>
    <mime-type>image/x-portable-graymap</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>avi</extension>
    <mime-type>video/x-msvideo</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>asf</extension>
    <mime-type>video/x-ms-asf</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>asx</extension>
    <mime-type>video/x-ms-asf</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>wmls</extension>
    <mime-type>text/vnd.wap.wmls</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>bin</extension>
    <mime-type>application/octet-stream</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>pls</extension>
    <mime-type>audio/x-scpls</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>htm</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>body</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>ppm</extension>
    <mime-type>image/x-portable-pixmap</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mpg</extension>
    <mime-type>video/mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>dtd</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>zip</extension>
    <mime-type>application/zip</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>gz</extension>
    <mime-type>application/x-gzip</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>htc</extension>
    <mime-type>text/x-component</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>ief</extension>
    <mime-type>image/ief</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>src</extension>
    <mime-type>application/x-wais-source</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>rm</extension>
    <mime-type>application/vnd.rn-realmedia</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mp3</extension>
    <mime-type>audio/x-mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>dv</extension>
    <mime-type>video/x-dv</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>gif</extension>
    <mime-type>image/gif</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>qtif</extension>
    <mime-type>image/x-quicktime</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>gtar</extension>
    <mime-type>application/x-gtar</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>jpe</extension>
    <mime-type>image/jpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>mpe</extension>
    <mime-type>video/mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>rtf</extension>
    <mime-type>application/rtf</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>tex</extension>
    <mime-type>application/x-tex</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>pbm</extension>
    <mime-type>image/x-portable-bitmap</mime-type>
    </mime-mapping>
    <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    <security-constraint>
    <display-name>SecurityConstraint</display-name>
    <web-resource-collection>
    <web-resource-name>WRCollection</web-resource-name>
    <url-pattern>/*</url-pattern>
    <http-method>DELETE</http-method>
    <http-method>TRACE</http-method>
    <http-method>OPTIONS</http-method>
    <http-method>POST</http-method>
    <http-method>HEAD</http-method>
    <http-method>GET</http-method>
    <http-method>PUT</http-method>
    </web-resource-collection>
    <auth-constraint>
    <role-name>loginUser</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <realm-name>MyRealm</realm-name>
    <form-login-config>
    <form-login-page>/logon.jsp</form-login-page>
    <form-error-page>/logonError.jsp</form-error-page>
    </form-login-config>
    </login-config>
    <security-role>
    <role-name>loginUser</role-name>
    </security-role>
    <persistence-context-ref>
    <persistence-context-ref-name>c

  • At my wit's end with ATT UVerse and Time Capsule

    I'm going to try this one last thread before I return all my UVerse stuff and go back to a simple Comcast modem.  I have a Time Capsule, model A1409, and just got ATT U-Verse, model 3801HGV.  I have searched the Apple community and any online website I can find that gives information about how to make the two work together and I have nothing but flashing amber.  Airport Utility keeps saying the ethernet is unplugged (which the cable is plugged in from the modem to the TC), no DNS servers, and no internet connection.  I have disabled the wireless function on the modem/router.  I have put the Time Capsule in Bridge mode.  I have rebooted everything.  I have reset the TC three times.  I have clicked on "DMZPlus mode".  I've even enabled detection of router-behind-router conditions.  I took the Time Capsule into Apple and it fired up right away, so no issues with the ethernet port.  I can connect my PC to the ATT router and get internet access.  No matter what I do, I still have flashing amber on my TC.  Any last words of advice before I return everything from ATT?

    If you want to run a test.. and that is all it will be..
    I think I said the best way is to get a cheap fast ethernet switch and put it in between the two devices.. not everything in the ethernet world works.. it seldom fails now but it does fail at time.
    If you are not interested in buying or borrowing a switch.. then you can do something to help in the TC interface.
    This might only be available if you use 5.6 utility.. at least I have never done it via v6.
    You will need to put the TC back into router mode. So start with another factory reset.
    step 1 (only required if both units use same IP range).
    And if the uverse modem is running 10.x.x.x IP then to give this the best shot, change the TC over to 192.168.1.x ip range. You do this by changing the DHCP Beginning Address from 10.0 to 192.168 in the picture below. If your uverse uses 192.168.x.x already ignore this step.
    Step 2.
    Check now that ethernet is still not working. If not go to the setup page for wan connection and change the WAN speed. Remember the TC must be plugged wan to uverse LAN port.
    The only control offered is for WAN port to fix the speed. Change it down to 100Mbps/Full duplex.
    Update the TC.
    No luck, swap down to 10Mbps/Half-duplex ie the slowest possible. update the TC and see if it connects.
    If it fails then there is something seriously wrong. And I doubt it will ever work.
    If it happens to work at 100mbps/full duplex.. that is fast enough to cause no problems.. 10mbps is not.
    I would either give up using the one item or the other.. but you do not want to keep this mode.. this is double NAT and we did it to test only.. success means the ethernet is failing to communicate correctly and go back and buy the switch I suggested.. fast ethernet.. small 5 port and it should fix it.

  • Width/height/x/y value mismatch with the reality and what is coded

    hello there everyone,
    hope i got the title right..,
    so here goes the problem i need your opinion and help to solve:
    application definition:
    i have this desktop flash application that will go fullscreen what this application do is loading external asset (mostlySWF) and play it inside this application. Each external asset will be place inside a container/holder (empty movie clip created by code), each of this container have it's own dimension ( width, height, x, y).my code all working without any warning nor error.oh and i also have an image.jpg/png as it's background and place at the bottom of display list (depth = 0), the image is customly made with using photoshop and each container location and dimension also measured there so it just needed to be writen down is the XML file..,
    the problem:
    the bug is when i loaded some image of those background image each container width,height,x,y  will mismatch with what i have in the XML file.
    the funny thing is when i trace the value of each container width,height,x,y it value is the same with what the XML has yet by seeing with eye you know that is wrong..,
    here's the code i used:
    var myXML:XML; //to hold the loaded xml file
    var SWFList:XMLList; //used to hold a list of all external swf source,atribute and etc
    var xmlLoader:URLLoader = new URLLoader(); //intance of URLloader class used to XML file
    var totalSWF:int; //hold the total number of external swf there is to be loaded
    var mainContainer:MovieClip =new MovieClip();//act as the main container
    var SWFContainer:MovieClip; //hold the loaded SWF as it's child
    var swfLoader:Loader; //instance of loader class used to load the external swf
    var myCounter:int = 0; //used to track how many external swf has been loaded and added to stage
    var bgImageURL:String;//hold the url of the background image
    var imageLoader:Loader;//intance of loader class used to load background image
    // Stage Setting
    //========================================================================================
    this.stage.align = StageAlign.TOP_LEFT;
    this.stage.scaleMode = StageScaleMode.NO_SCALE ;
    this.stage.displayState = StageDisplayState.FULL_SCREEN;
    //load the xml file
    //======================================================================================== ==
    xmlLoader.load(new URLRequest("FlashBlock[s].xml"));
    xmlLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(e:Event):void
        e.target.removeEventListener(Event.COMPLETE , processXML);
        myXML = new XML(e.target.data);
        bgImageURL = myXML.Background.text();
        SWFList = myXML.BLOCK;
        totalSWF = myXML.BLOCK.length();   
        doSizeUpMainContainer();
        loadBackgroundImage();
    function doSizeUpMainContainer():void
        //resizing the mainContainer dimension
        //in this case i just make the size the same as the screen dimension
        addChild(mainContainer);
        mainContainer.graphics.beginFill(0xFD562D, 0);
        mainContainer.graphics.drawRect(0,0, stage.stageWidth, stage.stageHeight);
        mainContainer.graphics.endFill();
    function loadBackgroundImage():void
        //load the background image
        imageLoader = new Loader();
        imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onBgImageLoadComplete);
        imageLoader.load(new URLRequest(bgImageURL));
    function onBgImageLoadComplete(e:Event):void
        e.target.removeEventListener(Event.COMPLETE, onBgImageLoadComplete);
        mainContainer.addChild(imageLoader.content);
        imageLoader.x = (stage.stageWidth - imageLoader.content.width)/2;
        imageLoader.y = (stage.stageHeight - imageLoader.content.height)/2;
        loadSWF();
    function loadSWF():void
        swfLoader = new Loader();
        swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE , swfSetting);
        swfLoader.load(new URLRequest(SWFList[myCounter].@source));
    function swfSetting(e:Event):void
        e.target.removeEventListener(Event.COMPLETE , swfSetting);
       SWFContainer = new MovieClip();
        mainContainer.addChild(SWFContainer);
        // i did this so i can resize the movieclip size to what i need..,
        SWFContainer.graphics.beginFill(0xff6633, 0);
        SWFContainer.graphics.drawRect(0,0, Number(SWFList[myCounter].@width), Number(SWFList[myCounter].@height));
        SWFContainer.graphics.endFill();
        SWFContainer.x = SWFList[myCounter].@left;
        SWFContainer.y = SWFList[myCounter].@top;
        SWFContainer.addChild(e.target.content);
        //load and add another SWFContainer untill all swf listed in the swf added
        if(myCounter < (totalSWF-1))
            myCounter++;
            swfLoader = null;
            loadSWF();
    i really do not have any idea why this could happen and how to solve it..,
    any help would be greatly apprecited cause i'm literally meeting a dead end with this bug..,

    hello there kglad,
    thanks for responding in this thread..,
    i did what you told me :
    i did check all of my loader instance till myLoader.parent.parent.parent and it return 1 for every single one of them
    but by removiing the "this.stage.displayState = StageDisplayState.FULL_SCREEN;"
    i do get new error which is:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at slideshow_fla::MainTimeline/doAspectRatio()
    well from what it tokd me it came from my slideshow swf..,(this swf also fully code and has nothing placed on stage by manually)
    the thing is in my mine swf code i never refer to what external asset property, i just told to load it and when the load is complete i put it in the display list..,
    from googling i suspect that it played to early beacause i put the script in the first frame of the timeline of slideshow.swf
    and for the moment i'm trying to find what error do cause it..,
    (but why this didn't happen all the time??)
    here is the slideshow code:
    import fl.transitions.*;
    import fl.transitions.easing.*;
    import flash.display.*
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    //list of global variables
    var mySlideSpeed:Number; //determine how long each image displayed
    var myTransitionName:String; //the name of the transition to be used
    var myxmlList : XMLList;//reference to the list of the image
    var myTotal:int;     //total of image to be displayed
    var myImage:Loader;//load the image into the container
    var tempWidth:int;
    var tempHeight:int;
    var myTraansitionInDuration:int = 2;//the duration of transition in effect
    var myTraansitionOutDuration:int = 2;//the duration of transition out effect
    var myThumbHolderArray : Array = [];//to hold each thumbimage of the image
    var Counter : Number = 0; //to count how many image has been successfully loaded
    var myMC : MovieClip = new MovieClip(); //as the container of the picture so that it can be manipulated with transition manager
    var container: MovieClip = new MovieClip();//hold the image after transition
    var myImageTracker :Number = 0; //to know which image is in the stage
    var myTimer :Timer; //the timer
    var myTM:TransitionManager = new TransitionManager(myMC);//instance of transitionmanager class;used to give transition effect the image
    //creating the loader instance n loading the file
        var myXML:XML;
        var XMLLoader :URLLoader = new URLLoader();
        XMLLoader.addEventListener(Event.COMPLETE, processXML);
        var base:String = this.root.loaderInfo.url;
        base = base.substr(0, base.lastIndexOf("/") + 1);
        XMLLoader.load(new URLRequest(base + "slideshow.xml"));
    function processXML(e:Event):void
        e.target.removeEventListener(Event.COMPLETE, processXML);
        XML.ignoreWhitespace = true;
        myXML =new XML(e.target.data) ;
        mySlideSpeed = Number(myXML.transition.@slidespeed) + myTraansitionInDuration + myTraansitionOutDuration ;
        myTimer = new Timer (mySlideSpeed*1000);
        myTimer.addEventListener(TimerEvent.TIMER, imageRemover);
        myTransitionName = myXML.transition.@name;
        myxmlList = myXML.IMAGE;
        myTotal = myXML.IMAGE.length();
        imageLoader();
    function imageLoader():void
        for (var i:Number = 0; i < myTotal; i++)
            var imageURL:String = base + myxmlList[i];
            var myLoader:Loader = new Loader();
            myLoader.load(new URLRequest(imageURL));
            myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete)
            //transfering each thumb image loaded to a variable to be able to be refered back when the show is running
            myThumbHolderArray.push(myLoader);
    function onComplete(e:Event):void
        Counter ++;
        if(Counter == myTotal)
            e.target.removeEventListener(Event.COMPLETE, onComplete);
            showStarter();
    function showStarter():void
            addChild(container);
            addChild(myMC);
    //        myMC.x = container.x = myMC.y = container.x = 0;
            doAspectRatio();
            imageSlider();
    function doAspectRatio():void
        for (var i:Number = 0; i < myTotal; i++)
            myImage = Loader (myThumbHolderArray[i]);
            if (myImage.width > myImage.height)
                tempWidth = myImage.width;
                tempHeight = myImage.height;
                //supposedly to access the container dimension holding this swf as it's child
                myImage.width = this.parent.width;
                myImage.height = (tempHeight * this.parent.height)/tempWidth ;
            else if (myImage.width < myImage.height)
                tempWidth = myImage.width;
                tempHeight = myImage.height;
                myImage.height = this.parent.height;
                myImage.width = (tempWidth * this.parent.width)/tempHeight ;
    function imageSlider():void
        if (getChildIndex(container)== 1)
            swapChildren(myMC, container);
        myImage = Loader (myThumbHolderArray[myImageTracker]);
        myMC.addChild(myImage);
        //center the image
        myImage.x = (this.parent.width - myImage.width)/2;
        myImage.y = (this.parent.height - myImage.height)/2;
        if (myTransitionName == 'Fly')
            myTM.startTransition({type:Fly, direction:Transition.IN, duration:myTraansitionInDuration, easing:None.easeIn, startPoint:7});
        else
        if (myTransitionName == 'Zoom')
            myTM.startTransition({type:Zoom, direction:Transition.IN, duration:myTraansitionInDuration, easing:Strong.easeIn});
        else
        if (myTransitionName == 'Photo')
            myTM.startTransition({type:Photo, direction:Transition.IN, duration:myTraansitionInDuration, easing:None.easeIn});
        else
        if (myTransitionName == 'Squeeze')
            myTM.startTransition({type:Squeeze, direction:Transition.IN, duration:myTraansitionInDuration, easing:Strong.easeIn, dimension:0});
        else
            myTM.startTransition({type:Fade, direction:Transition.IN, duration:myTraansitionInDuration, easing:Strong.easeIn});
        myTM.addEventListener("allTransitionsInDone", holdDelay);
    function holdDelay(e:Event):void
        this.removeEventListener("allTransitionsInDone", holdDelay);
        myTimer.start();
        container.addChild(myImage);
        if (getChildIndex(myMC)== 1)
            swapChildren(container, myMC);
    function imageRemover(e:Event):void
        myImageTracker ++;
        if (myImageTracker == myTotal)
            myImageTracker =0;
        imageSlider();
    and by the way can you tell me the reason you told me to remove "this.stage.displayState = StageDisplayState.FULL_SCREEN;" line ??

  • Trying to embed a video file in HTML5: ERROR=No video with supported format and MIME type found?

    Hello all!
    I am desparate for a solution. I am testing my site on Firefox and Explorer and still no sign of a functional video yet.
    Firefox: I get the error: No video with supported format and MIME type found.
    Explorer: I just get a distorted layout.
    Here is the code I am working on:
    <table id="Table_01" width="480" height="801" border="0" cellpadding="0" cellspacing="0">
        <tr>
            <td colspan="6">
                <img src="images/Video_01.jpg" width="480" height="114" alt=""></td>
        </tr>
        <tr>
            <td rowspan="3">
                <img src="images/Video_02.jpg" width="52" height="486" alt=""></td>
            <td colspan="4">
               <video controls width="376" height="221">
                 <source src="C:\Users\aalmeida\Videos\AEMC PEL 103 6 Channel, Power & Energy Logger - with Display (Part 1).mp4" type="Video/Mp4"/>
                 <source src="C:\Users\aalmeida\Videos\AEMC PEL 103 6 Channel, Power & Energy Logger - with Display (Part 1).webm" type="Video/WebM"/>
                 <source src="C:\Users\aalmeida\Videos\AEMC PEL 103 6 Channel, Power & Energy Logger - with Display (Part 1).oggtheora.ogv" type="Video/Ogg"/>
                 </video>
    Please tell me that there is something missing in the code. I have spent a lot of time uninstalling-updating Firefox plugins, added MIME types in the Internet Information Manager (I'm on Windows 7)
    and  seriuously hit a dead end with this!
    Any advice would be muchly appreciated!!!
    Thanks
    ~LA

    As Jon said, you must declare the page as HTML5.
    And your server may not be set up to deliver video as a binary file if it is an .OGG file. I have not seen this problem with .MP4 or .M4V in the past, but every server is a little different.
    To add a MIME type, you need to change your .htaccess file on an Apache server thusly:
    AddType audio/ogg .oga
    AddType video/ogg .ogv
    AddType application/ogg .ogg
    AddHandler application-ogg .ogg .ogv .oga
    Additionally, MIME types can usually be changed on a server's Control Panel. One can also ask one's hosting provider to do this as well.
    Firefox makes it necessary to use OGG files. Webkit-based browsers will deal with .M4V or .MP4 and I understand Internet Exploder will work with the latter two as well.

  • Printing Flex Chart Application with FireFox 2 and later

    Hi, I have problem with printing functionality in FireFox. The print preview shows an empty page. So the user ends with this step and thinks no print is available. Another problem is when I try to print directly not the whole application will be printed.
    Is there an easy way to get FireFox to print correctly.
    Thank you for all your helpful answers.

    On MacOsx (firefox 3.0.5) the width is correct (674).
    Probably your javascript embed has been messed up for some
    reason.
    It should be something like:
    <embed width="674" height="680" align="middle"
    type="application/x-shockwave-flash" pluginspage="
    http://www.adobe.com/go/getflashplayer"
    allowscriptaccess="sameDomain".../>
    HTH

  • URGNET - Electronic Bank Statement - Master Account not ends with zero.

    Hi
    I have a peculiar situation.  I have a House bank which we would like to use for EBS.  The GL account assigned for this house bank ends with 6. 
    As per the EBS design, the master account must end with zero (0) and all other clearing account can end with from 1 to 9. 
    I dont want to change my current GL account assigned to this house bank.  Is there any way to implement EBS for this account without changing the house bank GL account.  At the same time, I should have the remaining clearing accounts.
    Please suggest me.
    Thanks and Regards
    Raj

    Hi Raj,
    You sure have a peculiar scenario.
    Though have never tried anything like this. But i think it could be done if you could play around with the 'Acct Modifier' and 'Currency' Options provided when you assign your account symbols to Accounts.
    Normally, we give a '+' for both these fields signifying all options.
    Let me know your experience on this.
    Regards,
    Chetan

  • Transport control program ended with return code 208

    hi all please give me the solution for the transport control program ended with return code 208
    after the request released

    Hi,
    Please check the transport log at OS level. below is the path
    /usr/sap/trans/log.
    You can also check from SAP level. After the transport is import go log button in the STMS_IMPORT tcode  >>> expand all the possible values... you can find the exact reason why the transport ended with error.
    And also plesae check if nay entry exits in TRBAT table .
    Thanks,
    Phani.

  • MDM with separated ABAP and Java Instance

    We installed SAP ERP system with SRM server and Portal as Java instance.
    We use Oracle and have 2 oracle schemas/instances: ABAP and Java.
    After mounting of MDM server and DBMS configuraiton (to Java instance) we have the following oracle objects:
    Oracle Schema A2I_XCAT_DBS
    2 oracle users: A2I_XCAT_DBS (owner of the schema) and MDMADMIN
    2 tablespaces A2I_A2I_XCAT_DBS.DBF and A2I_A2I_XCAT_DBS_IX.DBF within the main dbs directory E:\oracle\<sid>\102\database
    The used tablespace was set to PSAPTEMP
    Questions:
    1) How can the DBMS configuration will be removed, because the oralce path  E:\oracle\<sid>\102\database was wrong
    Unfortunately we would like to avoid merge MDM and Portal data in one and the same tablespace PSAPTEMP
    2) Where can we find the oracle configuration for MDM with Java Schema, but using their own tablespace?

    Are you basically trying to put a new User Interface (UI) on top of MDM because you do not want to use the standard MDM UI?  If so, then yes you could write a custom WebDynpro and use the MDM API.  We evaluated WebDynpro as an option, but instead we built a new Adobe Flex based UI that sits on top of the MDM Catalog and it totally awesome!  There is a sample on our website (www.simplifying-it.net), but we are making some changes to the look/feel... however, the sample demo on the website should give you an idea.
    If you have any questions, please let me know.
    Thanks,
    Mark

  • Hi installed Arch i686 with Nouveau and drivers. now dead end

    went to post a long typed output from Arch terminal, no desktop, I had changed my password when I went to post it decided I was not logged in and lost the lot.
    Just a short note now.
    xorg.conf.d which nano refuses to look at and pmagic file manager shows nothing about the nvidia  nv vesa and fbdev modules that are demanded by xorg as shown by the log.
    There were also error commands in xinitrc, named twm, xterm were not found.
    I also installed kde which has its own window maker.
    I wonder where to go with Arch from this seemingly dead end.
    Sorry for the sparse post, too tired to type it all out again from Arch terminal.
    Regards
    Zoroid
    Last edited by zoroid (2011-11-21 05:05:25)

    Thanks Mr.Elendig and the others,
                           got kde up and running now, took a bit of time the first time, and twm and xterm helped.
    I was too tired to type out the whole log again last night, so sorry for the kiss post, even so it put me on the right path.
    The card was an Nvidia G Force GT 240, and its going fine with Nouveau in an Intel core duo Gigabyte MB 4 gig dd3 ram
    Mr.Elendig wrote:1. what hardware do you have?
    2. read https://wiki.archlinux.org/index.php/Xorg
    3. you are getting the errors about xinitrc because you did not install twm and xterm etc, see 2.
    Last edited by zoroid (2011-11-22 05:06:38)

  • Problems with stuck/dead pixels, battery life, ICS, and other problems

    Stuck/Dead Pixels:
    I bought my Droid Razr at around the 21st of December last year. On or around Christmas, I found a bright red pixel on the very bottom of my screen. Unlucky for me, I was leaving for Florida on Christmas Night. I got back on December 31st. Sometime in the first week of this year, I visited my verizon store and told the customer service lady that I had a dead pixel on my screen and had just bought it. But, she told me that she needed the manager to fix this and there was no manager there. For the next week I was busy with school and sports etc and was not able to go back to the store. It was now past my 14 day return period. So I decided, its only one pixel, most people won't notice it anyway. So here I am 5 months later, just starting to discover more pixels dying on my screen. I now have the one bright red one, two light blue ones, and one dark red. I have no idea what the return policy is on defective phones, and the verizon site is designed so that you can't find anything. And an FYI, I have tried stuck pixel removers and other apps, which  haven't been successful.
    Battery Life:
    I have also been finding more problems with my phone. The battery life is terrible when 4G and even 3G are on. I actually see no difference in battery consumption between 3G/4G.  My battery dies  about 4-5X faster when data is turned on, compared to using no data. I know it isn't because of the apps I installed since when I use WiFi, the battery is alright. I also make sure that my RAM isn't above 400MB, so that the processor doesn't use a lot of battery. I feel like I completely wasted my money buying the Razr. Mainly because of the fact that the Razr Maxx was announced two weeks later, which has about 80% more battery. Not only this, but I've seen the Razr selling for only ONE PENNY on amazon over the past month and it still is. I payed $300 on my Razr.
    Ice Cream Sandwich:
    After these major problems comes another one, that I bet all Razr and Razr Maxx customers are still thinking about. When will I get Ice Cream Sandwich? It is very disappointing when you are told that you will be getting an upgrade in early 2012, and are still wondering where your upgrade is 5 full months in. From what I understand, we won't see an upgrade until the end of June, since Motorola has posted on their website that "rollouts" would begin in the second quarter. Even if they release it by the end of June, when will it get to your phone? Maybe another week or two for some people. This is another thing that I feel I wasted my money on. My brother told me to get the Nexus because of ICS, but I trusted Motorola that they would upgrade my phone in a timely manner. WRONG.
    Phone Freezing:
    One more problem that I've had is that the phone will freeze. Usually you only need to turn the screen off and on, but once in a while, you have to completely reboot your phone. When I was coming back from Florida, right as I was about to get home, my phone completely froze. I was about to go return it, but after about 15-20 minutes, it became unfrozen.
    Motion Sensor not functioning:
    Another problem, an annoying one, is that sometimes the motion sensor that controls portrait and landscape mode will just stop working. Some of the games I play are completely dependent on the motion sensor. It is very embarrassing  when you are trying to show off to an iPhone friend and major components of your phone aren't working. They always tell me "why didn't you get an iPhone?". And I really just wanted to have a phone that didn't look like everyone else's, but I guess that comes at a cost. When the motion sensor stops working, I have to shut down my phone and restart, which takes a couple minutes.
    Problems with camera:
    My last problem would be with the camera. Sometimes if you bring the camera close to something, like a barcode, it will keep trying to focus, but never will. Another problem is photo quality in low light situations. It seems like the camera can't focus because it goes from being very dark into being bright because of the flash. I doubt this can be fixed because it's hardware, but a potential fix could be having the option to keep the LED light on during picture mode, that way the camera will be able to focus correctly.
    In Conclusion:
    I really just want someone to tell me how to return my phone for a new one, due to the dead pixels. I also wish I could be upgraded to the Razr Maxx because of the poor battery life on the Razr, but from what other people are saying, that probably won't happen. And finally, if anyone has more info about Ice Cream Sandwich, that would be awesome.

    Well since it's a Manufacturing Error it should Fall under your Warranty if you got one with your Razr. You know you can Call C.S. an they can Assist you with the Matter on it.. Just remember to have another phone so they can Trouble shoot the One that is Experiencing the Issue an when you talk to them go over thing. An they should send you C.G.A.N unless they request you to send it in before you get anther one. If you feel Better going to the Store try that. And Good Luck.. 

Maybe you are looking for