Regarding Java Help System...('',)

Hello All,
I had successfully implemented Java Help System for my chat messenger...
But the problem I am facing is.... after making a jar file of my helpsystem..I am trying to access my Helpset file from my java code....
When I click on Help topics button to display the Helpset It will give me the following error....
HelpSet: Could not parse
Got an IOException (null)
Parsing failed for null
HelpSet: Master.hs not found
Exception in thread "main" java.lang.NullPointerException
at HelpMenu.<init>(HelpMenu.java:30)
at HelpMenu.main(HelpMenu.java:63)
But I have placed that Jar file in my program....where all files are given....
Can anybody help me out here.....
Thanks in advance.....

I am using the following program to do so...
public class JavaHelpDemo extends JFrame
private HelpBroker someHelpBroker;
public JavaHelpDemo()
HelpSet hs;
try
        File f = new File("Master.hs");
        URL url = f.toURL();
        hs = new HelpSet (null, url);
        HelpBroker hb = hs.createHelpBroker();
        new CSH.DisplayHelpFromSource(hb);
        hb.setDisplayed(true);
      catch (Exception a)
        System.out.println("Error is here");
        System.out.print(a);
// constructor
public static void main(String[] args)
JavaHelpDemo javaHelpDemo1 = new JavaHelpDemo();
}//classActually my this program is running well and I m getting my helpset only when i insert all my files with htmls in my source path.....
I hav created a Jar or all these files and named it Help.jar
is there any way just to call that helpset using this jar without giving all files into source path.....
Regards,
Damz

