System info through applet

Hello,
I need to retrieve Windows system info (like memory usage, CPU usage) through my applet and return it back to the server.
I am going to retrieve that info using Windows API, create an executable and run it through my applet using Runtime.exec
Can someone tell me basic security information that I need to use in my applet code or any other file.
Let me know of I should look at some other technology to do this. Client has to be dumb.
Thanks,
Pradeep

There should be a lesson about this somewhere.
When you visit a web page, does it ask you if you want to have an applet loaded?
Answer: No
So, if you visit a page, and an applet is silently loaded which can then execute commands on your computer, is this good?
Answer: No
So why do you want to do this?
Is it good for anyone?
I mean, if I want to do "ls", can't I just open a command line? Do I need an applet to do it for me?
Either you have devious desires or your hacking together something that probably shouldn't be.
If you want to learn start here:
http://java.sun.com/docs/books/tutorial/security1.2/index.html
With the article entitled:
Quick Tour of Controlling Applets
Ian

Similar Messages

  • How to execute System command through Applet

    Hi all,
    How can I execute a System command through Applet.
    I have written a code Runtime.exec("ls") in my applet but it gives me
    this execption even if I certify the applet ->
    java.security.AccessControlException: access denied (java.io.FilePermission <<ALL FILES>> execute)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:272)
         at java.security.AccessController.checkPermission(AccessController.java:399)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:545)
         at java.lang.SecurityManager.checkExec(SecurityManager.java:802)
         at java.lang.Runtime.exec(Runtime.java:548)
         at java.lang.Runtime.exec(Runtime.java:418)
         at java.lang.Runtime.exec(Runtime.java:361)
         at java.lang.Runtime.exec(Runtime.java:325)
         at Test.init(Test.java:24)
         at sun.applet.AppletPanel.run(AppletPanel.java:344)
         at sun.plugin.navig.motif.MotifAppletViewer.maf_run(MotifAppletViewer.java:123)
         at sun.plugin.navig.motif.MotifAppletViewer.run(MotifAppletViewer.java:119)
         at java.lang.Thread.run(Thread.java:484)
    Thanks,
    Manoj.

    There should be a lesson about this somewhere.
    When you visit a web page, does it ask you if you want to have an applet loaded?
    Answer: No
    So, if you visit a page, and an applet is silently loaded which can then execute commands on your computer, is this good?
    Answer: No
    So why do you want to do this?
    Is it good for anyone?
    I mean, if I want to do "ls", can't I just open a command line? Do I need an applet to do it for me?
    Either you have devious desires or your hacking together something that probably shouldn't be.
    If you want to learn start here:
    http://java.sun.com/docs/books/tutorial/security1.2/index.html
    With the article entitled:
    Quick Tour of Controlling Applets
    Ian

  • Problem in printing to LPT1 through applet?

    Hello everyone,
    I am having problem in printing through Applet in LPT1 of remote client machine using "gridDoubleClicked" method of customized "GridPanel" which is third party component. The class structure is given below:
    public class GridPanel extends Panel implements GridPanelInterface, AdjustmentListener, KeyListener, FocusListener, Serializable
    }I am using above class to populate data in table and perform "double click" action. I am using JDK 1.5 and a self signed jar to access from remote machines through applet.The code, I am using is given below:
    public class testApplet extends Applet {
        printToLPT1 lpanel =new printToLPT1();
        public void init() {
          this.setLayout(new BorderLayout());
          this.add(lpanel, BorderLayout.CENTER);
          this.setSize(380, 250);
    public class printToLPT1 extends Frame{
    GridPanel grid;
    public printToLPT1() throws Exception {
    grid.addGridListener(new GridAdapter() {
                public void gridDoubleClicked(GridEvent ge) {               
                    testPrint();
    public static void testPrint() throws Exception {
            try {
                BufferedOutputStream pos = new BufferedOutputStream(new FileOutputStream("LPT1"));
                String str = "\n\n\n\n\n\n\n\n\n\n\n";
                pos.write(str.getBytes());
                pos.flush();
                pos.close();
            } catch (Exception fnfe) {
                throw new Exception("PRINTER SETUP IS NOT PROPER");
    }For applet, I have used following script in login.html:
    <APPLET
         height="200px"
         archive="testprinter.jar,jbcl.jar,grid.jar,plugin.jar" 
         width="390px"
         align="top"
         code="test.testApplet.class"
         name="Testing"
        ALT="<P>This applet requires Java to be enabled!  Check the browser options or see your SysAdmin." MAYSCRIPT>
        <P>This page requires Java!  Get it free from <A HREF='http://www.java.com/'>www.java.com</A>.</P>
    </APPLET>
    ------------------- If signed jar file of application is run using command line in client machine then "double clicked" of GridPanel method works fine and send signal to printer at LPT1 port but when same application is called using applet and accessed from remote machine with printer in LPT1 port, in that time also "double clicked" of GridPanel method works fine but printer could not be found and Exception is thrown java.lang.Exception:"PRINTER SETUP IS NOT PROPER" . Why is this happening? Can anyone suggest me the solution for this problem?
    Thanks in advance.
    -Ritesh
    Edited by: ritesh163 on Apr 15, 2010 2:56 PM

    The SSCCE for this problem is given below:
    //Applet class
    package test;
    import java.awt.BorderLayout;
    import javax.swing.JApplet;
    public class testApplet extends JApplet {
        testPrint lpanel =new testPrint();
        public void init() {
          this.setLayout(new BorderLayout());
          this.add(lpanel, BorderLayout.CENTER);    
          this.setSize(380, 250);    
    // Printing class...
    package test;
    import com.borland.jbcl.layout.XYConstraints;
    import java.awt.Color;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import java.io.BufferedOutputStream;
    import java.io.FileOutputStream;
    import wdn.grid.GridAdapter;
    import wdn.grid.GridData;
    import wdn.grid.GridEvent;
    import wdn.grid.GridPanel;
    public class testPrint extends javax.swing.JFrame {
        // Variables declaration - do not modify                    
        private javax.swing.JButton btnPrint;
        private javax.swing.JPanel jPanel1;
        // End of variables declaration     
        GridPanel grid;
        GridData gdata;
        String[] gridCols = {
            "Receipt No", "Name"};
        public testPrint() {
            grid = new GridPanel(0, 8);
            gdata = new GridData(0, 8);
            grid.setRowHeaderWidth(0);
            grid.setGridData(gdata);
            grid.setMultipleSelection(false);
            grid.setColWidths("100,60");
            grid.setColHeaders(gridCols);
            setGridProperties(grid);
            grid.setColSelection(false);
            this.setVisible(true);
            grid.addGridListener(new GridAdapter() {
                public void gridDoubleClicked(GridEvent ge) {
                   //This event works fine...
                    System.out.println("Press Re-Print button...");
                    try{
            stringToPrinter("testing by grid \n\n\n\n\n\n\n\n\n\n\n\n\n");
            }catch(Exception ex){
                ex.printStackTrace();
                public void gridCellsClicked(GridEvent ge) {
                    btnPrint.setEnabled(true);
            initComponents();
            jPanel1.add(grid, new XYConstraints(52, 60, 100, 150));
            grid.deleteRows(1, grid.getNumRows());
            grid.insertRow(1);
                        grid.setCellText(1, 1, "12134", false);
                        grid.setCellText(2, 1, "test" + "", false);
                        grid.repaintGrid();
        private void initComponents() {
            jPanel1 = new javax.swing.JPanel();
            btnPrint = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            btnPrint.setText("Print");
            btnPrint.setToolTipText("to Print");
            btnPrint.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    btnPrintActionPerformed(evt);
            org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1);
            jPanel1.setLayout(jPanel1Layout);
            jPanel1Layout.setHorizontalGroup(
                jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(jPanel1Layout.createSequentialGroup()
                    .add(36, 36, 36)
                    .add(btnPrint)
                    .addContainerGap(287, Short.MAX_VALUE))
            jPanel1Layout.setVerticalGroup(
                jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(org.jdesktop.layout.GroupLayout.TRAILING, jPanel1Layout.createSequentialGroup()
                    .addContainerGap(198, Short.MAX_VALUE)
                    .add(btnPrint)
                    .add(57, 57, 57))
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addContainerGap())
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addContainerGap())
            pack();
        }// </editor-fold>                       
        private void btnPrintActionPerformed(java.awt.event.ActionEvent evt) {                                        
            try{
            stringToPrinter("testing \n\n\n\n\n\n\n\n\n\n\n\n\n");
            }catch(Exception ex){
                ex.printStackTrace();
        public static void setGridProperties(GridPanel grid) {
            grid.setRowHeaderWidth(0);
            grid.setAutoResizeColumns(true);
            grid.setRowNumbers(true);
            grid.setCellSelection(false);
            grid.setRowSelection(true);
            grid.setHighlightColor(Color.blue);
            grid.setHighlightTextColor(Color.white);
            grid.setAutoResizeRows(true);
            grid.addKeyListener(new KeyAdapter() {
                public void keyTyped(KeyEvent e) {
                public void keyPressed(KeyEvent e) {
                    if (e.getKeyChar() == KeyEvent.VK_SPACE) {
                public void keyReleased(KeyEvent e) {
        public static void stringToPrinter(String str) throws Exception {
            try {
                System.out.println("inside stringToPrinter...");
                BufferedOutputStream pos = new BufferedOutputStream(new FileOutputStream("LPT1"));
                System.out.println("inside stringToPrinter...1-pos::"+pos);
                pos.write(str.getBytes());
                pos.flush();
                pos.close();
            } catch (Exception fnfe) {
                throw new Exception("PRINTER SETUP IS NOT PROPER");
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new testPrint().setVisible(true);
    }

  • ERRORS ESS - NWDI Import to production - not updated in J2EE System Info?

    Hi all,
    We have a GoLive planned for ESS in five days and are encountering many troubles during deployment of the SAP_ESS component on our Production Environment.
    We have modified some components in ESS and have used NWDI CMS to transport them through the landscape (DEV-QAS-PRD). We have successfully imported the latest version of the SAP_ESS component into production, but the System Info of the J2EE Engine still displays the old version for the SAP_ESS component and we are experiencing lots of errors when running ESS on production.
    How can NWDI CMS say the import in production is successful, but the System Info of J2EE is not updated?
    Please advice! Any help would be highly appreciated and ofcourse rewarded with points.
    Best regards,
    Jan

    This is the trace when running the ESS apps in the Portal.
    #1.#0011257591240057000007B10000191100044DBA55DBD0F0#1211362606380#com.sap.tc.webdynpro.sessionmanagement#sap.com/tcwddispwda#com.sap.tc.webdynpro.sessionmanagement#MMEDIC#4201##horus.efteling.nl_EFT_5259450#MMEDIC#51780a30271911dd8167001125759124#SAPEngine_Application_Thread[impl:3]_32##0#0#Error#1#/System/UserInterface#Java###An exception occured during application processing which got lost due to an additional exception that occured during session management post-processing phase. See nested exception for details about the original problem. Application=, RID= [EXCEPTION]
    #3#com.sap.xss.hr.cod.ChangeOwnDataApplication#6d6d05b0271911ddaf04001125759124#com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: failed to create or init instance of model 'com.sap.xss.hr.cod.model.CodModel' in scope APPLICATION_SCOPE with instanceId 'null'
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getOrCreateModelInstanceFromScopeMaintainer(WDModelFactory.java:341)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getModelInstance(WDModelFactory.java:155)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getModelInstance(WDModelFactory.java:102)
            at com.sap.xss.hr.cod.FcCodBusinessLogicComp.onInit(FcCodBusinessLogicComp.java:216)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicComp.onInit(InternalFcCodBusinessLogicComp.java:499)
            at com.sap.xss.hr.cod.FcCodBusinessLogicCompInterface.onInit(FcCodBusinessLogicCompInterface.java:115)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicCompInterface.onInit(InternalFcCodBusinessLogicCompInterface.java:147)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicCompInterface$External.onInit(InternalFcCodBusinessLogicCompInterface.java:227)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:922)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:891)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.attachComponentToUsage(FPMComponent.java:1084)
            at com.sap.xss.hr.cod.start.VcCodStartComp.onInit(VcCodStartComp.java:196)
            at com.sap.xss.hr.cod.start.wdp.InternalVcCodStartComp.onInit(InternalVcCodStartComp.java:156)
            at com.sap.xss.hr.cod.start.VcCodStartCompInterface.onInit(VcCodStartCompInterface.java:161)
            at com.sap.xss.hr.cod.start.wdp.InternalVcCodStartCompInterface.onInit(InternalVcCodStartCompInterface.java:144)
            at com.sap.xss.hr.cod.start.wdp.InternalVcCodStartCompInterface$External.onInit(InternalVcCodStartCompInterface.java:220)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:564)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:438)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:196)
            at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
            at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
            at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
            at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:748)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:283)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
            at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
            at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
            at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
            at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220)
            at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1246)
            at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:354)
            at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:547)
            at com.sap.portal.pb.PageBuilder.wdDoRefresh(PageBuilder.java:591)
            at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:822)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
            at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
            at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:684)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
            at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
            at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
            at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
            at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
            at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(AccessController.java:180)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.tc.webdynpro.progmodel.model.api.WDModelException: failed to create instance of model 'com.sap.xss.hr.cod.model.CodModel'
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getNewModelInstance(WDModelFactory.java:392)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getOrCreateModelInstanceFromScopeMaintainer(WDModelFactory.java:329)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getModelInstance(WDModelFactory.java:155)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getModelInstance(WDModelFactory.java:102)
            at com.sap.xss.hr.cod.FcCodBusinessLogicComp.onInit(FcCodBusinessLogicComp.java:216)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicComp.onInit(InternalFcCodBusinessLogicComp.java:499)
            at com.sap.xss.hr.cod.FcCodBusinessLogicCompInterface.onInit(FcCodBusinessLogicCompInterface.java:115)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicCompInterface.onInit(InternalFcCodBusinessLogicCompInterface.java:147)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicCompInterface$External.onInit(InternalFcCodBusinessLogicCompInterface.java:227)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:922)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:891)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.attachComponentToUsage(FPMComponent.java:1084)
            at com.sap.xss.hr.cod.start.VcCodStartComp.onInit(VcCodStartComp.java:196)
            at com.sap.xss.hr.cod.start.wdp.InternalVcCodStartComp.onInit(InternalVcCodStartComp.java:156)
            at com.sap.xss.hr.cod.start.VcCodStartCompInterface.onInit(VcCodStartCompInterface.java:161)
            at com.sap.xss.hr.cod.start.wdp.InternalVcCodStartCompInterface.onInit(InternalVcCodStartCompInterface.java:144)
            at com.sap.xss.hr.cod.start.wdp.InternalVcCodStartCompInterface$External.onInit(InternalVcCodStartCompInterface.java:220)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:564)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:438)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:196)
            at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
            at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
            at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
            at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:748)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:283)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
            at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
            at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
            at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
            at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220)
            at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1246)
            at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:354)
            at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:547)
            at com.sap.portal.pb.PageBuilder.wdDoRefresh(PageBuilder.java:591)
            at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:822)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
            at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
            at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:684)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
            at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
            at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
            at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
            at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
            at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(AccessController.java:180)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: no jcoMetadata found for RFC function 'HRXSS_COD_READ'! Please verify, that your model is consistent with the ABAP backend: 'EFT'.
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.metadata.DRFCModelInfo.getOrCreateClassInfo(DRFCModelInfo.java:217)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.metadata.DRFCModelInfo.<init>(DRFCModelInfo.java:164)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.metadata.DRFCModelInfo$Cache.getModelInfo(DRFCModelInfo.java:103)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModel.<init>(DynamicRFCModel.java:112)
            at com.sap.xss.hr.cod.model.CodModel.<init>(CodModel.java:251)
            at com.sap.xss.hr.cod.model.CodModel.<init>(CodModel.java:226)
            at java.lang.Class.newInstanceImpl(Native Method)
            at java.lang.Class.newInstance(Class.java:1545)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getNewModelInstance(WDModelFactory.java:386)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getOrCreateModelInstanceFromScopeMaintainer(WDModelFactory.java:329)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getModelInstance(WDModelFactory.java:155)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getModelInstance(WDModelFactory.java:102)
            at com.sap.xss.hr.cod.FcCodBusinessLogicComp.onInit(FcCodBusinessLogicComp.java:216)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicComp.onInit(InternalFcCodBusinessLogicComp.java:499)
            at com.sap.xss.hr.cod.FcCodBusinessLogicCompInterface.onInit(FcCodBusinessLogicCompInterface.java:115)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicCompInterface.onInit(InternalFcCodBusinessLogicCompInterface.java:147)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicCompInterface$External.onInit(InternalFcCodBusinessLogicCompInterface.java:227)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:922)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:891)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.attachComponentToUsage(FPMComponent.java:1084)
            at com.sap.xss.hr.cod.start.VcCodStartComp.onInit(VcCodStartComp.java:196)
            at com.sap.xss.hr.cod.start.wdp.InternalVcCodStartComp.onInit(InternalVcCodStartComp.java:156)
            at com.sap.xss.hr.cod.start.VcCodStartCompInterface.onInit(VcCodStartCompInterface.java:161)
            at com.sap.xss.hr.cod.start.wdp.InternalVcCodStartCompInterface.onInit(InternalVcCodStartCompInterface.java:144)
            at com.sap.xss.hr.cod.start.wdp.InternalVcCodStartCompInterface$External.onInit(InternalVcCodStartCompInterface.java:220)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:564)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:438)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:196)
            at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
            at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
            at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
            at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:748)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:283)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
            at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
            at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
            at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
            at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220)
            at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1246)
            at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:354)
            at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:547)
            at com.sap.portal.pb.PageBuilder.wdDoRefresh(PageBuilder.java:591)
            at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:822)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
            at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
            at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:684)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
            at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
            at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
            at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
            at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
            at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(AccessController.java:180)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #1.#0011257591240057000007B30000191100044DBA55DBD57F#1211362606568#com.sap.tc.webdynpro.sessionmanagement#sap.com/tcwddispwda#com.sap.tc.webdynpro.sessionmanagement.ExceptionHandler.handleThrowable#MMEDIC#4201##horus.efteling.nl_EFT_5259450#MMEDIC#51780a30271911dd8167001125759124#SAPEngine_Application_Thread[impl:3]_32##0#0#Error#1#/System/UserInterface#Java###Exception occured during processing of Web Dynpro application . The causing exception is nested.
    [EXCEPTION]
    #2#sap.com/ess~cod/ChangeOwnDataApplication#com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: failed to create or init instance of model 'com.sap.xss.hr.cod.model.CodModel' in scope APPLICATION_SCOPE with instanceId 'null'
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getOrCreateModelInstanceFromScopeMaintainer(WDModelFactory.java:341)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getModelInstance(WDModelFactory.java:155)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass._associatedModel(DynamicRFCModelClass.java:203)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.associatedModelClassInfo(DynamicRFCModelClass.java:217)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.elementIndexForFrontendName(DynamicRFCModelClass.java:1359)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.setAttributeValueAsString(DynamicRFCModelClass.java:664)
            at com.sap.xss.hr.cod.model.Hrxss_Cod_Dequeue_Pernr_Input.setPernr(Hrxss_Cod_Dequeue_Pernr_Input.java:162)
            at com.sap.xss.hr.cod.wdp.IPublicFcCodBusinessLogicComp$IDequeue_Pernr_InputElement.setPernr(IPublicFcCodBusinessLogicComp.java:2099)
            at com.sap.xss.hr.cod.FcCodBusinessLogicComp.callRFCDequeuePernr(FcCodBusinessLogicComp.java:393)
            at com.sap.xss.hr.cod.FcCodBusinessLogicComp.onCleanup(FcCodBusinessLogicComp.java:259)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicComp.onCleanup(InternalFcCodBusinessLogicComp.java:507)
            at com.sap.xss.hr.cod.FcCodBusinessLogicCompInterface.onCleanup(FcCodBusinessLogicCompInterface.java:126)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicCompInterface.onCleanup(InternalFcCodBusinessLogicCompInterface.java:151)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicCompInterface$External.onCleanup(InternalFcCodBusinessLogicCompInterface.java:231)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.cleanUp(FPMComponent.java:645)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.access$1000(FPMComponent.java:78)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.exitCalled(FPMComponent.java:965)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.exitCalled(FPMComponent.java:1136)
            at com.sap.pcuigp.xssfpm.wd.BackendConnections.wdDoExit(BackendConnections.java:124)
            at com.sap.pcuigp.xssfpm.wd.wdp.InternalBackendConnections.wdDoExit(InternalBackendConnections.java:228)
            at com.sap.tc.webdynpro.progmodel.generation.DelegatingCustomController.doExit(DelegatingCustomController.java:77)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.exitController(Controller.java:180)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.exit(Controller.java:154)
            at com.sap.tc.webdynpro.progmodel.controller.Component.exitController(Component.java:251)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.exit(Controller.java:154)
            at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.exit(ClientComponent.java:219)
            at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.exit(ClientApplication.java:474)
            at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.destroy(ClientApplication.java:527)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.destroy(ApplicationSession.java:390)
            at com.sap.tc.webdynpro.clientserver.session.ClientWindow.destroyApplicationSession(ClientWindow.java:235)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doDestroyApplication(ClientSession.java:1003)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doSessionManagementPostProcessing(ClientSession.java:789)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:264)
            at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
            at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
            at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
            at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220)
            at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1246)
            at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:354)
            at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:547)
            at com.sap.portal.pb.PageBuilder.wdDoRefresh(PageBuilder.java:591)
            at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:822)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
            at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
            at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:684)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
            at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
            at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
            at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
            at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
            at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(AccessController.java:180)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.tc.webdynpro.progmodel.model.api.WDModelException: failed to create instance of model 'com.sap.xss.hr.cod.model.CodModel'
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getNewModelInstance(WDModelFactory.java:392)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getOrCreateModelInstanceFromScopeMaintainer(WDModelFactory.java:329)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getModelInstance(WDModelFactory.java:155)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass._associatedModel(DynamicRFCModelClass.java:203)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.associatedModelClassInfo(DynamicRFCModelClass.java:217)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.elementIndexForFrontendName(DynamicRFCModelClass.java:1359)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.setAttributeValueAsString(DynamicRFCModelClass.java:664)
            at com.sap.xss.hr.cod.model.Hrxss_Cod_Dequeue_Pernr_Input.setPernr(Hrxss_Cod_Dequeue_Pernr_Input.java:162)
            at com.sap.xss.hr.cod.wdp.IPublicFcCodBusinessLogicComp$IDequeue_Pernr_InputElement.setPernr(IPublicFcCodBusinessLogicComp.java:2099)
            at com.sap.xss.hr.cod.FcCodBusinessLogicComp.callRFCDequeuePernr(FcCodBusinessLogicComp.java:393)
            at com.sap.xss.hr.cod.FcCodBusinessLogicComp.onCleanup(FcCodBusinessLogicComp.java:259)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicComp.onCleanup(InternalFcCodBusinessLogicComp.java:507)
            at com.sap.xss.hr.cod.FcCodBusinessLogicCompInterface.onCleanup(FcCodBusinessLogicCompInterface.java:126)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicCompInterface.onCleanup(InternalFcCodBusinessLogicCompInterface.java:151)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicCompInterface$External.onCleanup(InternalFcCodBusinessLogicCompInterface.java:231)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.cleanUp(FPMComponent.java:645)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.access$1000(FPMComponent.java:78)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.exitCalled(FPMComponent.java:965)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.exitCalled(FPMComponent.java:1136)
            at com.sap.pcuigp.xssfpm.wd.BackendConnections.wdDoExit(BackendConnections.java:124)
            at com.sap.pcuigp.xssfpm.wd.wdp.InternalBackendConnections.wdDoExit(InternalBackendConnections.java:228)
            at com.sap.tc.webdynpro.progmodel.generation.DelegatingCustomController.doExit(DelegatingCustomController.java:77)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.exitController(Controller.java:180)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.exit(Controller.java:154)
            at com.sap.tc.webdynpro.progmodel.controller.Component.exitController(Component.java:251)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.exit(Controller.java:154)
            at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.exit(ClientComponent.java:219)
            at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.exit(ClientApplication.java:474)
            at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.destroy(ClientApplication.java:527)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.destroy(ApplicationSession.java:390)
            at com.sap.tc.webdynpro.clientserver.session.ClientWindow.destroyApplicationSession(ClientWindow.java:235)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doDestroyApplication(ClientSession.java:1003)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doSessionManagementPostProcessing(ClientSession.java:789)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:264)
            at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
            at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
            at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
            at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220)
            at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1246)
            at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:354)
            at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:547)
            at com.sap.portal.pb.PageBuilder.wdDoRefresh(PageBuilder.java:591)
            at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:822)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
            at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
            at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:684)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
            at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
            at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
            at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
            at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
            at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(AccessController.java:180)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: no jcoMetadata found for RFC function 'HRXSS_COD_READ'! Please verify, that your model is consistent with the ABAP backend: 'EFT'.
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.metadata.DRFCModelInfo.getOrCreateClassInfo(DRFCModelInfo.java:217)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.metadata.DRFCModelInfo.<init>(DRFCModelInfo.java:164)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.metadata.DRFCModelInfo$Cache.getModelInfo(DRFCModelInfo.java:103)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModel.<init>(DynamicRFCModel.java:112)
            at com.sap.xss.hr.cod.model.CodModel.<init>(CodModel.java:251)
            at com.sap.xss.hr.cod.model.CodModel.<init>(CodModel.java:226)
            at java.lang.Class.newInstanceImpl(Native Method)
            at java.lang.Class.newInstance(Class.java:1545)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getNewModelInstance(WDModelFactory.java:386)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getOrCreateModelInstanceFromScopeMaintainer(WDModelFactory.java:329)
            at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getModelInstance(WDModelFactory.java:155)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass._associatedModel(DynamicRFCModelClass.java:203)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.associatedModelClassInfo(DynamicRFCModelClass.java:217)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.elementIndexForFrontendName(DynamicRFCModelClass.java:1359)
            at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.setAttributeValueAsString(DynamicRFCModelClass.java:664)
            at com.sap.xss.hr.cod.model.Hrxss_Cod_Dequeue_Pernr_Input.setPernr(Hrxss_Cod_Dequeue_Pernr_Input.java:162)
            at com.sap.xss.hr.cod.wdp.IPublicFcCodBusinessLogicComp$IDequeue_Pernr_InputElement.setPernr(IPublicFcCodBusinessLogicComp.java:2099)
            at com.sap.xss.hr.cod.FcCodBusinessLogicComp.callRFCDequeuePernr(FcCodBusinessLogicComp.java:393)
            at com.sap.xss.hr.cod.FcCodBusinessLogicComp.onCleanup(FcCodBusinessLogicComp.java:259)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicComp.onCleanup(InternalFcCodBusinessLogicComp.java:507)
            at com.sap.xss.hr.cod.FcCodBusinessLogicCompInterface.onCleanup(FcCodBusinessLogicCompInterface.java:126)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicCompInterface.onCleanup(InternalFcCodBusinessLogicCompInterface.java:151)
            at com.sap.xss.hr.cod.wdp.InternalFcCodBusinessLogicCompInterface$External.onCleanup(InternalFcCodBusinessLogicCompInterface.java:231)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.cleanUp(FPMComponent.java:645)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent.access$1000(FPMComponent.java:78)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.exitCalled(FPMComponent.java:965)
            at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.exitCalled(FPMComponent.java:1136)
            at com.sap.pcuigp.xssfpm.wd.BackendConnections.wdDoExit(BackendConnections.java:124)
            at com.sap.pcuigp.xssfpm.wd.wdp.InternalBackendConnections.wdDoExit(InternalBackendConnections.java:228)
            at com.sap.tc.webdynpro.progmodel.generation.DelegatingCustomController.doExit(DelegatingCustomController.java:77)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.exitController(Controller.java:180)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.exit(Controller.java:154)
            at com.sap.tc.webdynpro.progmodel.controller.Component.exitController(Component.java:251)
            at com.sap.tc.webdynpro.progmodel.controller.Controller.exit(Controller.java:154)
            at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.exit(ClientComponent.java:219)
            at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.exit(ClientApplication.java:474)
            at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.destroy(ClientApplication.java:527)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.destroy(ApplicationSession.java:390)
            at com.sap.tc.webdynpro.clientserver.session.ClientWindow.destroyApplicationSession(ClientWindow.java:235)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doDestroyApplication(ClientSession.java:1003)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doSessionManagementPostProcessing(ClientSession.java:789)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:264)
            at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
            at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
            at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
            at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220)
            at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1246)
            at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:354)
            at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:547)
            at com.sap.portal.pb.PageBuilder.wdDoRefresh(PageBuilder.java:591)
            at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:822)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
            at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
            at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
            at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
            at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:684)
            at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
            at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
            at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
            at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
            at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
            at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(AccessController.java:180)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #1.#001125759124007D0000004C0000191100044DBA6171C2A8#1211362800943#com.sap.workflow#sap.com/irj#com.sap.workflow#J2EE_GUEST#0####9236f8d026c211ddceb5001125759124#Thread[ThreadPool.Worker3,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error#1#/Applications/Workflow/General#Plain###TaskSchedulerDeadline.run()#
    #1.#001125759124007D0000004D0000191100044DBA61725FC3#1211362800983#com.sap.workflow#sap.com/irj#com.sap.workflow.#J2EE_GUEST#0####9236f8d026c211ddceb5001125759124#Thread[ThreadPool.Worker3,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###com.sap.security.api.NoSuchUserException: User "Administrator" does not exist.
            at com.sap.security.core.imp.UserFactory.getUserByUniqueName(UserFactory.java:1635)
            at com.sap.security.core.imp.UserFactory.getUserByUniqueName(UserFactory.java:1574)
            at com.sap.security.core.imp.UserFactory.getUserByUniqueName(UserFactory.java:1560)
            at com.sap.workflow.es.scheduler.TaskSchedulerDeadline.run(TaskSchedulerDeadline.java:90)
            at com.sapportals.wcm.service.scheduler.SchedulerEntry.run(SchedulerEntry.java:174)
            at com.sapportals.wcm.service.scheduler.crt.PoolWorker.run(PoolWorker.java:108)
            at java.lang.Thread.run(Thread.java:816)

  • CS4 crash when accessing System Info dialog

    Hi,
    I'm experiencing a crash when I try to launch the System Info dialog from within Photoshop CS4 (11.0.2) 64-bit running on Windows 8.1 Pro x64.
    Photoshop is attempting to read through a NULL pointer and is generating an access violation (0xC0000005) exception.
    I've pasted info from running PS under windbg below to help your devs investigate.  I can also provide a Windows crash dump file if that will help.
    If I had to guess I'd think that this had something to do with a display driver, but the driver for the display hardware in my Toshiba laptop (Intel x3100) is provided by MS in the box with Windows 8.1 and there are no updates for this driver (either from MS or Intel).
    If this is determined to be a bug, I'm willing to test the fix on my machine to verify.
    Thanks for your help.
    Don
    (1774.1744): Access violation - code c0000005 (first chance)
    First chance exceptions are reported before any exception handling.
    This exception may be expected and handled.
    *** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\Program Files\Adobe\Adobe Photoshop CS4 (64 Bit)\Photoshop.exe -
    Photoshop!AIF::float3::size+0xb4f9f:
    00000001`410ce62f 381a            cmp     byte ptr [rdx],bl ds:00000000`00000000=??
    // Disassembled code executing when the fault occurs
    0:000> u 00000001`410ce600 00000001`410ce631
    Photoshop!AIF::float3::size+0xb4f70:
    00000001`410ce600 48894c2408      mov     qword ptr [rsp+8],rcx
    00000001`410ce605 57              push    rdi
    00000001`410ce606 4883ec30        sub     rsp,30h
    00000001`410ce60a 48c7442420feffffff mov   qword ptr [rsp+20h],0FFFFFFFFFFFFFFFEh
    00000001`410ce613 48895c2448      mov     qword ptr [rsp+48h],rbx
    00000001`410ce618 4889742458      mov     qword ptr [rsp+58h],rsi
    00000001`410ce61d 488bfa          mov     rdi,rdx
    00000001`410ce620 488bf1          mov     rsi,rcx
    00000001`410ce623 33db            xor     ebx,ebx
    00000001`410ce625 895c2450        mov     dword ptr [rsp+50h],ebx
    00000001`410ce629 4183f8ff        cmp     r8d,0FFFFFFFFh
    00000001`410ce62d 751f            jne     Photoshop!AIF::float3::size+0xb4fbe (00000001`410ce64e)
    00000001`410ce62f 381a            cmp     byte ptr [rdx],bl
    00000001`410ce631 743f            je      Photoshop!AIF::float3::size+0xb4fe2 (00000001`410ce672)
    // Register contents when fault occurs
    0:000> r
    rax=0000000000000000 rbx=0000000000000000 rcx=000000000013cee8
    rdx=0000000000000000 rsi=000000000013cee8 rdi=0000000000000000
    rip=00000001410ce62f rsp=000000000013cdd0 rbp=00000000000407ca
    r8=00000000ffffffff  r9=0000000000000000 r10=00007ff9a5400000
    r11=000000000013cdf0 r12=000000000013d030 r13=0000000000000000
    r14=0000000000003a9c r15=0000000005742b20
    iopl=0         nv up ei pl zr na po nc
    cs=0033  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00010246
    Photoshop!AIF::float3::size+0xb4f9f:
    00000001`410ce62f 381a            cmp     byte ptr [rdx],bl ds:00000000`00000000=??
    // Callstack
    0:000> kb
    RetAddr           : Args to Child                                                           : Call Site
    00000001`40e689e4 : 00000000`0013cee8 00000000`00000000 00000000`00000000 00000000`00000000 : Photoshop!AIF::float3::size+0xb4f9f
    00000001`40e690be : 00000000`0013d030 00000000`00000001 00000000`072ef880 00000000`07260e90 : Photoshop!AIF::DataFlow::Node::hasUniqueName+0x3fc314
    00000001`40e6a080 : 00000000`0013d030 00000000`072604a0 00000000`072603b0 00000000`072609e0 : Photoshop!AIF::DataFlow::Node::hasUniqueName+0x3fc9ee
    00000001`40e6a1d0 : 00000000`00000000 00000000`05742b20 00000000`05742b20 00000000`00000000 : Photoshop!AIF::DataFlow::Node::hasUniqueName+0x3fd9b0
    00000001`41114ecf : 00000000`05742b20 00000000`000407ca 00000000`05742b20 00000000`54545053 : Photoshop!AIF::DataFlow::Node::hasUniqueName+0x3fdb00
    00000001`4111d7f1 : 00000000`00000000 00000000`05640ad8 00000000`032f5490 00000000`05640ad8 : Photoshop!AIF::float3::size+0xfb83f
    00000001`4111d983 : 00000000`05640ad8 00000001`411ea06d 00000000`00003a9c 00000000`056a9c00 : Photoshop!AIF::float3::size+0x104161
    00000001`40baf22c : 00000000`00003a9c 00000000`056a9c00 00000000`05640ad8 00000001`00000001 : Photoshop!AIF::float3::size+0x1042f3
    00000001`410e4847 : 00000000`056a9c60 00000000`05640ad8 00000000`056a9c60 00000000`05640ad8 : Photoshop!AIF::DataFlow::Node::hasUniqueName+0x142b5c
    00000001`410e4da7 : 00000000`00000001 00000000`0a04c028 00000000`0a04c020 00000001`4053a80f : Photoshop!AIF::float3::size+0xcb1b7
    00000001`410e08b6 : 00000000`0a04c020 00000001`400452ee 00000000`00000000 00000001`404eb8c4 : Photoshop!AIF::float3::size+0xcb717
    00000001`410e2e1c : 00000000`00003a9c 00000000`0a04c020 00000000`0a04c020 00000000`00003a9c : Photoshop!AIF::float3::size+0xc7226
    00000001`408675a0 : 00000000`00003a9c 00000000`0a04c028 00000000`00000001 00000000`00003a9c : Photoshop!AIF::float3::size+0xc978c
    00000001`410e4847 : 00000000`072eacc0 00000001`4094e779 00000000`072eacc0 00000000`00003a9c : Photoshop!AIF::OGL::GLSLObject::objectID+0x36f960
    00000001`410e4da7 : 00000000`00000001 00000000`00000001 00000000`00000001 00000001`410dbbc8 : Photoshop!AIF::float3::size+0xcb1b7
    00000001`410e08b6 : 00000000`0d7c4970 00000000`00000001 00000000`0d7c4970 00000001`410e421b : Photoshop!AIF::float3::size+0xcb717
    00000001`411d4843 : 00000000`00003a9c 00000000`00000001 00000000`00000001 00000000`61817ee0 : Photoshop!AIF::float3::size+0xc7226
    00000001`4025e0e2 : 00000000`072eb7a0 00000000`0d7c4970 00000000`00000001 00000000`00000000 : Photoshop!AIF::float2x2::~float2x2+0x10f03
    00000001`410e4847 : 00000000`072eb7a0 00000000`0d7c4978 00000000`072eb7a0 00000000`00000000 : Photoshop!AIF::size4::operator=+0x11a202
    00000001`410e4da7 : 00000000`00000001 00000000`0d78ae98 00000000`072eae00 00000000`6578b89c : Photoshop!AIF::float3::size+0xcb1b7
    00000001`410e08b6 : 00000000`0d78ae90 00000001`4198fb28 00000001`4198fb18 00000001`4198fb00 : Photoshop!AIF::float3::size+0xcb717
    00000001`410e4847 : 00000000`072eae00 00000000`072eae00 00000001`4198fa50 00000001`4198fa38 : Photoshop!AIF::float3::size+0xc7226
    00000001`410e4da7 : 00000000`00000001 00000000`0a24a238 00000000`072eb8c0 00000001`4198f8b0 : Photoshop!AIF::float3::size+0xcb1b7
    00000001`410e08b6 : 00000000`0a24a230 00000001`4198f870 00000001`4198f860 00000001`4198f848 : Photoshop!AIF::float3::size+0xcb717
    00000001`410e4847 : 00000000`072eb8c0 00000000`072eb8c0 00000001`4198f738 00000001`4198f710 : Photoshop!AIF::float3::size+0xc7226
    00000001`410e4da7 : 00000000`00000001 00000000`0d649908 00000000`072eb400 00000001`4198f568 : Photoshop!AIF::float3::size+0xcb1b7
    00000001`410e08b6 : 00000000`0d649900 00000001`4198f508 00000000`6180f700 00000000`03040fc9 : Photoshop!AIF::float3::size+0xcb717
    00000001`410e4847 : 00000000`072eb400 00000000`072eb400 00000000`0013dce8 00000000`6180f760 : Photoshop!AIF::float3::size+0xc7226
    00000001`410e4da7 : 00000000`00000001 00000000`00000001 00000000`00003a9c 00000001`4096586f : Photoshop!AIF::float3::size+0xcb1b7
    00000001`410e08b6 : 00000000`09f42090 00000000`104d1800 ffffffff`fffffffe 00000001`405854a7 : Photoshop!AIF::float3::size+0xcb717
    00000001`40882753 : 00000000`072eb580 00000000`00003a9c 00000000`00000001 00000000`00000000 : Photoshop!AIF::float3::size+0xc7226
    00000001`410e4847 : 00000000`072eb580 00000000`09f42098 00000000`072eb580 00000000`00000000 : Photoshop!AIF::OGL::GLSLObject::objectID+0x38ab13
    00000001`410e4da7 : 00000000`00000001 00000000`0a04c6a8 00000000`072eb1a0 00000001`4112481b : Photoshop!AIF::float3::size+0xcb1b7
    00000001`410e08b6 : 00000000`0a04c6a0 00000000`00000001 00000000`03234e20 00000000`00000000 : Photoshop!AIF::float3::size+0xcb717
    00000001`410e4847 : 00000000`072eb1a0 00000000`072eb1a0 00000000`00000068 00000000`6191743e : Photoshop!AIF::float3::size+0xc7226
    00000001`410e4da7 : 00000000`00000001 00000000`0a025a48 00000000`072eb220 00000001`4094e779 : Photoshop!AIF::float3::size+0xcb1b7
    00000001`410e08b6 : 00000000`0a025a40 00000000`072eafe0 00000000`0a04bb48 00000001`40958b95 : Photoshop!AIF::float3::size+0xcb717
    00000001`410e4847 : 00000000`072eb220 00000000`072eb220 ffffffff`fffffffe 00000001`4059b23e : Photoshop!AIF::float3::size+0xc7226
    00000001`410e4da7 : 00000000`00000001 00000000`0a04bb48 00000000`072eafe0 00000001`4096586f : Photoshop!AIF::float3::size+0xcb1b7
    00000001`410e08b6 : 00000000`0a04bb40 00007ff9`a5400000 00000000`00003a9c 00000001`40de1c10 : Photoshop!AIF::float3::size+0xcb717
    00000001`4096fdd0 : 00000000`072eafe0 00000000`072eafe0 00000000`072eafe0 00000000`0a04bb48 : Photoshop!AIF::float3::size+0xc7226
    00000001`410e4847 : 00000000`0a04bb40 00000001`00003a9c 00000000`00000001 00000001`410e4600 : Photoshop!AIF::TexturePool::operator=+0xb94f0
    00000001`41122f74 : 00000000`00003a9c 00000001`41ff8490 00000000`0328f190 00000000`00000000 : Photoshop!AIF::float3::size+0xcb1b7
    00000001`411658ac : 00000000`00003a9c 00000000`00000000 00000000`00003a9c 00000000`0013e3d0 : Photoshop!AIF::float3::size+0x1098e4
    00000001`41146661 : 00000000`00043a9c 00000000`00003a01 00000001`416a17e0 00007ff9`00000000 : Photoshop!AIF::float2x2::operator=+0x291ac
    00000001`4118aa75 : 00000000`00000001 00000000`00003a9c 00000000`00003a9c 00000000`0040003e : Photoshop!AIF::float2x2::operator=+0x9f61
    00000001`4114842f : 00000000`000407ca 00000000`00003a9c 00000000`00000000 00000000`00000000 : Photoshop!AIF::float2x2::operator=+0x4e375
    00007ff9`a3402524 : 00007ff9`a3402548 00000000`000407ca 00000000`00010986 00000000`00000007 : Photoshop!AIF::float2x2::operator=+0xbd2f
    00007ff9`a3406773 : 00000000`000407ca 00000000`00799d10 00000001`41147c90 00000000`00000000 : USER32!DispatchMessageW+0x154
    00000000`0291641a : 00000000`0a03c598 00000000`00000001 00000000`00000000 00000000`00003a9c : USER32!CallWindowProcW+0x93
    00000000`02980fb5 : 00000000`0a03c580 00000000`0a03c598 00000000`00000111 00000000`0013edd0 : AdobeOwl!DllMain+0x3297a
    00000000`0291704b : 00000000`00000111 00000000`00000111 00000000`0013edd0 00000000`000407ca : AdobeOwl!OWLExecuteTest+0x14709
    00000001`40265d02 : 00000000`000407ca 00000000`00000111 00000000`00003a9c 00000000`00000000 : AdobeOwl!DllMain+0x335ab
    00007ff9`a3402524 : 00000000`00000001 00000000`00000000 00000000`00000111 00000000`00000000 : Photoshop!AIF::size4::operator=+0x121e22
    00007ff9`a3406ceb : 00000000`00799d10 00000001`40265ac0 00000000`00000111 00000000`00000000 : USER32!DispatchMessageW+0x154
    00007ff9`a3406a81 : 00000000`00000000 00000000`0013ef00 00000000`00003a9c 00000000`00799d10 : USER32!SendMessageW+0x37b
    00000000`029873a5 : 00000000`073db3f0 00000000`00003a9c 00000000`073db408 00000000`02916fb8 : USER32!SendMessageW+0x111
    00000000`02985d9c : 00000000`00000000 00007ff9`a5429c83 00000008`00000002 0000001c`00000193 : AdobeOwl!OWLExecuteTest+0x1aaf9
    00000000`0291704b : 00000000`0000c230 00000000`0000c230 00000000`00000000 00000000`00010986 : AdobeOwl!OWLExecuteTest+0x194f0
    00007ff9`a3402524 : 00000000`00010986 00000000`0000c230 00000000`00000008 00000000`00000000 : AdobeOwl!DllMain+0x335ab
    00007ff9`a3402387 : 00000000`0080ad30 00000000`0013f190 00007ff5`ffffd800 00000000`02916fb8 : USER32!DispatchMessageW+0x154
    00000001`411950b9 : 00000000`00010900 00000000`00010900 00000000`00000000 00000000`000407ca : USER32!ScrollDC+0x1f7
    00000001`411dafbe : 00000000`09de2500 00000000`05640a00 00000000`00000000 00000000`00000001 : Photoshop!AIF::float2x2::operator=+0x589b9
    00000001`4018073b : 00000000`0013f3a8 00000000`00000000 00000000`00000000 00000000`05640ad0 : Photoshop!AIF::float2x2::~float2x2+0x1767e
    00000001`4119641b : 00000000`0013f980 00000000`0013f980 00000000`0013fb90 00000000`0013fb90 : Photoshop!AIF::size4::operator=+0x3c85b
    00000001`4124108c : 00000000`00312b52 00000000`00000000 00000000`00312b54 00007ff9`a545db14 : Photoshop!AIF::float2x2::operator=+0x59d1b
    00007ff9`a38915dd : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : Photoshop!AIF::float2x2::~float2x2+0x7d74c
    00007ff9`a54743d1 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : KERNEL32!BaseThreadInitThunk+0xd
    00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : ntdll!RtlUserThreadStart+0x1d

    could be - no doubt 10.6- has caused problems with current versions of PS and other CS4 apps... but on the other hand PS crashes a lot on Windows as well (just look at their forums)... its a tough job balancing OS updates with software releases - but I think passing the buck is a bit hasty - someone once said - clean up your own house before you criticize you neighbors...

  • Gathering System Info

    I'm looking for a way to gather system information through java. I'd like to list memory stats, running process and the like. Through the Runtime class I can only gather memory info available to the JVM. Is there another class I haven't found yet, or is this impossible through Java. I know I could fire off a cmd line utility and capture the results in my java program, but i'm looking for a more efficient method.
    Justin

    If you want to gather stats you can use java profiler. There are also shareware programs that can do this for you. I personally like the JSprint (written in C++, fast, but lacks graphics) and JProfiler (written in java, excellent graphics).
    The above programs i mentioned can capture the memory and CPU consumption and ur methods
    Hope this helps

  • J2ee system info displays incorrect patch details

    Hello all,
    I did an un-deployment of a few custom applications in visual admin in the deploy node.
    Later I did and re deployment using the visual admin.
    Now when I check in Visual admin it show me the newly deployed applications detail.
    But when I check them in system info it is showing me the old patch details.
    The deployment files were of .ear files.
    Unfortunately, Due to some issues I was not able to deploy using the SDM.
    The J2EE system info is not showing the updated patch details.
    Kindly help me to figure out what could be the issue.
    Thanks.
    Regards,
    Chandru

    Hello Benny,
    I have a query here... If deployment should happen only through SDM then why does an deploy option made available in visual admin.
    I am just curious to know why this option....??
    Thanks for your reply... I have also planned to do the deployment again using SDM.
    Thanks.
    Regards,
    Chandru

  • Script with system info

    Hello,
    I need a simple script (powershell or anther) that write system info to a txt file with this example format:
    OS = Microsoft Windows 7
    CPU = Intel 434
    RAM = 4
    Only this 3 valors, I now the comman to obtain this info ((Get-WmiObject Win32_OperatingSystem).Name) to obtain the first valor, for example, but I don't know how to get this output format: OS = OS.
    Can anyone helpme?
    Thanks in advance!
    jspt

    I learned mostly by doing. I took my old VBScripts and converted most of them to PowerShell as a starting exercise. After that I learned by lurking here and in the
    PowerShell forum.
    There are some learning resources up on the site here that you can go through for getting started:
    http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx
    There also appears to be a virtual lab that you can play around with (I haven't done this myself, so I can't vouch for its effectiveness):
    http://go.microsoft.com/?linkid=9851303
    You can poke around in the script repository for working examples to learn and build from:
    http://gallery.technet.microsoft.com/scriptcenter
    Once you've got your feet wet, try answering some questions that are posted (I'd highly recommend starting off in the PowerShell forum rather than here). I've always found that the largest obstacle to learning a new language is not having a solid goal to
    attain. Answering questions here in the forums will expose you to many different problems that you may not otherwise have run into.
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Connecting to database through applet

    hi friends
    I am trying to connect to sql database through applet but I cant.
    in fact it can not connect to database.
    plz any body tell me how can i do this. Thanks

    // class depends on
    //     msbase.jar
    //     mssqlserver.jar
    //     msutil.jar
    // these api's are part of Microsoft SQL Server 2000 Driver for JDBC
    // allso need JNDI file system Service provider: found @ sun http://java.sun.com/products/jndi/#DOWNLOAD12 the JNDI 1.2.X class librarys and
    //          File system provider 1.2 beta 3
    //     fscontext.jar
    //     providerutil.jar
    //      (jndi.jar) provided in java > 1.3*
    // to compile:
    // javac -classpath "C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\msbase.jar;C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\mssqlserver.jar;C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\msutil.jar;C:\j2sdk1.4.2_01\jndi\lib\fscontext.jar;C:\j2sdk1.4.2_01\jndi\lib\jndi.jar;C:\j2sdk1.4.2_01\jndi\lib\providerutil.jar" SQLTest.java
    import javax.sql.*;
    import java.sql.*;
    import javax.naming.*;
    import java.util.Properties;
    public class SQLTest extends Thread {
        String sqlServerUser = "sql login account";
        String sqlServerPWD = "sql password";
        String sqlServerName = "sql machine";
        String sqlServerPort = "1433";
        public SQLTest() {
        public static void main(String[] args) {
            (new SQLTest()).run();
        public void run(){
            Connection conn = null;
            try{
                Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
                conn = DriverManager.getConnection("jdbc:microsoft:sqlserver://" + sqlServerName + ":"+ sqlServerPort + ";User=" + sqlServerUser + ";Password=" + sqlServerPWD + ";ProgramName=JAVA-jdbc;DatabaseName=Northwind");
                Statement stmt = conn.createStatement();
                ResultSet result = stmt.executeQuery(
                    "SELECT * from [Shippers]"
                if(result.next()){
                    System.out.println(result.getString("CompanyName") + " " + result.getString("Phone"));
                    while(result.next()) {   // for each row of data
                        System.out.println(result.getString("CompanyName") + " " + result.getString("Phone"));
                System.out.println("Getting a connection with drivermanager works fine");
            } catch(Exception e){
                e.printStackTrace(System.out);
            } finally{
                try{
                    conn.close();
                } catch(Exception e){
                    e.printStackTrace(System.out);
            if(true){return;}
    // try it with a datasource
            try{
            // Setting the context:
                com.microsoft.jdbcx.sqlserver.SQLServerDataSource sds = new com.microsoft.jdbcx.sqlserver.SQLServerDataSource();
                sds.setServerName(sqlServerName);
                sds.setDatabaseName("Northwind");
                sds.setNetAddress(sqlServerPort);
                Properties p = new Properties();
                p.put(Context.INITIAL_CONTEXT_FACTORY,     "com.sun.jndi.fscontext.RefFSContextFactory");
                Context ctx = new InitialContext(p);
                try{
                    ctx.unbind("jdbc/EmployeeDB");
                }catch(Exception e){
                }finally{
                    ctx.bind("jdbc/EmployeeDB",sds);
                DataSource ds = (DataSource)ctx.lookup("jdbc/EmployeeDB");
                conn = null;
                conn = ds.getConnection(sqlServerUser,sqlServerPWD);
                Statement stmt = conn.createStatement();
                ResultSet result = stmt.executeQuery(
                    "SELECT * from [Shippers]"
                if(result.next()){
                    System.out.println(result.getString("CompanyName") + " " + result.getString("Phone"));
                    while(result.next()) {   // for each row of data
                        System.out.println(result.getString("CompanyName") + " " + result.getString("Phone"));
                System.out.println("works with datasource");
            } catch(Exception e){
                e.printStackTrace(System.out);
            } finally{
                try{
                    conn.close();
                } catch(Exception e){
                    e.printStackTrace(System.out);
    }To give an applet special privileges you can specify the prifs in the java.policy file or sign the applet and choose "yes I trust" or "yes I allways trust" when the applet is loaded.
    To give special prifs with the java.policy, it should look like this:
    grant {
    permission java.lang.RuntimePermission "usePolicy"; // prevents the popup from showing for signed applets
    grant codeBase "file:C:/-" {
      permission java.security.AllPermission;
    grant codeBase "http://localhost/-" {
      permission java.security.AllPermission;
    };

  • Storing images to a remote system connected through lan

    how to store the images captured from a system using web cam(from where the web application accessed) to a folder of system(where the web application is deployed) connected through lan......?
    i have used applets to connect to web cam.
    import java.applet.Applet;
    import java.awt.BorderLayout;
    import java.awt.Button;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.Frame;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Image;
    import java.awt.Panel;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.image.BufferedImage;
    import java.awt.image.RenderedImage;
    import java.io.BufferedReader;
    import java.io.DataOutputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.net.HttpURLConnection;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.io.File;
    import javax.imageio.ImageIO;
    import javax.media.Buffer;
    import javax.media.CaptureDeviceInfo;
    import javax.media.CaptureDeviceManager;
    import javax.media.Manager;
    import javax.media.MediaLocator;
    import javax.media.Player;
    import javax.media.control.FrameGrabbingControl;
    import javax.media.format.VideoFormat;
    import javax.media.util.BufferToImage;
    import javax.swing.JApplet;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.JOptionPane;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.sun.image.codec.jpeg.JPEGEncodeParam;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    public class Camagain extends Applet implements ActionListener {
        private static final long serialVersionUID = -196359544994677518L;
        public static Player player;
        public CaptureDeviceInfo DI;
        public MediaLocator ML;
        public JButton Capture;
        public JButton Close;
        public Buffer BUF;
        public Image img;
        public VideoFormat VF;
        public BufferToImage BtoI;
        public ImagePanel imgpanel;
        public void init(){
            setLayout(new FlowLayout());
            imgpanel = new ImagePanel();
            Capture = new JButton("Capture");
            add(Capture);
            Capture.addActionListener(this);
            Close = new JButton("Close");
            add(Close);
            Close.addActionListener(this);
            ML = new MediaLocator("vfw:Microsoft WDM Image Capture (Win32):0");
            try {
                player = Manager.createRealizedPlayer(ML);
                player.start();
                Component comp;
                if ((comp = player.getVisualComponent()) != null) {
                    add(comp, BorderLayout.NORTH);
            } catch (Exception e) {
                e.printStackTrace();
        public void executeCapture(Camagain cf) {
            Frame f = new Frame("SwingCapture");
            f.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                    playerclose();
                    //System.exit(0);
            f.add("Center", cf);
            f.pack();
            f.setSize(new Dimension(320, 600));
            f.setVisible(true);
        public static void playerclose() {
            player.close();
            JOptionPane.showMessageDialog(null,"close block");
            player.deallocate();
        public void actionPerformed(ActionEvent e) {
            if (e.getSource() instanceof JComponent) {
                JComponent c = (JComponent) e.getSource();
                if (c == Capture) {
                    try {
      actionCapture();
      } catch (IOException e1) {
      // TODO Auto-generated catch block
      e1.printStackTrace();
      }  // maoved every thing to new method action()
                }else if(c == Close){
                playerclose();
            try {
                getAppletContext().showDocument(new URL("javascript:appletclose()"));
              catch (MalformedURLException me) { }
        public void actionCapture() throws IOException {    // your action handler code.....
            // Grab a frame
            FrameGrabbingControl fgc = (FrameGrabbingControl) player.getControl("javax.media.control.FrameGrabbingControl");
            BUF = fgc.grabFrame();
            // Convert it to an image
            BtoI = new BufferToImage((VideoFormat) BUF.getFormat());
            img = BtoI.createImage(BUF);
            // show the image
            imgpanel.setImage(img);
            // saving image
           // String directory=getcodeBase();
            String fileName = System.currentTimeMillis()+".jpg";
      String directory=getParameter("contextpath");
            String path =directory +fileName;
      saveJPG(img, path);
            path = path.replace("\\", "/");
            try {
                      playerclose();
            getAppletContext().showDocument(new URL("javascript:webImageShow(\""+fileName+"\")"));
              catch (MalformedURLException me) { }
        class ImagePanel extends Panel {
      private static final long serialVersionUID = 1L;
      public Image myimg = null;
            public ImagePanel() {
                setLayout(null);
                setSize(320, 240);
            public void setImage(Image img) {
                this.myimg = img;
                repaint();
            public void paint(Graphics g) {
                super.paint(g);
                g.drawImage(myimg, 0, 0, this);
        public static void saveJPG(Image img, String s) {
       BufferedImage bi = new BufferedImage(img.getWidth(null), img.getHeight(null), BufferedImage.TYPE_INT_RGB);
          Graphics2D g2 = bi.createGraphics();
      g2.drawImage(img, null, null);
      FileOutputStream out=null;
            JOptionPane.showMessageDialog(null,s);
            try {
         out = new FileOutputStream(s);
      ImageIO.write((RenderedImage) img,"jpg",out);
             } catch (Exception io) {
                io.printStackTrace();
           /* JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
            JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bi);
            param.setQuality(0.5f, false);
            encoder.setJPEGEncodeParam(param);*/
            try {
                //encoder.encode(bi);
               out.close();
              } catch (java.io.IOException io) {
                System.out.println("IOException");
    through this applet i am capturing the image and saving in the application deployed directory and accessing this image through a servlet.every thing works fine in my system but when i try to capture from other systems connected through lan the image not saving in my system.
    requried solution.

    This is might because of you are using applet. Applet runs is client browser. When you runs your program on your system then it saves file on you system but when you access this applet from another system over LAN then, captured will be saved on another system not on yours.
    You have to write extra code to upload this locally saved file to your server (i.e. your system.).

  • My apple tv is registering on my tv - i can see it on my system info screen but the apple tv doesn't show up, as well my imac doesn't seem to let me share - so i don't know whats wrong, why my apple tv isn't working

    anybody able to help me with my setup for apple tv.  i've followed the directions in the guide and my tv doesn't seem to register in part.  it's weird because my tv system info identifies the apple tv but the screen never went black and it doesn't show anything, too, my imac doesn't seem to register the apple tv unit either

    I would try connecting it to another tv to see if it works there if it does
    then likely your tv can't handle the default resolution and you should lower it on the other tv
    if not then you should connect it by usb to the computer and use itunes to restore it's firmware

  • How to change system time through java program

    Hi
    I want to know, how to change system time through java program.
    give me a idia with example.
    Thanks

    There isn't any core Java API for this. Use JNI or call an external process with Runtime.exec().
    ~

  • Mismatch in amount of free space, between UI and System Info.

    I'm running a 2011 15" MBP, with a 2 TB drive in it, and the UI is indicating that I have about 520 some odd GB left. System Info and Drive Genius indicate about 490 some odd.
    I don't foresee this being a huge problem any time soon, but it's bugging me.

    Click here and see the note at the bottom of the page.
    (120521)

  • I have an external hard drive from my time capsule that stopped working on me. I am attempting to access the data with a hard drive reader on my MAC. I am able to see the drive in disk utility and under system info USB. But I am unable to access the data.

    I have an external hard drive from my time capsule that stopped working on me. I am attempting to access the data with a hard drive reader on my MAC. I am able to see the drive in disk utility and under system info USB. But I am unable to access the data and it does not show on the desktop when connected.

    Ok if disk utility was able to verify the drive I doubt there is any problem.. are you trying to open a TM backup??
    You need to mount the sparsebundle then check the actual info inside the bundle.
    Don't use disk warrior.. if the disk has verified then unless you deliberately deleted files there is nothing that is going to do.
    Pondini has a lot of stuff about getting access to the sparsebundle.
    http://pondini.org/TM/17.html
    But if you have copied info to the TC that is now gone.. and the disk is ok.. I am not sure.. the TC will not have deleted the files itself.

  • Is it possible to change settings in "Help System info"?

    Is it possible to change Photoshop settings by clicking on Help and then System info? Since there is the possibility to type and the OK-button, I just started wondering.

    All Help > System Info does is to report your system specifications so you can copy and paste them in the forums for troubleshooting purposes.
    You can choose what to highlight and copy, but it does not change anything in your system like editing a configuration file would.

Maybe you are looking for

  • Setup MySQL datasource for Sun ONE Studio

    Hello all, I've tried to post this message on the Sun ONE studio forum, however, there were compilation errors with JSP pages. As I needed the answer urgently, I decided to get some help here. I've successfully made connection to MySQL database durin

  • Cisco Unity Problems Activating Licenses

    We are running a ISM-SRE-300-K9 module on a Cisco 2921 router, which we inherited and did not originally program at this site.  We have purchased L-FL-CUE-MBX-5= licenses but we are having tons of trouble getting them activated.  I am not too familia

  • No wifi on, No wifi on

    MY iPhone says no wifi so I can't even turn my wifi on or off ! ?

  • Hue/Saturation adjustment layer questions

    1. When selecting the  channel, like red and then boosting the saturation, does this mean that it is only boosting saturation to the reds in the image and there is no possibility of it boosting the saturation of greens or yellows that may reside in t

  • I want Page Id and Site Id inside the portlet...

    I want my site id and my page id of the page that contains my dynamic page (in form of a portlet) I tried the API portal.wwctx_api.get_query_string inside my portlet to get the same. But when i run it as portlet from the interface, it displays the qu