Error:CalculatorBeanRemote not bound

Hi Good People,
I am developing a sample EJB3 application in eclipse3.4. I am following the following steps:
1) First of all i am creating an EJB project (testEJB) in the eclipse. While creating this Project i am selecting the options of 1) Create an EJB Client Jar Module (testEJBClient) to hold the client interfaces and classes and 2) Add Project to an EAR (testEJBEAR) for this project. So it will create three different projects with the given names in the eclipse.
2) Now in the project testEJB i will create a stateless session bean. Its corresponding remote interface will be automatically created in the testEJBClient. Now i will declare a simple method hello() in the remote interface and will implement it in the testEJB.
So this completes my ejb beans.
3) Now in the third step i am creating a dynamic web project (with jboss as server). In this project's properties, in the java EE Module Dependencies section i am giving reference to both the testEJB.jar and testEJBClient.jar so that i can access the method in my jsp or servlets. My index.jsp is looks like:
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ page import="com.*, javax.naming.*,java.util.Properties"%>
<%
                       Properties p = new Properties();
                  p.put("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
                  p.put("java.naming.factory.url.pkgs", "org.jboss.naming:org.jnp.interfaces");
                  p.put("java.naming.provider.url", "localhost");
                  Context ctx = new InitialContext(p);
                  calculator = (CalculatorBeanRemote)ctx.lookup(CalculatorBeanRemote.class.getName());
               System.out.println("Loaded Calculator Bean");
        } catch (Exception ex) {
            System.out.println("Error:"+
                    ex.getMessage());
%>But when i am trying to run this file it is giving the following exception :
Error:com.CalculatorBeanRemote not bound
I am trying to solve this from last 3 days but still not successful. If any one has any idea please help me.
I am also attaching the log file of jboss server.
Regards,
Khushwinder

I think your EJB's are not bound.
You can find this message when deploying the ejb server jar in the jboss app server.
And also check your web-inf/lib path for any jar files.
1.if your web-inf/lib contains the testEJBClient.jar(client jar) then remove it from there and place it in
jbosshome/server/default/lib
2.Place your testEJB.jar (server jar) in the deploy folder of jboss.similary your web app war file also place in the same location
by verifying the step1.
Don't use eclipse deployment. Manually place these jar files in the jboss and run the jboss in command prompt.
If you found in exception like binding then check your deployment packaging once again.
If you have any problem then ask me.
I hope it will solve your problem.
Regards
Venki

Similar Messages

  • Error: ConnectionFactory not bound

    Hi,
    I have created a method in session bean to send message. below is the code of my method
    public void sendMessage() throws NamingException,JMSException{
    QueueConnectionFactory cf;
    QueueConnection connection;
    QueueSession session;
    Queue destination;
    QueueSender sender;
    TextMessage message;
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "org.jnp.interfaces.NamingContextFactory");
    env.put(Context.PROVIDER_URL,
    "localhost:1099");
    Context ctx = new InitialContext(env);
    //ctx = new InitialContext();
    cf = (QueueConnectionFactory)ctx.lookup("ConnectionFactory");
    destination = (Queue)ctx.lookup("queue/testQueue");
    connection = cf.createQueueConnection();
    session = connection.createQueueSession(false,
    Session.AUTO_ACKNOWLEDGE);
    sender = session.createSender(destination);
    message = session.createTextMessage();
    message.setText("Hello World1!");
    System.out.println("Sending Message.");
    sender.send(message);
    connection.close();
    System.out.println("Done.");
    I am getting the following error in the browser
    javax.naming.NameNotFoundException: ConnectionFactory not bound
    Can anyone tell me why this error is coming
    Thanks

    I am getting the following errors in the console. Please check it
    ===============================================================================
    JBoss Bootstrap Environment
    JBOSS_HOME: C:\jboss-4.0.1\bin\\..
    JAVA: D:\j2sdk1.4.2_07\bin\java
    JAVA_OPTS: -Dprogram.name=run.bat -Xms128m -Xmx512m
    CLASSPATH: D:\j2sdk1.4.2_07\lib\tools.jar;C:\jboss-4.0.1\bin\\run.jar
    ===============================================================================
    14:31:23,312 INFO [Server] Starting JBoss (MX MicroKernel)...
    14:31:23,312 INFO [Server] Release ID: JBoss [Zion] 4.0.1 (build: CVSTag=JBoss_4_0_1 date=200412230944)
    14:31:23,312 INFO [Server] Home Dir: C:\jboss-4.0.1
    14:31:23,312 INFO [Server] Home URL: file:/C:/jboss-4.0.1/
    14:31:23,312 INFO [Server] Library URL: file:/C:/jboss-4.0.1/lib/
    14:31:23,312 INFO [Server] Patch URL: null
    14:31:23,312 INFO [Server] Server Name: default
    14:31:23,328 INFO [Server] Server Home Dir: C:\jboss-4.0.1\server\default
    14:31:23,328 INFO [Server] Server Home URL: file:/C:/jboss-4.0.1/server/default/
    14:31:23,328 INFO [Server] Server Data Dir: C:\jboss-4.0.1\server\default\data
    14:31:23,328 INFO [Server] Server Temp Dir: C:\jboss-4.0.1\server\default\tmp
    14:31:23,343 INFO [Server] Server Config URL: file:/C:/jboss-4.0.1/server/default/conf/
    14:31:23,343 INFO [Server] Server Library URL: file:/C:/jboss-4.0.1/server/default/lib/
    14:31:23,343 INFO [Server] Root Deployment Filename: jboss-service.xml
    14:31:23,343 INFO [Server] Starting General Purpose Architecture (GPA)...
    14:31:24,312 INFO [ServerInfo] Java version: 1.4.2_07,Sun Microsystems Inc.
    14:31:24,312 INFO [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.4.2_07-b05,Sun Microsystems Inc.
    14:31:24,312 INFO [ServerInfo] OS-System: Windows 2000 5.0,x86
    14:31:25,203 INFO [Server] Core system initialized
    14:31:28,468 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml
    14:31:28,828 INFO [WebService] Using RMI server codebase: http://Mukti:8083/
    14:31:29,140 INFO [NamingService] Started jndi bootstrap jnpPort=1099, rmiPort=1098, backlog=50, bindAddress=/0.0.0.0, Client SocketFactory=null, Server SocketFactory=org.jboss.net.sockets.DefaultSocketFactory@ad093076
    14:31:38,968 INFO [Embedded] Catalina naming disabled
    14:31:40,250 INFO [Http11Protocol] Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
    14:31:40,343 INFO [Catalina] Initialization processed in 1203 ms
    14:31:40,343 INFO [StandardService] Starting service jboss.web
    14:31:40,359 INFO [StandardEngine] Starting Servlet Engine: Apache Tomcat/5.0.28
    14:31:40,421 INFO [StandardHost] XML validation disabled
    14:31:40,453 INFO [Catalina] Server startup in 110 ms
    14:31:40,750 INFO [TomcatDeployer] deploy, ctxPath=/invoker, warUrl=file:/C:/jboss-4.0.1/server/default/deploy/http-invoker.sar/invoker.war/
    14:31:42,859 INFO [TomcatDeployer] deploy, ctxPath=/ws4ee, warUrl=file:/C:/jboss-4.0.1/server/default/tmp/deploy/tmp4763jboss-ws4ee-exp.war/
    14:31:43,234 INFO [TomcatDeployer] deploy, ctxPath=/, warUrl=file:/C:/jboss-4.0.1/server/default/deploy/jbossweb-tomcat50.sar/ROOT.war/
    14:31:43,703 INFO [TomcatDeployer] deploy, ctxPath=/jbossmq-httpil, warUrl=file:/C:/jboss-4.0.1/server/default/deploy/jms/jbossmq-httpil.sar/jbossmq-httpil.war/
    14:31:48,765 INFO [MailService] Mail Service bound to java:/Mail
    14:31:49,984 INFO [RARDeployment] Required license terms exist view the META-INF/ra.xml: file:/C:/jboss-4.0.1/server/default/deploy/jboss-local-jdbc.rar
    14:31:50,375 INFO [RARDeployment] Required license terms exist view the META-INF/ra.xml: file:/C:/jboss-4.0.1/server/default/deploy/jboss-xa-jdbc.rar
    14:31:50,734 INFO [RARDeployment] Required license terms exist view the META-INF/ra.xml: file:/C:/jboss-4.0.1/server/default/deploy/jms/jms-ra.rar
    14:31:51,046 INFO [RARDeployment] Required license terms exist view the META-INF/ra.xml: file:/C:/jboss-4.0.1/server/default/deploy/mail-ra.rar
    14:31:51,968 ERROR [HypersonicDatabase] Starting failed jboss:database=localDB,service=Hypersonic
    java.sql.SQLException: General error: java.lang.NullPointerException
         at org.hsqldb.jdbc.jdbcUtil.sqlException(Unknown Source)
         at org.hsqldb.jdbc.jdbcConnection.<init>(Unknown Source)
         at org.hsqldb.jdbcDriver.getConnection(Unknown Source)
         at org.hsqldb.jdbcDriver.connect(Unknown Source)
         at java.sql.DriverManager.getConnection(DriverManager.java:512)
         at java.sql.DriverManager.getConnection(DriverManager.java:171)
         at org.jboss.jdbc.HypersonicDatabase.getConnection(HypersonicDatabase.java:806)
         at org.jboss.jdbc.HypersonicDatabase.startStandaloneDatabase(HypersonicDatabase.java:617)
         at org.jboss.jdbc.HypersonicDatabase.startService(HypersonicDatabase.java:587)
         at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
         at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
         at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
         at $Proxy0.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:416)
         at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy4.start(Unknown Source)
         at org.jboss.deployment.SARDeployer.start(SARDeployer.java:261)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.mx.util.JMXInvocationHandler.invoke(JMXInvocationHandler.java:272)
         at $Proxy34.start(Unknown Source)
         at org.jboss.deployment.XSLSubDeployer.start(XSLSubDeployer.java:228)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
         at sun.reflect.GeneratedMethodAccessor48.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy8.deploy(Unknown Source)
         at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:305)
         at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:481)
         at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:204)
         at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:277)
         at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
         at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
         at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
         at $Proxy0.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:416)
         at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy4.start(Unknown Source)
         at org.jboss.deployment.SARDeployer.start(SARDeployer.java:261)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:722)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy5.deploy(Unknown Source)
         at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:413)
         at org.jboss.system.server.ServerImpl.start(ServerImpl.java:310)
         at org.jboss.Main.boot(Main.java:162)
         at org.jboss.Main$1.run(Main.java:423)
         at java.lang.Thread.run(Thread.java:534)
    14:31:51,968 WARN [ServiceController] Problem starting service jboss:database=localDB,service=Hypersonic
    java.sql.SQLException: General error: java.lang.NullPointerException
         at org.hsqldb.jdbc.jdbcUtil.sqlException(Unknown Source)
         at org.hsqldb.jdbc.jdbcConnection.<init>(Unknown Source)
         at org.hsqldb.jdbcDriver.getConnection(Unknown Source)
         at org.hsqldb.jdbcDriver.connect(Unknown Source)
         at java.sql.DriverManager.getConnection(DriverManager.java:512)
         at java.sql.DriverManager.getConnection(DriverManager.java:171)
         at org.jboss.jdbc.HypersonicDatabase.getConnection(HypersonicDatabase.java:806)
         at org.jboss.jdbc.HypersonicDatabase.startStandaloneDatabase(HypersonicDatabase.java:617)
         at org.jboss.jdbc.HypersonicDatabase.startService(HypersonicDatabase.java:587)
         at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
         at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
         at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
         at $Proxy0.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:416)
         at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy4.start(Unknown Source)
         at org.jboss.deployment.SARDeployer.start(SARDeployer.java:261)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.mx.util.JMXInvocationHandler.invoke(JMXInvocationHandler.java:272)
         at $Proxy34.start(Unknown Source)
         at org.jboss.deployment.XSLSubDeployer.start(XSLSubDeployer.java:228)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
         at sun.reflect.GeneratedMethodAccessor48.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy8.deploy(Unknown Source)
         at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:305)
         at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:481)
         at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:204)
         at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:277)
         at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
         at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
         at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
         at $Proxy0.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:416)
         at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy4.start(Unknown Source)
         at org.jboss.deployment.SARDeployer.start(SARDeployer.java:261)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:722)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy5.deploy(Unknown Source)
         at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:413)
         at org.jboss.system.server.ServerImpl.start(ServerImpl.java:310)
         at org.jboss.Main.boot(Main.java:162)
         at org.jboss.Main$1.run(Main.java:423)
         at java.lang.Thread.run(Thread.java:534)
    14:31:52,562 INFO [ConnectionFactoryBindingService] Bound connection factory for resource adapter for ConnectionManager 'jboss.jca:name=JmsXA,service=ConnectionFactoryBinding to JNDI name 'java:JmsXA'
    14:31:52,921 INFO [WrapperDataSourceService] Bound connection factory for resource adapter for ConnectionManager 'jboss.jca:name=MySqlDS,service=DataSourceBinding to JNDI name 'java:MySqlDS'
    14:31:53,000 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=file:/C:/jboss-4.0.1/server/default/deploy/jmx-console.war/
    14:31:53,515 INFO [TomcatDeployer] deploy, ctxPath=/web-console, warUrl=file:/C:/jboss-4.0.1/server/default/deploy/management/web-console.war/
    14:31:54,859 INFO [EARDeployer] Init J2EE application: file:/C:/jboss-4.0.1/server/default/deploy/teste.ear
    14:31:56,125 INFO [EjbModule] Deploying Teste
    14:31:56,421 WARN [StatelessSessionContainer] No resource manager found for jms/PointToPoint
    14:31:56,453 INFO [EJBDeployer] Deployed: file:/C:/jboss-4.0.1/server/default/tmp/deploy/tmp4815teste.ear-contents/teste-ejb.jar
    14:31:56,562 INFO [TomcatDeployer] deploy, ctxPath=/teste, warUrl=file:/C:/jboss-4.0.1/server/default/tmp/deploy/tmp4815teste.ear-contents/teste-exp.war/
    14:31:56,937 INFO [EARDeployer] Started J2EE application: file:/C:/jboss-4.0.1/server/default/deploy/teste.ear
    14:31:56,937 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
    MBeans waiting for other MBeans:
    ObjectName: jboss.ejb:persistencePolicy=database,service=EJBTimerService
    state: CREATED
    I Depend On: jboss.jca:name=DefaultDS,service=DataSourceBinding
    Depends On Me:
    ObjectName: jboss.mq:service=InvocationLayer,type=HTTP
    state: CREATED
    I Depend On: jboss.mq:service=Invoker
    jboss.web:service=WebServer
    Depends On Me:
    ObjectName: jboss:service=KeyGeneratorFactory,type=HiLo
    state: CREATED
    I Depend On: jboss:service=TransactionManager
    jboss.jca:name=DefaultDS,service=DataSourceBinding
    Depends On Me:
    ObjectName: jboss.mq:service=StateManager
    state: CREATED
    I Depend On: jboss.jca:name=DefaultDS,service=DataSourceBinding
    Depends On Me: jboss.mq:service=DestinationManager
    ObjectName: jboss.mq:service=DestinationManager
    state: CREATED
    I Depend On: jboss.mq:service=MessageCache
    jboss.mq:service=PersistenceManager
    jboss.mq:service=StateManager
    Depends On Me: jboss.mq.destination:name=testTopic,service=Topic
    jboss.mq.destination:name=securedTopic,service=Topic
    jboss.mq.destination:name=testDurableTopic,service=Topic
    jboss.mq.destination:name=testQueue,service=Queue
    jboss.mq.destination:name=A,service=Queue
    jboss.mq.destination:name=B,service=Queue
    jboss.mq.destination:name=C,service=Queue
    jboss.mq.destination:name=D,service=Queue
    jboss.mq.destination:name=ex,service=Queue
    jboss.mq:service=SecurityManager
    jboss.mq.destination:name=DLQ,service=Queue
    ObjectName: jboss.mq:service=PersistenceManager
    state: CREATED
    I Depend On: jboss.jca:name=DefaultDS,service=DataSourceBinding
    Depends On Me: jboss.mq:service=DestinationManager
    ObjectName: jboss.mq.destination:name=testTopic,service=Topic
    state: CREATED
    I Depend On: jboss.mq:service=DestinationManager
    jboss.mq:service=SecurityManager
    Depends On Me:
    ObjectName: jboss.mq.destination:name=securedTopic,service=Topic
    state: CREATED
    I Depend On: jboss.mq:service=DestinationManager
    jboss.mq:service=SecurityManager
    Depends On Me:
    ObjectName: jboss.mq.destination:name=testDurableTopic,service=Topic
    state: CREATED
    I Depend On: jboss.mq:service=DestinationManager
    jboss.mq:service=SecurityManager
    Depends On Me:
    ObjectName: jboss.mq.destination:name=testQueue,service=Queue
    state: CREATED
    I Depend On: jboss.mq:service=DestinationManager
    jboss.mq:service=SecurityManager
    Depends On Me:
    ObjectName: jboss.mq.destination:name=A,service=Queue
    state: CREATED
    I Depend On: jboss.mq:service=DestinationManager
    Depends On Me:
    ObjectName: jboss.mq.destination:name=B,service=Queue
    state: CREATED
    I Depend On: jboss.mq:service=DestinationManager
    Depends On Me:
    ObjectName: jboss.mq.destination:name=C,service=Queue
    state: CREATED
    I Depend On: jboss.mq:service=DestinationManager
    Depends On Me:
    ObjectName: jboss.mq.destination:name=D,service=Queue
    state: CREATED
    I Depend On: jboss.mq:service=DestinationManager
    Depends On Me:
    ObjectName: jboss.mq.destination:name=ex,service=Queue
    state: CREATED
    I Depend On: jboss.mq:service=DestinationManager
    Depends On Me:
    ObjectName: jboss.mq:service=Invoker
    state: CREATED
    I Depend On: jboss.mq:service=TracingInterceptor
    Depends On Me: jboss.mq:service=InvocationLayer,type=HTTP
    jboss.mq:service=InvocationLayer,type=JVM
    jboss.mq:service=InvocationLayer,type=UIL2
    ObjectName: jboss.mq:service=TracingInterceptor
    state: CREATED
    I Depend On: jboss.mq:service=SecurityManager
    Depends On Me: jboss.mq:service=Invoker
    ObjectName: jboss.mq:service=SecurityManager
    state: CREATED
    I Depend On: jboss.mq:service=DestinationManager
    Depends On Me: jboss.mq.destination:name=testTopic,service=Topic
    jboss.mq.destination:name=securedTopic,service=Topic
    jboss.mq.destination:name=testDurableTopic,service=Topic
    jboss.mq.destination:name=testQueue,service=Queue
    jboss.mq:service=TracingInterceptor
    jboss.mq.destination:name=DLQ,service=Queue
    ObjectName: jboss.mq.destination:name=DLQ,service=Queue
    state: CREATED
    I Depend On: jboss.mq:service=DestinationManager
    jboss.mq:service=SecurityManager
    Depends On Me:
    ObjectName: jboss.mq:service=InvocationLayer,type=JVM
    state: CREATED
    I Depend On: jboss.mq:service=Invoker
    Depends On Me:
    ObjectName: jboss.mq:service=InvocationLayer,type=UIL2
    state: CREATED
    I Depend On: jboss.mq:service=Invoker
    Depends On Me:
    ObjectName: jboss.jca:name=DefaultDS,service=LocalTxCM
    state: CREATED
    I Depend On: jboss.jca:name=DefaultDS,service=ManagedConnectionPool
    jboss.jca:service=CachedConnectionManager
    jboss.security:service=JaasSecurityManager
    jboss:service=TransactionManager
    Depends On Me: jboss.jca:name=DefaultDS,service=DataSourceBinding
    ObjectName: jboss.jca:name=DefaultDS,service=ManagedConnectionPool
    state: CREATED
    I Depend On: jboss.jca:name=DefaultDS,service=ManagedConnectionFactory
    Depends On Me: jboss.jca:name=DefaultDS,service=LocalTxCM
    ObjectName: jboss.jca:name=DefaultDS,service=ManagedConnectionFactory
    state: CREATED
    I Depend On: jboss:database=localDB,service=Hypersonic
    jboss.jca:name='jboss-local-jdbc.rar',service=RARDeployment
    Depends On Me: jboss.jca:name=DefaultDS,service=ManagedConnectionPool
    ObjectName: jboss.jca:name=DefaultDS,service=DataSourceBinding
    state: CREATED
    I Depend On: jboss.jca:name=DefaultDS,service=LocalTxCM
    jboss:service=invoker,type=jrmp
    Depends On Me: jboss.ejb:persistencePolicy=database,service=EJBTimerService
    jboss:service=KeyGeneratorFactory,type=HiLo
    jboss.mq:service=StateManager
    jboss.mq:service=PersistenceManager
    ObjectName: jboss:database=localDB,service=Hypersonic
    state: FAILED
    I Depend On:
    Depends On Me: jboss.jca:name=DefaultDS,service=ManagedConnectionFactory
    java.sql.SQLException: General error: java.lang.NullPointerException
    MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM:
    ObjectName: jboss:database=localDB,service=Hypersonic
    state: FAILED
    I Depend On:
    Depends On Me: jboss.jca:name=DefaultDS,service=ManagedConnectionFactory
    java.sql.SQLException: General error: java.lang.NullPointerException
    14:31:57,265 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-8080
    14:31:57,578 INFO [ChannelSocket] JK2: ajp13 listening on /0.0.0.0:8009
    14:31:57,609 INFO [JkMain] Jk running ID=0 time=0/141 config=null
    14:31:57,625 INFO [Server] JBoss (MX MicroKernel) [4.0.1 (build: CVSTag=JBoss_4_0_1 date=200412230944)] Started in 33s:766ms

  • Error: Fields not Bound.

    Hi,
    I have developed Z UI Comopnent and facing Error on UI screen for each filed 'Filed not Bound'.
    Below are the steps which i have followed.
    1) Created UI component ZTEST_BP.
    2) Added Model - ALL to models using runtime repository.
    3) Created Custom controller BPCuCO using wizard - Added Model Node BUILHEADER.
    4) Created new View BPDetailsview using wizard, also done binding of view with custim controller during wizard.
    5) In newly created view added First Name, Last Name, *** fields to the View using UI Config tool in GUI.
    6) Assigned View to the window using Runtime Repository.
    7) Executed Application.
    So after execution i am still getting message in each filed as FIRSTNAMEnot bound, LASTNAMEnot bound. Also when i am navigating to the context node it is showing its bound to the Custum controller. Even below code is generated in CREATE method of context impl class.
    method create_builheader.
        data:
          model        type ref to if_bsp_model,
          coll_wrapper type ref to cl_bsp_wd_collection_wrapper,
          entity       type ref to cl_crm_bol_entity,           "#EC *
          entity_col   type ref to if_bol_entity_col.           "#EC *
        model = owner->create_model(
            class_name     = 'ZL_ZBP_UPDA_BPUPDATEVIEW_CN00'
            model_id       = 'BuilHeader' ).                    "#EC NOTEXT
        builheader ?= model.
        clear model.
    bind to custom controller
        owner->do_context_node_binding(
                 iv_controller_type = cl_bsp_wd_controller=>co_type_custom
                 iv_name =
                 'ZTEST_BP/bpupdateCuCo'                      "#EC NOTEXT
                 iv_target_node_name = 'BUILHEADER'
                 iv_node_2_bind = builheader ).
    endmethod.
    Can any one please help, what can be the reason ? why this message is getting populated in UI. And what can be done to correct the same.
    Regards,
    Raghu.

    Instatiating an existing bp can be done by:  Run a query using the BP number as one of the search parameter and the result list contains BP entity( BuilHeader)
    below is the sample code for same
    *Data Declaration
      DATA: l_partner       TYPE bu_partner, "Busines partner number
            lr_bp_col       TYPE REF TO if_bol_entity_col,"Entity collection
            lr_search_bp    TYPE REF TO cl_crm_bol_query_service, " Search query instance
            iv_query_name   TYPE crmt_ext_obj_name. " Query name
    l_partner = <BP number).
      iv_query_name = 'BuilHeaderSearchNew '.
      lr_search_bp = cl_crm_bol_query_service=>get_instance( iv_query_name ).
    *Set selection parameters
      CALL METHOD lr_search_bp->set_property
        EXPORTING
          iv_attr_name = 'PARTNER'
          iv_value     = l_partner.
    *Read Search result
      lr_bp_col = lr_search_bp->get_query_result( ).
      CHECK lr_bp_col IS BOUND.
    lr_bpentity = lr_bp_col->get_first( ) "lr_bpentity contains Builheader entity of the BP number above mentioned.
    this entity needs to be added to your context node collection which will display BP data on your view
    You need explore BOL coding in standard components to find all these things.
    Regards,
    Priyanka
    Edited by: priyanka ganapa on Jun 16, 2011 4:47 PM

  • Error - Name jdbc is not bound in this Context

    Hi,
    i wanted to use Datasource in JDBC to make connection with mysql
    suport and want to excute Jsp page but not able to execte some error is
    getting.
    1)Jsp Page: data_source.jsp
    <%@ page session="true" import="java.sql.*,javax.sql.*,javax.naming.*" %>
    <HTML>
    <body bgcolor="blue">
    <H1 align = "center" >
    Welcome to User and can see the DataSource Connection
    <%
    InitialContext ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup("jdbc/test");
    Connection conn = ds.getConnection();
    Statement stmt = conn.createStatement();
    ResultSet rs = stmt.executeQuery("SELECT * from emp");
    if(rs.next())
    %>
    <table width="100%" border="1" >
    <tr align="left">
    <th>Name</th>
    <th>Dept</th>
    </tr>
    <%
    do
    %>
    <TD> <%= rs.getString("Name") %> </TD>
    <TD> <%= rs.getString("Dept") %> </TD>
    <%
    }while(rs.next());
    %>
    </table>
    <%
    }else {
    %>
    No Results from Query:
    <%
    rs.close();
    stmt.close();
    conn.close();
    ctx.close();
    %>
    </body>
    </html>
    2) web.xml file content
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <description>MySQL Test App</description>
    <resource-ref>
    <description>Mysql DB Connection</description>
    <res-ref-name>jdbc/test</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    <servlet>
    <servlet-name>s1</servlet-name>
    <servlet-class>first</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>s1</servlet-name>
    <url-pattern>/test</url-pattern>
    </servlet-mapping>
    </web-app>
    3) myhealth.xml or server.xml
    <?xml version='1.0' encoding='utf-8'?>
    <Context docBase="C:/Program Files/Apache Software Foundation/Tomcat
    5.0/myhealth" path="/myhealth" reloadable="true" privileged="true">
    <Resource name="jdbc/test"
    scope="Shareable" type="javax.sql.DataSource"
    auth="Container" description="hOME.."/>
    <ResourceParams name="jdbc/test">
    <parameter>
    <name>driverClassName</name>
    <value>com.mysql.jdbc.Driver</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:mysql://localhost:3306/test?autoReconnect=true</value>
    </parameter>
    <parameter>
    <name>username</name>
    <value>root</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>test</value>
    </parameter>
    </ResourceParams>
    </Context>
    4) Error which i got during execution of data_Source.jsp page.
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it
    from fulfilling this request.
    exception
    javax.servlet.ServletException: Name jdbc is not bound in this Context
    org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:867)
    org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:800)
    org.apache.jsp.Data_005fSource_jsp._jspService(Data_005fSource_jsp.java:115)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:133)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:311)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    root cause
    javax.naming.NameNotFoundException: Name jdbc is not bound in this Context
    org.apache.naming.NamingContext.lookup(NamingContext.java:815)
    org.apache.naming.NamingContext.lookup(NamingContext.java:198)
    org.apache.naming.SelectorContext.lookup(SelectorContext.java:183)
    javax.naming.InitialContext.lookup(InitialContext.java:351)
    org.apache.jsp.Data_005fSource_jsp._jspService(Data_005fSource_jsp.java:56)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:133)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:311)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    As i made datasource Context using Tomcat apache. But i still get same error.
    I tried so much from Google search, please give me proper solution.
    Coz this is the common problem most of the programmers face initally
    Thanks,
    Prabhat

    i installed tomcat. the installation is done successfully..
    But i can't connect to the db(MySQL)
    i am getting some errors regarding some exception like
    **org.apache.jasper.JasperException: An exception occurred processing JSP page /TestTomcatToMySQLConn.jsp at line 16**
    **13:          Context ctx = new InitialContext();**
    **14:*          if(ctx == null )*
    *15:              throw new Exception("Boom - No Context");*
    *16:           ds = (DataSource)ctx.lookup("java:comp/env/jdbc/testDB");*
    *17:*
    *18:   if(ds == null )*
    *19:       throw new Exception("Boom - No Datasource");*
    Stacktrace:_
    *     org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:505)*
    *     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:398)*
    *     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:337)*
    *     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)*
    *     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)*
    root cause_
    javax.servlet.ServletException: javax.naming.NameNotFoundException: Name jdbc is not bound in this Context_
    *     org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:850)*
    *     org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:779)*
    *     org.apache.jsp.TestTomcatToMySQLConnjsp._jspService(TestTomcatToMySQLConn_jsp.java:88)*_
    *     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)*
    *     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)*
    *     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)*
    *     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:337)*
    *     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)*
    *     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)*
    please Help

  • Fatal! Book not bound error on B&N Nook upload of EPUB

    When exporting to EPUB, Indesign 2014 issues the following metadata:
    <metadata xmlns:dc="http://purl.org/dc/elements/1.1/">
    If you've modified any of the metadata with opf attributes, this leads to the error "Fatal! book not bound" when uploading to B&N Nook, and maybe other sites as well. The correction for this error is to add the opf organization into the metadata tag like this:
    <metadata xmlns:dc="http://purl.org/dc/elements/1.1/"
      xmlns:opf="http://www.idpf.org/2007/opf">
    I chose 2 lines for clarity, but as you probably know, two lines isn't required.
    I also called this a "bug" on the title of this post. This is not technically correct. This error happens when you choose to use your ISBN, a URI, or anything except the internally generated UUID for your ebook which requires an opf attribute. Since UUIDs are not a guarantee at uniqueness as ISBNs, this is something I do. So, forgive the "bug" part of this post's labeling. It's not a bug, but it is certainly an issue to anyone formatting metadata to any degree of specificity, so I wanted to post the solution.
    Blessings!

    OR the subject could have been "Adobe engineers rush to meet marketing window and feverishly work on  patches for known defects and product inadequacy while marketing promises the world to Adobe customers." Stop blaming the customer—particularly if you are a member of the guilty party. I've been in engineering 40 years and I finally kissed MS goodbye for Apple with just one arrogant attitude too many at MS. I took a company and a college with me too. You're a powerhouse at the moment, but so was Tandem Computers before a little upstart PC upstart bought them out. Corel is on your butt and closing the gap. They aren't there, but they are doing what Borland did to Microsoft and affecting your prices, your profits, and making you come up with all sorts of "creative" plans to maintain your lead. If your CEO saw your cantankerous reply to a customer post he'd probably put you in timeout at annual review time "oh smart one". Why don't you "move" this one to your upper management.

  • 'BuilHeader not bound' error for custom field added by AET

    Hi,
    We created a Custom field through AET in IC Web UI Screen
    The field is in the Accont Identification screen
    But the field is showing 'Buiheader nto bound error' on loading of the screen.
    We generated the GETTER and the SETTER Methods for the corresponding field in the context node CONTACT PERSONS of the ICCMP_BP_SEARCH Component.
    While Debugging its seen that the
        DATA: current TYPE REF TO if_bol_bo_property_access.
    if iterator is bound.
          current = iterator->get_current( ).
        else.
          current = collection_wrapper->get_current( ).
        endif.
    current  is not getting populated and thats reason why its giving the 'Buiheader not bound error'
    Any suggestions on this will be highly appreciated.
    Regards,
    Sijo
    Edited by: sijokjohn85 on Oct 21, 2009 3:01 PM

    Hi Masood,
    I checked the method create_contactpersons but I couldnt find anything unusual there.
    The code below is present in the  CREATE_CONTACTPERSONS Mehtod of the context class
    model = owner->create_model(
            class_name     = 'ZL_CRMCMP_B_BUPASEARCHB2B_CN01'
            model_id       = 'ContactPersons' ). "#EC NOTEXT
        ContactPersons ?= model.
        CLEAR model.
    * bind to custom controller
      owner->do_context_node_binding(
               iv_controller_type = CL_BSP_WD_CONTROLLER=>CO_TYPE_CUSTOM
               iv_name =
               'ICCMP_BP_SEARCH/CuCoSearch' "#EC NOTEXT
               iv_target_node_name = 'CONTACTPERSONS'
               iv_node_2_bind = CONTACTPERSONS ).
    Any suggestions like how to fix this issue.
    Regards,
    Sijo

  • Not Bound Error

    Hi,
    I have created a custom component (Z).
    To that, I have added a model context node IBTEST having underlying BOL entity as IBHeader and containing attribue STATUS.
    I have added the attribute STATUS to the view using UI configurator.
    Now when I try to test the component it gives me the following error:
    Status IBHeader not bound
    Could anyone help me track the reason and how to solve this error?
    Kindly let me know all the details/steps that we need to follow to add a field on the view in an editable form.
    Regards,
    Mohit

    Your Z component will not work in Isolation. It has to be bounded to some existing Component where you want it to place it.
    Regards,
    Harshit

  • NOT Bound error for Zfield added through AET

    Hi.
    We added a Zfield through AET in the Account overview screen of IC Web UI.
    The same field we added in the Account Identification screen of IC Web UI.
    Account Overview screen its showing as enabled mode and its working fine.
    but in Identify account screen its giving not bound error.We added the field under the Enhanced BO Account with Ref BO as BUPA.
    Any suggestions to solve this issue will be highly appreciated.
    Regards,
    Sijo.

    Thread is closed as there are no replies.

  • Error : Membership id not bound

    Hi Experts,
    I am currently configuring Loyalty Management in the system.
    I need to create a membership id and attach loyalty program to this. When I try to create a Membership id, it don't get saved and gives the following error : " Membership id not bound "
    Did I miss any configuration?
    Please help me out in fixing the issue.
    Thanks,
    Shruthi

    Hi Shruthi,
    Please check whether the number ranges are maintained for objects related to membership:
    for example
    1. LOY_CRD_ID - Object for Card Internal ID
    2. LOY_MSH_ID Object for Membership ID
    3. LOY_PTACCT - Object for Point account set ID
    4. LOY_MA_ID - Number range for CRM Member activity
    Hope this helps.
    Regards,
    Rashmi

  • Regarding NOT BOUND error in Zfield

    Hi All,
    I am  new to CRM WEBClient  IC.
    I have created a Zfield using AET tool and  added in Interaction center Identify Account screen but
    I am gettting a NOT BOUND for that  Zfield .
    Could anyone help me track the reason and how to solve this error?
    Regards,
    Swaraj

    Hi Steve,
    Thanks for your reply.
    As u said i posted the same question in Interaction center.
    Please could you give me the description in detail .
    Regards,
    Swaraj

  • Error:the prefix "jsp"  for element "jsp:scriptlet" is not bound

    i got this error:
    the prefix "jsp"  for element "jsp:scriptlet" is not bound.how can i remove this error.

    Add this to the jsp:root tag
    xmlns:jsp="http://java.sun.com/JSP/Page"
    How did it get removed from your JSP?
    (assuming you are using Sun Java Studio Creator)

  • "Errored while looking up datasource: PWC4216: Name myDB is not bound in th

    hi all,
    am trying to deploy my web application (.war which has a servlet which connects to a db and fetches records and displays in jsp) file in SunOne web server V7 but i cant get past this error :
    [29/Jun/2010:15:14:46] failure (24218): for host 146.171.59.144 trying to POST /BbaMigrationQueryTool/BBAMigrationQuery, service-j2ee reports: NamingExcep
    tion caught: Errored while looking up datasource: PWC4216: Name myDB is not bound in this Context
    my java code to lookup the jndi name :
       1.     //looks up a datasource 
       2.     private static synchronized DataSource getDataSource(String jndiName) throws NamingException { 
       3.  
       4.         DataSource dataSource = null; 
       5.  
       6.         try { 
       7.             Context c = new InitialContext(); 
       8.              Context envContext = (Context) c.lookup("java:comp/env"); 
       9.             Logger.getLogger(DBUtilities.class.getName()).log(Level.INFO, "Found sub context"); 
      10.               dataSource = (DataSource) envContext.lookup(jndiName); 
      11.  
      12.         } catch (NamingException e) { 
      13.             e.printStackTrace(); 
      14.             throw new NamingException("Errored while looking up datasource: " + e.getMessage()); 
      15.         } 
      16.  
      17.         return dataSource; 
      18.     } 
      i call the above method with "jdbc/myDB" and have created a JDBC recourse within the SunOne web server via the admin console.
    my web.xml i have an entry for the resource as follows :
       1.             <resource-ref> 
       2.         <res-ref-name>jdbc/myDB</res-ref-name> 
       3.         <res-type>javax.sql.DataSource</res-type> 
       4.         <res-auth>Container</res-auth> 
       5.         <res-sharing-scope>Shareable</res-sharing-scope> 
       6.     </resource-ref> 
    in my sun-web.xml i have an entry as follows :
       1.     <resource-ref> 
       2.         <res-ref-name>jdbc/myDB</res-ref-name> 
       3.         <jndi-name>jdbc/myDB</jndi-name> 
       4.     </resource-ref> 
    server.xml has this entry in it :
       1.   <jdbc-resource> 
       2.     <jndi-name>jdbc/myDB</jndi-name> 
       3.     <datasource-class>oracle.jdbc.pool.OracleDataSource</datasource-class> 
       4.     <property> 
       5.       <name>password</name> 
       6.       <value>76765</value> 
       7.     </property> 
       8.     <property> 
       9.       <name>user</name> 
      10.       <value>56756</value> 
      11.     </property> 
      12.     <property> 
      13.       <name>url</name> 
      14.       <value>jdbc:oracle:thin:@serveretc etc</value> 
      15.     </property> 
      16.     <description/> 
      17.   </jdbc-resource>
      what could be wrong ??
    thanks in advance.
    Edited by: cesarNZ on Jun 29, 2010 7:58 PM
    Edited by: cesarNZ on Jun 29, 2010 8:00 PM

    try to not split the attributes in server.xml
    use them like
    <Context path="/myPath" docBase="myDocBase" debug="5" reloadable="true" crossContext="true" source="org.eclipse.jst.j2ee.server:myDocBase">
                          <Resource name="jdbc/myDB"
                                                     auth="Container"
                                                     type="javax.sql.DataSource"
                                                     maxActive="100"
                                                     maxIdle="30"
                                                     maxWait="10000"
                                                     username="$$$"
                                                     password="$$$"
                                                     driverClassName="com.mysql.jdbc.Driver"
                                                     url="jdbc:mysql://localhost/myTest" />
                     </Context>and i dont know why you define two resources
    try to look at
    http://forums.sun.com/thread.jspa?messageID=11013089&#11013089

  • T430s - [Solved?] Wireless hardware is not bound to transport driver (Centrino 6205, Win7x64)

    Hello,
    after clean install of my new T430s using System Update everything worked quite well, except for terrible DPC latency when loading web pages (crapping sound). Therefore I changed LAN driver to 11.10.84.0 from Lenovo (83rw15ww) and latencies went down (this driver has been recommended in some online forum).
    Few days later I was on WiFi and latency spiked up again, but this time all the time above 8000µs - even when idle. I started to play with devices in Device Manager and ultimately reinstalled WiFi driver to Lenovo's 15.6.1, then Intel's 15.8.0. The most recommended driver from HP I was unable to install, so no harm there
    Not sure when, but somewhere since this point I don't see wireless networks any more. Driver is fine (no yellow ? or !), wireless card is fine (replaced by spare one from my "HW guy"), all drivers has been reinstalled MANY times. When I try to add WLAN manually, Win7 says "Unexpected Error". Diagnostic tool from Intel says "Wireless hardware is not bound to transport driver". In Fn+F5 I see WiFi as off and I can't turn it on (unlike Bluetooth, which works well). Windows Diagnostics says there's an issue with a driver (sorry if I don't use exact words, my Win7 is not EN). I don't see this card anywhere in "ipconfig". There's no difference in diagnostics whether the wireless switch is on or off.
    I read almost everything I was able to google about similar issues. I tried various drivers from both Lenovo (manual download from Lenovo website as well as using System Update) and Intel, both with and without Access Connections. I tried to remove the device from Device Manager and let Windows to find it again. I reinstalled LAN driver, tried to update BIOS (was already updated), tried to reset various stuff using "netsh" command, deleted Intel/Wireless dir in [username]/AppData, all this with/without reboots in between. Tried to play with card settings (in Device Manager), with power settings (both Windows and Power Manager), with on/off switch on a side of the laptop. I tried System Restore, which ended by error for all meaningful points. Nothing. All this on 3 different WLAN networks (2.4 GHz).
    My last thought is to reinstall Windows from scratch, but it takes me at least 2 whole days to set everything up as I use a boatload of different work stuff for different customers.
    My current WiFi driver, according to Driver tab in Device Manager for Intel Centrino Advanced-N 6205, is 15.4.1.1 from January 23, 2013 (thru System Update). The more current one from Intel is 15.7.0.3 from April 18, 2013.
    Thank you in advance for any suggestions, tips or help.
    EDIT
    Just for the heck of it I switched wireless ON at home and suddenly my home WiFi network appeared in Win7 WiFi management (no AC). The last driver I installed was thru System Update, twice. Never restarted immediately, always after a while.
    So I ran System Update again and it offered me available driver for WiFi (again!) and Access Connections. The online utility from Intel also offered me available drivers. I still have WiFi driver 15.4.1.1 (23.1.2013). To be honest I'm little affraid to update one or the other, as I did it so MANY times in past 30 hours with no effect.
    The only difference I noticed is a new wireless device was available - Microsoft Virtual WiFi Miniport Adapter. It may be because of my Checkpoint Endpoint Security VPN software, but last time I saw this adapter was just before I lost all the wireless networks.
    As much as I'm relieved it's working again, as a programmer I'm not happy about it, because I don't know WHY it's working now, when I didn't do anything for it since my last try. I only kept the wireless switch off for a fair amount of time.
    Oh, and DPC latency stays below 300µs (up to 500µs is OK).

    hey smarmytime,
    let me get this right
    laptop+router+modem (via cable) = connection working fine
    laptop+modem (via cable) = connection goes wonky
    laptop+wireless = works halfway then poofs
    The wireless of yours comes from a Router+Wifi or is it coming from a Modem+Wifi set ?
    If it's coming from a Modem+Wifi set, then try the following.
    1- turn off wireless
    2- reset modem to factory setting (make sure wireless is off)
    3- key in the necessary info to make a connection.
    4. switch wifi off on laptop
    5. connect laptop to modem via cable.
    Does it connect ? Does it go poof halfway?
    After that, turn on the wireless for both modem and laptop, try connecting again. Does it connect ? Does it go poof halfway?
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    Have you checked out the Community Knowledgebase yet?!
    How to send a private message? --> Check out this article.

  • CANNOT install Adobe AIR, administrator error. could not update past .20 version

    consistently receive following message:
    an error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator.
    I receive this message AS AN ADMINISTRATOR (only user on Netbook IS me, THE ADMIN). even in safe mode tried to update/install, same error. did NOT have this problem updating w/ previous versions (xxx.20 and earlier)
    I contacted myself, as instructed by the error message, and the response was Adobe failed to properly check administrator privileges for versions after .20
    the install log (which I guessing since this is being requested, this GLOBAL problem will have to be resolved 1 user at a time??):
    [2010-06-11:18:53:17] Performing runtime update
    [2010-06-11:18:53:18] UI SWF load is complete
    [2010-06-11:18:53:29] UI initialized
    [2010-06-11:18:53:29] starting user confirmation
    [2010-06-11:18:53:30] Version of this installer: 2.0.2.12610
    [2010-06-11:18:53:30] Installed version: 1.5.3.9130
    [2010-06-11:18:53:30] Installation type: patchNewer
    [2010-06-11:18:55:50] starting install
    [2010-06-11:18:55:50] Scheduling runtime installation operations
    [2010-06-11:18:55:50] Active AIR product GUID is {A2BCA9F1-566C-4805-97D1-7FDC93386723}
    [2010-06-11:18:55:50] Scheduling an MSI install operation
    [2010-06-11:18:55:50] Beginning runtime installation
    [2010-06-11:18:55:51] Beginning install
    [2010-06-11:18:55:51] Installing c:\docume~1\tamramb\locals~1\temp\air54.tmp\setup.msi
    [2010-06-11:18:56:26] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla5A.tmp\temp
    [2010-06-11:18:56:36] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-06-11:18:56:36] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR54.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-06-11:18:56:41] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla5B.tmp\temp
    [2010-06-11:18:56:44] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-06-11:18:56:44] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR54.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-06-11:18:56:46] Execution complete; beginning commit phase
    [2010-06-11:18:56:47] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla5A.tmp\temp
    [2010-06-11:18:56:47] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla5B.tmp\temp
    [2010-06-11:18:56:47] Commit complete
    [2010-06-11:18:56:47] install complete
    [2010-06-11:19:02:58] begin quitting
    [2010-06-11:21:38:05] UI SWF load is complete
    [2010-06-11:21:38:08] UI initialized
    [2010-06-11:21:38:11] Pingback request completed with HTTP status 200
    [2010-06-11:21:38:13] Begin background update check
    [2010-06-11:21:38:15] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-06-11:21:38:17] Background update not available
    [2010-06-11:21:38:21] begin quitting
    [2010-06-19:17:41:23] UI SWF load is complete
    [2010-06-19:17:41:25] UI initialized
    [2010-06-19:17:41:26] Begin background update check
    [2010-06-19:17:41:27] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-06-19:17:41:28] Background update not available
    [2010-06-19:17:41:29] begin quitting
    [2010-06-29:15:32:48] UI SWF load is complete
    [2010-06-29:15:32:51] UI initialized
    [2010-06-29:15:32:51] Begin background update check
    [2010-06-29:15:32:53] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-06-29:15:32:54] Background update not available
    [2010-06-29:15:32:55] begin quitting
    [2010-07-06:22:58:20] UI SWF load is complete
    [2010-07-06:22:58:25] UI initialized
    [2010-07-06:22:58:27] Begin background update check
    [2010-07-06:22:58:40] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-06:22:58:43] Background update not available
    [2010-07-06:22:58:44] begin quitting
    [2010-07-09:01:27:11] Starting app install of http://downloads.tweetdeck.com/TweetDeck_0_34.3.air
    [2010-07-09:01:27:11] UI SWF load is complete
    [2010-07-09:01:27:13] UI initialized
    [2010-07-09:01:27:14] beginning UI styling
    [2010-07-09:01:27:14] UI styling complete
    [2010-07-09:01:27:14] Downloading file to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3A.tmp
    [2010-07-09:01:27:17] Received HTTP Response Status event
    [2010-07-09:01:27:17] Response URL is http://downloads.tweetdeck.com/TweetDeck_0_34.3.air
    [2010-07-09:01:27:25] Waiting for user confirmation
    [2010-07-09:01:29:06] User confirmed action: save
    [2010-07-09:01:29:06] Saving file to C:\Documents and Settings\TamraMB\Desktop\TweetDeck_0_34.3.air
    [2010-07-09:01:29:07] starting cleanup of temporary files
    [2010-07-09:01:29:07] application installer exiting
    [2010-07-09:01:36:23] Starting app install of file:///C:/Documents%20and%20Settings/TamraMB/Desktop/TweetDeck_0_34.3.air
    [2010-07-09:01:36:24] UI SWF load is complete
    [2010-07-09:01:36:25] UI initialized
    [2010-07-09:01:36:25] beginning UI styling
    [2010-07-09:01:36:26] UI styling complete
    [2010-07-09:01:36:26] Unpackaging to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3F.tmp
    [2010-07-09:01:37:03] unpackaging/validation is complete
    [2010-07-09:01:37:03] application is bound to this version of the runtime
    [2010-07-09:01:37:03] app id TweetDeckFast
    [2010-07-09:01:37:03] pub id FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1
    [2010-07-09:01:37:03] Application located at C:\program files
    [2010-07-09:01:37:04] Waiting for user confirmation
    [2010-07-09:01:37:11] User confirmed action: install
    [2010-07-09:01:37:11] creating native installer in: C:\Documents and Settings\TamraMB\Local Settings\Temp\fla40.tmp
    [2010-07-09:01:37:37] native installer creation complete
    [2010-07-09:01:37:38] Starting install
    [2010-07-09:01:37:38] using conversion output in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla40.tmp
    [2010-07-09:01:37:38] Beginning install
    [2010-07-09:01:37:38] Installing C:\Documents and Settings\TamraMB\Local Settings\Temp\fla40.tmp\setup.msi
    [2010-07-09:01:38:22] Execution complete; beginning commit phase
    [2010-07-09:01:38:22] Commit complete
    [2010-07-09:01:38:26] Re-launching application from C:\program files\TweetDeck\TweetDeck.exe
    [2010-07-09:01:38:26] starting cleanup of temporary files
    [2010-07-09:01:38:56] application installer exiting
    [2010-07-15:09:42:29] UI SWF load is complete
    [2010-07-15:09:42:32] UI initialized
    [2010-07-15:09:42:32] Begin background update check
    [2010-07-15:09:42:32] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-15:09:42:41] Background update not available
    [2010-07-15:09:42:42] begin quitting
    [2010-07-22:14:42:33] UI SWF load is complete
    [2010-07-22:14:42:35] UI initialized
    [2010-07-22:14:42:35] Begin background update check
    [2010-07-22:14:42:42] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-22:14:42:58] Background update not available
    [2010-07-22:14:43:03] begin quitting
    [2010-07-30:08:51:07] UI SWF load is complete
    [2010-07-30:08:51:13] UI initialized
    [2010-07-30:08:51:13] Begin background update check
    [2010-07-30:08:51:18] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-30:08:51:29] Background update not available
    [2010-07-30:08:51:31] begin quitting
    [2010-08-09:18:23:21] Starting app install of http://downloads.tweetdeck.com/TweetDeck_0_34.3.2.air
    [2010-08-09:18:23:21] UI SWF load is complete
    [2010-08-09:18:23:24] UI initialized
    [2010-08-09:18:23:24] beginning UI styling
    [2010-08-09:18:23:24] UI styling complete
    [2010-08-09:18:23:24] Downloading file to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla36.tmp
    [2010-08-09:18:23:27] Received HTTP Response Status event
    [2010-08-09:18:23:27] Response URL is http://downloads.tweetdeck.com/TweetDeck_0_34.3.2.air
    [2010-08-09:18:23:35] Waiting for user confirmation
    [2010-08-09:18:23:39] User confirmed action: install
    [2010-08-09:18:23:39] beginning UI styling
    [2010-08-09:18:23:39] UI styling complete
    [2010-08-09:18:23:40] Unpackaging to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla37.tmp
    [2010-08-09:18:24:07] unpackaging/validation is complete
    [2010-08-09:18:24:07] application is bound to this version of the runtime
    [2010-08-09:18:24:07] app id TweetDeckFast
    [2010-08-09:18:24:07] pub id FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1
    [2010-08-09:18:24:07] Application not located
    [2010-08-09:18:24:07] Waiting for user confirmation
    [2010-08-09:18:24:28] User confirmed action: install
    [2010-08-09:18:24:28] creating native installer in: C:\Documents and Settings\TamraMB\Local Settings\Temp\fla39.tmp
    [2010-08-09:18:25:07] native installer creation complete
    [2010-08-09:18:25:07] Starting install
    [2010-08-09:18:25:07] using conversion output in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla39.tmp
    [2010-08-09:18:25:07] Destination for installed application is C:\Program Files
    [2010-08-09:18:25:08] Beginning install
    [2010-08-09:18:25:08] Installing C:\Documents and Settings\TamraMB\Local Settings\Temp\fla39.tmp\setup.msi
    [2010-08-09:18:26:05] Execution complete; beginning commit phase
    [2010-08-09:18:26:05] Commit complete
    [2010-08-09:18:26:17] Re-launching application from C:\Program Files\TweetDeck\TweetDeck.exe
    [2010-08-09:18:26:18] starting cleanup of temporary files
    [2010-08-09:18:26:49] application installer exiting
    [2010-08-09:18:27:32] UI SWF load is complete
    [2010-08-09:18:27:35] UI initialized
    [2010-08-09:18:27:38] Begin background update check
    [2010-08-09:18:27:41] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-08-09:18:27:53] Background update not available
    [2010-08-09:18:27:54] begin quitting
    [2010-08-17:21:35:49] UI SWF load is complete
    [2010-08-17:21:35:59] UI initialized
    [2010-08-17:21:36:00] Begin background update check
    [2010-08-17:21:36:05] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-08-27:17:40:22] UI SWF load is complete
    [2010-08-27:17:40:25] UI initialized
    [2010-08-27:17:40:26] Begin background update check
    [2010-08-27:17:40:32] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-08-27:17:41:57] Background update successfully downloaded
    [2010-08-27:17:41:58] User notified of available background update
    [2010-08-27:17:43:24] User selected immediate install of background update
    [2010-08-27:17:43:24] Running C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background\updater -update
    [2010-08-27:17:43:29] begin quitting
    [2010-08-27:17:44:25] Performing runtime update
    [2010-08-27:17:44:26] UI SWF load is complete
    [2010-08-27:17:44:29] UI initialized
    [2010-08-27:17:44:29] starting user confirmation
    [2010-08-27:17:44:29] Version of this installer: 2.0.3.13070
    [2010-08-27:17:44:29] Installed version: 2.0.2.12610
    [2010-08-27:17:44:29] Installation type: patchNewer
    [2010-08-27:17:44:47] starting install
    [2010-08-27:17:44:49] Scheduling runtime installation operations
    [2010-08-27:17:44:50] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-08-27:17:44:51] Scheduling an MSI repair operation
    [2010-08-27:17:44:53] Beginning runtime installation
    [2010-08-27:17:44:54] Beginning install
    [2010-08-27:17:44:54] Reinstalling c:\docume~1\tamramb\locals~1\temp\air9.tmp\setup.msi
    [2010-08-27:17:45:26] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\TamraMB\Local Settings\Temp\flaF.tmp\temp
    [2010-08-27:17:45:30] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-08-27:17:45:31] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR9.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-08-27:17:45:33] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla10.tmp\temp
    [2010-08-27:17:45:36] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-08-27:17:45:36] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR9.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-08-27:17:45:38] Execution complete; beginning commit phase
    [2010-08-27:17:45:38] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\flaF.tmp\temp
    [2010-08-27:17:45:38] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla10.tmp\temp
    [2010-08-27:17:45:38] Commit complete
    [2010-08-27:17:45:38] install complete
    [2010-08-27:17:48:35] begin quitting
    [2010-08-27:18:12:35] UI SWF load is complete
    [2010-08-27:18:12:37] UI initialized
    [2010-08-27:18:12:39] Pingback request completed with HTTP status 200
    [2010-08-27:18:12:39] Begin background update check
    [2010-08-27:18:12:41] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-08-27:18:12:41] Background update not available
    [2010-08-27:18:12:41] begin quitting
    [2010-10-20:17:24:08] Starting app install of http://downloads.tweetdeck.com/TweetDeck_0_35.3.air
    [2010-10-20:17:24:08] UI SWF load is complete
    [2010-10-20:17:24:09] UI initialized
    [2010-10-20:17:24:10] beginning UI styling
    [2010-10-20:17:24:10] UI styling complete
    [2010-10-20:17:24:10] Downloading file to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1E.tmp
    [2010-10-20:17:24:11] Received HTTP Response Status event
    [2010-10-20:17:24:11] Response URL is http://downloads.tweetdeck.com/TweetDeck_0_35.3.air
    [2010-10-20:17:24:18] Waiting for user confirmation
    [2010-10-20:17:24:52] User confirmed action: install
    [2010-10-20:17:24:52] beginning UI styling
    [2010-10-20:17:24:52] UI styling complete
    [2010-10-20:17:24:52] Unpackaging to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1F.tmp
    [2010-10-20:17:25:21] unpackaging/validation is complete
    [2010-10-20:17:25:21] application is bound to this version of the runtime
    [2010-10-20:17:25:21] app id TweetDeckFast
    [2010-10-20:17:25:21] pub id FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1
    [2010-10-20:17:25:21] Application not located
    [2010-10-20:17:25:21] Waiting for user confirmation
    [2010-10-20:17:25:34] User confirmed action: install
    [2010-10-20:17:25:34] creating native installer in: C:\Documents and Settings\TamraMB\Local Settings\Temp\fla20.tmp
    [2010-10-20:17:25:36] native installer creation complete
    [2010-10-20:17:25:36] Starting install
    [2010-10-20:17:25:36] using conversion output in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla20.tmp
    [2010-10-20:17:25:36] Destination for installed application is C:\Program Files
    [2010-10-20:17:25:36] Beginning install
    [2010-10-20:17:25:36] Installing C:\Documents and Settings\TamraMB\Local Settings\Temp\fla20.tmp\setup.msi
    [2010-10-20:17:25:41] Execution complete; beginning commit phase
    [2010-10-20:17:25:41] Commit complete
    [2010-10-20:17:25:41] Re-launching application from C:\Program Files\TweetDeck\TweetDeck.exe
    [2010-10-20:17:25:42] starting cleanup of temporary files
    [2010-10-20:17:25:44] application installer exiting
    [2010-10-20:17:26:14] UI SWF load is complete
    [2010-10-20:17:26:18] UI initialized
    [2010-10-20:17:26:18] Begin background update check
    [2010-10-20:17:26:18] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-10-20:17:27:16] Background update successfully downloaded
    [2010-10-20:17:27:16] User notified of available background update
    [2010-10-20:17:28:19] User deferred installation of background update
    [2010-10-20:17:28:19] begin quitting
    [2010-10-20:22:01:38] UI SWF load is complete
    [2010-10-20:22:01:41] UI initialized
    [2010-10-20:22:01:41] Running C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background\updater -update "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-10-20:22:01:44] begin quitting
    [2010-10-20:22:02:08] Performing runtime update
    [2010-10-20:22:02:09] UI SWF load is complete
    [2010-10-20:22:02:12] UI initialized
    [2010-10-20:22:02:12] starting user confirmation
    [2010-10-20:22:02:13] Version of this installer: 2.0.4.13090
    [2010-10-20:22:02:13] Installed version: 2.0.3.13070
    [2010-10-20:22:02:14] Installation type: patchNewer
    [2010-10-20:22:02:19] starting install
    [2010-10-20:22:02:19] Scheduling runtime installation operations
    [2010-10-20:22:02:19] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-10-20:22:02:19] Scheduling an MSI repair operation
    [2010-10-20:22:02:20] Beginning runtime installation
    [2010-10-20:22:02:20] Beginning install
    [2010-10-20:22:02:20] Reinstalling c:\docume~1\tamramb\locals~1\temp\air37.tmp\setup.msi
    [2010-10-20:22:02:43] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3B.tmp\temp
    [2010-10-20:22:02:43] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-10-20:22:02:43] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR37.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-10-20:22:02:43] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3C.tmp\temp
    [2010-10-20:22:02:43] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-10-20:22:02:43] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR37.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-10-20:22:02:43] Execution complete; beginning commit phase
    [2010-10-20:22:02:43] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3B.tmp\temp
    [2010-10-20:22:02:43] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3C.tmp\temp
    [2010-10-20:22:02:43] Commit complete
    [2010-10-20:22:02:43] install complete
    [2010-10-20:22:02:51] begin quitting
    [2010-10-20:22:02:51] attempting launch of TweetDeck
    [2010-10-20:22:03:43] UI SWF load is complete
    [2010-10-20:22:03:49] UI initialized
    [2010-10-20:22:03:51] Pingback request completed with HTTP status 200
    [2010-10-20:22:03:51] Begin background update check
    [2010-10-20:22:03:52] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.4.13090/update
    [2010-10-20:22:03:52] Background update not available
    [2010-10-20:22:03:52] begin quitting
    [2010-10-28:09:52:08] UI SWF load is complete
    [2010-10-28:09:52:11] UI initialized
    [2010-10-28:09:52:11] Begin background update check
    [2010-10-28:09:52:12] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.4.13090/update
    [2010-10-28:09:53:08] Background update successfully downloaded
    [2010-10-28:09:53:08] User notified of available background update
    [2010-10-28:09:55:56] User selected immediate install of background update
    [2010-10-28:09:55:56] Running C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background\updater -update
    [2010-10-28:09:55:58] begin quitting
    [2010-10-28:09:56:10] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-10-28:09:56:10] Commandline is: -update
    [2010-10-28:09:56:10] Installed runtime (2.0.4.13090) located at c:\Program Files\Common Files\Adobe AIR
    [2010-10-28:09:56:38] Starting runtime update. Updating runtime from version 2.0.4.13090 to version 2.5.0.16600
    [2010-10-28:09:56:38] Installing msi at c:\docume~1\tamramb\locals~1\temp\air12.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2010-10-28:10:00:31] Runtime Installer end with exit code 0
    [2010-10-28:10:24:27] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-10-28:10:24:35] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-10-28:10:24:35] Commandline is: -updatecheck
    [2010-10-28:10:24:35] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-10-28:10:24:37] Performing pingback request
    [2010-10-28:10:24:47] Pingback request completed with HTTP status 200
    [2010-10-28:10:24:47] Starting runtime background update check
    [2010-10-28:10:24:47] Clearing unused background update directory
    [2010-10-28:10:24:50] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-10-28:10:24:50] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-10-28:10:24:52] Runtime update not available
    [2010-10-28:10:24:52] Unpackaging cancelled
    [2010-10-28:10:24:53] Runtime Installer end with exit code 0
    [2010-11-04:11:34:43] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-04:11:34:47] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-04:11:34:47] Commandline is: -updatecheck
    [2010-11-04:11:34:47] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-04:11:34:48] Performing pingback request
    [2010-11-04:11:34:48] Starting runtime background update check
    [2010-11-04:11:34:48] Clearing unused background update directory
    [2010-11-04:11:34:48] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-11-04:11:34:48] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-04:11:34:49] Runtime update not available
    [2010-11-04:11:34:49] Unpackaging cancelled
    [2010-11-04:11:34:49] Runtime Installer end with exit code 0
    [2010-11-08:15:41:41] Application Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-08:15:41:41] Commandline is: -update "c:\program files\tweetdeck\tweetdeck.exe" "C:\Documents and Settings\TamraMB\Application Data\TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1\Local Store\#ApplicationUpdater\update.air" 0.36.1
    [2010-11-08:15:41:41] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-08:15:41:41] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2010-11-08:15:41:43] Unpackaging file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3E.tmp
    [2010-11-08:15:41:46] Application signature verified
    [2010-11-08:15:41:46] Unpackaging/validation complete
    [2010-11-08:15:41:46] Converting unpackaged application to a native installation package in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3F.tmp
    [2010-11-08:15:41:51] Native installation package creation succeeded
    [2010-11-08:15:41:51] Starting app update of c:\program files. Updating from TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.35.3 to TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.36.1 using the source file at file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air
    [2010-11-08:15:41:51] Installing msi at C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3F.tmp\setup.msi with guid {18436EF4-C98B-B4C3-DF3E-B41918B6BED6}
    [2010-11-08:15:42:13] Launching subprocess with commandline c:\program files\TweetDeck\TweetDeck.exe
    [2010-11-08:15:42:14] Application Installer end with exit code 0
    [2010-11-11:14:12:59] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-11:14:13:00] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-11:14:13:00] Commandline is: -updatecheck
    [2010-11-11:14:13:00] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:14:13:03] Performing pingback request
    [2010-11-11:14:13:03] Starting runtime background update check
    [2010-11-11:14:13:03] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-11-11:14:13:03] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-11:14:13:06] Runtime background update check failed: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2010-11-11:14:13:06] Runtime Installer end with exit code 0
    [2010-11-11:17:40:52] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-11:17:40:56] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-11:17:40:56] Commandline is: -updatecheck
    [2010-11-11:17:40:56] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:17:40:58] Performing pingback request
    [2010-11-11:17:40:58] Starting runtime background update check
    [2010-11-11:17:40:58] Clearing unused background update directory
    [2010-11-11:17:40:59] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-11-11:17:40:59] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-11:17:41:49] Unpackaging complete
    [2010-11-11:17:41:49] Download success
    [2010-11-11:17:41:49] Runtime updated downloaded
    [2010-11-11:17:42:59] User had deferred installing the update
    [2010-11-11:17:42:59] Runtime Installer end with exit code 0
    [2010-11-11:21:14:00] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-11-11:21:14:36] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-11:21:14:36] Commandline is: -applyupdates "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-11-11:21:14:36] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:21:14:42] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2010-11-11:21:14:54] Starting runtime background update installation
    [2010-11-11:21:14:54] Launching subprocess with commandline C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background\updater -update "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-11-11:21:15:33] Runtime updater successfully launched
    [2010-11-11:21:15:33] Runtime Installer end with exit code 0
    [2010-11-11:21:17:34] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-11:21:17:34] Commandline is: -update "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-11-11:21:17:34] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:21:17:34] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2010-11-11:21:18:05] Starting runtime update. Updating runtime from version 2.5.0.16600 to version 2.5.1.17730
    [2010-11-11:21:18:06] Reinstalling c:\docume~1\tamramb\locals~1\temp\air2c.tmp\setup.msi
    [2010-11-12:03:35:34] Launching subprocess with commandline c:\program files\tweetdeck\tweetdeck.exe
    [2010-11-12:03:35:35] Runtime Installer end with exit code 1
    [2010-11-12:04:21:47] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-12:04:21:51] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-12:04:21:51] Commandline is: -updatecheck
    [2010-11-12:04:21:51] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-12:04:21:53] Performing pingback request
    [2010-11-12:04:21:54] Pingback request completed with HTTP status 200
    [2010-11-12:04:21:54] Starting runtime background update check
    [2010-11-12:04:21:54] Clearing unused background update directory
    [2010-11-12:04:21:55] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-11-12:04:21:55] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-12:04:21:55] Runtime update not available
    [2010-11-12:04:21:55] Unpackaging cancelled
    [2010-11-12:04:21:55] Runtime Installer end with exit code 0
    [2010-11-19:11:19:12] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-19:11:19:34] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-19:11:19:34] Commandline is: -updatecheck
    [2010-11-19:11:19:34] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-19:11:19:37] Performing pingback request
    [2010-11-19:11:19:37] Starting runtime background update check
    [2010-11-19:11:19:37] Clearing unused background update directory
    [2010-11-19:11:19:37] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-11-19:11:19:37] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-19:11:19:41] Runtime update not available
    [2010-11-19:11:19:41] Unpackaging cancelled
    [2010-11-19:11:19:41] Runtime Installer end with exit code 0
    [2010-11-26:14:25:52] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-26:14:25:55] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-26:14:25:55] Commandline is: -updatecheck
    [2010-11-26:14:25:55] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-26:14:25:57] Performing pingback request
    [2010-11-26:14:25:57] Starting runtime background update check
    [2010-11-26:14:25:57] Clearing unused background update directory
    [2010-11-26:14:25:57] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-11-26:14:25:57] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-26:14:25:58] Runtime update not available
    [2010-11-26:14:25:58] Unpackaging cancelled
    [2010-11-26:14:25:58] Runtime Installer end with exit code 0
    [2010-12-03:20:44:53] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-03:20:44:57] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-03:20:44:57] Commandline is: -updatecheck
    [2010-12-03:20:44:57] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-03:20:45:10] Performing pingback request
    [2010-12-03:20:45:10] Starting runtime background update check
    [2010-12-03:20:45:10] Clearing unused background update directory
    [2010-12-03:20:45:11] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-03:20:45:11] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-12-03:20:45:13] Runtime update not available
    [2010-12-03:20:45:13] Unpackaging cancelled
    [2010-12-03:20:45:13] Runtime Installer end with exit code 0
    [2010-12-13:17:04:46] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-13:17:04:52] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-13:17:04:52] Commandline is: -updatecheck
    [2010-12-13:17:04:52] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-13:17:04:56] Performing pingback request
    [2010-12-13:17:04:57] Starting runtime background update check
    [2010-12-13:17:04:57] Clearing unused background update directory
    [2010-12-13:17:04:57] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-13:17:04:57] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-12-13:17:05:00] Runtime update not available
    [2010-12-13:17:05:00] Unpackaging cancelled
    [2010-12-13:17:05:00] Runtime Installer end with exit code 0
    [2010-12-21:10:22:01] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-21:10:22:21] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-21:10:22:21] Commandline is: -updatecheck
    [2010-12-21:10:22:21] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-21:10:22:46] Performing pingback request
    [2010-12-21:10:22:46] Starting runtime background update check
    [2010-12-21:10:22:46] Clearing unused background update directory
    [2010-12-21:10:22:53] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-21:10:22:53] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-12-21:10:23:38] Runtime update not available
    [2010-12-21:10:23:38] Unpackaging cancelled
    [2010-12-21:10:23:38] Runtime Installer end with exit code 0
    [2010-12-28:11:57:39] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-28:11:57:40] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-28:11:57:40] Commandline is: -updatecheck
    [2010-12-28:11:57:41] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-28:11:57:43] Performing pingback request
    [2010-12-28:11:57:43] Starting runtime background update check
    [2010-12-28:11:57:43] Clearing unused background update directory
    [2010-12-28:11:57:46] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-28:11:57:46] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-12-28:11:57:48] Runtime update not available
    [2010-12-28:11:57:48] Unpackaging cancelled
    [2010-12-28:11:57:48] Runtime Installer end with exit code 0
    [2011-01-04:16:53:30] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-04:16:53:31] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-04:16:53:31] Commandline is: -updatecheck
    [2011-01-04:16:53:31] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-04:16:53:33] Performing pingback request
    [2011-01-04:16:53:33] Starting runtime background update check
    [2011-01-04:16:53:33] Clearing unused background update directory
    [2011-01-04:16:53:34] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-04:16:53:34] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-01-04:16:53:35] Runtime update not available
    [2011-01-04:16:53:35] Unpackaging cancelled
    [2011-01-04:16:53:35] Runtime Installer end with exit code 0
    [2011-01-11:18:38:25] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-11:18:38:32] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-11:18:38:32] Commandline is: -updatecheck
    [2011-01-11:18:38:32] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-11:18:38:42] Performing pingback request
    [2011-01-11:18:38:42] Starting runtime background update check
    [2011-01-11:18:38:42] Clearing unused background update directory
    [2011-01-11:18:38:45] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-11:18:38:45] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-01-11:18:38:47] Runtime update not available
    [2011-01-11:18:38:47] Unpackaging cancelled
    [2011-01-11:18:38:47] Runtime Installer end with exit code 0
    [2011-01-18:22:45:37] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-18:22:45:47] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-18:22:45:47] Commandline is: -updatecheck
    [2011-01-18:22:45:47] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-18:22:46:01] Performing pingback request
    [2011-01-18:22:46:01] Starting runtime background update check
    [2011-01-18:22:46:01] Clearing unused background update directory
    [2011-01-18:22:46:01] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-18:22:46:01] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-01-18:22:46:02] Runtime update not available
    [2011-01-18:22:46:02] Unpackaging cancelled
    [2011-01-18:22:46:02] Runtime Installer end with exit code 0
    [2011-01-26:11:06:47] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-26:11:06:48] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-26:11:06:48] Commandline is: -updatecheck
    [2011-01-26:11:06:48] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-26:11:07:07] Performing pingback request
    [2011-01-26:11:07:08] Starting runtime background update check
    [2011-01-26:11:07:08] Clearing unused background update directory
    [2011-01-26:11:07:09] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-26:11:07:09] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-01-26:11:07:10] Runtime update not available
    [2011-01-26:11:07:10] Unpackaging cancelled
    [2011-01-26:11:07:10] Runtime Installer end with exit code 0
    [2011-02-04:13:47:49] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-04:13:47:51] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-04:13:47:51] Commandline is: -updatecheck
    [2011-02-04:13:47:51] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-04:13:48:00] Performing pingback request
    [2011-02-04:13:48:00] Starting runtime background update check
    [2011-02-04:13:48:00] Clearing unused background update directory
    [2011-02-04:13:48:05] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-04:13:48:05] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-02-04:13:48:07] Runtime update not available
    [2011-02-04:13:48:07] Unpackaging cancelled
    [2011-02-04:13:48:07] Runtime Installer end with exit code 0
    [2011-02-09:11:14:43] Application Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-09:11:14:43] Commandline is: -update "c:\program files\tweetdeck\tweetdeck.exe" "C:\Documents and Settings\TamraMB\Application Data\TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1\Local Store\#ApplicationUpdater\update.air" 0.37.2
    [2011-02-09:11:14:43] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-09:11:14:44] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2011-02-09:11:14:46] Unpackaging file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1C.tmp
    [2011-02-09:11:14:50] Application signature verified
    [2011-02-09:11:14:50] Unpackaging/validation complete
    [2011-02-09:11:14:50] Converting unpackaged application to a native installation package in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1D.tmp
    [2011-02-09:11:14:55] Native installation package creation succeeded
    [2011-02-09:11:14:55] Starting app update of c:\program files. Updating from TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.36.1 to TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.37.2 using the source file at file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air
    [2011-02-09:11:14:55] Installing msi at C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1D.tmp\setup.msi with guid {D3EA25C7-485B-5245-780A-B997DED97161}
    [2011-02-09:11:15:19] Launching subprocess with commandline c:\program files\TweetDeck\TweetDeck.exe
    [2011-02-09:11:15:27] Application Installer end with exit code 0
    [2011-02-13:23:23:10] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-13:23:23:12] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-13:23:23:12] Commandline is: -updatecheck
    [2011-02-13:23:23:12] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-13:23:23:15] Performing pingback request
    [2011-02-13:23:23:15] Starting runtime background update check
    [2011-02-13:23:23:15] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-13:23:23:15] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-02-13:23:23:16] Runtime update not available
    [2011-02-13:23:23:16] Unpackaging cancelled
    [2011-02-13:23:23:16] Runtime Installer end with exit code 0
    [2011-02-21:14:07:13] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-21:14:07:24] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-21:14:07:24] Commandline is: -updatecheck
    [2011-02-21:14:07:24] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-21:14:07:29] Performing pingback request
    [2011-02-21:14:07:29] Starting runtime background update check
    [2011-02-21:14:07:29] Clearing unused background update directory
    [2011-02-21:14:07:31] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-21:14:07:31] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-02-21:14:07:35] Runtime update not available
    [2011-02-21:14:07:35] Unpackaging cancelled
    [2011-02-21:14:07:35] Runtime Installer end with exit code 0
    [2011-02-27:18:48:52] Application Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-27:18:48:52] Commandline is: -update "c:\program files\tweetdeck\tweetdeck.exe" "C:\Documents and Settings\TamraMB\Application Data\TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1\Local Store\#ApplicationUpdater\update.air" 0.37.5
    [2011-02-27:18:48:52] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-27:18:48:52] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2011-02-27:18:48:54] Unpackaging file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla34.tmp
    [2011-02-27:18:48:57] Application signature verified
    [2011-02-27:18:48:57] Unpackaging/validation complete
    [2011-02-27:18:48:57] Converting unpackaged application to a native installation package in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla37.tmp
    [2011-02-27:18:48:59] Native installation package creation succeeded
    [2011-02-27:18:48:59] Starting app update of c:\program files. Updating from TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.37.2 to TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.37.5 using the source file at file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air
    [2011-02-27:18:48:59] Installing msi at C:\Documents and Settings\TamraMB\Local Settings\Temp\fla37.tmp\setup.msi with guid {564D71D4-6BFD-E2EA-9EBA-0719178B8D7B}
    [2011-02-27:18:49:47] Launching subprocess with commandline c:\program files\TweetDeck\TweetDeck.exe
    [2011-02-27:18:49:52] Application Installer end with exit code 0
    [2011-02-28:21:17:23] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-28:21:17:26] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-28:21:17:26] Commandline is: -updatecheck
    [2011-02-28:21:17:26] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-28:21:17:31] Performing pingback request
    [2011-02-28:21:17:32] Starting runtime background update check
    [2011-02-28:21:17:33] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-28:21:17:33] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-02-28:21:17:34] Runtime update not available
    [2011-02-28:21:17:34] Unpackaging cancelled
    [2011-02-28:21:17:34] Runtime Installer end with exit code 0
    [2011-03-09:03:45:21] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-03-09:03:45:59] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-09:03:45:59] Commandline is: -updatecheck
    [2011-03-09:03:45:59] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-09:03:46:20] Performing pingback request
    [2011-03-09:03:46:20] Starting runtime background update check
    [2011-03-09:03:46:20] Clearing unused background update directory
    [2011-03-09:03:46:31] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-03-09:03:46:31] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-03-09:03:46:53] Runtime update not available
    [2011-03-09:03:46:53] Unpackaging cancelled
    [2011-03-09:03:46:56] Runtime Installer end with exit code 0
    [2011-03-17:19:30:41] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-03-17:19:30:49] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-17:19:30:49] Commandline is: -updatecheck
    [2011-03-17:19:30:49] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-17:19:30:52] Performing pingback request
    [2011-03-17:19:30:52] Startin

    Hi,
    I'm sorry you're running into problems with the AIR installer.  Could you try out the script that I attached to this post and let me know if it helps you?
    Thanks,
    Chris

  • Ejb3 bean not bound

    Hi I am new to EJB . Now in our project we are using ejb3 and persistance. So tried
    a simple program which I found out from net. But when I am trying to run I am getting
    bean not bound. And in JBoss console it is showing error like
    ObjectName: jboss.jca:service=DataSourceBinding,name=DefaultDS State: NOTYETINSTALLED
    These are all my files.
    Book.java
    package de.laliluna.library;
    import java.io.Serializable;
    import javax.persistence.Entity;
    import javax.persistence.GeneratedValue;
    import javax.persistence.GenerationType;
    import javax.persistence.Id;
    import javax.persistence.SequenceGenerator;
    import javax.persistence.Table;
    @Entity
    @Table(name="book")
    @SequenceGenerator(name = "book_sequence", sequenceName = "book_id_seq")
    public class Book implements Serializable {
         private static final long serialVersionUID = 7422574264557894633L;
         private Integer id;
         private String title;
         private String author;
         public Book() {
              super();
         public Book(Integer id, String title, String author) {
              super();
              this.id = id;
              this.title = title;
              this.author = author;
         @Override
         public String toString() {
              return "Book: " + getId() + " Title " + getTitle() + " Author "
                        + getAuthor();
         public String getAuthor() {
              return author;
         public void setAuthor(String author) {
              this.author = author;
         @Id
         @GeneratedValue(strategy = GenerationType.TABLE, generator = "book_id")
         public Integer getId() {
              return id;
         public void setId(Integer id) {
              this.id = id;
         public String getTitle() {
              return title;
         public void setTitle(String title) {
              this.title = title;
    }BookTestBean.java
    package de.laliluna.library;
    import java.util.Iterator;
    import java.util.List;
    import javax.ejb.Stateless;
    import javax.persistence.EntityManager;
    import javax.persistence.PersistenceContext;
    @Stateless
    public class BookTestBean implements BookTestBeanLocal, BookTestBeanRemote {
         @PersistenceContext(name="FirstEjb3Tutorial")
         EntityManager em;
         public static final String RemoteJNDIName =  BookTestBean.class.getSimpleName() + "/remote";
         public static final String LocalJNDIName =  BookTestBean.class.getSimpleName() + "/local";
         public void test() {
              Book book = new Book(null, "My first bean book", "Sebastian");
              em.persist(book);
              Book book2 = new Book(null, "another book", "Paul");
              em.persist(book2);
              Book book3 = new Book(null, "EJB 3 developer guide, comes soon",
                        "Sebastian");
              em.persist(book3);
              System.out.println("list some books");
              List someBooks = em.createQuery("from Book b where b.author=:name")
                        .setParameter("name", "Sebastian").getResultList();
              for (Iterator iter = someBooks.iterator(); iter.hasNext();)
                   Book element = (Book) iter.next();
                   System.out.println(element);
              System.out.println("List all books");
              List allBooks = em.createQuery("from Book").getResultList();
              for (Iterator iter = allBooks.iterator(); iter.hasNext();)
                   Book element = (Book) iter.next();
                   System.out.println(element);
              System.out.println("delete a book");
              em.remove(book2);
              System.out.println("List all books");
               allBooks = em.createQuery("from Book").getResultList();
              for (Iterator iter = allBooks.iterator(); iter.hasNext();)
                   Book element = (Book) iter.next();
                   System.out.println(element);
    }BookTestBeanLocal.java
    package de.laliluna.library;
    import javax.ejb.Local;
    @Local
    public interface BookTestBeanLocal {
         public void test();     
    }BookTestBeanRemote.java
    package de.laliluna.library;
    import javax.ejb.Remote;
    @Remote
    public interface BookTestBeanRemote {
         public void test();
    }client part--> FirstEJB3TutorialClient.java
    package de.laliluna.library;
    import java.util.Properties;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import de.laliluna.library.BookTestBean;
    import de.laliluna.library.BookTestBeanRemote;
    * @author hennebrueder
    public class FirstEJB3TutorialClient {
          * @param args
         public static void main(String[] args) {
               * get a initial context. By default the settings in the file
               * jndi.properties are used. You can explicitly set up properties
               * instead of using the file.
                Properties properties = new Properties();
                properties.put("java.naming.factory.initial","org.jnp.interfaces.NamingContextFactory");
                properties.put("java.naming.factory.url.pkgs","=org.jboss.naming:org.jnp.interfaces");
                properties.put("java.naming.provider.url","localhost:1099");
              Context context;
              try {
                   context = new InitialContext(properties);
                   BookTestBeanRemote beanRemote = (BookTestBeanRemote) context
                             .lookup(BookTestBean.RemoteJNDIName);
                   beanRemote.test();
              } catch (NamingException e) {
                   e.printStackTrace();
                    * I rethrow it as runtimeexception as there is really no need to
                    * continue if an exception happens and I do not want to catch it
                    * everywhere.
                   throw new RuntimeException(e);
    }I have created persistance.xml and application.xml under META-INF folder.
    persistance.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence>
    <persistence-unit name="FirstEjb3Tutorial">
    <jta-data-source>hsqldb-db</jta-data-source>
    <properties>
    <property name="hibernate.hbm2ddl.auto"
    value="create-drop"/>
    </properties>
    </persistence-unit>
    </persistence>application.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd">
         <display-name>Stateless Session Bean Example</display-name>
         <module>
              <ejb>FirstEjb3Tutorial.jar</ejb>
         </module>
    </application>and in hsqldb-ds i have configured the driver and connection
    <datasources>
       <local-tx-datasource>
          <!-- The jndi name of the DataSource, it is prefixed with java:/ -->
          <!-- Datasources are not available outside the virtual machine -->
          <jndi-name>ejb3ProjectDS</jndi-name>
          <!-- For server mode db, allowing other processes to use hsqldb over tcp.
          This requires the org.jboss.jdbc.HypersonicDatabase mbean.
          <connection-url>jdbc:hsqldb:hsql://${jboss.bind.address}:1701</connection-url>
          -->
          <!-- For totally in-memory db, not saved when jboss stops.
          The org.jboss.jdbc.HypersonicDatabase mbean is required for proper db shutdown
          <connection-url>jdbc:hsqldb:.</connection-url>
          -->
          <!-- For in-process persistent db, saved when jboss stops.
          The org.jboss.jdbc.HypersonicDatabase mbean is required for proper db shutdown
          -->
         <!-- <connection-url>jdbc:hsqldb:${jboss.server.data.dir}${/}hypersonic${/}localDB</connection-url-->
         <connection-url>jdbc:hsqldb:data/tutorial</connection-url>
          <!-- The driver class -->
          <driver-class>org.hsqldb.jdbcDriver</driver-class>
          <!-- The login and password -->
          <user-name>sa</user-name>
          <password></password>
          <!--example of how to specify class that determines if exception means connection should be destroyed-->
          <!--exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.DummyExceptionSorter</exception-sorter-class-name-->
          <!-- this will be run before a managed connection is removed from the pool for use by a client-->
          <!--<check-valid-connection-sql>select * from something</check-valid-connection-sql> -->
          <!-- The minimum connections in a pool/sub-pool. Pools are lazily constructed on first use -->
          <min-pool-size>5</min-pool-size>
          <!-- The maximum connections in a pool/sub-pool -->
          <max-pool-size>20</max-pool-size>
          <!-- The time before an unused connection is destroyed -->
          <!-- NOTE: This is the check period. It will be destroyed somewhere between 1x and 2x this timeout after last use -->
          <!-- TEMPORARY FIX! - Disable idle connection removal, HSQLDB has a problem with not reaping threads on closed connections -->
          <idle-timeout-minutes>0</idle-timeout-minutes>
          <!-- sql to call when connection is created
            <new-connection-sql>some arbitrary sql</new-connection-sql>
          -->
          <!-- sql to call on an existing pooled connection when it is obtained from pool
             <check-valid-connection-sql>some arbitrary sql</check-valid-connection-sql>
          -->
          <!-- example of how to specify a class that determines a connection is valid before it is handed out from the pool
             <valid-connection-checker-class-name>org.jboss.resource.adapter.jdbc.vendor.DummyValidConnectionChecker</valid-connection-checker-class-name>
          -->
          <!-- Whether to check all statements are closed when the connection is returned to the pool,
               this is a debugging feature that should be turned off in production -->
          <track-statements/>
          <!-- Use the getConnection(user, pw) for logins
            <application-managed-security/>
          -->
          <!-- Use the security domain defined in conf/login-config.xml -->
          <security-domain>HsqlDbRealm</security-domain>
          <!-- Use the security domain defined in conf/login-config.xml or the
               getConnection(user, pw) for logins. The security domain takes precedence.
            <security-domain-and-application>HsqlDbRealm</security-domain-and-application>
          -->
          <!-- HSQL DB benefits from prepared statement caching -->
          <prepared-statement-cache-size>32</prepared-statement-cache-size>
          <!-- corresponding type-mapping in the standardjbosscmp-jdbc.xml (optional) -->
          <metadata>
             <type-mapping>Hypersonic SQL</type-mapping>
          </metadata>
          <!-- When using in-process (standalone) mode -->
          <depends>jboss:service=Hypersonic,database=localDB</depends>
          <!-- Uncomment when using hsqldb in server mode
          <depends>jboss:service=Hypersonic</depends>
          -->
       </local-tx-datasource>
       <!-- Uncomment if you want hsqldb accessed over tcp (server mode)
       <mbean code="org.jboss.jdbc.HypersonicDatabase"
         name="jboss:service=Hypersonic">
         <attribute name="Port">1701</attribute>
         <attribute name="BindAddress">${jboss.bind.address}</attribute>    
         <attribute name="Silent">true</attribute>
         <attribute name="Database">default</attribute>
         <attribute name="Trace">false</attribute>
         <attribute name="No_system_exit">true</attribute>
       </mbean>
       -->
       <!-- For hsqldb accessed from jboss only, in-process (standalone) mode -->
       <mbean code="org.jboss.jdbc.HypersonicDatabase"
         name="jboss:service=Hypersonic,database=localDB">
         <attribute name="Database">localDB</attribute>
         <attribute name="InProcessMode">true</attribute>
       </mbean>
    </datasources>.
    Edited by: bhanu on Dec 2, 2008 9:45 AM

    Hi jadespirit ,
    I have the same problem in the same Book example ,my ejb3 project name "BaseHotele" so i follow what u said and this is my persistence.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence>
    <persistence-unit name="FirstEjb3Tutorial">
    *<jta-data-source>java:BaseHoteleDS</jta-data-source>*
    <properties>
    <property name="hibernate.hbm2ddl.auto"
    value="create-drop"/>
    </properties>
    </persistence-unit>
    </persistence>
    But it didn't work i have always HotelTestBean not bound!!
    Help PLEASE i think that i had a mistake in the persistence.xml:i have 2 days searching for solutions without a good result!!!!!!!!!!!!!

Maybe you are looking for

  • Changing HOST Name in Oracle 10G AS

    Hi, I am using "Oracle 10g Application Server". I have installed oracle 10G AS in Windows 2003 Server(32-bit) ,2G RAM Machine is UTI ...Every Thing is Working Fine ..... After the Successful Installation of 10G AS Suddenly i got requirement to the Ch

  • Group by Perfromance issue with Number and Varchar2

    Hi All, I got a question on performance on GROUP BY clause. Group by (Number) and Group by (Varchar2) --> In these 2 versions of Group by will oracle takes into consideration for the data types in the GROUP BY Clause as a performance issue. I.E. Sele

  • FM:  RS_REFRESH_FROM_SELECTOPTIONS Issue

    funcion module : RS_REFRESH_FROM_SELECTOPTIONS is returning selecion screen fields which are already filled with some values i was expecting selection screen fields with initial values. Because i have to check if the fields are initial then only the

  • Weaving (static and dynamic)

    I'm having a lot of difficulty setting up weaving (for entities with OneToOne lazy load relationships). I have searched all day on forums here and else where but to no avail on how to get this correctly setup. I am using Netbeans 5.5.1 for a standalo

  • Will the Iphone 4 go on sale at midnight?

    Wondering if past releases went on sale at midnight on the day of? If they did, anyone know what stores, so I can pitch my tent :P