Any helpers please on JAVA XSLT Tranformation

I have an XML file and a XSLT file How using a Java class can I tranform the document to XHTML (i.e html in XML format)

Follow this link:
http://xml.apache.org/xalan-j/samples.html
Good luck.

Similar Messages

  • Any helpers please.

    Have just downloaded IOS7 on my wife's iPad but it keeps turning itself off and rebooting after about 5 seconds, any ideas how to stop it doing that. I updated mine and it worked fine. Mine's a 32 gig and my wife's is a 16.

    Try a reset: Press and hold both Sleep/Wake and Home buttons until the Apple logo appears.

  • Can any one please send me sample programs using java mapping..

    <b>Can any one please send me sample programs using java mapping with input and output?</b>
    please let me know how to get started with java mapping?
    Prerequisites for java mapping ?
    What are the jars need to be deployed for SAX,DOM.  And how to do it in NWDS?
    Use of Execute() and setparameter() ... StreamTransformation?
    Some sample program using java mapping with simple logic(input and output)?

    Hi,
    Did you go thro these blogs?
    /people/prasad.ulagappan2/blog/2005/06/29/java-mapping-part-i
    /people/prasad.ulagappan2/blog/2005/06/29/java-mapping-part-ii
    /people/prasad.ulagappan2/blog/2005/06/29/java-mapping-part-iii
    Nice blogs to start Java Mapping.
    Go thro this one too.
    /people/stefan.grube/blog/2006/10/23/testing-and-debugging-java-mapping-in-developer-studio
    Regards,
    P.Venkat
    Message was edited by:
            Venkataramanan

  • Using Java/JSp on ISP machine (Any Ideas Please)

    Tomcat works fine on my ISP Host the problem however is that you usually do not have control over classpath for all the jar files.
    + Can any one please suggest alternative ways to use jar file
    + Example of what I want to solve is my isp does not have jdbc-odbc
    it comes up with this error
    java.sql.SQLException: [unixODBC][Driver Manager]Data source name not found, and no default driver specified
    Therefore I want to just insert the jar file for the bridge and use it to connect in my jsp or java bean file.
    Any ideas please
    Thanks in advance

    Here is the code used to connect
    <%@ page import="java.sql.*" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
         <title>Untitled</title>
    </head>
    <body>
    <%
                String username;
                String password;
                username="bbbb";
                password="cccc";
                try {
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                // set this to a MS Access DB you have on your machine
                String filename = application.getRealPath("/data/loger.mdb");
                String database = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
                database+= filename.trim() + ";DriverID=22;READONLY=true}"; // add on to the end
                // now we can get the connection from the DriverManager
                Connection con = DriverManager.getConnection( database ,"","");
                Statement s = con.createStatement();
                int i=0;
    System.out.println(i);           
    //        s.execute("create table MyCustomers (CustomerID integer , ContactFirstName varchar(15),  ContactLastName varchar(20))"); // create a table
    System.out.println(i+=1);           
    System.out.println(i+=1);    
            String query = "SELECT * FROM Customers WHERE username='"+username+"' AND password='"+password+"'";      
            s.executeQuery(query); // select the data from the table
    System.out.println(i+=1);          
            ResultSet rs = s.getResultSet(); // get any ResultSet that came from our query
                if (rs != null) {
                    out.println("Customer Data: <br>");
                    while ( rs.next() )
                        out.println(rs.getString(3));                       
                        out.println(rs.getString(4)+"<BR>");                       
                        session.setAttribute("userId", rs.getString(1));
                        session.setAttribute("userName", rs.getString(17));
                out.println("Database connected");
            s.close(); // close the Statement to let the database know we're done with it
            con.close(); // close the Connection to let the database know we're done with it
                out.println("Database Disconnected");
                catch (Exception e) {
                    out.print(e);
    %>
    </body>
    </html>

  • Java xslt mapping

    hi,
      could any one please forward me java and xslt mapping step by step screen shots.
    I would be thankful to you ,if you do this.
    with regards,
    [email protected]

    Java Mapping
    /people/prasad.ulagappan2/blog/2005/06/29/java-mapping-part-i
    /people/alessandro.guarneri/blog/2007/03/25/xi-java-mapping-helper-dom
    /people/rahul.nawale2/blog/2006/07/18/java-mapping-an-alternate-way-of-reading-a-csv-file
    XSLT Mapping
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/01a57f0b-0501-0010-3ca9-d2ea3bb983c1
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9692eb84-0601-0010-5ca0-923b4fb8674a
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/006aa890-0201-0010-1eb1-afc5cbae3f15
    /people/sriram.vasudevan3/blog/2005/11/21/effective-xsl-for-multimapping-getting-source-filenames-in-legacy-legacy-scenarios
    Regards,
    Prateek

  • JAVA, XSLT, Mappings

    Hi,
            Can any one provide me the JAVA, XSLT Mappings with video demonstrations.
    Regards,
    Nissi

    Hello
    This thread is being locked by SDN moderator. Please familiarise yourself with the forum Rules of Engagement before posting on SDN. Please search the forum for existing answers before posting
    Rules of Engagement
    https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement
    Regards
    XI/PI Moderator

  • Performance of mappings (JAVA, XSLT, ABAP)

    Hello everybody,
    I would like to know about the performance of mappings using different languages (JAVA, XSLT, ABAP).
    Does anybody know which one will have the best performance?
    Thanks a lot.
    Regards Mario

    Hi Mario,
    I thought i will start of from scratch. Mapping is basically done to convert one form of xml into another form. This can be done using either of them mentioned below.
    - Graphical mapping
    - XSLT mapping
    - JAVA mapping
    - ABAP mapping
    There is no hard and fast rule for using the mapping techniques. But, I will try to put things in the right perspective for you.
    Graphical Mapping is used for simple mapping cases. When, the logic for your mapping is simple and straight forward and it does not involve any complex logic.
    Java and XSLT mapping are used when graphical mapping cannot help you.
    When the choice is between Java and XSLT, XSLT is simpler than java mapping and easier. But, it has its drawbacks. One among them being that you cannot use Java APIs and Classes in it. There might be cases in your mapping when you will have to perform something like a properties file look up or a DB lookup, such scenarios are not possible in XSLT and so, when you want to use some specific Java API's you will have to go for Java Mapping.
    Java Mapping uses 2 types of parsers. DOM and SAX. DOM is easier to use with lots of classes to help you create nodes and elements, but, DOM is very processor intensive.
    SAX parser is something that parses your XML one after the other, and so is not processor intensive. But, it is not exactly easy to develop either.
    To know more about each of them please go thru the following links. And if you ask me your which is better, it depends basically on the scenario you implementing and the complexity involved. Anyways please go thru the following links:
    Graphical mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/6d/aadd3e6ecb1f39e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/43/c4cdfc334824478090739c04c4a249/content.htm
    /people/bhanu.thirumala/blog/2006/02/02/graphical-message-mapping-150-text-preview
    http://www.sapgenie.com/netweaver/xi/mapping1.htm
    /people/alessandro.guarneri/blog/2006/01/26/throwing-smart-exceptions-in-xi-graphical-mapping
    XSLT mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/73/f61eea1741453eb8f794e150067930/content.htm
    http://www.w3.org/TR/xslt20/
    JAVA mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/e2/e13fcd80fe47768df001a558ed10b6/content.htm
    DOM parser API
                     http://java.sun.com/j2se/1.4.2/docs/api/org/w3c/dom/package-frame.html
    ABAP mapping
    /people/r.eijpe/blog
    To know more about the value mapping tools for the SAP Exchange Infrastructure (XI), please go thru the following link:
    http://www.applicon.dk/fileadmin/filer/XI_Tools/ValueMappingTool.pdf
    To get an idea as to what value mapping is, please go thru the following links:
    http://help.sap.com/saphelp_nw04/helpdata/en/13/ba20dd7beb14438bc7b04b5b6ca300/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/f2/dfae3d47afd652e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/2a/9d2891cc976549a9ad9f81e9b8db25/content.htm
    most of the links that I have provided also helps you get the step by step procedure of doing the same. And also involves the procedure to implement certain advanced features.
    And please go through this link which clearly explains the 3 types of mappings.
    /people/ravikumar.allampallam/blog/2005/02/10/different-types-of-mapping-in-xi
    Hope this clears your doubt fully.
    Regards,
    Abhy
    PS: AWARD POINTS FOR HELPUL ANSWERS.

  • This is the first time this has ever happened but I plug in any device iPod, iPhone and the computer opens up a found new hardware wizard. I can't sync any of my devices and I'm not happy. Any helpers?

    I can't connect any of my devices to my iTunes. Anytime I plug one of them into my computer I get a new hardware wizard window that pops up and I can seem to load anything from an iPod or iPhone if I run the wizard. Any helpers? I've been using iTunes on this computer for a very long time and this is the first time that this wizard has shown up ever. Please help.

    I have replied some one with the same problem.
    If your contacts saved in the SIM, you can import them from SIM. Please see this help.
    http://support.apple.com/kb/HT4994
    If not, you may use a third tool to recover your lost contacts.
    http://easy-iphone-recovery.blogspot.com/iphone-recovery-resource.html

  • URGENT : can any one please give me BAPI related material

    Hi there,
    please help me i am a new learner to BAPI i dont know any thing about it can any one please send me the BAPI related material  and also related videos or screen cams if available.

    http://www.sapmaterial.com/?gclid=CN322K28t4sCFQ-WbgodSGbK2g....>ALL
    STEP BY STEP for BAPI
    http://sap-img.com/abap/bapi-step-by-step-guidance.htm
    BAPI Programming Guide
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    BAPI User Guide
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://ifr.sap.com/catalog/query.asp
    http://www.****************/Tutorials/BAPI/BAPIMainPage.htm
    step by step BAPI Creation with screen shots.
    http://www.sapgenie.com/abap/bapi/example.htm
    BAPI Programming guide: -
    http://help.sap.com/saphelp_nw04/helpdata/en/e0/9eb2370f9cbe68e10000009b38f8cf/frameset.htm
    BAPI user guide: -
    http://help.sap.com/saphelp_46c/helpdata/en/7e/5e115e4a1611d1894c0000e829fbbd/frameset.htm
    BAPI STEP BY STEP PROCEDURE: -
    http://www.sap-img.com/abap/bapi-step-by-step-guidance.htm
    Example:-
    http://www.erpgenie.com/abap/bapi/example.htm
    PDF download: -
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/200dd1cc-589e-2910-98a9-bb2c48b78dfa
    list of all bapis
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    for BAPI's
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    http://www.planetsap.com/Bapi_main_page.htm
    http://www.topxml.com/sap/sap_idoc_xml.asp
    http://www.sapdevelopment.co.uk/
    http://www.sapdevelopment.co.uk/java/jco/bapi_jco.pdf
    Also refer to the following links..
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.planetsap.com/Bapi_main_page.htm
    http://www.sapgenie.com/abap/bapi/index.htm
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.****************/Tutorials/BAPI/CustomBAPICreation2/page1.htm
    There are 5 different steps in BAPI.
    Create BAPI Structure
    Create BAPI Function Module or API Method.
    Create BAPI object
    Release BAPI Function Module.
    Release BAPI object.
    Step1. Creating BAPI Structure:
    Go to <SE11>.
    Select Data Type & Enter a name.
    Click on Create.
    Note: Always BAPI should be in a development class with request number (Not Local Object).
    Select Structure & hit ENTER.
    Enter the fields from your database. Make sure that the first field is the Primary Key Field.
    Then SAVE & ACTIVATE.
    Step 2. Creating BAPI module:
    Enter TR.CODE <SE37>.
    Before entering any thing, from the present screen that you are in, select the menu
    Goto -> Function Groups -> Create Group.
    Enter a name (Note: This name Must start with ZBAPI)
    Let this screen be as it is and open another window and there, enter TR.CODE <SE80).
    Click on the Third ICON that says Inactive Objects.
    Select the group that you just created and click on Activate.
    Notice that the group you created will disappear from the list of inactive objects.
    Go back to <SE37> screen and enter a name and hit <ENTER>. Then enter the group name that you just created and activated.
    NOTE: When you release a function module the respective group will be attached to that particular application. It cannot be used for any other application. NEVER include an already existing group that is attached to another module.
    Now click on the first Tab that says ATTRIBUTES and select the radio button that says remote-enabled module since we will be accessing this from any external system.
    Then click on the second tab that says IMPORT.
    Enter a PARAMETER NAME, TYPE and the structure you created in the first step. Also select the check box ‘Pa’. All remotely enabled functional modules MUST be Pa enabled, where Pa means ‘Passed by Value’ and if you don’t select ‘Pa’, then that means it will be passed by reference..
    Then click on tab that says EXPORT.
    Enter the following as is in the first three fields
    RETURN TYPE BAPIRETURN (These 3 field values are always same)
    Here also select ‘Pa’ meaning Pass by value.
    Note: BAPIRETURN contains structure with message fields.
    Then SAVE and ACTIVATE.
    Step 3. Creating BAPI object:
    Enter Tr.Code <SWO1> (Note. It is letter ‘O’ and not Zero).
    Enter a name and then click on create. Enter details.
    NOTE: Make sure that that Object Type and Program name are SAME.
    Enter Application ‘M’, if you are using standard table Mara. If you are using your own database then select ‘Z’ at the bottom.
    Then hit <ENTER>.
    Now we have to add ‘Methods’. High light METHODS and then select the following from the menu:
    Goto Utilities -> API Methods -> Add Methods.
    Enter function Module name and hit <ENTER>.
    Select the second FORWARD ARROW button (>)to go to next step.
    Check if every thing looks ok and again click on FORWARD ARROW button (>).
    Then select ‘YES’ and click on <SAVE>.
    Now on a different screen goto TR.CODE <SE37>. Enter Function Module name and select from the top menu Function Module -> Release -> Release.
    Goback to TR.CODE <SWO1>.
    Here select the menu combination shown below in the same order.
    Edit -> Change Release Status -> Object Type Component -> To Implemented.
    Edit -> Change Release Status -> Object Type Component -> To Released.
    Edit -> Change Release Status -> Object Type -> To Implemented.
    Edit -> Change Release Status -> Object Type -> To Released.
    Then click on <SAVE>.
    Then click on Generate Button (4th button from left hand side looks like spinning wheel).
    Then Click on the button that says ‘PROGRAM’ to see the source code.
    To check if this is present in work flow goto TR.CODE <BAPI>.
    Here it shows business object repository.
    First click on the middle button and then select “ALL” and hit ENTER.
    Goto tab ALPHABETICAL and look for the object that you created. This shows that the BAPI object has been created successfully
    BAPI/RFC Interface
    A remote function call is a call to a function module running in a system different from the caller's.
    The remote function can also be called from within the same system (as a remote call), but usually caller and callee will be in different systems.
    In the SAP System, the ability to call remote functions is provided by the Remote Function Call interface system (RFC). RFC allows for remote calls between two SAP Systems (R/3 or R/2), or between an SAP System and a non-SAP System.
    RFC consists of the following interfaces:-
    A calling interface for ABAP programs
    Any ABAP program can call a remote function using the CALL FUNCTION...DESTINATION statement. The DESTINATION parameter tells the SAP System that the called function runs in a system other than the caller's.
    RFC communication with the remote system happens as part of the CALL FUNCTION statement.
    RFC functions running in an SAP System must be actual function modules, and must be registered in the SAP System as "remote".
    When both caller and called program are ABAP programs, the RFC interface provides both partners to the communication. The caller may be any ABAP program, while the called program must be a function module registered as remote.
    Calling interfaces for non-SAP programs
    When either the caller or the called partner is a non-ABAP program, it must be programmed to play the other partner in an RFC communication.
    To help implement RFC partner programs in non-SAP Systems, SAP provides-
    External Interfaces
    RFC-based and GUI-based interfaces can be used by external programs to call function modules in SAP R/2 or R/3 systems and execute them in these systems.
    Vice versa, ABAP programs in R/2 or R/3 can use the functions provided by external programs via these interfaces.
    Reward points..

  • Java / XSLT configuration project

    Hi
    Just wondering if anyone know�s if there are any Java / XSLT configuration project out there at the moment, open source or not.
    I�m going to be developing a drag and drop interface to develop html page using java, xslt and xml. Instead of hand writing the xslt each time, I hoping to develop something where I�II have a couple of different templates that will be populated using Java and XML
    Cheers in advance
    f

    I wrote a web application that uses XSLT to generate its HTML output once. And I did have the word "template" in mind. So basically each page is an XSLT document and the Java code feeds it XML (in the form of SAX events).
    But it's not "out there" in the sense that you can grab its code off the Internet.

  • XSLT Tranformation - XSL in a separate file?

    I'm using XSLT Tranformation service to transform an incoming XML document to a different format.  I've tested this successfully using a literal value for my XSL, but I'd like to store the XSL in a separate file rather than storing it as a literal string in the process properties.  However, I don't see any way to reference an XSL file in the process properties.  The only options are XPath expression, variable (string), literal value, and template.
    Alternatively, maybe there is a way to read the contents of an XSL file into a string variable which can then be used in the XSLT Tranformation?

    Hi Samuli!
    SECXML_DSIGNATURE doesn´t exist in my system  
    I ´m working with .txt files . I sign it with SSF_KRN_SIGN_BY_AS but I need to recover only the sign in a separated file.

  • Any Program to connect JAVA for DB from SAP

    Any Program to connect JAVA for DB from SAP,
    Rather than JCO Is there any other option,
    Please tell that option ,
    and how to do that,
    thank you,
    Regards.
    Jagrut BharatKumar Shukla

    Hello Al Mamun,
    SM59 is for RFC (remote function call).
    If you are looking for ODBC-like connection, would you consider Tcode DBCO, then use native ABAP code to connect to the remote SQL server?
    Best regards,
    Victor

  • "Please Enable Java" error when attempting to join GoToMeeting webinar in Firefox 4.

    Since upgrading to Firefox 4 I'm unable to join GoToMeeting webinars, such as
    https://www2.gotomeeting.com/join/298237491/106133365
    I receive a "Please Enable Java" error, see this URL for an example: https://www2.gotomeeting.com/island/joinError?e=JavaDisabled
    I double-checked and Java is enabled and updated to latest version. I also tested it on javatester.org with success.
    These types of webinar still function appropriately in Firefox 3.6.

    Thank you, nganju, for helping.
    I did the Explorer search on *.jar files with this phrase in the file:
    OracleConnectionPoolDataSource
    There were no results to display. I searched both the computer which is working and one that doesn't.
    I used printStackTrace() to get more error message. Is there a way to print the error msg to a file so I can paste it here? Among other things, it said the following:
    com.sun.naming.internal.VersionHelper12.loadClass(VersionHelper12...
    javax.naming.spi.NamingManager.getInitialContext(NamingManger...
    Does any of this help you? I have no idea what to do next except call for help.
    Help! : )

  • Is there any way to call java program whenever i login to R3 System.?

    Hi Experts
    Is there any way to call java program whenever i login to R3 System.
    Means Whenever the user login to R3 system i should trigger one java program.. Is there any way
    Please help me
    Thanks & Regards
    Ravi Shankar B

    If you want to access to the Windows Taskbar, you should call some Win32 APIs and JNI. Refer to Win32 references.

  • I have Mavericks on my iMac and the latest version of iPhoto 9.5.1 (902.17) but no book, card, calendar, album, slideshow, print and order prints options under Share, which still shows Set Desktop.  Any ideas please?

    I have Mavericks on my iMac and the latest version of iPhoto 9.5.1 (902.17) but no book, card, calendar, album, slideshow, print and order prints options under Share, which still shows Set Desktop.  Any ideas please?

    LN,
    Since I couldn't expand the zip file on my desktop, I expanded the file on an external drive.  Here's the information:
    Hardware Information:
              iMac (27-inch, Late 2012)
              iMac - model: iMac13,2
              1 3.4 GHz Intel Core i7 CPU: 4 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce GTX 675MX - VRAM: 1024 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    Startup Items:
              NUDC: Path: /Library/StartupItems/NUDC
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 0 days 0:16:52
    Disk Information:
              APPLE HDD ST1000DM003 disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 999.35 GB (698.05 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple Inc. iPod
              HGST G-Drive Mobile USB 1 TB
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        iMac Backup (disk1s2) /Volumes/iMac Backup: 999.86 GB (10.14 GB free)
              Elgato Systems EyeTV Hybrid
              Apple, Inc. Keyboard Hub
                        Apple, Inc Apple Keyboard
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. MacBook Air SuperDrive
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
              LSI Logic SYM13FW500-CDROM DRIVE 400mbit - 400mbit max
              Newer Technology, Inc. Oxford ATA Device 00 800mbit - 800mbit max
                        disk3s1 (disk3s1) <not mounted>: 32 KB
                        disk3s2 (disk3s2) <not mounted>: 29 KB
                        disk3s3 (disk3s3) <not mounted>: 29 KB
                        disk3s4 (disk3s4) <not mounted>: 29 KB
                        disk3s5 (disk3s5) <not mounted>: 29 KB
                        disk3s6 (disk3s6) <not mounted>: 262 KB
                        disk3s7 (disk3s7) <not mounted>: 262 KB
                        disk3s8 (disk3s8) <not mounted>: 262 KB
                        Media (disk3s10) /Volumes/Media: 499.97 GB (151.37 GB free)
              Newer Technology, Inc. Oxford ATA Device 00 800mbit - 800mbit max
                        EFI (disk2s1) <not mounted>: 209.7 MB
                        Mini Stack (disk2s2) /Volumes/Mini Stack: 999.86 GB (470.15 GB free)
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
                        Apple Inc. Thunderbolt to FireWire Adapter
    Kernel Extensions:
              com.AmbrosiaSW.AudioSupport          (4.1.2 - SDK 10.6)
              com.netralia.driver.VBMicDriver          (1.0.0 - SDK 10.7)
              com.netralia.driver.VBSpeakerDriver          (1.0.0 - SDK 10.7)
    Problem System Launch Daemons:
    Problem System Launch Agents:
              [failed] com.apple.accountsd.plist
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.elgato.EyeConnect.plist
              [failed] com.google.GoogleML.plist
              [loaded] com.google.keystone.daemon.plist
              [loaded] com.microsoft.office.licensing.helper.plist
              [invalid] com.oracle.java.Helper-Tool.plist
    Launch Agents:
              [failed] com.epson.eventmanager.agent.plist
              [failed] com.google.keystone.agent.plist
              [invalid] com.oracle.java.Java-Updater.plist
    User Launch Agents:
              [loaded] com.google.Chrome.framework.plist
              [failed] com.google.GoogleContactSyncAgent.plist
    User Login Items:
              EyeTV Helper
              apple-scc-20131222-190227
              Skype
              Messages
              Thunderbird
    3rd Party Preference Panes:
              remoting_host_prefpane
              Déjà Vu
              DivX
              Flash Player
              Flip4Mac WMV
              GPGPreferences
    Internet Plug-ins::
              Shutterfly: Version: 3.0.1
              Google Earth Web Plug-in: Version: 6.2
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8
              Musicnotes: Version: 1.17.3
              OfficeLiveBrowserPlugin: Version: 12.3.5
              PandoWebInst: Version: 1.0
              FlashPlayer-10.6: Version: 12.0.0.39 - SDK 10.6
              DivXBrowserPlugin: Version: 1.4
              RealPlayer Plugin: Version: (null)
              Flash Player: Version: 12.0.0.39 - SDK 10.6 Outdated! Update
              iPhotoPhotocast: Version: 7.0
              googletalkbrowserplugin: Version: 4.9.1.16010
              QuickTime Plugin: Version: 7.7.3
              AdobePDFViewer: Version: Unknown
              Photo Center Plugin: Version: Photo Center Plugin 1.1.2.0
              Silverlight: Version: 5.1.20913.0 - SDK 10.6
              ContentUploaderPlugin: Version: 1.2
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Outdated! Update
    User Internet Plug-ins::
              WebEx64: Version: 1.0
              Move_Media_Player: Version: npmnqmp 071505000006
              WebEx: Version: 1.0
              MRJPlugin: Version: 1.0-JEP-0.9.0
    Bad Fonts:
              None
    Old applications:
              Audiogalaxy Helper:          Version: 3 - SDK 10.5
                        /Applications/Audiogalaxy Helper.app
              Disc Cover 3:          Version: 3.0.10 - SDK 10.5
                        /Applications/Disc Cover 3.app
              Epson Printer Utility 4:          Version: 9.14 - SDK 10.5
                        /Library/Printers/EPSON/InkjetPrinter2/Utility/UT4/Epson Printer Utility 4.app
              Keynote:          Version: 5.3 - SDK 10.5
                        /Applications/iWork '09/Keynote.app
              Kies:          Version: 2.1.0.13071_1 - SDK 10.5
                        /Applications/Kies.app
              Microsoft Alerts Daemon:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Alerts Daemon.app
              Microsoft AutoUpdate:          Version: 2.3.6 - SDK 10.4
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              Microsoft Chart Converter:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Chart Converter.app
              Microsoft Clip Gallery:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Clip Gallery.app
              Microsoft Database Daemon:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.app
              Microsoft Database Utility:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Utility.app
              Microsoft Document Connection:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Document Connection.app
              Microsoft Error Reporting:          Version: 2.2.9 - SDK 10.4
                        /Library/Application Support/Microsoft/MERP2.0/Microsoft Error Reporting.app
              Microsoft Excel:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Excel.app
              Microsoft Graph:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Graph.app
              Microsoft Language Register:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
              Microsoft Office Reminders:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Office Reminders.app
              Microsoft Outlook:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Outlook.app
              Microsoft PowerPoint:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft PowerPoint.app
              Microsoft Ship Asserts:          Version: 1.1.4 - SDK 10.4
                        /Library/Application Support/Microsoft/MERP2.0/Microsoft Ship Asserts.app
              Microsoft Upload Center:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Upload Center.app
              Microsoft Word:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Word.app
              My Day:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/My Day.app
              Numbers:          Version: 2.3 - SDK 10.5
                        /Applications/iWork '09/Numbers.app
              Open XML for Excel:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Open XML for Excel.app
              Pages:          Version: 4.3 - SDK 10.5
                        /Applications/iWork '09/Pages.app
              SLLauncher:          Version: 1.0 - SDK 10.5
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              Senuti:          Version: 1.2.9 - SDK 10.5
                        /Applications/Senuti.app
              Solver:          Version: 1.0 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
              SyncServicesAgent:          Version: 14.3.1 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/SyncServicesAgent.app
              TechTool Deluxe:          Version: 3.1.4           - SDK 10.4
                        /Applications/TechTool Deluxe.app
              TurboTax Home Business 2011:          Version: 2011.r15.011 - SDK 10.4
                        /Applications/TurboTax Home Business 2011.app
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 930.71 GB Disk used: 280.61 GB
              Destinations:
                        iMac Backup [Local] (Last used)
                        Total size: 931.19 GB
                        Total number of backups: 31
                        Oldest backup: 2013-12-19 05:31:29 +0000
                        Last backup: 2013-12-26 15:57:21 +0000
                        Size of backup disk: Adequate
                                  Backup size 931.19 GB > (Disk used 280.61 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   2%          EyeTV
                   1%          WindowServer
                   1%          Google Chrome
                   1%          EtreCheck
                   0%          AddressBookSourceSync
    Top Processes by Memory:
              328 MB          thunderbird
              213 MB          com.apple.IconServicesAgent
              205 MB          mds_stores
              197 MB          iPhoto
              164 MB          Google Chrome
    Virtual Memory Statistics:
              2.81 GB          Free RAM
              3.50 GB          Active RAM
              778 MB          Inactive RAM
              948 MB          Wired RAM
              499 MB          Page-ins
              0 B          Page-outs

Maybe you are looking for

  • Please how do I fix this on my ipod nano "required file not found"

    I had my computer fixed and so I had redownload itunes again.All my my music got saved to a folder as a backup.Well when I downloaded it,I put all the songs on itunes and tried to sync my ipod to add new music.But,it kept saying it won't sync since r

  • Finding out JRE version

    I don't know, how to make a request for a new feature to JRE, but I have a suggestion for a very small enhancement: every now and then I need to check the version of the current default JRE in my machine, e.g. to check the current build of u10. So I

  • Invoice Receipt via FB01

    Hello all, I would like to ask, whether it is possible to post invoice receipt to an purchase order/SD order via the tc FB01. I know the usuall way is via MIRO. I'he tried to post it via FB01 with the document type RE, I filled the field purchase ord

  • PORTAL_ALV_QUERY_CALL timeout

    Hi, Our IT consultant created a custom iView based on a business package (...phonelist.par). After promoting it to production, we received complaints that the iView was timing out when the underlying R/3 query returned no data (i.e. when a user didn'

  • Raw support for Sony A7r

    Does photoshop elements 12 incorporate raw plugin 8.3 so that I can open raw files from my Sony A7r camera?