Exception inspite of successful build

i am running the following code it shows no exception if i dont click inside the applet
but if i click it shows the following exception.
what could be the possible reason for that
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException: component argument pData
        at sun.awt.windows.Win32SurfaceData.initOps(Native Method)
        at sun.awt.windows.Win32SurfaceData.<init>(Win32SurfaceData.java:448)
        at sun.awt.windows.Win32SurfaceData.createData(Win32SurfaceData.java:316)
        at sun.awt.Win32GraphicsConfig.createSurfaceData(Win32GraphicsConfig.java:357)
        at sun.awt.windows.WComponentPeer.replaceSurfaceData(WComponentPeer.java:332)
        at sun.awt.windows.WComponentPeer.replaceSurfaceData(WComponentPeer.java:313)
        at sun.awt.windows.WComponentPeer$2.run(WComponentPeer.java:353)
        at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
        at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
        at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
        at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
        at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
        at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
BUILD SUCCESSFUL (total time: 4 seconds)My code is as follows
import java.awt.BorderLayout;
import javax.swing.JApplet;
* @author sakshi
public class MainJA extends JApplet {
    MyInterface in;
    MyJPanel jp1;
    MyJScrollPane jsp;
     * Initialization method that will be called after the applet is loaded
     * into the browser.
    @Override
    public void init() {
        makeGUI();
    // TODO start asynchronous download of heavy resources
    void makeGUI() {
        setLayout(new BorderLayout());
        jp1 = new MyJPanel();
        in = new MyInterface();
        jsp = new MyJScrollPane(jp1);
        add(jsp, BorderLayout.CENTER);
        add(in, BorderLayout.SOUTH);
    // TODO overwrite start(), stop() and destroy() methods
import java.awt.FlowLayout;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
* @author sakshi
public class MyInterface extends JPanel {
    JLabel l_x,l_y;
    JTextField t_x,t_y;
    public MyInterface() {
       l_x=new JLabel("x");
       l_y=new JLabel("y");
       t_x=new JTextField(10);
       t_y=new JTextField(10);
       setLayout(new FlowLayout((int) CENTER_ALIGNMENT));
       add(l_x);add(t_x);
       add(l_y);add(t_y);
import java.awt.Dimension;
import javax.swing.JPanel;
* @author sakshi
public class MyJPanel extends JPanel {
    public MyJPanel() {
        setPreferredSize(new Dimension(1000,1000));
import java.awt.Component;
import java.awt.Dimension;
import javax.swing.JScrollPane;
import javax.swing.ScrollPaneConstants;
* @author sakshi
public class MyJScrollPane extends JScrollPane {
    public MyJScrollPane(Component v) {
        super(v,ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS,ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
        setPreferredSize(new Dimension(500,500));
}

thanks now there are no exceptions
sir how can i call repaint when scrollbars are moved because the screen becomes distorted on moving it
i have added paintComponent method in JPanel.
package introswing;
import java.awt.BorderLayout;
import javax.swing.JApplet;
* @author sakshi
public class MainJA extends JApplet {
    MyInterface in;
    MyJPanel jp1;
    MyJScrollPane jsp;
     * Initialization method that will be called after the applet is loaded
     * into the browser.
    @Override
    public void init() {
        makeGUI();
    // TODO start asynchronous download of heavy resources
    void makeGUI() {
        setLayout(new BorderLayout());
        in = new MyInterface();
         jp1 = new MyJPanel(in);
        jsp = new MyJScrollPane(jp1);
        add(jsp, BorderLayout.CENTER);
        add(in, BorderLayout.SOUTH);
    // TODO overwrite start(), stop() and destroy() methods
package introswing;
import java.awt.FlowLayout;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
* @author sakshi
public class MyInterface extends JPanel {
    JLabel l_x,l_y;
    JTextField t_x,t_y;
    public MyInterface() {
       l_x=new JLabel("x");
       l_y=new JLabel("y");
       t_x=new JTextField(10);
       t_y=new JTextField(10);
       setLayout(new FlowLayout(FlowLayout.CENTER));
       add(l_x);add(t_x);
       add(l_y);add(t_y);
    void setText(int x,int y)
        t_x.setText(String.valueOf(x));  t_y.setText(String.valueOf(y));
     //   System.out.println("setting text");
package introswing;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionListener;
import javax.swing.JPanel;
* @author sakshi
public class MyJPanel extends JPanel implements MouseMotionListener {
    MyInterface i;
    public MyJPanel(MyInterface in) {
        i=in;
        setPreferredSize(new Dimension(1000,1000));
        addMouseMotionListener(this);
    public void mouseDragged(MouseEvent e) {
      //  throw new UnsupportedOperationException("Not supported yet.");
    public void mouseMoved(MouseEvent e) {
        i.setText(e.getX(), e.getY());
         System.out.println("setting text");
       // throw new UnsupportedOperationException("Not supported yet.");
    public void paintComponent(Graphics g)
        g.drawLine(12,23,66,87);
package introswing;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.event.AdjustmentEvent;
import java.awt.event.AdjustmentListener;
import javax.swing.JScrollPane;
import javax.swing.ScrollPaneConstants;
* @author sakshi
public class MyJScrollPane extends JScrollPane implements AdjustmentListener {
    Component js;
    public MyJScrollPane(Component v) {
        super(v,ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS,ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
        setPreferredSize(new Dimension(500,500));
        js=v;
    public void adjustmentValueChanged(AdjustmentEvent e) {
        js.repaint();
        //throw new UnsupportedOperationException("Not supported yet.");
    /*public void paintComponent(Graphics g)
        g.drawLine(12,23,66,87);
}i tried it once using the adjustment listener interface

Similar Messages

  • Define our own Exceptions in th function builder

    hi
    how to define our own Exceptions in th function builder in the Exception tab and how to use them in functon definiton.
    regards
    ravish

    Hi,
    <b>Exceptions</b>
    The exception of a function module are defined on the Exceptions tab page in the Function Builder. Here you can select exception classes to define whether class-based exceptions are declared or non-class-based exception are defined. Class-based exceptions are represented in the above syntax by RAISING, and non-class-based exceptions are represented by EXCEPTIONS.
    The addition RAISING is used to declare class-based exceptions that can be propagated from the function module to the caller. Exceptions in the categories CX_STATIC_CHECK and CX_DYNAMIC_CHECK must be explicitly declared, otherwise a propagation can lead to an interface violation. A violation of the interface leads to the treatable exception CX_SY_NO_HANDLER. Exceptions of the category CX_NO_CHECK are implicitly always declared. The declaration of exceptions of the category CX_STATIC_CHECK is statically checked in the syntax check. For exceptions of the category CX_DYNAMIC_CHECK, the check is not performed until runtime. In a function module in which class-based exceptions are declared with the RAISING addition, the statement CATCH SYSTEM-EXCEPTIONS cannot be used. Instead, the relevant treatable exceptions should be handled in a TRY control structure.
    The addition EXCEPTIONS is used to define a list of non-class-based exceptions that can be triggered in the function module using the statements RAISE or MESSAGE RAISING. Exceptions defined in this way - as with formal parameters - are bound to the function module and cannot be propagated. If an exception of this type is triggered in a function module, and no return value has been assigned to it with the homonymous addition EXCEPTIONS of the CALL FUNCTION statement when the call was made, this leads to a runtime error.
    <b>Note</b>
    For new developments after release 6.10, SAP recommends that you work with class-based exceptions that are independent of the function module.
    Regards,
    Padmam.<b></b>

  • How to Deploy after successful Building by CBS

    Hello Experts.
    I have developed a TRACK in NWDI 7.01 SP8 for Deploying on SAP NetWeaver Portal 7.3.
    I have choosen 3 Runtime-Systems in the CMS Landscape Configurator:
    - Development
    - Consolidation
    - Production
    The central Build of the CBS was now successful.
    My 2 Standard-SCs (SAP_BUILD_TOOL_730, J2EE_ENGINE_FACADE_730) and my Activity are now in queue of the consolidation system.
    When I click on the tap "Development", there is nothing (that's clear, because I have already checked-in my 2 SCs in the Development System).
    Now: Can anybody explain me, how I can deploy my Application (JSP) on Development-System ?
    I thought, it will be deployed automatically after the successful build in the CBS, but it isn't so

    Hello John!
    Thank you very much for helping.
    I have deployed my JSP-Site successful:)
    For all the others:
    1) After successful Deployment by the CBS, you have to wait some minutes, then your application gets depoyed automatically on your specified Runtime-System in CMS -> Landscape Configurator
    2) To check, if you have configured your Runtime-Systems correct, please go to:
    - CMS -> Landscape Configurator -> Track Data -> Runtime Systems
    - Type In: Deploy Port, Deploy Port, Deploy User, Deploy Password (Remember: For 7.3 - Systems, there is no SDM, but a Deploy.Controller)
    - Click on "View/Edit Deployment Substitution Parameters"
    => If you have configured your Runtime-System(s) right, you can see Variable Name(s) and Value(s), which get added automatically
    Best Regards.

  • Unhandled exception in Word when building PDF output

    We have a RoboHelp 7 project that has worked fine for quite some time.  Now, after what seemed to be a minor edit, we are no longer able to generate PDF output because Word dies with an exception.  Other projects on the same system build just fine.
    The project runs the first series of Generating PDF but the second one never occurs and the error below is generated by word.
    Any ideas on what we can do to get this to start working again would be appreciated.
    Dana

    Hi there
    While I'm at a total loss as to tell you how to change the behavior, I might ask if you are able to simply generate a Word document without PDF in the picture? If so, gen the Word document, then create the PDF from that as a separate operation.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Dispatching GridSelectionEvent throw exception at runtime - A build issue with FB 4.5

    This is a strang probelm I am facing with.
    My code dispatches GridSelectionEvent after setting girds' selected item in one logic path. Following is code lines -
    myDataGrid.selectedItem = instanceTag;
    myDataGrid.dispatchEvent(new GridSelectionEvent(GridSelectionEvent.SELECTION_CHANGE));
    Flash player throws following error on above statements encounter -
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at spark.accessibility::DataGridAccImpl/eventHandler()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.core::UIComponent/dispatchEvent()
    I am saying it is a strang for me because when I use swf file generated by Flex Builder (4.5)'s export to release build, it does not throw error and code works fine as expected.
    But, when I user swf file generated by Ant script, I face the above issue.
    The Flex builder settings is as shown in following image -
    Ant  mxmlc script is as follow -
    <mxmlc      
               file="${basedir}/src/AppMonConfigWizard.mxml"
                static-rsls="false"
               keep-generated-actionscript="false"
               output="${basedir}/bin-release/AppMonConfigWizard.swf" >
         <locale>en_US</locale>
          <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
          <source-path path-element="${FLEX_HOME}/frameworks"/>
          <source-path path-element="${basedir}/src/locale/{locale}"></source-path>
          <compiler.library-path file="${basedir}/../wizard_framework/bin/wizard_framework.swc" append="true"/>
         <compiler.library-path file="${basedir}/../../utils/bin/utils.swc" append="true"/>
          <include-resource-bundles>ErrorMessages</include-resource-bundles>
          <include-resource-bundles>Strings</include-resource-bundles>
    </mxmlc>
    As mentioned earlier that following statements cause exception -
         myDataGrid.selectedItem = instanceTag;
         myDataGrid.dispatchEvent(new GridSelectionEvent(GridSelectionEvent.SELECTION_CHANGE));
    If I change it to
         myDataGrid.setSelectedIndex(<some index value>)   /*selectedItem replaced with setSelectedIndex*/
         myDataGrid.dispatchEvent(new GridSelectionEvent(GridSelectionEvent.SELECTION_CHANGE));
    it does not throw exception.  I would like to mention that myDataGrid.selectedItem = instanceTag; does sets the selected item but then in that case issue arises when dispatching event.
    I my application, similar statemetns were lot at many places (as there were no such issue with SDK 3.1 which was using earlier) so instead of making changes there, it would be better to imitate the build that Flex builder uses when exported the release build.
    Thanks in advance,
    Prithveesingh Zankat.

    Solved it: had set the only public surface contracts checkbox by mistake and the cosntructor was protected...
    Luis Abreu

  • How to handle Exceptions in Oracle Report Builder 10.1.2.0.2?

    We are using Oracle Reports Builder 10g 10.1.2.0.2, Windows XP with Oracle 10g database. The reports are converted into JSP reports.
    How and where do we write exception handling code in Reports Builder? We want to achieve the following:
    1. Display a customized JSP page with customized error message
    2. Allow users to cancel the report execution, if possible and then direct them to the parameter form with all the values they entered before.
    Once we write these codes in the Oracle Report Builder where will it show in .jsp files?
    Thanks
    Hemant

    this link may be helpful:
    http://www.oracle.com/webapps/online-help/reports/10.1.2/topics/htmlhelp_rwbuild_hs/rwwhthow/whatare/pformobj/a_pf_web.htm

  • Exception when running successfully deployed application in websphere 6

    I get the following error in an application I have created, and successfully deployed in websphere 6. Does anyone have any idea of what it means?
    [2005-08-15 21:31:37:891 CEST] 00000030 SystemErr R javax.naming.NameNotFoundException: Context: HP000D9D1DFE4BNode02Cell/nodes/BIZNode/servers/server1, name: ejb/se/htrc/beans/ProductCategoryLocalHome: First component in name beans/ProductCategoryLocalHome not found. Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0
         at com.ibm.ws.naming.ipcos.WsnOptimizedNamingImpl.handleNameNotFound(WsnOptimizedNamingImpl.java:2000)
         at com.ibm.ws.naming.ipcos.WsnOptimizedNamingImpl.getNextWsnOptimizedNamingContext(WsnOptimizedNamingImpl.java:1321)
         at com.ibm.ws.naming.cosbase.WsnOptimizedNamingImplBase.getTargetContext(WsnOptimizedNamingImplBase.java:3024)
         at com.ibm.ws.naming.cosbase.WsnOptimizedNamingImplBase$LeafOperationData.<init>(WsnOptimizedNamingImplBase.java:3489)
         at com.ibm.ws.naming.cosbase.WsnOptimizedNamingImplBase.resolve_complete_info(WsnOptimizedNamingImplBase.java:1427)
         at com.ibm.WsnOptimizedNaming._NamingContextStub.resolve_complete_info(Unknown Source)
         at com.ibm.ws.naming.jndicos.CNContextImpl.cosResolve(CNContextImpl.java:4045)
         at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1776)
         at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1737)
         at com.ibm.ws.naming.jndicos.CNContextImpl.lookupExt(CNContextImpl.java:1444)
         at com.ibm.ws.naming.jndicos.CNContextImpl.lookup(CNContextImpl.java:1324)
         at com.ibm.ws.naming.util.WsnInitCtx.lookup(WsnInitCtx.java:144)
         at javax.naming.InitialContext.lookup(InitialContext.java:361)
         at com.ibm._jsp._index._jspService(_index.java:70)
         at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
         at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117)
         at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171)
         at com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor.handleRequest(JSPExtensionProcessor.java:230)
         at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2841)
         at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220)
         at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:276)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:201)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:103)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:601)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.ipcos.WsnOptimizedNamingImpl.handleNameNotFound(WsnOptimizedNamingImpl.java:2000)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.ipcos.WsnOptimizedNamingImpl.getNextWsnOptimizedNamingContext(WsnOptimizedNamingImpl.java:1321)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.cosbase.WsnOptimizedNamingImplBase.getTargetContext(WsnOptimizedNamingImplBase.java:3024)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.cosbase.WsnOptimizedNamingImplBase$LeafOperationData.<init>(WsnOptimizedNamingImplBase.java:3489)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.cosbase.WsnOptimizedNamingImplBase.resolve_complete_info(WsnOptimizedNamingImplBase.java:1427)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.WsnOptimizedNaming._NamingContextStub.resolve_complete_info(Unknown Source)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.jndicos.CNContextImpl.cosResolve(CNContextImpl.java:4045)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1776)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1737)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.jndicos.CNContextImpl.lookupExt(CNContextImpl.java:1444)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.jndicos.CNContextImpl.lookup(CNContextImpl.java:1324)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.util.WsnInitCtx.lookup(WsnInitCtx.java:144)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at javax.naming.InitialContext.lookup(InitialContext.java:361)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm._jsp._index._jspService(_index.java:70)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor.handleRequest(JSPExtensionProcessor.java:230)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2841)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:276)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:201)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:103)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:601)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))

    I changed the jndi name to java:comp/env/package...
    Didn�t help, now I get this error:
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R javax.naming.NameNotFoundException: Name comp/env/se not found in context "java:".
         at com.ibm.ws.naming.ipbase.NameSpace.getParentCtxInternal(NameSpace.java:1716)
         at com.ibm.ws.naming.ipbase.NameSpace.lookupInternal(NameSpace.java:1062)
         at com.ibm.ws.naming.ipbase.NameSpace.lookup(NameSpace.java:985)
         at com.ibm.ws.naming.urlbase.UrlContextImpl.lookup(UrlContextImpl.java:1263)
         at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:198)
         at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:139)
         at javax.naming.InitialContext.lookup(InitialContext.java:361)
         at com.ibm._jsp._index._jspService(_index.java:70)
         at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
         at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117)
         at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171)
         at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2841)
         at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220)
         at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:276)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:201)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:103)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.naming.ipbase.NameSpace.getParentCtxInternal(NameSpace.java:1716)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.naming.ipbase.NameSpace.lookupInternal(NameSpace.java:1062)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.naming.ipbase.NameSpace.lookup(NameSpace.java:985)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.naming.urlbase.UrlContextImpl.lookup(UrlContextImpl.java:1263)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:198)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:139)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at javax.naming.InitialContext.lookup(InitialContext.java:361)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm._jsp._index._jspService(_index.java:70)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2841)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:276)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:201)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:103)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R javax.naming.NameNotFoundException: Name comp/env/se not found in context "java:".
         at com.ibm.ws.naming.ipbase.NameSpace.getParentCtxInternal(NameSpace.java:1716)
         at com.ibm.ws.naming.ipbase.NameSpace.lookupInternal(NameSpace.java:1062)
         at com.ibm.ws.naming.ipbase.NameSpace.lookup(NameSpace.java:985)
         at com.ibm.ws.naming.urlbase.UrlContextImpl.lookup(UrlContextImpl.java:1263)
         at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:198)
         at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:139)
         at javax.naming.InitialContext.lookup(InitialContext.java:361)
         at com.ibm._jsp._index._jspService(_index.java:70)
         at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
         at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117)
         at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:80)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1657)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:94)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.ipbase.NameSpace.getParentCtxInternal(NameSpace.java:1716)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.ipbase.NameSpace.lookupInternal(NameSpace.java:1062)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.ipbase.NameSpace.lookup(NameSpace.java:985)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.urlbase.UrlContextImpl.lookup(UrlContextImpl.java:1263)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:198)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:139)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at javax.naming.InitialContext.lookup(InitialContext.java:361)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm._jsp._index._jspService(_index.java:70)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:80)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1657)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:94)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))

  • Changes not showing after successfully building up.

    Hello everybody,
    I am new to the forum and also a new novice in Flex.
    I have written an application. I have a page called
    SchedAppointments.mxml, well, after writing the code and building
    the project successfully the page was displayed successfully as per
    requirements. After that, I made certain changes in the page
    (SchedAppointments.mxml), then saved it and build it successfully
    again. Now the problem is that the changes is not showing in the
    browser. What I am viewing in the browser is exactly the same as I
    saw before making the new changes.
    Can anybody tell me why its happening?
    Thanking you in advance,
    Manoj

    If there are any errors in yur code, FB will not compile
    anything new.
    Verify that you do not have any errors in the Problems pane.
    Then try Menu, Project, Clean.
    Tracy

  • Trying to Access SharePoint 2013 Rest Api in HTML page but getting Mime Type Exception with Status Success

    I am trying to invoke the SharePoint Rest Api using HTML page. I have included the Access Control Allow Origin to the web.config file. I am getting Readty State 4 and
    Status Success but still I am getting the below error.
    Refused to execute script from 'http://<server>/_api//web/lists?callback=jQuery172045857910416089_1430217181282&_=1430217363882' because its MIME
    type ('application/atom+xml') is not executable, and strict MIME type checking is enabled.
        <script>
            $(document).ready(function () {
                $("#KMPDiscussions").click(function () {
                    //$.support.cors = true;
                    $.ajax({
                        url: "http://<server>/_api//web/lists",
                        dataType: "jsonp",
                        type: "GET",
                        method: "GET",
                        contentType: "application/javascript",
                        headers: {
                            "content-type":
    "application/json;odata=verbose",
                            "accept": "application/json;odata=verbose",
                        success: function onSuccess(data) {
                            alert("Inside Alert");
                        error: function onError(data){
                            alert("Error: "
    + data);
        </script>
    It always hits the error on callback.
    Is there any other way that I can invoke SharePoint Rest Api from a Cross Domain. Please Help.

    Hi Chris,
    Thanks for the reply,Here iam using different files to be uploaded in library.
    please find the below snapshot of json response and ULS logs.
    12/22/2013 18:31:15.02 w3wp.exe (0x3338) 0x401C SharePoint Foundation Files 
    abq2i High Could not get DocumentContent row: 0x80004005. 79f7629c-4694-c026-
    3349-2049178ee919
    12/22/2013 18:31:15.02 w3wp.exe (0x3338) 0x401C SharePoint Foundation Files 
    aiv4w Medium Spent 0 ms to bind -1 byte file stream 79f7629c-4694-c026-3349-
    2049178ee919 
    12/22/2013 18:31:15.02 w3wp.exe (0x3338) 0x401C SharePoint Foundation Files 
    aise3 Medium Failure when fetching document. 0x80070012 79f7629c-4694-c026-
    3349-2049178ee919
    12/22/2013 18:31:15.39 w3wp.exe (0x3338) 0x0D4C SharePoint Foundation 
    Database ab1a9 High Failed to get document content data.
    System.ComponentModel.Win32Exception (0x80004005): Cannot complete this function     at
    Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object
    ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres) 
    79f7629c-76ab-c026-3349-2c9132b13e9a
    12/22/2013 18:31:15.39 w3wp.exe (0x3338) 0x4184 SharePoint Foundation 
    Database ab1a9 High Failed to get document content data.
    System.ComponentModel.Win32Exception (0x80004005): Cannot complete this function     at
    Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object
    ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres) 
    79f7629c-76ab-c026-3349-281167b6cd09
    Thanks again,
    Naresh.

  • Java Exception When Opening Integration Builder

    hi all,
    Recently had to re-install SAP XI. Now everything is up and running, but need help with one issue.
    When the exchange is launched, SLD and the RWB work fine and able to log in successfully. But whenever try logging into the IR or ID - it throws an "java.lang.NullPointerException".
    Any suggestions on how to resolve the issue?

    Hello together,
    we have a problem downloading Integration Directory webstart appliction. It´s a customers system. Inside the customers network everything works fine.
    From outside I can launch the XI-Tools site. SLD and Runtime Workbench works. While downloading the required jar-Files theres an error: Download-Error - Invalid JAR-File at http://server:J2EE-Port/rep/repository/aii_ibrep_client.jar java.util.zip.ZipException: error in opening zip file
    Is there an additional Port (apart from the J2EE-Port) have to open for downloading the jar-files and connecting the server?
    THX,
    Andreas

  • Exception   When trying to build  java schedular

    Dear Members,
    i am trying recieving exception when am executing following code
    package javaapplication1;
    import java.util.Date;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    import org.quartz.JobDetail;
    import org.quartz.Scheduler;
    import org.quartz.SchedulerFactory;
    import org.quartz.SimpleTrigger;
    import org.quartz.TriggerUtils;
    import org.quartz.impl.StdSchedulerFactory;
    import org.apache.log4j.*;
    * This Example will demonstrate how to start and shutdown the Quartz
    * scheduler and how to schedule a job to run in Quartz.
    * @author rakesh nair
    public class Main {
    public void run() throws Exception {
    // LogFactory.
    PropertyConfigurator.configure("C:\\rakesh\\newpr\\env\\log4j.properties");
    // Log log = LogFactory.getLog(Main.class);
    // log.info("------- Initializing ----------------------");
    // First we must get a reference to a scheduler
    SchedulerFactory sf = new StdSchedulerFactory();
    Scheduler sched = sf.getScheduler();
    // log.info("------- Initialization Complete -----------");
    // log.info("------- Scheduling Jobs -------------------");
    // computer a time that is on the next round minute
    Date runTime = TriggerUtils.getEvenMinuteDate(new Date());
    // define the job and tie it to our HelloJob class
    JobDetail job = new JobDetail("job1", "group1", test.class);
    // Trigger the job to run on the next round minute
    SimpleTrigger trigger =
    new SimpleTrigger("trigger1", "group1", runTime);
    // Tell quartz to schedule the job using our trigger
    sched.scheduleJob(job, trigger);
    //log.info(job.getFullName() + " will run at: " + runTime);
    // Start up the scheduler (nothing can actually run until the
    // scheduler has been started)
    sched.start();
    //log.info("------- Started Scheduler -----------------");
    // wait long enough so that the scheduler as an opportunity to
    // run the job!
    //log.info("------- Waiting 90 seconds... -------------");
    try {
    // wait 90 seconds to show jobs
    Thread.sleep(90L * 1000L);
    // executing...
    } catch (Exception e) {
    // shut down the scheduler
    //log.info("------- Shutting Down ---------------------");
    sched.shutdown(true);
    //log.info("------- Shutdown Complete -----------------");
    public static void main(String[] args) throws Exception {
    Main example = new Main();
    example.run();
    And Exception as follows
    init:
    deps-jar:
    compile-single:
    run-single:
    log4j:ERROR Failed to excute sql
    java.sql.SQLException: No suitable driver
    at java.sql.DriverManager.getConnection(DriverManager.java:545)
    at java.sql.DriverManager.getConnection(DriverManager.java:171)
    at org.apache.log4j.jdbc.JDBCAppender.getConnection(JDBCAppender.java:197)
    at org.apache.log4j.jdbc.JDBCAppender.execute(JDBCAppender.java:160)
    at org.apache.log4j.jdbc.JDBCAppender.flushBuffer(JDBCAppender.java:235)
    at org.apache.log4j.jdbc.JDBCAppender.append(JDBCAppender.java:131)
    at org.apache.log4j.AppenderSkeleton.doAppend(AppenderSkeleton.java:221)
    at org.apache.log4j.helpers.AppenderAttachableImpl.appendLoopOnAppenders(AppenderAttachableImpl.java:57)
    at org.apache.log4j.Category.callAppenders(Category.java:187)
    at org.apache.log4j.Category.forcedLog(Category.java:372)
    at org.apache.log4j.Category.log(Category.java:864)
    at org.apache.commons.logging.impl.Log4JLogger.info(Log4JLogger.java:152)
    at org.quartz.simpl.SimpleThreadPool.initialize(SimpleThreadPool.java:258)
    at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:1154)
    at org.quartz.impl.StdSchedulerFactory.getScheduler(StdSchedulerFactory.java:1355)
    at javaapplication1.Main.run(Main.java:49)
    at javaapplication1.Main.main(Main.java:93)
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/collections/SetUtils
    at org.quartz.JobDetail.<init>(JobDetail.java:85)
    at javaapplication1.Main.run(Main.java:59)
    at javaapplication1.Main.main(Main.java:93)

    Don't post more than once:
    http://forum.java.sun.com/thread.jspa?threadID=5206089

  • Some issues after a successful build

    Dear Folks
    I had a nice easy time upgrading to the new system below and have managed to install XPSP3.  System seems to be stable now but I haven't connected my DVD-RW and/or my maxtor 80GB H-Disk.  I have currently three issues that I need some advice on:
    1) With my far superior 8800GT graphics card and latest nvidia drivers, my display on the screen has become somewhat shoddy e.g. the writing of the desktop icon names is 'out' (see http://www.downloadthis.co.uk/desktop.PNG ).  The TFT LCD Monitor I am using is the same as before and can be seen at http://www.digimate.co.uk/product_new/monitor/lcd/L-1715.htm .  The image was a lot crisp on my old rig with my X1950Pro.  It's odd and bugging me a little.  Do I need a new TFT Monitor?  I've tried tinkering with it and refresh rates but makes little difference.
    2) Speed.  I installed Windows and have been noticing the startup times and working times ... and to be honest, I cannot notice any speed increase whatsovever.  Infact I think it loads and runs slower. any ideas? This includes times from boot to desktop, installing programmes direct from HDisk, running programmes too.
    3) My Hard-Disk.  Seems to cache a lot when copying and loading and is noisier than my maxtor.  It's SATAII instead of the old SATAI so I dont know why it doesnt run better.  I bought the samsung with advice from the forum but I'm not impressed so far!
    Thanks

    Quote from: AaronYuri on 27-July-08, 23:23:40
    2) Have you installed the mainboard drivers?
    By that if you mean the NVIDIA nForce 520/560 (MCP65) System Drivers from http://global.msi.com.tw/index.php?func=downloaddetail&type=driver&maincat_no=1&prod_no=1244 then YES.
    Quote from: AaronYuri on 27-July-08, 23:23:40
    3) Not sure... There's no difference between S-ATAI and S-ATAII in terms of speed.
    Well apart from that my new HD has 16MB Cache and the Old Maxtor I had was only 8MB.  I thought that might help the pace a little.  Would this http://www.ebuyer.com/product/130826 or this http://www.ebuyer.com/product/141471 have been better ?

  • Anybody Successfully Build Chromium 9.0.597.84?

    Custom PKGBUILD, [extra] PKGBUILD, [testing] PKGBUILD, all throw the same error:
    ...Switch will be removed from the Perl core distribution in the next major release. Please install it from CPAN. It is being used at /home/bbs/chromium/src/chromium-9.0.597.84/third_party/WebKit/WebCore/dom/make_names.pl....
    Any idea what is going on here?

    I have resolved the problem!!
    I noticed that as iMovie starts it loads varios things and runs normally until it starts to load videos from iPhoto. Now this seems to be the problem which has only occurred since the last iPhoto update.
    There is clearly a conflict between iPhoto (701.64) videos and iMovie 9.0.8.
    How did I resolve the problem:
    I have removed all of my 275 movies that were in iPhoto and put them in a new folder My Videos within the existing Pictures folder, thus making them visible when searching for videos in iMovie to import. A bit of a job but resolved the problem completely.
    No need to reboot or anything. Just click Ignore if you get a text box reminding you theat there was a problem last time you started iMovie.
    Next time you import any video dont put it into iPhoto but your custom folder.
    I know know how frustrating this has been but I find iMovie quite adequate for editing most things and use a sports analysis software to look at edited clips. I did not want to buy anything else.
    Come on Apple sort out this conflict please and make iPhoto and iMovie friends again!!

  • App build is successful but "no application was specified"

    Hello, I'm relatively new to the ios developer game and I recently started working with a project that i obtained from the web (Anypic from Parse).
    I've followed the developers setup steps and managed to get a successful build in xcode, however once the build is complete I get the message "no application was specified". The simulator opens and loads the default screen (with simulated apps, calender etc) however Anypic does not appear.
    Having trawled the net for an answer I've ensured that I have a "build scheme" and that it is configured correctly. I have yet to try loading the app to a device but I thought that it would be best to sort out one issue at a time.
    Any suggestions would be most appreciated.
    I'm using xcode 5.1.1 on Maverick.
    Thank you!

    Found the solution for anyone who comes across this issue in the future.
    I needed to identify my bundle in my facebook application (and "make this app and all its live features available to the general public").

  • Release Management and Dsc - How to queue a build when a release is in progress?

    I have VSO and Release Management 2013.4 working and deploying to Azure vm's via DSC
    The build profile is set to trigger on commit to the Git repo and the release template is set to be triggered on successful build from TFS
    However if a developer commits in quick succession the resultant builds cause releases to overlap in RM? - this causes some of the releases to fail with a DSC error ("the consistency check or pull cmdlet is in progress....")
    Is there a way to force RM to prevent concurrent releases?  (based on the same release template and build profile)

    Thats correct - in this instance its VSO as source control and using the hosted release management to attempt to deploy to azure vms
    And yes build takes about 5 minutes but the release template can take up to 15 minutes to run - this means that a second build can cause the same release template to run again (its set to trigger on build)
    Error log from RM
    xception Message: New deployment is not allowed as an another deployment is in progress. Retry the deployment after sometime. (type OperationFailedException)
    Exception Stack Trace: at Microsoft.TeamFoundation.Release.EnvironmentProvider.Azure.Implementation.AzureDeploymentProvider.ReadDeploymentResponse(DeploymentResponse response)
    at Microsoft.TeamFoundation.Release.EnvironmentProvider.Azure.Implementation.AzureDeploymentProvider.DownloadBuilds(DeploymentMachineSpecification deploymentMachineSpecification, AzureStorageSpecification azureStorageSpecification)
    at Microsoft.TeamFoundation.Release.EnvironmentProvider.Azure.Implementation.AzureDeploymentProvider.RunScript(String scriptPath, String configurationPath, MachineSpecification machine, StorageSpecification storage, Dictionary`2 configurationVariables)
    at Microsoft.TeamFoundation.Release.Tasks.DeployDsc.Execute(DscComponentParametersV2 dscComponentParameters, AzureStorage azureStorage, String[] dnsNameAndUpdatedWinRmPort, String userName, String password, String dscScriptPath, String dscConfigurationPath, Boolean skipCACheck)
    at Microsoft.TeamFoundation.Release.Automation.Tasks.DeployDscTask.DscExecute(DscComponentParametersV2 dscComponentParameters, AzureStorage azureStorage, String[] dnsNameAndUpdatedWinRmPort, String userName, String password, String dscScriptPath, String dscConfigurationPath, Boolean skipCACheck)
    at Microsoft.TeamFoundation.Release.Automation.Tasks.DeployDscTask.DscDeploy(AzureStorage azureStorage, DscComponentParametersV2 dscComponentParameters, String userName, String password, String dscScriptPath, String dscConfigurationPath, String skipCACheck)
    at Microsoft.TeamFoundation.Release.Automation.Tasks.DeployDscTask.Execute(IAutomationContext context)
    at Microsoft.TeamFoundation.Release.DistributedTask.TaskProcessor.TaskExecutor.Execute(TaskExecutionContext context)

Maybe you are looking for

  • Error on installing adobe reader on windows 8

    Purchased new HP laptop with windows 8 Installed.  Attempted to download adobe acrobat reader for windows 8 (only version 11. available).  Getting error of "unable to load application".  Followed trouble shooting to make sure java script enabled and

  • Problem with File RFC File scenario without using BPM

    Hi all,   I am trying a File RFC File scenario without using BPM with the help of the following thread: File - RFC - File without a BPM - Possible from SP 19.   The XI system is PI 7.0 sp 12. When I am trying to acheive the above scenario, I am getti

  • DV7 - 3085dx.. Volume Display Lights do NOT change, but volume does

    Hi All, I have all the drivers installed from HP Website, but when I push the Plus or Minus volume touch buttons on the notebook, the sound turns up and down, but the lights dont move at all, always showing FULL volume. Can anyone help as to why? I a

  • Adobe Form Translation : Text Fields

    Hi All, I am trying to translate Type : Textfield in Adobe using SE63. Type: Text  is translated but not Type : TextField. any suggestion why this is not happening or is this the  way SAP is built for Translations in Adobe forms. Thanks, Tk.

  • URGENT: external LDAP configuration from WLS 6.1

    Hi, I am trying to configure the LDAP Realm(Netscape directory server) for Weblogic Server6.1. For any user to perform a bind on my Directory Server it needs CN + serial number. But the Users actually don't know all this and they use LoginID (which i