Similar Messages

  • Java Help System

    Hi,
    i am using javax.help to create a help facility for my system. I am using the following code as shown in java's examples. However i cannot get the classloader to load my file. It comes back with a null file. I know that the location of the file is visible since when i create a new file with the name of that file, then it is successful. My code is as below:
    private void initHelp()
              ClassLoader cl = this.getClass().getClassLoader();
              HelpSet helpSet = null;
              try
                   File file =  new File("help/SampsClient.hs");
                   if (file != null)
                        System.out.println("the file is not null");
                        System.out.println("File" + file.lastModified());
                   URL hsURL = HelpSet.findHelpSet(cl, "help/SampsClient.hs");
                   //create the helpset
                   helpSet = new HelpSet(cl, hsURL);
                   //create a help broker
                   helpBroker = helpSet.createHelpBroker();
              catch(Exception e)
                   System.out.println(e.getMessage());
                   JOptionPane.showMessageDialog(MainMenuBar.this,"Help System could not be loaded up", "Warning", JOptionPane.PLAIN_MESSAGE);
         }

                   File file =  new File("help/SampsClient.hs");
                   if (file != null)file will never be "null", File reqresents the abstract concept of a file, so will exist even for for files that do not exist.

  • Winhelp Help system and Java

    Hello,
    Of the several products we develop, one, a Java program, uses the Java Help help system (logically). The others use a standard Winhelp help system (developed in Robohelp). Our current workflow for developing a help system for the Java program is to batch convert the Winhelp RTF files into HTML files. The problem is, most of our Winhelp formatting is either dropped or incorrectly represented in the Java help file. Also, I prefer the look and feel of a Winhelp system over Java.
    Is it possible for a Java program to be modified so that it supports a Winhelp help system and not a Java Help system? If so, how is this done, and where can one find information on the process?
    If not, what options do we have to "pretty up" the Java output from the conversion?
    Thanks!
    Todd

    Thanks for your response. Could you direct me to a resource that explains the steps for accomplishing this? I'll need to provide the development staff with instructions.
    Thanks again!

  • Help regarding java.lang.UnsatisfiedLinkError

    Hi everyone ,
    I have a doubt regarding native property. I am using eclipse I wrote a program (inputoutput.java) to clear the screen after printing a line. This program creates an object (�console�) of �test� class and calls �clear� method. The test class loads the �ClearFunc.dll� file. I placed the ClearFunc.dll file along with the other class files. When I execute it is giving the following error.
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no ClearFunc.dll in java.library.path
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.loadLibrary0(Unknown Source)
    at java.lang.System.loadLibrary(Unknown Source)
    at inputoutput.test.<clinit>(test.java:15)
    at inputoutput.Printing.printing(inputoutput.java:22)
    at inputoutput.inputoutput.main(inputoutput.java:51)
    �test.java code�
    package inputoutput;
    public class test {
    //static final String path ="D:/java_workspace/input_output/bin/inputoutput/ClearFunc";
    public native void clear();
    /*public static void main(String[] args) {
    new test().clear();
    static {
    try{
    System.out.println("hi");
    System.loadLibrary("ClearFunc.dll");
    System.out.println("hello");
    catch(Exception e)
    System.out.println(e.toString()+"santhu");
    e.printStackTrace();
    "inputoutput.java code"/**
    package inputoutput;
    import java.io.*;
    * @author Santhosh_Thadvai
    class Printing implements Runnable{
         Thread t;
         public void run(){
         public void printing()throws IOException,FileNotFoundException {
              try{
                   test console = new test();
                   t=new Thread();
              t.start();
              FileInputStream fileinputstream = new FileInputStream("out.txt");
              int value = fileinputstream.read();
              while(value!=-1){
                   System.out.print((char)value);
                   Thread.sleep(50);
                   value=fileinputstream.read();
                   if((char)value=='\n')
                        console.clear();
              fileinputstream.close();
              catch(InterruptedException e){
                   System.out.println(e);
    public class inputoutput {
         * @param args
         public static void main(String[] args) throws IOException {
              Printing b=new Printing();
              b.printing();
    }

    plz, surround your code with : [code ] [ /code ]

  • Solution Manager information for Java stack systems

    Hi,
    Could someone please help with the setup of Solution Manager, and how to connect to the backend of a Java stack system. For our ERP systems this is working via RFC, but I was hoping to get more information on the procedure for java. I can specify manually via SMSY, but I am sure there must be a setup that can pull the information for the system itself. Could anyone shed some light on this if possible please.
    Regards,
    Chris

    Dear Chris,
    ABAP Stacks use RFC as you know for inter system communications.
    Java stack systems use Solution Manager Diagnostics.
    You will need to run Solman_Setup > Managed System Configuration
    First you should visit the link http://service.sap.com/diagnostics
    There you will see a link to the media library, and there you will find complete documentation.
    Hope you find this information Helpful.
    Regards,
    Paul

  • WEBAS Java Technical system

    Hi all,
            Could you please give me an example of an application for which we would need to create WEB AS JAVA technical system?
    Regards,
    Ashish

    Hi,
    <i>Could you please give me an example of an application for which we would need to create WEB AS JAVA technical system?</i>
    In case of java proxies,u will create java proxies from interfaces in IR.
    But u would need some java application which will call methods of those java proxies,these proxies can be called using EJBs in java application.
    You will create EJBs from thses proxies and then use one java application to call these EJBs.
    When this java application gets executed it sends proxy message to XI,XI identifies this message with the help of technical ystem which should be of type WEBAS JAVA,because the server on which u deploy ur JAVA application is of type WAEAS JAVA.
    So u need to create WEBAS JAVA technical system to send message from JAVA proxies.
    Thanks.

  • Tutorial For Windows Application Help System RoboHelp 8

    Hi,
    I'm using Robohelp 8 and I've created several web based help projects.
    I now need to create a help system that will be part of a Windows application. A local help that will install with the app.
    Are there any tutorials on how to do this?
    Thanks

    Hi and welcome to the forums!
    I wrote an article for Adobe's Developer Network which you may find helpful on how to implement context sensitive help with a web application using the WebHelp API. It was written for an older version of RoboHelp, but the concepts are virtually the same.
    http://www.adobe.com/devnet-archive/robohelp/articles/context_help.html
    In additional you will find more information regarding application help from these two resources. Some of what you need will depend on the language and platform of the application (.NET, C++, C#, PHP, Java, etc.) These are covered in the documentation:
    This is the online help topic for context sensitive help on Adobe's website.
    http://help.adobe.com/en_US/RoboHelp/8.0/RoboHTML/WS5b3ccc516d4fbf351e63e3d11aff59c571-800 0.html
    Calling WebHelp on Peter Grainge's site
    http://www.grainge.org/pages/authoring/calling_webhelp/calling_webhelp.htm
    In addition, if your developers are using C++ language to develop their applications, you may find a new automatic feature in Adobe RoboHelp 9 to be useful.
    You can download a trial version to check it out here:
    http://www.adobe.com/products/robohelp.html
    John Daigle
    Adobe Certified RoboHelp and Captivate Instructor
    Evergreen, Colorado
    www.showmethedemo.com

  • Java/lang/system.gc() error

    Hi there, i have a problem with java.
    When i enter a webpage that uses a java menu script i get this message: " The applet is trying to invoke the java/lang/system.gc() operation " then i get 3 choises Allow, Disallow and Stop applet.
    I have tryed them all :( but it still popping up
    http://img246.imageshack.us/img246/3773/errorow3.jpg <-- image of the problem (The menu to the left contains alot of submenues)
    and the message appears when i just click at one of them, its quite annoying :s
    Its not the internet page, i have tryed it on another computer and there it works fine
    I am using J2SE(TM) Runtime Environment 5.0 Update 8 and have tryed some older versions to
    can someone help me :) ?
    Best regards
    Kristoffer
    Ps. sorry for bad english

    Can you export the log messages from the java console to a file, the export should contain a detailed exception stack for the issue which may give some hints of the issue. The Unsupported Features and APIs (Release 13.2) does not explicitly mention garbage collection as restricted, however it does mention:
        Setting of operating system environment variables, Java system properties, or JVM/Server command-line parameters.
    Since the issue seems to come from the gc call you could try disabling it from your by calling the WorkbookSettings.setGCDisabled(true) to see if that makes any difference. Note that if GC is disabled there will be impact on performance and / or resource consumption.
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Sun Java(tm) System Messaging Server 6.3-0.15 outgoing mail issue

    Hi,
    We are running Sun Java(tm) System Messaging Server 6.3-0.15 (built Feb  9 2007).
    with this java code if i change  email.setFrom(SenderEmial);   to any other email address than the mail server will send email form that email instead of authenticated which is a problem for us so that any one can misuse it. i need help regarding this issue.I think its due to lack of SSL security so i want to know that how i can enable SSL.
      Email email = new SimpleEmail();
        email.setSmtpPort(25);
        email.setAuthenticator(new DefaultAuthenticator("[email protected]","myPass"));
        email.setDebug(false);
        email.setHostName("mail.sunjavamail.com");
        email.setFrom(SenderEmial);  //By changing this my mail server is sending emails from any email address.
        email.setSubject("Hi");
        email.setMsg("Test Mail");
        email.addTo("[email protected]");
          // email.setTLS(true);
       // email.setSSL(true);
        email.send();
        System.out.println("Done");
    Thanks..

    Hi,
    I do not think this is unusual.  Out of the box there are no restrictions on From: addresses, they're not required to match the domain of the sender or match up with DNS results.  You can configure various restrictions or even modify the from address based on the users authenticated credentials, but not by default. 
    See the following documentation for details on restricting From: addresses:
    https://wikis.oracle.com/display/CommSuite/Mail+Filtering+and+Access+Control#MailFilteringandAccessControl-FROMACCESSDescription
    https://wikis.oracle.com/display/CommSuite/Handling+Forged+Email+by+Using+the+Sender+Policy+Framework

  • Need to develop a help system

    I need to develop a help system for a Client-Server Oracle Form Application.
    Can any one suggest any good packages to develop Help system?
    Does any one tried Oracle Help for Java (OHJ)?
    Please let me know your recommendations and opinions, thanks.
    null

    Two methods.
    One generate a HTML file and use the Web.Show_Document to display the help file.
    Two use shareware like 'Help Workshop' which can be found at www.cnet.com.
    Good Luck

  • Black Screen with cursor. Java Desktop System.

    Hello everyone.
    I've installed Solaris 10 05/08 x86 32bit in VMWare Workstation 6.5.
    After I logged in in the system (Java Desktop System, Release 3), I've got only a black screen with cursor, nothing more.
    X server: Xsun server configuration:
    Video Device: VMWare Inc vmware0405
    Video Driver: XF86 VMWARE
    Resolution/Colors: 800x600 65536 colors @75Hz
    Screen size: 17 inch
    Monitor type: MultiFrequency 56Hz (up to 1280x1024 interlaced)
    But the CDE starts normally.
    What's the problem?
    Help, please.
    P.S. Computer with VMWARE Workstation: Asus P4P800SE, P4HT 3.0Gz, 2.0Gb Ram, Ati AIW X800 AGP 256Mb..
    Edited by: xaxaTyH on Oct 9, 2008 7:26 AM
    Edited by: xaxaTyH on Oct 9, 2008 7:45 AM

    Hi
    Have you installed all the Recommended Patchset . If not try to install the patches .
    Regards

  • XSLT Mapping : RFC Lookup using java helper class

    Hi All,
    I am doing RFC Lookup in xslt mapping using java helper class. I have found blog for the same (http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/05a3d62e-0a01-0010-14bc-adc8efd4ee14) However this blog is very advanced.
    Can anybody help me with step by step approach for the same?
    My basic questions are not answered in the blog as:
    1) where to add the jar file of the java class used in xslt mapping.
    I have added zip file of XSLT mapping in imported archived and using that in mapping.
    Thanks in advace.
    Regards,
    Rohan

    Hi,
    Can u please have look at this in detail , u can easily point out yourself the problem...
    http://help.sap.com/saphelp_nw04/helpdata/en/55/7ef3003fc411d6b1f700508b5d5211/content.htm
    Please observe the line,
    xmlns:javamap="java:com.company.group.MappingClass
    in XSLT mapping..
    The packagename of class and class name and XSLT namespace should be matching...
    Babu
    Edited by: hlbabu123 on Sep 29, 2010 6:04 PM

  • Java Error in RFC Lookup in XSLT Mapping usinf Java helper class

    Hi All,
    I am doing RFC Lookup in XSLT Mapping using Java Helper class.
    The Lookup works fine when called one RFC at a time However my requirement is I want to do 2 Lookups.
    Both Lookups works when done individually however when I call both lookups in one mapping I get following error "javax.xml.transform.TransformerException: DOMSource whose Node is null."
    Following is the code I have written in XSLT for the lookup:
         <xsl:template name="Lookup_1">
              <xsl:param name="STDPN"/>
                   <rfc:RFC_READ_TABLE>
                        <QUERY_TABLE>KNA1</QUERY_TABLE>
                        <OPTIONS><item><TEXT>
                                  <xsl:value-of select="$STDPN"/>
                             </TEXT></item>
                        </OPTIONS>
                        <FIELDS>
                             <item>
                                  <FIELDNAME>KUNNR</FIELDNAME>
                             </item>
                        </FIELDS>
                   </rfc:RFC_READ_TABLE>
              </xsl:variable>
              <xsl:variable name="response" xmlns:lookup="java:urn.mt.pi" select="lookup:execute($request, 'BS_D, 'cc_RfcLookup', $inputparam)"/>
              <xsl:element name="STDPN">
                   <xsl:value-of select="$response//DATA/item/WA"/>
              </xsl:element>
         </xsl:template>
         <xsl:template name="Lookup_2">
              <xsl:param name="BELNR"/>
                   <xsl:variable name="Query">AGMNT = '<xsl:value-of select="$BELNR"/>'</xsl:variable>
                   <xsl:variable name="request1">
                        <rfc:RFC_READ_TABLE>
                             <QUERY_TABLE>ZTABLE</QUERY_TABLE>
                             <OPTIONS><item><TEXT>
                                  <xsl:value-of select="$Query"/>
                                  </TEXT></item>
                             </OPTIONS>
                             <FIELDS>
                                  <item>
                                       <FIELDNAME>KUNAG</FIELDNAME>
                                  </item>
                             </FIELDS>
                        </rfc:RFC_READ_TABLE>
                   </xsl:variable>
                   <xsl:variable name="response1" xmlns:lookup="java:urn.mt.pi" select="lookup:execute($request1, 'BS_D','cc_RfcLookup', $inputparam)"/>
                   <xsl:element name="BELNR">
                        <xsl:value-of select="$response1//DATA/item/WA"/>
                   </xsl:element>
         </xsl:template>
    My Question: Am I doing anything wrong? Or Is it possible to call multiple lookups in one XSLT?
    Thanks and Regards,
    Atul

    Hi Atul,
    I had the same problem like you had.
    The main Problem is that with the example code the request variable is created as NodeList object. In XSLT a variable is somekind of a constant and can't be changed. As the request object is empty after the first request the programm fails at the following line:
    Source source = new DOMSource(request.item(0));
    So I've created a workaround for this problem.
    In the call of the template I've put the request as a parameter object at the template call:
    <xsl:with-param name="req">
    <rfc:PLM_EXPLORE_BILL_OF_MATERIAL xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
      <APPLICATION>Z001</APPLICATION>
      <FLAG_NEW_EXPLOSION>X</FLAG_NEW_EXPLOSION>
      <MATERIALNUMBER><xsl:value-of select="value"/></MATERIALNUMBER>
      <PLANT>FSD0</PLANT>
      <VALIDFROM><xsl:value-of select="//Recordset/Row[name='DTM-031']/value"/></VALIDFROM>
      <BOMITEM_DATA/>
    </rfc:PLM_EXPLORE_BILL_OF_MATERIAL>
    </xsl:with-param>
    With this change the request will be provided as a String object and not as a NodeList object.
    Afterwards the RfcLookup.java has to be changed to the following:
    package com.franke.mappings;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.PrintWriter;
    import java.io.StringWriter;
    import java.util.Map;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.transform.Source;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.StreamResult;
    import org.w3c.dom.Document;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import com.sap.aii.mapping.lookup.Channel;
    import com.sap.aii.mapping.api.StreamTransformationConstants;
    import com.sap.aii.mapping.api.AbstractTrace;
    import com.sap.aii.mapping.lookup.RfcAccessor;
    import com.sap.aii.mapping.lookup.LookupService;
    import com.sap.aii.mapping.lookup.XmlPayload;
    * @author Thorsten Nordholm Søbirk, AppliCon A/S
    * Helper class for using the XI Lookup API with XSLT mappings for calling RFCs.
    * The class is generic in that it can be used to call any remote-enabled
    * function module in R/3. Generation of the XML request document and parsing of
    * the XML response is left to the stylesheet, where this can be done in a very
    * natural manner.
    * TD:
    * Changed the class that request is sent as String, because of IndexOutOfBound-exception
    * When sending multiple requests in one XSLT mapping.
    public class RfcLookup {
         * Execute RFC lookup.
         * @param request RFC request - TD: changed to String
         * @param service name of service
         * @param channelName name of communication channel
         * @param inputParam mapping parameters
         * @return Node containing RFC response
         public static Node execute( String request,
                 String service,
                 String channelName,
                 Map inputParam)
              AbstractTrace trace = (AbstractTrace) inputParam.get(StreamTransformationConstants.MAPPING_TRACE);
              Node responseNode = null;
              try {
                  // Get channel and accessor
                  Channel channel = LookupService.getChannel(service, channelName);
                  RfcAccessor accessor = LookupService.getRfcAccessor(channel);
                   // Serialise request NodeList - TD: Not needed anymore as request is String
                   /*TransformerFactory factory = TransformerFactory.newInstance();
                   Transformer transformer = factory.newTransformer();
                   Source source = new DOMSource(request.item(0));
                   ByteArrayOutputStream baos = new ByteArrayOutputStream();
                   StreamResult streamResult = new StreamResult(baos);
                   transformer.transform(source, streamResult);*/
                    // TD: Add xml header and remove linefeeds for the request string
                    request = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"+request.replaceAll("[\r\n]+", ""); 
                    // TD: Get byte Array from request String to send afterwards
                    byte[] requestBytes = request.getBytes();
                   // TD: Not used anymore as request is String
                    //byte[] requestBytes = baos.toByteArray();
                    trace.addDebugMessage("RFC Request: " + new String(requestBytes));
                    // Create input stream representing the function module request message
                    InputStream inputStream = new ByteArrayInputStream(requestBytes);
                    // Create XmlPayload
                    XmlPayload requestPayload =LookupService.getXmlPayload(inputStream);
                    // Execute lookup
                    XmlPayload responsePayload = accessor.call(requestPayload);
                    InputStream responseStream = responsePayload.getContent();
                    TeeInputStream tee = new TeeInputStream(responseStream);
                    // Create DOM tree for response
                    DocumentBuilder docBuilder =DocumentBuilderFactory.newInstance().newDocumentBuilder();
                    Document document = docBuilder.parse(tee);
                    trace.addDebugMessage("RFC Response: " + tee.getStringContent());
                    responseNode = document.getFirstChild();
              } catch (Throwable t) {
                   StringWriter sw = new StringWriter();
                   t.printStackTrace(new PrintWriter(sw));
                   trace.addWarning(sw.toString());
              return responseNode;
         * Helper class which collects stream input while reading.
         static class TeeInputStream extends InputStream {
               private ByteArrayOutputStream baos;
               private InputStream wrappedInputStream;
               TeeInputStream(InputStream inputStream) {
                    baos = new ByteArrayOutputStream();
                    wrappedInputStream = inputStream;
               * @return stream content as String
               String getStringContent() {
                    return baos.toString();
              /* (non-Javadoc)
              * @see java.io.InputStream#read()
              public int read() throws IOException {
                   int r = wrappedInputStream.read();
                   baos.write(r);
                   return r;
    Then you need to compile and upload this class and it should work.
    I hope that this helps you.
    Best regards
    Till

  • Where I can find and use "Java Desktop System Management Tools "

    With Solaris 10, you not only get the Java Desktop System desktop environment, but also the Java Desktop System Management Tools and a selection of free and trial Development Tools, which are available for download only.
    I found only an information about JDS release 2
    but today it's release 3 already and it's said it already integrated in JDS
    and above sentence it state that it already come with solaris 10?
    where i can find that , where i can use it
    http://docs.sun.com/app/docs/doc/817-7575/6mmsrpduj?a=view
    this page said how to install but ...where I can find CD/
    regards please help

    Good question. It appears to have been installed with Solaris 11/06, as I have all of the packages listed here:
    http://docs.sun.com/app/docs/doc/817-7575/6mmsrpdus?a=view
    However, it does not appear in the Java Web Console. I tried adding it using the wcadmin command, but haven't managed to get it to run as per the docs. The documentation assumes that it is already installed and visible in the Java Web Console...
    According to this documentation:
    http://docs.sun.com/app/docs/doc/817-1985/6mhm8o5l6?a=view#gdjpi
    An application for the Java Web Console should have a WEB-INF directory and an app.xml file. The apoc packages come with neither, so something is missing.

  • Code Sample: Easy RFC Lookup From XSLT Mappings Using a Java Helper Class

    Hi everyone,
    This is just a shameless plug for my article: <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/05a3d62e-0a01-0010-14bc-adc8efd4ee14">Easy RFC Lookup From XSLT Mappings Using a Java Helper Class</a>. I hope you're interested in reading it, and I welcome your comments in this thread.
    Kind regards,
    Thorsten

    Hi Stefan. Thanks for your post. I have already done that. It still does not work. As a base for my java helper class I have usesd Thorstens code.
    The problem is quite confusing. I will try to ouline both issues here.
    First of all, when try to test from within the Operation Mapping, I always get a java error saying it cannot find the communication channel (it is there and working because I have tested it with the RFCLookup in graphical mapping). I have found a way to work around this, and that is to uncheck the "Use SAP XMLToolkit" checkbox --> switch to test tab, enter my ReceiverService in the parameter tab (header parameter) --> switch back to Definition tab, check the "Use SAP XMLToolkit" checkbox --> switch to Test tab and run the test. Then the XSLT and call to java helper class will work. Of course this is not really something you want to do all the time. Maybe there is a bug.
    Secondly, it never works when I try to do it "live". I am using a file adapter to pick up one file, convert it and a file adapter to drop the converted file. I get the following error code in SXMB_MONI.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <!--  Request Message Mapping   -->
    <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>Application</SAP:Category>
      <SAP:Code area="MAPPING">TRANSFORMER_CONF_EX</SAP:Code>
      <SAP:P1>ATJ_Accounting2XML_Accounting.xsl</SAP:P1>
      <SAP:P2>http://rd.accounting.logica.com</SAP:P2>
      <SAP:P3>fd552c30-bad9-11dd-9761-c21dac1b818c</SAP:P3>
      <SAP:P4>-1</SAP:P4>
      <SAP:AdditionalText />
      <SAP:Stack>TransformerConfigurationException triggered while loading XSLT mapping ATJ_Accounting2XML_Accounting.xsl; http://rd.accounting.logica.comfd552c30-bad9-11dd-9761-c21dac1b818c-1</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Using an XSLT without a call to a java helper class, works just fine.
    I am totally at a loss here. Any more input would be much appreciated.
    /Patrik

Maybe you are looking for

  • ITunes freezes when syncing iPad to a new comp

    I recently bought a new computer to replace my old one, and now my iPad 2 won't sync. iTunes just freezes, even though I "authorized" the new computer (which has a different name than my old one).  What measures can I take to sync my iPad to the new

  • Windows Games compatability with OSX

    I am curious if there is any way to operate these new computer cames coming out tagged Vista and XP compatible on my Macbook? Do i need to dual run windows with OSX or can I just install and go?

  • I have to reconnect to my DAQ device every time I start my computer... Why?

    Hello, I am Ricky, a process engineer intern at a company. I am still a novice at LabVIEW and NI MAX. We have one cDAQ9181 set up to pneumatics and another set up to an encoder. Now, every time I start my computer the pneumatics box is already connec

  • Fixed lot size and Minimum lot size

    Dear senior, My client has the following scenario. His supplier provides the item in a fixed lot size of 100. The minimum lot size to be ordered is 300. The supplier is a fixed vendor. I tried to maintain this information in the Material Master MRP v

  • HH3 no software upgrade has occurred and HH3 keeps...

    Hi, My HH3 has been installed for a while now, over 4 months, and no software upgrade has ever occurred on it. Currently the Software version is 4.7.5.1.83.8.57 (Type A). The hub works fine and I am getting a speed out of it that is fine for the exch