Java on i386SX25 / 286?

Hi,
does someone know what would happen if you try to install Java on an old i386 or i286 system?
Would it work? (even if much moooore slooower)

does someone know what would happen if you try to
install Java on an old i386 or i286 system?
Would it work? (even if much moooore slooower)It is unlikely that the current JVM's will work correctly on 386sx and certainly not a 286 box. The JVM implementation likely takes advantage of various Pentium-specific instructions. The 386sx will be a problem for that reason, and the 286 isn't even a 32-bit CPU and cannot run any of the OS's that current JVM's are available for (at least none that I know - if I recall, even Windows 95 required a 486 or better CPU, and I don't think Linux supports such old machines either)).
You could always try and see what you can get to run.
Oh, and of course performance would suck, but depending on what you are trying to do, CPU speed isn't always critical. Of course a 16 to 33 MHz 386sx going to truly suck in comparision to a 2200 MHz Pentium 4...
Chuck

Similar Messages

  • Want help to execute the programm of MethodEntryEvent

    Hi,
    I am trying to develop a programm for automatic logging in the programme. I took the hepl of java API and the Google site for searching some programms and successed also. but while running these sample programms i am getting classNotFound exception and some other exceptions also. i executed the programm Seq.java downloaded from the site http://search.cpan.org/src/PHILCROW/UML-Sequence-0.05/java/Seq.java. i am not able to understand how to execute it. what ever i tried its giving the same output whatever defined in the System.err() in the file. but it should display the corrosponding class details for which i need to see the output.
    can anyone help me in this regard and tell me the process to execute the programm.
    i took another e.g. trace example, which (in J2SE 1.4.x or 5.x) will be found in $JAVA_HOME/demo/jpda/examples.jar and unpacking it by
    jar -xvf $JAVA_HOME/demo/jpda/examples.jar i found the
    com/sun/tools/example/trace/Trace.java
    when i tried to execute it to see the output for some other programm i got the following exceptions,
    -- VM Started --
    ====== main ======
    main -- DateExample
    | Exception: instance of java.lang.ClassNotFoundException(id=97) catch: java.lang.ClassLoader:286
    | | | | | | | | | | | | | | | | | | | | Exception: instance of java.lang.ClassNotFoundException(id=98) catch: java.lang.ClassLoader:286
    | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.lang.ClassNotFoundException(id=98) catch: java.lang.ClassLoader:286
    | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=99) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=99) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=100) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=100) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=101) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=101) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.lang.ClassNotFoundException(id=102) catch: java.util.ResourceBundle:1074
    | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.lang.ClassNotFoundException(id=102) catch: java.util.ResourceBundle:1074
    | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=105) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=105) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=106) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=106) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=115) catch: null
    | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=118) catch: null
    ====== main end ======
    -- The application exited --
    i execute this programm i used the command as
    java Trace -output trace.log DateExample
    where trace.log is output file and DateExample is the java file.
    Can any one help me in this regard to execute the programms and can give me a detailed solution procedure.
    can anyone suggest me any other programm for auto exit and entry display for classes or methods with detailed execution steps.
    Thanks,

    Hi,
    i tried by setting the class path in the environment variables.
    still i am getting the same exceptions. i m sending the files on which i m working and requesting to give some solution. the files are
    // Trace.java
    import com.sun.jdi.VirtualMachine;
    import com.sun.jdi.Bootstrap;
    import com.sun.jdi.connect.*;
    import java.util.Map;
    import java.util.List;
    import java.util.Iterator;
    import java.io.PrintWriter;
    import java.io.FileWriter;
    import java.io.IOException;
    * This program traces the execution of another program.
    * See "java Trace -help".
    * It is a simple example of the use of the Java Debug Interface.
    * @version @(#) Trace.java 1.4 03/01/23 17:55:38
    * @author Robert Field
    public class Trace {
    // Running remote VM
    private final VirtualMachine vm;
    // Thread transferring remote error stream to our error stream
    private Thread errThread = null;
    // Thread transferring remote output stream to our output stream
    private Thread outThread = null;
    // Mode for tracing the Trace program (default= 0 off)
    private int debugTraceMode = 0;
    // Do we want to watch assignments to fields
    private boolean watchFields = false;
    // Class patterns for which we don't want events
    private String[] excludes = {"java.*", "javax.*", "sun.*",
    "com.sun.*"};
    * main
    public static void main(String[] args) {
    //new Trace(args);
    //DateExample d = new DateExample();
    //String[] arg = {(new DateExample().toString())};
    //String[] arg = {"E:/java_progs/classLoader/project logging/com/sun/tools/example/trace/DateExample.java"};
    //d.dateDisplay();
    new Trace(args);
    * Parse the command line arguments.
    * Launch target VM.
    * Generate the trace.
    Trace(String[] args) {
    System.out.println("entered into the method Trace(String[] args)");
    PrintWriter writer = new PrintWriter(System.out);
    System.out.println("Printer object created.....");
    int inx;
    for (inx = 0; inx < args.length; ++inx) {
    System.out.println("inside for loop args.length is "+args.length+" and the data is "+args[inx]);
    String arg = args[inx];
    if (arg.charAt(0) != '-') {
    break;
    if (arg.equals("-output")) {
    System.out.println("inside args== -output");
    try {
    writer = new PrintWriter(new FileWriter(args[++inx]));
    System.out.println("writer object createed....");
    } catch (IOException exc) {
    System.err.println("Cannot open output file: " + args[inx]
    + " - " + exc);
    System.exit(1);
    } else if (arg.equals("-all")) {
    System.out.println("inside args== -all");
    excludes = new String[0];
    } else if (arg.equals("-fields")) {
    System.out.println("inside args== -fields");
    watchFields = true;
    } else if (arg.equals("-dbgtrace")) {
    System.out.println("inside args== -bdgtrace");
    debugTraceMode = Integer.parseInt(args[++inx]);
    System.out.println("inside args== -bdgtrace the debugTraceMode is "+debugTraceMode);
    } else if (arg.equals("-help")) {
    System.out.println("inside args== -help called usage();");
    usage();
    System.exit(0);
    } else {
    System.err.println("No option: " + arg);
    usage();
    System.exit(1);
    System.out.println("the index is "+inx+" the args.length is "+args.length);
    if (inx >= args.length) {
    System.err.println("<class> missing");
    usage();
    System.exit(1);
    StringBuffer sb = new StringBuffer();
    sb.append(args[inx]);
    for (++inx; inx < args.length; ++inx) {
    sb.append(' ');
    sb.append(args[inx]);
    System.out.println("the string buffer contains \n "+sb);
    vm = launchTarget(sb.toString());
    generateTrace(writer);
    System.out.println("after generateTrace(writer)");
    * Generate the trace.
    * Enable events, start thread to display events,
    * start threads to forward remote error and output streams,
    * resume the remote VM, wait for the final event, and shutdown.
    void generateTrace(PrintWriter writer) {
    System.out.println("inside generateTrace(PrintWriter writer) the debugTraceMode is "+debugTraceMode);
    vm.setDebugTraceMode(debugTraceMode);
    EventThread eventThread = new EventThread(vm, excludes, writer);
    eventThread.setEventRequests(watchFields);
    System.out.println("inside generateTrace(PrintWriter writer) the eventThread.setEventRequests(watchFields) is ");
    eventThread.start();
    redirectOutput();
    vm.resume();
    // Shutdown begins when event thread terminates
    try {
    eventThread.join();
    errThread.join(); // Make sure output is forwarded
    outThread.join(); // before we exit
    } catch (InterruptedException exc) {
    // we don't interrupt
    writer.close();
    System.out.println("the writer is closed....");
    * Launch target VM.
    * Forward target's output and error.
    VirtualMachine launchTarget(String mainArgs) {
    System.out.println("inside VirtualMachine launchTarget(String mainArgs) "+mainArgs);
    LaunchingConnector connector = findLaunchingConnector();
    System.out.println("Lunching connector found "+connector);
    Map arguments = connectorArguments(connector, mainArgs);
    try {
    return connector.launch(arguments);
    } catch (IOException exc) {
    throw new Error("Unable to launch target VM: " + exc);
    } catch (IllegalConnectorArgumentsException exc) {
    throw new Error("Internal error: " + exc);
    } catch (VMStartException exc) {
    throw new Error("Target VM failed to initialize: " +
    exc.getMessage());
    void redirectOutput() {
    Process process = vm.process();
    System.out.println("inside redirectOutput() after getting the virtual m/c process");
    // Copy target's output and error to our output and error.
    errThread = new StreamRedirectThread("error reader",
    process.getErrorStream(),
    System.err);
    outThread = new StreamRedirectThread("output reader",
    process.getInputStream(),
    System.out);
    errThread.start();
    outThread.start();
    * Find a com.sun.jdi.CommandLineLaunch connector
    LaunchingConnector findLaunchingConnector() {
    List connectors = Bootstrap.virtualMachineManager().allConnectors();
    System.out.println("inside redirectOutput() after getting the connectors list");
    Iterator iter = connectors.iterator();
    while (iter.hasNext()) {
    Connector connector = (Connector)iter.next();
    System.out.println("inside while (iter.hasNext()) after getting the connector objects from itterator");
    if (connector.name().equals("com.sun.jdi.CommandLineLaunch")) {
    System.out.println("inside if (connector.name().equals('com.sun.jdi.CommandLineLaunch'))");
    return (LaunchingConnector)connector;
    throw new Error("No launching connector");
    * Return the launching connector's arguments.
    Map connectorArguments(LaunchingConnector connector, String mainArgs) {
    System.out.println("Map connectorArguments(LaunchingConnector connector, String mainArgs) the mainArgs is "+mainArgs);
    Map arguments = connector.defaultArguments();
    Connector.Argument mainArg =
    (Connector.Argument)arguments.get("main");
    if (mainArg == null) {
    System.out.println("inside the mainArg==null ");
    throw new Error("Bad launching connector");
    mainArg.setValue(mainArgs);
    System.out.println("the mainArg is "+mainArg);
    if (watchFields) {
    System.out.println("inside the if (watchFields)********");
    // We need a VM that supports watchpoints
    Connector.Argument optionArg =
    (Connector.Argument)arguments.get("options");
    if (optionArg == null) {
    throw new Error("Bad launching connector");
    System.out.println("inside the if (watchFields)the optionArg is "+optionArg);
    optionArg.setValue("-classic");
    System.out.println("optionArg.getValue() is ");
    return arguments;
    * Print command line usage help
    void usage() {
    System.out.println("inside usage()");
    System.err.println("Usage: java Trace <options> <class> <args>");
    System.err.println("<options> are:");
    System.err.println(
    " -output <filename> Output trace to <filename>");
    System.err.println(
    " -all Include system classes in output");
    System.err.println(
    " -help Print this help message");
    System.err.println("<class> is the program to trace");
    System.err.println("<args> are the arguments to <class>");
    // DateExample.java
    import java.util.Date;
    import java.text.DateFormat;
    import java.util.Calendar;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    public class DateExample {
    public static void main(String[] args) {
    Date a = new Date();
    System.out.println("Today is : "+a);
    Calendar ca= Calendar.getInstance();
    ca.set(a.getYear(),a.getMonth(),a.getDate());
    ca.add(Calendar.DATE,1);
    DateFormat df1 = DateFormat.getDateInstance(DateFormat.SHORT);
    String s1 = df1.format(ca.getTime());
    System.out.println("(SHORT) Today is + 1 :" + s1);
    //java.sql.Date s = new java.sql.Date(2005,6,1);
    //System.out.println("Date from sql is : "+s);
    Date a1 = new Date(2005,06,01);
    System.out.println("Today is a1 : "+a1);
    java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("MM-dd-yyyy HH:mm:ss");
    System.out.println("After format :"+formatter.format(a1));
    System.out.println("After format :"+formatter.format(new Date(s1)));
    java.text.SimpleDateFormat formatter1 = new java.text.SimpleDateFormat("MM/dd/yyyy HH:mm:ss");
    System.out.println("After format :"+formatter1.format(a1));
    // EventThread.java
    import com.sun.jdi.*;
    import com.sun.jdi.request.*;
    import com.sun.jdi.event.*;
    import java.util.*;
    import java.io.PrintWriter;
    * This class processes incoming JDI events and displays them
    * @version @(#) EventThread.java 1.4 03/01/23 17:55:38
    * @author Robert Field
    public class EventThread extends Thread {
    private final VirtualMachine vm; // Running VM
    private final String[] excludes; // Packages to exclude
    private final PrintWriter writer; // Where output goes
    static String nextBaseIndent = ""; // Starting indent for next thread
    private boolean connected = true; // Connected to VM
    private boolean vmDied = true; // VMDeath occurred
    // Maps ThreadReference to ThreadTrace instances
    private Map traceMap = new HashMap();
    EventThread(VirtualMachine vm, String[] excludes, PrintWriter writer) {
    super("event-handler");
    this.vm = vm;
    this.excludes = excludes;
    this.writer = writer;
    System.out.println("inside EventThread(VirtualMachine vm, String[] excludes, PrintWriter writer) ");
    * Run the event handling thread.
    * As long as we are connected, get event sets off
    * the queue and dispatch the events within them.
    public void run() {
    System.out.println("inside run() ");
    EventQueue queue = vm.eventQueue();
    while (connected) {
    System.out.println("inside while (connected) ");
    try {
    EventSet eventSet = queue.remove();
    EventIterator it = eventSet.eventIterator();
    System.out.println("got EventSet and EventIterator *** ");
    while (it.hasNext()) {
    System.out.println("inside while (it.hasNext())");
    handleEvent(it.nextEvent());
    eventSet.resume();
    System.out.println("event is resumed ***** ");
    } catch (InterruptedException exc) {
    // Ignore
    } catch (VMDisconnectedException discExc) {
    handleDisconnectedException();
    break;
    * Create the desired event requests, and enable
    * them so that we will get events.
    * @param excludes Class patterns for which we don't want events
    * @param watchFields Do we want to watch assignments to fields
    void setEventRequests(boolean watchFields) {
    System.out.println("inside setEventRequests(boolean watchFields) ");
    EventRequestManager mgr = vm.eventRequestManager();
    // want all exceptions
    ExceptionRequest excReq = mgr.createExceptionRequest(null,
    true, true);
    // suspend so we can step
    excReq.setSuspendPolicy(EventRequest.SUSPEND_ALL);
    excReq.enable();
    MethodEntryRequest menr = mgr.createMethodEntryRequest();
    for (int i=0; i<excludes.length; ++i) {
    System.out.println("inside for (int i=0; i><excludes.length; ++i) for createMethodEntryRequest() ");
    menr.addClassExclusionFilter(excludes);
    menr.setSuspendPolicy(EventRequest.SUSPEND_NONE);
    menr.enable();
    MethodExitRequest mexr = mgr.createMethodExitRequest();
    for (int i=0; i><excludes.length; ++i) {
    System.out.println("inside for (int i=0; i><excludes.length; ++i) for createMethodExitRequest() ");
    mexr.addClassExclusionFilter(excludes);
    mexr.setSuspendPolicy(EventRequest.SUSPEND_NONE);
    mexr.enable();
    ThreadDeathRequest tdr = mgr.createThreadDeathRequest();
    // Make sure we sync on thread death
    tdr.setSuspendPolicy(EventRequest.SUSPEND_ALL);
    tdr.enable();
    if (watchFields) {
    System.out.println("inside if (watchFields) ************** ");
    ClassPrepareRequest cpr = mgr.createClassPrepareRequest();
    for (int i=0; i><excludes.length; ++i) {
    System.out.println("inside for (int i=0; i><excludes.length; ++i) the excludes.length is ************** "+excludes.length);
    cpr.addClassExclusionFilter(excludes);
    cpr.setSuspendPolicy(EventRequest.SUSPEND_ALL);
    cpr.enable();
    * This class keeps context on events in one thread.
    * In this implementation, context is the indentation prefix.
    class ThreadTrace {
    final ThreadReference thread;
    final String baseIndent;
    static final String threadDelta = " ";
    StringBuffer indent;
    ThreadTrace(ThreadReference thread) {
    System.out.println("inside ThreadTrace(ThreadReference thread)");
    this.thread = thread;
    this.baseIndent = nextBaseIndent;
    indent = new StringBuffer(baseIndent);
    nextBaseIndent += threadDelta;
    println("====== " + thread.name() + " ======");
    private void println(String str) {
    System.out.println("inside void println(String str)");
    writer.print(indent);
    writer.println(str);
    void methodEntryEvent(MethodEntryEvent event) {
    System.out.println("inside methodEntryEvent(MethodEntryEvent event)");
    println(event.method().name() + " -- "
    + event.method().declaringType().name());
    indent.append("| ");
    void methodExitEvent(MethodExitEvent event) {
    System.out.println("inside methodExitEvent(MethodExitEvent event)");
    indent.setLength(indent.length()-2);
    void fieldWatchEvent(ModificationWatchpointEvent event) {
    System.out.println("inside fieldWatchEvent(ModificationWatchpointEvent event)");
    Field field = event.field();
    Value value = event.valueToBe();
    println(" " + field.name() + " = " + value);
    void exceptionEvent(ExceptionEvent event) {
    System.out.println("inside exceptionEvent(ExceptionEvent event) ");
    println("Exception: " + event.exception() +
    " catch: " + event.catchLocation());
    // Step to the catch
    EventRequestManager mgr = vm.eventRequestManager();
    StepRequest req = mgr.createStepRequest(thread,
    StepRequest.STEP_MIN,
    StepRequest.STEP_INTO);
    System.out.println("stepRequest is created "+req);
    req.addCountFilter(1); // next step only
    req.setSuspendPolicy(EventRequest.SUSPEND_ALL);
    req.enable();
    // Step to exception catch
    void stepEvent(StepEvent event) {
    System.out.println("inside stepEvent(StepEvent event) ");
    // Adjust call depth
    int cnt = 0;
    indent = new StringBuffer(baseIndent);
    try {
    cnt = thread.frameCount();
    System.out.println("inside try cnt is "+cnt);
    } catch (IncompatibleThreadStateException exc) {
    while (cnt-- > 0) {
    System.out.println("inside while indent is "+indent);
    indent.append("| ");
    EventRequestManager mgr = vm.eventRequestManager();
    mgr.deleteEventRequest(event.request());
    void threadDeathEvent(ThreadDeathEvent event) {
    System.out.println("inside threadDeathEvent(ThreadDeathEvent event) ");
    indent = new StringBuffer(baseIndent);
    println("====== " + thread.name() + " end ======");
    * Returns the ThreadTrace instance for the specified thread,
    * creating one if needed.
    ThreadTrace threadTrace(ThreadReference thread) {
    ThreadTrace trace = (ThreadTrace)traceMap.get(thread);
    System.out.println("inside ThreadTrace threadTrace(ThreadReference thread) trace is "+trace);
    if (trace == null) {
    trace = new ThreadTrace(thread);
    traceMap.put(thread, trace);
    return trace;
    * Dispatch incoming events
    private void handleEvent(Event event) {
    System.out.println("inside handleEvent(Event event) ");
    if (event instanceof ExceptionEvent) {
    System.out.println("inside handleEvent(Event event) in ExceptionEvent ");
    exceptionEvent((ExceptionEvent)event);
    } else if (event instanceof ModificationWatchpointEvent) {
    System.out.println("inside handleEvent(Event event) in ModificationWatchpointEvent ");
    fieldWatchEvent((ModificationWatchpointEvent)event);
    } else if (event instanceof MethodEntryEvent) {
    System.out.println("inside handleEvent(Event event) in MethodEntryEvent ");
    methodEntryEvent((MethodEntryEvent)event);
    } else if (event instanceof MethodExitEvent) {
    System.out.println("inside handleEvent(Event event) in MethodExitEvent ");
    methodExitEvent((MethodExitEvent)event);
    } else if (event instanceof StepEvent) {
    System.out.println("inside handleEvent(Event event) in StepEvent ");
    stepEvent((StepEvent)event);
    } else if (event instanceof ThreadDeathEvent) {
    System.out.println("inside handleEvent(Event event) in ThreadDeathEvent ");
    threadDeathEvent((ThreadDeathEvent)event);
    } else if (event instanceof ClassPrepareEvent) {
    System.out.println("inside handleEvent(Event event) in ClassPrepareEvent ");
    classPrepareEvent((ClassPrepareEvent)event);
    } else if (event instanceof VMStartEvent) {
    System.out.println("inside handleEvent(Event event) in VMStartEvent ");
    vmStartEvent((VMStartEvent)event);
    } else if (event instanceof VMDeathEvent) {
    System.out.println("inside handleEvent(Event event) in VMDeathEvent ");
    vmDeathEvent((VMDeathEvent)event);
    } else if (event instanceof VMDisconnectEvent) {
    System.out.println("inside handleEvent(Event event) in VMDisconnectEvent ");
    vmDisconnectEvent((VMDisconnectEvent)event);
    } else {
    System.out.println("inside handleEvent(Event event) in else unexcepted type ");
    throw new Error("Unexpected event type");
    * A VMDisconnectedException has happened while dealing with
    * another event. We need to flush the event queue, dealing only
    * with exit events (VMDeath, VMDisconnect) so that we terminate
    * correctly.
    synchronized void handleDisconnectedException() {
    System.out.println("inside handleDisconnectedException() ");
    EventQueue queue = vm.eventQueue();
    while (connected) {
    System.out.println("inside handleDisconnectedException() in while (connected) ");
    try {
    EventSet eventSet = queue.remove();
    EventIterator iter = eventSet.eventIterator();
    System.out.println("inside handleDisconnectedException() got EventSet & EventIterator ");
    while (iter.hasNext()) {
    System.out.println("inside handleDisconnectedException() in while (iter.hasNext()) ");
    Event event = iter.nextEvent();
    if (event instanceof VMDeathEvent) {
    System.out.println("inside handleDisconnectedException() in if ");
    vmDeathEvent((VMDeathEvent)event);
    } else if (event instanceof VMDisconnectEvent) {
    System.out.println("inside handleDisconnectedException() in else ");
    vmDisconnectEvent((VMDisconnectEvent)event);
    eventSet.resume(); // Resume the VM
    } catch (InterruptedException exc) {
    // ignore
    private void vmStartEvent(VMStartEvent event) {
    System.out.println("inside vmStartEvent(VMStartEvent event)**** ");
    writer.println("-- VM Started --");
    // Forward event for thread specific processing
    private void methodEntryEvent(MethodEntryEvent event) {
    System.out.println("inside methodEntryEvent(MethodEntryEvent event)****** ");
    threadTrace(event.thread()).methodEntryEvent(event);
    // Forward event for thread specific processing
    private void methodExitEvent(MethodExitEvent event) {
    System.out.println("inside methodExitEvent(MethodExitEvent event)****** ");
    threadTrace(event.thread()).methodExitEvent(event);
    // Forward event for thread specific processing
    private void stepEvent(StepEvent event) {
    System.out.println("inside stepEvent(StepEvent event)****** ");
    threadTrace(event.thread()).stepEvent(event);
    // Forward event for thread specific processing
    private void fieldWatchEvent(ModificationWatchpointEvent event) {
    System.out.println("inside fieldWatchEvent(ModificationWatchpointEvent event)***** ");
    threadTrace(event.thread()).fieldWatchEvent(event);
    void threadDeathEvent(ThreadDeathEvent event) {
    System.out.println("inside threadDeathEvent(ThreadDeathEvent event)****** ");
    ThreadTrace trace = (ThreadTrace)traceMap.get(event.thread());
    if (trace != null) { // only want threads we care about
    trace.threadDeathEvent(event); // Forward event
    * A new class has been loaded.
    * Set watchpoints on each of its fields
    private void classPrepareEvent(ClassPrepareEvent event) {
    System.out.println("inside classPrepareEvent(ClassPrepareEvent event)****** ");
    EventRequestManager mgr = vm.eventRequestManager();
    List fields = event.referenceType().visibleFields();
    for (Iterator it = fields.iterator(); it.hasNext(); ) {
    System.out.println("inside classPrepareEvent(ClassPrepareEvent event) inside for loop Iterator ****** ");
    Field field = (Field)it.next();
    ModificationWatchpointRequest req =
    mgr.createModificationWatchpointRequest(field);
    for (int i=0; i<excludes.length; ++i) {
    System.out.println("inside classPrepareEvent(ClassPrepareEvent event) inside for loop int ****** ");
    req.addClassExclusionFilter(excludes);
    req.setSuspendPolicy(EventRequest.SUSPEND_NONE);
    req.enable();
    private void exceptionEvent(ExceptionEvent event) {
    System.out.println("inside exceptionEvent(ExceptionEvent event)****** ");
    ThreadTrace trace = (ThreadTrace)traceMap.get(event.thread());
    if (trace != null) { // only want threads we care about
    trace.exceptionEvent(event); // Forward event
    public void vmDeathEvent(VMDeathEvent event) {
    System.out.println("inside vmDeathEvent(VMDeathEvent event)****** ");
    vmDied = true;
    writer.println("-- The application exited --");
    public void vmDisconnectEvent(VMDisconnectEvent event) {
    System.out.println("inside vmDisconnectEvent(VMDisconnectEvent event)****** ");
    connected = false;
    if (!vmDied) {
    System.out.println("inside vmDisconnectEvent(VMDisconnectEvent event)in if loop ****** ");
    writer.println("-- The application has been disconnected --");
    // StreamRedirectThread.java
    import java.io.*;
    * StreamRedirectThread is a thread which copies it's input to
    * it's output and terminates when it completes.
    * @version @(#) StreamRedirectThread.java 1.4 03/01/23 17:55:38
    * @author Robert Field
    class StreamRedirectThread extends Thread {
    private final Reader in;
    private final Writer out;
    private static final int BUFFER_SIZE = 2048;
    * Set up for copy.
    * @param name Name of the thread
    * @param in Stream to copy from
    * @param out Stream to copy to
    StreamRedirectThread(String name, InputStream in, OutputStream out) {
    super(name);
    this.in = new InputStreamReader(in);
    this.out = new OutputStreamWriter(out);
    setPriority(Thread.MAX_PRIORITY-1);
    System.out.println("inside StreamRedirectThread(String name, InputStream in, OutputStream out) ****** ");
    * Copy.
    public void run() {
    System.out.println("inside StreamRedirectThread class in run() ****** ");
    try {
    char[] cbuf = new char[BUFFER_SIZE];
    int count;
    while ((count = in.read(cbuf, 0, BUFFER_SIZE)) >= 0) {
    System.out.println("inside run() in while loop the count is ****** "+count);
    out.write(cbuf, 0, count);
    out.flush();
    } catch(IOException exc) {
    System.err.println("Child I/O Transfer - " + exc);
    by using these files i m trying to trace the execution of DateExample.java through the Trace.java by using the command
    java Trace -output trace.log DateExample
    by executiing i m getting the exceptions in the output file trace.log
    -- VM Started --
    ====== main ======
    main -- DateExample
    | Exception: instance of java.lang.ClassNotFoundException(id=97) catch: java.lang.ClassLoader:286
    | | | | | | | | | | | | | | | | | | | | Exception: instance of java.lang.ClassNotFoundException(id=99) catch: java.lang.ClassLoader:286
    | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.lang.ClassNotFoundException(id=99) catch: java.lang.ClassLoader:286
    | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=100) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=100) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=101) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=101) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=102) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=102) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.util.zip.ZipException(id=104) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.util.zip.ZipException(id=104) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.lang.ClassNotFoundException(id=105) catch: java.util.ResourceBundle:1074
    | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.lang.ClassNotFoundException(id=105) catch: java.util.ResourceBundle:1074
    | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=108) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=108) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=109) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=109) catch: sun.misc.URLClassPath:293
    | | | | | | | | | | | | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=118) catch: null
    | | | | | | | | | | | | | | Exception: instance of java.io.FileNotFoundException(id=121) catch: null
    ====== main end ======
    -- The application exited --
    Could any one help me in this regard to execute the programm.
    Could any one help to show the execution of the Seq.java downloaded from the site http://search.cpan.org/src/PHILCROW/UML-Sequence-0.05/java/Seq.java, what i mentioned in my previous mail.
    thanks,

  • Error deploying several applications

    Hello,
    I have a problem deploying several applications. They are 3 wars that are continuously deployed. The error obtained is the following
    deploy_:
    +[java]+
    +[java] Initializing WebLogic Scripting Tool (WLST) ...+
    +[java]+
    +[java] WARNING - Unable to create log file </bea/bea1035/modules/../logs/wlst_20110901091225.log>: java.io.IOException: No space left on device+
    +[java] Welcome to WebLogic Server Administration Scripting Shell+
    +[java]+
    +[java] Type help() for help on available commands+
    +[java]+
    +[java] Could not find the properties file to load properties from /config/wl11_extra_ava/w63/w63Resources.properties.+
    +[java] ==> Fichero de configuracion: /config/wl11_extra_ava/w63/w63Config.properties+
    +[java] ==> Fichero de recursos: /config/wl11_extra_ava/w63/w63Resources.properties+
    +[java] unlocking ...+
    +[java] Connecting to t3://wl11admin27.ejiepru.net:8124 with userid weblogic11 ...+
    +[java] Successfully connected to Admin Server 'admin' that belongs to domain 'wl11_extra_ava'.+
    +[java]+
    +[java] Warning: An insecure protocol was used to connect to the+
    +[java] server. To ensure on-the-wire security, the SSL port or+
    +[java] Admin port should be used instead.+
    +[java]+
    +[java] Location changed to edit tree. This is a writable tree with+
    +[java] DomainMBean as the root. To make changes you will need to start+
    +[java] an edit session via startEdit().+
    +[java]+
    +[java] For more help, use help(edit)+
    +[java]+
    +[java] Starting an edit session ...+
    +[java] Started edit session, please be sure to save and activate your+
    +[java] changes once you are done.+
    +[java] Saving all your changes ...+
    +[java] Saved all your changes successfully.+
    +[java] Activating all your changes, this may take a while ...+
    +[java] The edit lock associated with this edit session is released+
    +[java] once the activation is completed.+
    +[java] Activation completed+
    +[java] weblogic.Deployer invoked with options: -adminurl t3://wl11admin27.ejiepru.net:8124 -userconfigfile /j2se/apache-ant-1.7.1/ejie_wls11/user.secure -userkeyfile /j2se/apache-ant-1.7.1/ejie_wls11/password.secure -name ispacmgr -targets gestExp1 -deploy /aplic/w63/dist/ispacmgr.war -stage -timeout 3600 -debug -verbose+
    +[java] [WebLogicDeploymentManagerImpl.<init>():115] : Constructing DeploymentManager for J2EE version V1_4 deployments+
    +[java] [WebLogicDeploymentManagerImpl.getNewConnection():158] : Connecting to admin server at wl11admin27.ejiepru.net:8124, as user weblogic11+
    +[java] [ServerConnectionImpl.getEnvironment():286] : setting environment+
    +[java] [ServerConnectionImpl.getEnvironment():289] : getting context using t3://wl11admin27.ejiepru.net:8124+
    +[java] [ServerConnectionImpl.getMBeanServer():237] : Connecting to MBeanServer at service:jmx:t3://wl11admin27.ejiepru.net:8124/jndi/weblogic.management.mbeanservers.domainruntime+
    +[java] [ServerConnectionImpl.getMBeanServer():237] : Connecting to MBeanServer at service:jmx:t3://wl11admin27.ejiepru.net:8124/jndi/weblogic.management.mbeanservers.runtime+
    +[java] [DomainManager.resetDomain():36] : Getting new domain+
    +[java] [DomainManager.resetDomain():39] : Using pending domain: false+
    +[java] [MBeanCache.addNotificationListener():96] : Adding notification listener for weblogic.deploy.api.spi.deploy.mbeans.TargetCache@83fbeb1+
    +[java] [MBeanCache.addNotificationListener():103] : Added notification listener for weblogic.deploy.api.spi.deploy.mbeans.TargetCache@83fbeb1+
    +[java] [MBeanCache.addNotificationListener():96] : Adding notification listener for weblogic.deploy.api.spi.deploy.mbeans.ModuleCache@8313beb+
    +[java] [MBeanCache.addNotificationListener():103] : Added notification listener for weblogic.deploy.api.spi.deploy.mbeans.ModuleCache@8313beb+
    +[java] [ServerConnectionImpl.initialize():169] : Connected to WLS domain: wl11_extra_ava+
    +[java] [ServerConnectionImpl.init():159] : Initializing ServerConnection : [email protected]cc7+
    +[java] [BasicOperation.dumpTmids():713] : Incoming tmids:+
    +[java] [BasicOperation.dumpTmids():715] : {Target=gestExp1, WebLogicTargetType=cluster, Name=ispacmgr}, targeted=true+
    +[java] [BasicOperation.deriveAppName():141] : appname established as: ispacmgr+
    +[java] <Sep 1, 2011 9:12:59 AM CEST> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating deploy operation for application, ispacmgr [archive: /aplic/w63/dist/ispacmgr.war], to gestExp1 .>+
    +[java] [BasicOperation.dumpTmids():713] : Incoming tmids:+
    +[java] [BasicOperation.dumpTmids():715] : {Target=gestExp1, WebLogicTargetType=cluster, Name=ispacmgr}, targeted=true+
    +[java] [BasicOperation.loadGeneralOptions():628] : Delete Files:false+
    +[java] Timeout :3600000+
    +[java] Targets:+
    +[java] gestExp1+
    +[java] ModuleTargets={}+
    +[java] SubModuleTargets={}+
    +[java] }+
    +[java] Files:+
    +[java] null+
    +[java] Deployment Plan: null+
    +[java] App root: /tmp/webl11/./config/deployments/ispacmgr+
    +[java] App config: /tmp/webl11/./config/deployments/ispacmgr/plan+
    +[java] Deployment Options: {isRetireGracefully=true,isGracefulProductionToAdmin=false,isGracefulIgnoreSessions=false,rmiGracePeriod=-1,retireTimeoutSecs=-1,undeployAllVersions=false,archiveVersion=null,planVersion=null,isLibrary=false,libSpecVersion=null,libImplVersion=null,stageMode=stage,clusterTimeout=3600000,altDD=null,altWlsDD=null,name=ispacmgr,securityModel=null,securityValidationEnabled=false,versionIdentifier=null,isTestMode=false,forceUndeployTimeout=3600,defaultSubmoduleTargets=true,timeout=3600000,deploymentPrincipalName=null,useExpiredLock=false}+
    +[java]+
    +[java] [BasicOperation.execute():445] : Initiating deploy operation for app, ispacmgr, on targets:+
    +[java] [BasicOperation.execute():447] : gestExp1+
    +[java] Task 164 initiated: [Deployer:149026]deploy application ispacmgr on gestExp1.+
    +[java] dumping Exception stack+
    +[java] Task 164 failed: [Deployer:149026]deploy application ispacmgr on gestExp1.+
    +[java] Target state: deploy failed on Cluster gestExp1+
    +[java] weblogic.management.DeploymentException: [Deployer:149189]An attempt was made to execute the 'deploy' operation on an application named 'ispacmgr' that is not currently available. The application may have been created after non-dynamic configuration changes were activated. If so, the operation can not be performed until server is restarted so that the application will be available.+
    +[java] at weblogic.deploy.internal.targetserver.DeploymentManager.assertDeploymentMBeanIsNonNull(DeploymentManager.java:1319)+
    +[java] at weblogic.deploy.internal.targetserver.DeploymentManager.findDeploymentMBean(DeploymentManager.java:1360)+
    +[java] at weblogic.deploy.internal.targetserver.DeploymentManager.createOperation(DeploymentManager.java:1050)+
    +[java] at weblogic.deploy.internal.targetserver.DeploymentManager.createOperations(DeploymentManager.java:1406)+
    +[java] at weblogic.deploy.internal.targetserver.DeploymentManager.handleUpdateDeploymentContext(DeploymentManager.java:162)+
    +[java] at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.updateDeploymentContext(DeploymentServiceDispatcher.java:156)+
    +[java] at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doUpdateDeploymentContextCallback(DeploymentReceiverCallbackDeliverer.java:147)+
    +[java] at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.updateDeploymentContext(DeploymentReceiverCallbackDeliverer.java:29)+
    +[java] at weblogic.deploy.service.internal.statemachines.targetserver.ReceivedPrepare.callDeploymentReceivers(ReceivedPrepare.java:203)+
    +[java] at weblogic.deploy.service.internal.statemachines.targetserver.ReceivedPrepare.handlePrepare(ReceivedPrepare.java:114)+
    +[java] at weblogic.deploy.service.internal.statemachines.targetserver.ReceivedPrepare.receivedPrepare(ReceivedPrepare.java:52)+
    +[java] at weblogic.deploy.service.internal.targetserver.TargetRequestImpl.run(TargetRequestImpl.java:211)+
    +[java] at weblogic.deploy.service.internal.transport.CommonMessageReceiver$1.run(CommonMessageReceiver.java:458)+
    +[java] at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)+
    +[java] at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)+
    +[java] at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)+
    +[java]+
    +[java]+
    +[java] Target Assignments:+
    +[java] + ispacmgr gestExp1+
    +[java] [ServerConnectionImpl.close():332] : Closing DM connection+
    +[java] [ServerConnectionImpl.close():352] : Unregistered all listeners+
    +[java] [ServerConnectionImpl.closeJMX():372] : Closed JMX connection+
    +[java] [ServerConnectionImpl.closeJMX():384] : Closed Runtime JMX connection+
    +[java] [ServerConnectionImpl.closeJMX():396] : Closed Edit JMX connection+
    +[java] Java Result: 1+
    BUILD SUCCESSFUL
    This error doesn`t appear always in the same war file. In admin log I can see this:
    +79740> <BEA-149038> <Initiating Task for ispacmgr : [Deployer:149026]deploy application ispacmgr on gestExp1.>+
    +####<Sep 1, 2011 9:13:19 AM CEST> <Warning> <Deployer> <ejlf031> <admin> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <131+
    +4861199984> <BEA-149004> <Failures were detected while initiating deploy task for application 'ispacmgr'.>+
    +####<Sep 1, 2011 9:13:19 AM CEST> <Warning> <Deployer> <ejlf031> <admin> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <131+
    +4861199985> <BEA-149078> <Stack trace for message 149004+
    +weblogic.management.DeploymentException: [Deployer:149189]An attempt was made to execute the 'deploy' operation on an application named 'ispacmgr' that is not currently available.+
    The application may have been created after non-dynamic configuration changes were activated. If so, the operation can not be performed until server is restarted so that the appl
    ication will be available.
    at weblogic.deploy.internal.targetserver.DeploymentManager.assertDeploymentMBeanIsNonNull(DeploymentManager.java:1319)
    at weblogic.deploy.internal.targetserver.DeploymentManager.findDeploymentMBean(DeploymentManager.java:1360)
    at weblogic.deploy.internal.targetserver.DeploymentManager.createOperation(DeploymentManager.java:1050)
    at weblogic.deploy.internal.targetserver.DeploymentManager.createOperations(DeploymentManager.java:1406)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleUpdateDeploymentContext(DeploymentManager.java:162)
    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.updateDeploymentContext(DeploymentServiceDispatcher.java:156)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doUpdateDeploymentContextCallback(DeploymentReceiverCallbackDeliverer.java:147)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.updateDeploymentContext(DeploymentReceiverCallbackDeliverer.java:29)
    at weblogic.deploy.service.internal.statemachines.targetserver.ReceivedPrepare.callDeploymentReceivers(ReceivedPrepare.java:203)
    at weblogic.deploy.service.internal.statemachines.targetserver.ReceivedPrepare.handlePrepare(ReceivedPrepare.java:114)
    at weblogic.deploy.service.internal.statemachines.targetserver.ReceivedPrepare.receivedPrepare(ReceivedPrepare.java:52)
    at weblogic.deploy.service.internal.targetserver.TargetRequestImpl.run(TargetRequestImpl.java:211)
    at weblogic.deploy.service.internal.transport.CommonMessageReceiver$1.run(CommonMessageReceiver.java:458)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    +>+
    So, is the same error. There isn`t any more. After this error, If I try to deploy the war (only the one with the error), it works!!!!
    Restarting the server is not the solution.
    Thanks in advance
    Endika

    Hi, I think you should delete all apps using WebLogic console instead of editing config.xml, is more safe. Then shutdown your instance and eliminate all that is inside in stage and .wlnotdelete directories. Start again your instance and deploy your apps.

  • Consuming portlet get error ADF_FACES-60096:Server Exception during PPR

    hi all,
    i got a strange error when consuming portlet in webcenter portal application.
    i'm using jdeveloper 11.1.1.5 and webcenter framework extension 11.1.1.4
    i have a Portlet Producer Application and a Standards-based Java Portlet (JSR 286) in it.
    The view page of the portlet is a jspx file (view.jspx)
    There is a raw af:table component in the view.jspx file (with no data binding)
    At this time, run the view.jspx in the portlet producer application.
    The view.jspx page shows up in the browser and looks fine just as expected.
    After deploying the portlet to WLS, i include the portlet to the WebCenter Portal Application's home.jspx as an ADF Rich Portlet (from the WSRP Producer in IDE Connections) and run the Portal project.
    Wierd thing happens, a short time after the home page shows up in the browser, the portlet with an af:table in it shows up, but the portlet refresh itself repeatedly and an error is printed in the WLS log:
    [Application wcApp0202 deployed to Server Instance IntegratedWebLogicServer]
    Target URL -- http://127.0.0.1:7101/wcApp0202-Portal-context-root/index.html
    <JUApplicationDefImpl> <logDefaultDynamicPageMapPattern> The definition at portal.DataBindings.cpx, uses a pagemap pattern match that hides other cpx files.
    <SkinFactoryImpl> <getSkin> Cannot find a skin that matches family portal and version v1.1. We will use the skin portal.desktop.
    ADFPortletExternalContextImpl.encodeResourceURL: This resource is not using Stateless Proxying:/testP01/adf/styles/cache/portal-desktop-ctwpkz-zh_CN-ltr-gecko-prtl.css
    <ConfigUtils> <getADFConfig> null
    *<RegistrationConfigurator> <handleError> ADF_FACES-60096:Server Exception during PPR, #149*
    java.lang.IllegalStateException: The expected request type is not the same as the current request type.
         at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.getExternalContext(GlobalConfiguratorImpl.java:333)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$CacheRenderKit.<init>(FacesContextFactoryImpl.java:86)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:64)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:260)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:524)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
         at com.bea.portlet.container.PortletRequestDispatcherImpl.forward(PortletRequestDispatcherImpl.java:292)
         at org.apache.myfaces.portlet.faces.bridge.BridgeImpl.doFacesRequest(BridgeImpl.java:1094)
         at javax.portlet.faces.GenericFacesPortlet.doBridgeDispatch(GenericFacesPortlet.java:700)
         at javax.portlet.faces.GenericFacesPortlet.serveResource(GenericFacesPortlet.java:291)
         at oracle.portlet.bridge.adf.application.ADFBridgePortlet.serveResource(ADFBridgePortlet.java:187)
         at com.bea.portlet.container.PortletStub.doResource(PortletStub.java:1043)
         at com.bea.portlet.container.FilterChainGenerator.runFilterChain(FilterChainGenerator.java:141)
         at com.bea.portlet.container.PortletStub.renderResource(PortletStub.java:779)
         at com.bea.portlet.container.AppContainer.invokeResourceStub(AppContainer.java:1376)
         at com.bea.portlet.container.AppContainer.invokeResource(AppContainer.java:1328)
         at com.bea.wsrp.producer.adapter.javaportlet.JavaPortletAdapter.getResource(JavaPortletAdapter.java:694)
         at com.bea.wsrp.producer.handlers.markup.MarkupServiceHandler.doGetResource(MarkupServiceHandler.java:766)
         at com.bea.wsrp.producer.handlers.markup.MarkupServiceHandler.doService(MarkupServiceHandler.java:295)
         at com.bea.wsrp.producer.handlers.AbstractServiceHandler.service(AbstractServiceHandler.java:71)
         at com.bea.wsrp.producer.container.ProducerEndPoint.processNow(ProducerEndPoint.java:349)
         at com.bea.wsrp.producer.container.ProducerEndPoint.processNow(ProducerEndPoint.java:250)
         at com.bea.wsrp.producer.container.ProducerEndPoint.processNow(ProducerEndPoint.java:208)
         at oracle.portlet.server.adapter.web.WSRP_v2_Markup_PortTypeSoapToEndpoint.getResource(WSRP_v2_Markup_PortTypeSoapToEndpoint.java:128)
         at oasis.names.tc.wsrp.v2.bind.runtime.WSRP_v2_Markup_Binding_SOAP_Tie.invoke_getResource(WSRP_v2_Markup_Binding_SOAP_Tie.java:66)
         at oasis.names.tc.wsrp.v2.bind.runtime.WSRP_v2_Markup_Binding_SOAP_Tie.processingHook(WSRP_v2_Markup_Binding_SOAP_Tie.java:1445)
         at oracle.j2ee.ws.server.StreamingHandler.handle(StreamingHandler.java:299)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doEndpointProcessing(JAXRPCProcessor.java:442)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:1081)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doRequestProcessing(JAXRPCProcessor.java:333)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:232)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doService(JAXRPCProcessor.java:185)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:484)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.producer.container.endpoint.ProducerEndpointFilter.doFilter(ProducerEndpointFilter.java:34)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    I tried to delete the af:table from view.jspx, redeploy the portlet and rerun the portal, the home.jspx page shows up in the browser and looks fine just as expected.
    But the same practice goes on well in jdeveloper 11.1.1.3 with webcenter framework extension 11.1.1.3
    What is the problem ?
    Regards,
    Pen-Pen
    Edited by: Pen-Pen on 2012-2-5 下午6:27

    Hi Yannick,
    Thanks for you reply.
    I have edited the question with more details.
    For your questions:
    The error happens when the WLS try to render the portlet for the first time. (a short time after the home page shows up in the browser)
    I'm a starter in webcenter & portlet, so i'm not sure if i use any portlet specific objects. I just create a Standards-based Java Portlet (JSR 286) with almost all the steps in default except in step 3 of 8, i change the view.jsp to view.jspx. In the portlet, i use ADF BC tech & ADF Faces. (There are readonly VO's from database 10g and AMs)
    I think i got the error during PPR. (when the WLS try to render the portlet for the first time)
    BTW: in the WebCenter Portal Application's home.jspx, i include the portlet as an ADF Rich Portlet from the WSRP Producer in IDE Connections.

  • Could not migrate some archives from migration list when upgrade to 7.31

    Getting below error message. Any idea to solve it.. It seem like unable to locate the file.
    Error Log:JMT_FRAMEWORK_06.OUT
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
      INFO: Loading tool launcher...
      INFO: [OS: Windows Server 2008 R2] [VM vendor: SAP AG] [VM version: 1.6.0_31] [VM type: SAP Java Server VM]
    WARNING: File "K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar" stated but not found
      INFO: Main class to start: "com.sap.sdt.jmtx.migrationtool.MigrationToolImport"
      INFO: Loading 20 JAR files: [K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar, K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar, K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar, K:\usr\sap\HJS\SUM\sdt\data\jdbc\sqljdbc.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar, K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar]
      INFO: Start
    Error Log:RUN-SOURCE-ONLINE-CONTROLLERS_03
    <!--LOGHEADER[START]/-->
    <!--HELP[Manual modification of the header may cause parsing problem!]/-->
    <!--LOGGINGVERSION[2.0.7.1006]/-->
    <!--NAME[K:\usr\sap\HJS\SUM\sdt\log\SWITCH\RUN-SOURCE-ONLINE-CONTROLLERS_03.LOG]/-->
    <!--PATTERN[RUN-SOURCE-ONLINE-CONTROLLERS_03.LOG]/-->
    <!--FORMATTER[com.sap.tc.logging.TraceFormatter(%d [%6s]: %m)]/-->
    <!--ENCODING[UTF8]/-->
    <!--LOGHEADER[END]/-->
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration list K:\usr\sap\HJS\SUM\sdt\data\mig\MIGRATIONAUSF.LST has been loaded.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\par_war_migration_controller.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/par_war_migration_controller.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~caf~migration~controller.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~caf~migration~controller.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\servlet_jsp_migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/servlet_jsp_migration.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\pcd_upgrade.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/pcd_upgrade.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\prtc_properties_migration_controller.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/prtc_properties_migration_controller.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\tc~pmi~migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/tc~pmi~migration.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~caf~eu~gp~model~migr.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~caf~eu~gp~model~migr.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\rfcengine.migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/rfcengine.migration.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~j2eefrmw_services_propmigration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~j2eefrmw_services_propmigration.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~tc~je~webservices~migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~tc~je~webservices~migration.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~tc~jms~migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~tc~jms~migration.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\wssec_migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/wssec_migration.
    Mar 19, 2014 2:25:05 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~tc~kmc~cfg~jmt~jup.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~tc~kmc~cfg~jmt~jup.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~tc~kmc~rf~ridid~jmt.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~tc~kmc~rf~ridid~jmt.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~tc~kmc~rf~ummig~jmt.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~tc~kmc~rf~ummig~jmt.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\com.sap.nw.wpc.mgr_mc_sda.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/com.sap.nw.wpc.mgr_mc_sda.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\com.sap.lcr_migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/com.sap.lcr_migration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\com.sap.rprof.dbprofiles_migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/com.sap.rprof.dbprofiles_migration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\com.sap.aii.af.ms.svc.migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/com.sap.aii.af.ms.svc.migration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\apps_migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/apps_migration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\com.sap.security.migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/com.sap.security.migration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\deploy_migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/deploy_migration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\http_migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/http_migration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\icm_migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/icm_migration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~jkernel_propmigration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~jkernel_propmigration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~servercore_services_propmigration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~servercore_services_propmigration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~tc~je~log~configurator~migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~tc~je~log~configurator~migration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\security.migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/security.migration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\ds_migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/ds_migration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Migration archive K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\webdynpro~migration.sda has been extracted to K:/usr/sap/HJS/SUM/sdt/migtool/webdynpro~migration.
    Mar 19, 2014 2:25:06 PM [Info  ]: Archives from migration list K:\usr\sap\HJS\SUM\sdt\data\mig\MIGRATIONAUSF.LST have been extracted.
    Mar 19, 2014 2:25:06 PM [Info  ]: MTI properties have been saved to K:\usr\sap\HJS\SUM\sdt\migtool\par_war_migration_controller\mti.properties.
    Mar 19, 2014 2:25:06 PM [Info  ]: MTI is logging to K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.LOG.
    Mar 19, 2014 2:25:06 PM [Info  ]: MTI logging properties saved to K:\usr\sap\HJS\SUM\sdt\migtool\par_war_migration_controller\mti_log.properties
    Mar 19, 2014 2:25:06 PM [Info  ]: AS Java process ID 285, name com.sap.engine.offline.OfflineToolStart has been started.
    Mar 19, 2014 2:25:06 PM [Info  ]:  Command line: K:\usr\sap\HJS\SUM\jvm\jre\bin\java.exe -XX:MaxPermSize=256m -Xmx1024m -cp .;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~offline_launcher~impl.jar;K:/usr/sap/HJS/SUM/sdt/migtool/par_war_migration_controller;K:\usr\sap\HJS\SUM\sdt\tmp com.sap.engine.offline.OfflineToolStart com.sap.sdt.jmtx.migrationtool.MigrationToolImport K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar;K:/usr/sap/HJS/SUM/sdt/data/jdbc/sqljdbc.jar;K:\usr\sap\HJS\SUM\sdt\tmp;K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar;K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar migrate.online.engine.data resume downtime K:\usr\sap\HJS\SUM\sdt\migtool\par_war_migration_controller\mti.properties all K:\usr\sap\HJS\SUM\sdt\data\variables online.source.engine
    Mar 19, 2014 2:25:06 PM [Info  ]:  Standard out: K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.OUT
    Mar 19, 2014 2:25:06 PM [Info  ]: Process ID 285 has been started.
    Mar 19, 2014 2:25:06 PM [Info  ]: Waiting for process ID 285, name java.exe to finish.
    Mar 19, 2014 2:25:16 PM [Info  ]: Process ID 285, name java.exe has been finished, exit code 123.
    Mar 19, 2014 2:25:16 PM [Info  ]: Process ID 285, name java.exe has been terminated.
    Mar 19, 2014 2:25:16 PM [Info  ]: MTI process has been completed.
    Mar 19, 2014 2:25:16 PM [Info  ]: Archive file K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\par_war_migration_controller.sda has been extracted to directory K:/usr/sap/HJS/SUM/sdt/migtool/par_war_migration_controller.
    Mar 19, 2014 2:25:16 PM [Info  ]: MTI properties have been saved to K:\usr\sap\HJS\SUM\sdt\migtool\sap.com~caf~migration~controller\mti.properties.
    Mar 19, 2014 2:25:16 PM [Info  ]: MTI is logging to K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.LOG.
    Mar 19, 2014 2:25:16 PM [Info  ]: MTI logging properties saved to K:\usr\sap\HJS\SUM\sdt\migtool\sap.com~caf~migration~controller\mti_log.properties
    Mar 19, 2014 2:25:16 PM [Info  ]: AS Java process ID 286, name com.sap.engine.offline.OfflineToolStart has been started.
    Mar 19, 2014 2:25:16 PM [Info  ]:  Command line: K:\usr\sap\HJS\SUM\jvm\jre\bin\java.exe -XX:MaxPermSize=256m -Xmx1024m -cp .;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~offline_launcher~impl.jar;K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~caf~migration~controller;K:\usr\sap\HJS\SUM\sdt\tmp com.sap.engine.offline.OfflineToolStart com.sap.sdt.jmtx.migrationtool.MigrationToolImport K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar;K:/usr/sap/HJS/SUM/sdt/data/jdbc/sqljdbc.jar;K:\usr\sap\HJS\SUM\sdt\tmp;K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar;K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar migrate.online.engine.data resume downtime K:\usr\sap\HJS\SUM\sdt\migtool\sap.com~caf~migration~controller\mti.properties all K:\usr\sap\HJS\SUM\sdt\data\variables online.source.engine
    Mar 19, 2014 2:25:16 PM [Info  ]:  Standard out: K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.OUT
    Mar 19, 2014 2:25:16 PM [Info  ]: Process ID 286 has been started.
    Mar 19, 2014 2:25:16 PM [Info  ]: Waiting for process ID 286, name java.exe to finish.
    Mar 19, 2014 2:25:26 PM [Info  ]: Process ID 286, name java.exe has been finished, exit code 123.
    Mar 19, 2014 2:25:26 PM [Info  ]: Process ID 286, name java.exe has been terminated.
    Mar 19, 2014 2:25:26 PM [Info  ]: MTI process has been completed.
    Mar 19, 2014 2:25:26 PM [Info  ]: Archive file K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~caf~migration~controller.sda has been extracted to directory K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~caf~migration~controller.
    Mar 19, 2014 2:25:26 PM [Info  ]: MTI properties have been saved to K:\usr\sap\HJS\SUM\sdt\migtool\servlet_jsp_migration\mti.properties.
    Mar 19, 2014 2:25:26 PM [Info  ]: MTI is logging to K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.LOG.
    Mar 19, 2014 2:25:26 PM [Info  ]: MTI logging properties saved to K:\usr\sap\HJS\SUM\sdt\migtool\servlet_jsp_migration\mti_log.properties
    Mar 19, 2014 2:25:26 PM [Info  ]: AS Java process ID 287, name com.sap.engine.offline.OfflineToolStart has been started.
    Mar 19, 2014 2:25:26 PM [Info  ]:  Command line: K:\usr\sap\HJS\SUM\jvm\jre\bin\java.exe -XX:MaxPermSize=256m -Xmx1024m -cp .;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~offline_launcher~impl.jar;K:/usr/sap/HJS/SUM/sdt/migtool/servlet_jsp_migration;K:\usr\sap\HJS\SUM\sdt\tmp com.sap.engine.offline.OfflineToolStart com.sap.sdt.jmtx.migrationtool.MigrationToolImport K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar;K:/usr/sap/HJS/SUM/sdt/data/jdbc/sqljdbc.jar;K:\usr\sap\HJS\SUM\sdt\tmp;K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar;K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar migrate.online.engine.data resume downtime K:\usr\sap\HJS\SUM\sdt\migtool\servlet_jsp_migration\mti.properties all K:\usr\sap\HJS\SUM\sdt\data\variables online.source.engine
    Mar 19, 2014 2:25:26 PM [Info  ]:  Standard out: K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.OUT
    Mar 19, 2014 2:25:26 PM [Info  ]: Process ID 287 has been started.
    Mar 19, 2014 2:25:26 PM [Info  ]: Waiting for process ID 287, name java.exe to finish.
    Mar 19, 2014 2:25:37 PM [Info  ]: Process ID 287, name java.exe has been finished, exit code 123.
    Mar 19, 2014 2:25:37 PM [Info  ]: Process ID 287, name java.exe has been terminated.
    Mar 19, 2014 2:25:37 PM [Info  ]: MTI process has been completed.
    Mar 19, 2014 2:25:37 PM [Info  ]: Archive file K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\servlet_jsp_migration.sda has been extracted to directory K:/usr/sap/HJS/SUM/sdt/migtool/servlet_jsp_migration.
    Mar 19, 2014 2:25:37 PM [Info  ]: MTI properties have been saved to K:\usr\sap\HJS\SUM\sdt\migtool\pcd_upgrade\mti.properties.
    Mar 19, 2014 2:25:37 PM [Info  ]: MTI is logging to K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.LOG.
    Mar 19, 2014 2:25:37 PM [Info  ]: MTI logging properties saved to K:\usr\sap\HJS\SUM\sdt\migtool\pcd_upgrade\mti_log.properties
    Mar 19, 2014 2:25:37 PM [Info  ]: AS Java process ID 288, name com.sap.engine.offline.OfflineToolStart has been started.
    Mar 19, 2014 2:25:37 PM [Info  ]:  Command line: K:\usr\sap\HJS\SUM\jvm\jre\bin\java.exe -XX:MaxPermSize=256m -Xmx1024m -cp .;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~offline_launcher~impl.jar;K:/usr/sap/HJS/SUM/sdt/migtool/pcd_upgrade;K:\usr\sap\HJS\SUM\sdt\tmp com.sap.engine.offline.OfflineToolStart com.sap.sdt.jmtx.migrationtool.MigrationToolImport K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar;K:/usr/sap/HJS/SUM/sdt/data/jdbc/sqljdbc.jar;K:\usr\sap\HJS\SUM\sdt\tmp;K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar;K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar migrate.online.engine.data resume downtime K:\usr\sap\HJS\SUM\sdt\migtool\pcd_upgrade\mti.properties all K:\usr\sap\HJS\SUM\sdt\data\variables online.source.engine
    Mar 19, 2014 2:25:37 PM [Info  ]:  Standard out: K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.OUT
    Mar 19, 2014 2:25:37 PM [Info  ]: Process ID 288 has been started.
    Mar 19, 2014 2:25:37 PM [Info  ]: Waiting for process ID 288, name java.exe to finish.
    Mar 19, 2014 2:25:46 PM [Info  ]: Process ID 288, name java.exe has been finished, exit code 123.
    Mar 19, 2014 2:25:46 PM [Info  ]: Process ID 288, name java.exe has been terminated.
    Mar 19, 2014 2:25:46 PM [Info  ]: MTI process has been completed.
    Mar 19, 2014 2:25:46 PM [Info  ]: Archive file K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\pcd_upgrade.sda has been extracted to directory K:/usr/sap/HJS/SUM/sdt/migtool/pcd_upgrade.
    Mar 19, 2014 2:25:46 PM [Info  ]: MTI properties have been saved to K:\usr\sap\HJS\SUM\sdt\migtool\sap.com~caf~eu~gp~model~migr\mti.properties.
    Mar 19, 2014 2:25:46 PM [Info  ]: MTI is logging to K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.LOG.
    Mar 19, 2014 2:25:46 PM [Info  ]: MTI logging properties saved to K:\usr\sap\HJS\SUM\sdt\migtool\sap.com~caf~eu~gp~model~migr\mti_log.properties
    Mar 19, 2014 2:25:46 PM [Info  ]: AS Java process ID 289, name com.sap.engine.offline.OfflineToolStart has been started.
    Mar 19, 2014 2:25:46 PM [Info  ]:  Command line: K:\usr\sap\HJS\SUM\jvm\jre\bin\java.exe -XX:MaxPermSize=256m -Xmx1024m -cp .;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~offline_launcher~impl.jar;K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~caf~eu~gp~model~migr;K:\usr\sap\HJS\SUM\sdt\tmp com.sap.engine.offline.OfflineToolStart com.sap.sdt.jmtx.migrationtool.MigrationToolImport K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar;K:/usr/sap/HJS/SUM/sdt/data/jdbc/sqljdbc.jar;K:\usr\sap\HJS\SUM\sdt\tmp;K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar;K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar migrate.online.engine.data resume downtime K:\usr\sap\HJS\SUM\sdt\migtool\sap.com~caf~eu~gp~model~migr\mti.properties all K:\usr\sap\HJS\SUM\sdt\data\variables online.source.engine
    Mar 19, 2014 2:25:46 PM [Info  ]:  Standard out: K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.OUT
    Mar 19, 2014 2:25:46 PM [Info  ]: Process ID 289 has been started.
    Mar 19, 2014 2:25:46 PM [Info  ]: Waiting for process ID 289, name java.exe to finish.
    Mar 19, 2014 2:25:56 PM [Info  ]: Process ID 289, name java.exe has been finished, exit code 123.
    Mar 19, 2014 2:25:56 PM [Info  ]: Process ID 289, name java.exe has been terminated.
    Mar 19, 2014 2:25:56 PM [Info  ]: MTI process has been completed.
    Mar 19, 2014 2:25:56 PM [Info  ]: Archive file K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~caf~eu~gp~model~migr.sda has been extracted to directory K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~caf~eu~gp~model~migr.
    Mar 19, 2014 2:25:56 PM [Info  ]: MTI properties have been saved to K:\usr\sap\HJS\SUM\sdt\migtool\sap.com~tc~je~webservices~migration\mti.properties.
    Mar 19, 2014 2:25:56 PM [Info  ]: MTI is logging to K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.LOG.
    Mar 19, 2014 2:25:56 PM [Info  ]: MTI logging properties saved to K:\usr\sap\HJS\SUM\sdt\migtool\sap.com~tc~je~webservices~migration\mti_log.properties
    Mar 19, 2014 2:25:56 PM [Info  ]: AS Java process ID 290, name com.sap.engine.offline.OfflineToolStart has been started.
    Mar 19, 2014 2:25:56 PM [Info  ]:  Command line: K:\usr\sap\HJS\SUM\jvm\jre\bin\java.exe -XX:MaxPermSize=256m -Xmx1024m -cp .;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~offline_launcher~impl.jar;K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~tc~je~webservices~migration;K:\usr\sap\HJS\SUM\sdt\tmp com.sap.engine.offline.OfflineToolStart com.sap.sdt.jmtx.migrationtool.MigrationToolImport K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sapxmltoolkit~sapxmltoolkit.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~frame~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_configuration~frame.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~jkernel_util~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~config.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_util.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_tools.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_ucp.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_trace.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sec~csi.jar;K:/usr/sap/HJS/SUM/sdt/data/jdbc/sqljdbc.jar;K:\usr\sap\HJS\SUM\sdt\tmp;K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_javax_crypto.jar;K:\usr\sap\HJS\SUM\sdt\lib\tools\iaik_jce.jar migrate.online.engine.data resume downtime K:\usr\sap\HJS\SUM\sdt\migtool\sap.com~tc~je~webservices~migration\mti.properties all K:\usr\sap\HJS\SUM\sdt\data\variables online.source.engine
    Mar 19, 2014 2:25:56 PM [Info  ]:  Standard out: K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.OUT
    Mar 19, 2014 2:25:56 PM [Info  ]: Process ID 290 has been started.
    Mar 19, 2014 2:25:56 PM [Info  ]: Waiting for process ID 290, name java.exe to finish.
    Mar 19, 2014 2:26:05 PM [Info  ]: Process ID 290, name java.exe has been finished, exit code 123.
    Mar 19, 2014 2:26:05 PM [Info  ]: Process ID 290, name java.exe has been terminated.
    Mar 19, 2014 2:26:05 PM [Info  ]: MTI process has been completed.
    Mar 19, 2014 2:26:05 PM [Info  ]: Archive file K:\usr\sap\HJS\SUM\sdt\data\mig\DEPLOYARCHIVES\sap.com~tc~je~webservices~migration.sda has been extracted to directory K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~tc~je~webservices~migration.
    Mar 19, 2014 2:26:05 PM [Info  ]: MTI properties have been saved to K:\usr\sap\HJS\SUM\sdt\migtool\sap.com~tc~jms~migration\mti.properties.
    Mar 19, 2014 2:26:05 PM [Info  ]: MTI is logging to K:\usr\sap\HJS\SUM\sdt\log\SWITCH\JMT_FRAMEWORK_06.LOG.
    Mar 19, 2014 2:26:05 PM [Info  ]: MTI logging properties saved to K:\usr\sap\HJS\SUM\sdt\migtool\sap.com~tc~jms~migration\mti_log.properties
    Mar 19, 2014 2:26:05 PM [Info  ]: AS Java process ID 291, name com.sap.engine.offline.OfflineToolStart has been started.
    Mar 19, 2014 2:26:05 PM [Info  ]:  Command line: K:\usr\sap\HJS\SUM\jvm\jre\bin\java.exe -XX:MaxPermSize=256m -Xmx1024m -cp .;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~offline_launcher~impl.jar;K:/usr/sap/HJS/SUM/sdt/migtool/sap.com~tc~jms~migration;K:\usr\sap\HJS\SUM\sdt\tmp com.sap.engine.offline.OfflineToolStart com.sap.sdt.jmtx.migrationtool.MigrationToolImport K:\usr\sap\HJS\SUM\sdt\lib\sdt_serviceframework.jar;K:\usr\sap\HJS\SUM\sdt\lib\sdt_jmt.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~sfrmw~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~sdt~jmt~api.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~je~configuration~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~exception~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~bl~iqlib~impl.jar;K:\usr\sap\HJS\SUM\sdt\lib\sap.com~tc~logging~java~impl.jar;K:\u

    I got the same error like you and found the solution in SAP Note 1873529.
    If you wish to continue using KMC on
    this system:
    1. Connect to telnet localhost 50008 and execute the following commands:
    jump 0
    add deploy
    start_app sap.com/tc~kmc~rf~ummig~rmiapp
    2. Check if the app is started by executing the command:
    list_app sap.com/tc~kmc~rf~ummig~rmiapp
    3. If it is not started open a customer message with SAP and provide the following
    files:
    …/j2ee/cluster/server0/log/defaultTrace.<n>.trc
    Good luck and regards
    Matthias

  • Error while running Java application using Crystal Reports 2011

    Hello,
    I would like to ask for your help.
    Environment details:
    Java based standalone application in Development environment.
    Crystal Reports 2011 (no SP applied)
    Oracle 11g ( 32 bit client installed)
    Win7 64 bit OS.
    Workflow:
    While running the java application, which will display the reports I am getting the below mentioned error. I guess that is because I am missing the Crystal runtimes (Correct me if I am wrong).
    I know that CR2011 do not have any sdks/ jar available for deployment. In this case, which runtimes should I be using? Does installing CR2011 be enough in the development box?
    Please provide me the link from which I can download the same.
    Let me know if I need to provide more details on this. Any suggestions are most welcome.
    Thank You.
    Code used:
    reportClientDoc = new ReportClientDocument();
    System.err.println("Opening the Report ");
    reportClientDoc.open(REPORT_PATH, 0);
    // this is where the error or exception is thrown
    _Error: _
    log4j:WARN No appenders could be found for logger (com.crystaldecisions.reports.reportdefinition.ReportDocument).
    log4j:WARN Please initialize the log4j system properly.
    com.crystaldecisions.sdkreport.lib.ReportSDKException: com/businessobjects/reports/jdbinterface/common/DBException---- Error code:-2147467259 Error code name:failed
                    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.<init>(SourceFile:286)
                    at com.businessobjects.sdk.erom.jrc.a.<init>(SourceFile:43)
                    at com.businessobjects.sdk.erom.jrc.ReportAgentFactory.createAgent(SourceFile:46)
                    at com.crystaldecisions.proxy.remoteagent.RemoteAgent.<init>(SourceFile:703)
                    at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:662)
                    at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:632)
                    at com.crystaldecisions.sdk.report.application.ClientDocument.if(SourceFile:504)
                    at com.crystaldecisions.sdk.report.application.ClientDocument.open(SourceFile:669)
                    at com.crystaldecisions.reports.sdk.ReportClientDocument.open(Unknown Source)
                    at rp.batch.bo.RpJRCExportReport.runReportExport(RpJRCExportReport.java:517)
                    at rp.batch.bo.RpSchedReportRun.process(RpSchedReportRun.java:163)
                    at rp.batch.bo.RpSchedReportRun.drive(RpSchedReportRun.java:240)
                    at rp.batch.bo.RpSchedReportRun.main(RpSchedReportRun.java:265)
    Caused by: java.lang.NoClassDefFoundError: com/businessobjects/reports/jdbinterface/common/DBException
                    at com.crystaldecisions.reports.queryengine.Session.a2(SourceFile:244)
                    at com.crystaldecisions.reports.datafoundation.DataFoundation.do(SourceFile:376)
                    at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.do(SourceFile:111)
                    at com.crystaldecisions.reports.dataengine.datafoundation.CreateDataConnectionCommand.new(SourceFile:81)
                    at com.crystaldecisions.reports.common.CommandManager.a(SourceFile:71)
                    at com.crystaldecisions.reports.common.Document.a(SourceFile:203)
                    at com.businessobjects.reports.reportconverter.v12.e.a(SourceFile:442)
                    at com.businessobjects.reports.reportconverter.v12.e.a(SourceFile:231)
                    at com.businessobjects.reports.reportconverter.v12.d.m(SourceFile:192)
                    at com.businessobjects.reports.reportconverter.v12.f.if(SourceFile:210)
                    at com.businessobjects.reports.reportconverter.v12.V12SaveLoader.a(SourceFile:242)
                    at com.businessobjects.reports.loader.ReportLoader.a(SourceFile:205)
                    at com.businessobjects.reports.sdk.JRCReportLoader.a(SourceFile:137)
                    at com.businessobjects.reports.sdk.JRCReportLoader.a(SourceFile:76)
                    at com.businessobjects.reports.sdk.requesthandler.ReportDocumentRequestHandler.a(SourceFile:136)
                    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.<init>(SourceFile:229)
                    ... 12 more
    Caused by: java.lang.ClassNotFoundException: com.businessobjects.reports.jdbinterface.common.DBException
                    at java.net.URLClassLoader1.run(URLClassLoader.java:200)
                    at java.security.AccessController.doPrivileged(Native Method)
                    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
                    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
                    at sun.misc.LauncherAppClassLoader.loadClass(Launcher.java:301)
                    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
                    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
                    ... 28 more

    Help me ...
    Ambient:
    Crystal Reports Viewer 14.0.0.0
    java.vendor = Sun Microsystems Inc.
    java.version = 1.6.0_37
    os.name = Windows NT (unknown)
    os.version = 6.2
    os.arch = amd64
    Exception:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: com.businessobjects.sdk.erom.jrc.ReportAgentFactory---- Error code:-2147215357 [CRSDK00000026] Error code name:internal
              at com.crystaldecisions.sdk.occa.report.lib.ReportSDKException.throwReportSDKException(ReportSDKException.java:112)
              at com.crystaldecisions.proxy.remoteagent.RemoteAgent.createDefaultAgent(RemoteAgent.java:1000)
              at com.crystaldecisions.sdk.occa.report.application.ClientDocument.initRemoteAgent(ClientDocument.java:770)
              at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(ClientDocument.java:961)
              at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.open(ReportClientDocument.java:226)
              at src.HelloWorldSwing.createAndShowGUI(HelloWorldSwing.java:54)
              at src.HelloWorldSwing.main(HelloWorldSwing.java:24)
    Source:
    import java.awt.BorderLayout;
    import javax.swing.JFrame;
    import com.crystaldecisions.ReportViewer.ReportViewerBean;
    import com.crystaldecisions.sdk.occa.report.application.DatabaseController;
    import com.crystaldecisions.sdk.occa.report.application.OpenReportOptions;
    import com.crystaldecisions.sdk.occa.report.application.ReportClientDocument;
    import com.crystaldecisions.sdk.occa.report.data.IConnectionInfo;
    import com.crystaldecisions.sdk.occa.report.reportsource.IReportSource;
    public class HelloWorldSwing {
               * @param args
              public static void main(String[] args) {
                        HelloWorldSwing pgm = new HelloWorldSwing();
                        try {
                                  pgm.createAndShowGUI();
                        } catch (Exception e) {
                                  e.printStackTrace();
                                  //JOptionPane.showMessageDialog(null, e.toString());
               * @throws Exception
              public void createAndShowGUI() throws Exception {
                        // Make sure we have nice window decorations.
                        JFrame.setDefaultLookAndFeelDecorated(false);
                        // Create and set up the window.
                        JFrame frame = new JFrame("HelloWorldSwing");
                        frame.setTitle("Titolo del Report");
                        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                        ReportViewerBean viewer = new ReportViewerBean();
                        viewer.init(new String[0], null, null, null);
                        ReportClientDocument rpt = new ReportClientDocument();
                        rpt.setReportAppServer(ReportClientDocument.inprocConnectionString); // inproc:jrc
                        rpt.open("Report.rpt", OpenReportOptions._openAsReadOnly);
                        IReportSource rptSource = rpt.getReportSource();
                        viewer.setReportSource(rptSource);
                        frame.getContentPane().add(viewer, BorderLayout.CENTER);
                        frame.setSize(1930, 1030);
                        frame.setVisible(true);
                        viewer.start();

  • Java.lang.NoClassDefFoundError: com/sap/tc/logging/Configurator

    I have installed this NWDS 2.0.12. When I click on the icon from desktop, I see a splash screen for a second and then immediately an error message saying 'Problem during startup. Check the .log file in .metadata folder of your workspace.'
    Following is the log file
    !SESSION -
    !ENTRY org.eclipse.core.launcher 4 0 Jun 29, 2006 16:09:37.302
    !MESSAGE Exception launching the Eclipse Platform:
    !STACK
    java.lang.NoClassDefFoundError: com/sap/tc/logging/Configurator
         at java.lang.Class.getDeclaredConstructors0(Native Method)
         at java.lang.Class.privateGetDeclaredConstructors(Class.java:1618)
         at java.lang.Class.getConstructor0(Class.java:1930)
         at java.lang.Class.getConstructor(Class.java:1027)
         at org.eclipse.core.internal.plugins.PluginDescriptor.internalDoPluginActivation(PluginDescriptor.java:709)
         at org.eclipse.core.internal.plugins.PluginDescriptor.doPluginActivation(PluginDescriptor.java:188)
         at org.eclipse.core.internal.plugins.PluginClassLoader.activatePlugin(PluginClassLoader.java:112)
         at org.eclipse.core.internal.plugins.PluginClassLoader.internalFindClassParentsSelf(PluginClassLoader.java:185)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.findClassParentsSelf(DelegatingURLClassLoader.java:485)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.loadClass(DelegatingURLClassLoader.java:882)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.loadClass(DelegatingURLClassLoader.java:862)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at org.eclipse.core.internal.plugins.PluginDescriptor.createExecutableExtension(PluginDescriptor.java:130)
         at org.eclipse.core.internal.plugins.PluginDescriptor.createExecutableExtension(PluginDescriptor.java:167)
         at org.eclipse.core.internal.plugins.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:103)
         at org.eclipse.core.internal.runtime.InternalPlatform.loaderGetRunnable(InternalPlatform.java:578)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.eclipse.core.internal.boot.InternalBootLoader.getRunnable(InternalBootLoader.java:471)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:854)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:286)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:784)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:602)
    Can somebody help me to resolve this? What should be the potential cause for the error?

    java.lang.NoClassDefFoundError: <b>com/sap/tc/logging/Configurator</b>
    Either a missing jar or the classpath is not defined right.

  • SSO from portal to Java based web application not happening

    Hi,
    We are trying to configure SSO from SAP Enterprise portal with Java based
    web application(Solaris on SPARC 64 bit).
    Then we downloaded library files for "Solaris on SPARC 64 bit" from
    service market place from the path "Support Packages and Patches"
    Additional Components" SAPSSOEXT".
    We are successful in sending the portal side cookie to the application.
    But while loading the library files we get the following error
    INFO | jvm 1 | 2009/04/13 04:47:00 | java.lang.UnsatisfiedLinkError:
    /usr/local/blackboard/apps/tomcat/lib/libsapssoext.so: ld.so.1: java:
    fatal: /usr/local/blackboard/apps/tomcat/lib/libsapssoext.so: wrong ELF
    class: ELFCLASS64 (Possible cause: endianness mismatch)
    Can you please suggest us what went wrong in this whole process.
    But when i tried with the 32 bit library files i was able to load libsapssoext.so file but when I
    tried to initialize libsapsecu.so i got the below message
    java.lang.Exception: MySapInitialize failed: rc= 14
    Also do we require to take"SAPSECULIB" from Support Packages and Patches" ...>Additional Components" ...>SAPSECULIB" ...>SAPSECULIB 5.4  for this SSO activity.
    Please get back on this ASAP as we are nearing the golive date.
    regards
    Bharath

    hi,
    am facing similar issue... i.e.
    java.lang.Exception: MySapInitialize failed: rc= 14
            at com.mysap.sso.SSO2Ticket.init(Native Method)
            at com.mysap.sso.SSO2Ticket.<clinit>(SSO2Ticket.java:27)
            at org.apache.jsp.index_jsp._jspService(index_jsp.java:92)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:390)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
            at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
            at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
            at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
            at java.lang.Thread.run(Thread.java:619)
    static beendet.
    java.lang.Exception: MySapEvalLogonTicketEx failed: standard error= 9, ssf error= 0
    CustomeSSO: Object is null.
    pls. help me in resolving it.
    rgds,
    santosh malavade

  • Problem with Java and Oracle Database -  help !

    i keep getting a NullPointerException when trying to
    update a resultSet in a servlet. i am bringing in the data
    just fine from an Oracle database. but it chokes when trying
    to update it. can anybody tell me what is happening?
    thanks for any help
    Owen
    ResultSet rs = stmt.executeQuery( "select * from sw_assets" );
    rs.next();
    rs.updateString("name","XXX"); <--- BOOM !
    java.lang.NullPointerException
    at sun.jdbc.odbc.JdbcOdbcBoundCol.setRowValues(JdbcOdbcBoundCol.java:240)
    at sun.jdbc.odbc.JdbcOdbcResultSet.updateChar(JdbcOdbcResultSet.java:3767)
    at sun.jdbc.odbc.JdbcOdbcResultSet.updateString(JdbcOdbcResultSet.java:3257)
    at sun.jdbc.odbc.JdbcOdbcResultSet.updateString(JdbcOdbcResultSet.java:3848)
    at _0002fopen_0002ejspopen_jsp_3._jspService(_0002fopen_0002ejspopen_jsp_3.java:87)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:177)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:318)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:391)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:404)
    at org.apache.tomcat.core.Handler.service(Handler.java:286)
    at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
    at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:797)
    at org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
    at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:210)
    at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
    at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:498)
    at java.lang.Thread.run(Thread.java:484)

    ResultSets based on a wildcard are generally treated as views by Oracle, meaning they are not updatable no matter how you create your statement. Try either "select swa.* from sw_assets swa" or "select all from sw_assets swa", that should get around the problem.
    Also (just being thorough) make sure that you specifically created your statement as being updatable (stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE) ).
    I would not normally expect a NullPointerException when encountering this "feature", but then I don't often use the ODBC bridge.
    Good luck! I hope this helps.

  • Java.lang.IllegalArgumentException when trying to create debug setting

    Hello all,
    I have just performed an install of EHP1 on a W2K3 EE machine, and I'm trying to setup to debug my Web Dynpro app on the Java server.  I have defined the system instance correctly SAP AS Java in the Window --> Preferences --> SAP AS Java section. My Web Dynpro app deploys and runs without problems.
    However, when I use Run -> Open Debug Dialog and then click on "Run on Server" and use the "New launch configuration" option, I get a message box stating "java.lang.IllegalArgumentException (check log file)".
    So I switch to Plug-in Development perspective and take a look at the log file. The exception appears in the list of messages; double-clicking the exception provides this data:
    Severity: Error
    Message: Problems occurred when invoking code from plug-in: "org.eclipse.jface".
    Exception Stack Trace:
    java.lang.IllegalArgumentException
         at org.eclipse.wst.server.core.internal.ResourceManager.getServer(ResourceManager.java:758)
         at org.eclipse.wst.server.core.ServerCore.findServer(ServerCore.java:286)
         at org.eclipse.wst.server.ui.internal.RunOnServerLaunchConfigurationTab.initializeFrom(RunOnServerLaunchConfigurationTab.java:105)
         at org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup.initializeFrom(AbstractLaunchConfigurationTabGroup.java:86)
         at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupWrapper.initializeFrom(LaunchConfigurationTabGroupWrapper.java:143)
         at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.displayInstanceTabs(LaunchConfigurationTabGroupViewer.java:784)
         at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer$8.run(LaunchConfigurationTabGroupViewer.java:658)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67)
         at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.inputChanged(LaunchConfigurationTabGroupViewer.java:676)
         at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.setInput0(LaunchConfigurationTabGroupViewer.java:637)
         at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.setInput(LaunchConfigurationTabGroupViewer.java:613)
         at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.handleLaunchConfigurationSelectionChanged(LaunchConfigurationsDialog.java:975)
         at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog$4.selectionChanged(LaunchConfigurationsDialog.java:570)
         at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:842)
         at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
         at org.eclipse.core.runtime.Platform.run(Platform.java:857)
         at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:46)
         at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:199)
         at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:840)
         at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:1153)
         at org.eclipse.jface.viewers.StructuredViewer$5.widgetSelected(StructuredViewer.java:1178)
         at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:250)
         at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:244)
         at org.eclipse.jface.util.OpenStrategy$3.run(OpenStrategy.java:418)
         at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
         at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:129)
         at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3659)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296)
         at org.eclipse.jface.window.Window.runEventLoop(Window.java:820)
         at org.eclipse.jface.window.Window.open(Window.java:796)
         at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.open(LaunchConfigurationsDialog.java:1133)
         at org.eclipse.debug.ui.DebugUITools$1.run(DebugUITools.java:387)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67)
         at org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:391)
         at org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:333)
         at org.eclipse.debug.ui.actions.OpenLaunchDialogAction.run(OpenLaunchDialogAction.java:82)
         at org.eclipse.debug.ui.actions.OpenLaunchDialogAction.runWithEvent(OpenLaunchDialogAction.java:90)
         at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:246)
         at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:229)
         at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:546)
         at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490)
         at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
         at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
         at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
         at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
         at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
         at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
         at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
         at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    Session Data:
    eclipse.buildId=M20080221-1800
    I've done some hunting around the internet for this error and I did find a problem that looks quite similar under a JBOSS forum: https://jira.jboss.org/jira/browse/JBIDE-3689 ("Creating new run configuration of type Run in Server fails with exception, jbds eclipse.buildId=1.1.0.GA"). The information presented there is almost exactly what I'm seeing:
    <cut>
    Steps to Recreate:
    1. From Run menu, select "Open Run Dialog..." or "Open Debug Dialog..."
    2. Right click on "Run on Server"
    3. Select "New"
    What you see is an "Error" dialog of Reason "java.lang.IllegalArgumentException".
    The error log records the following:
    Error
    Thu Jan 29 08:13:48 PST 2009
    Problems occurred when invoking code from plug-in: "org.eclipse.jface".
    </cut>
    In the JBOSS case, the response is:
    <cut>
    It is is a known bug in WTP 2.x and in WTP 3.x this option does not exist anymore thus you should just use Run As -> Run in Server.
    Marked as out of date since latest version of WTP 3 has the fix.
    </cut>
    I have the EHP1 installed on a couple other servers where this is not happening. Anyone run into this before?
    Alternatively, anyone know how I can check the WTP of the SAP-specific eclipse released as the EHP1 developer studio?
    Thanks very much,
    Andy

    Hi Andy,
    I think there is a very siple proces which you need to follow for debug. Please have a look:-
    Please check you mentioned the correct server and instance name. As you are saying that all you applications are running fine therefore I think you would have mentioned all the required parameters correctly.
    After checking all these things, follow the steps below:-
    1) From the menu in NWDS -> Click on the Debug symbol. Select "Open Debug Dialoug".
    2) Right click on the "Remote Java Application" and select New.
    3) Clickon the Source tab. Check whether you application is included under the Defualt folder. Only those projects will be debugged which are under this folder.
    4) If you application is not there. Click on Add-> Java Project -> Select your Project - > OK. Doing this will add your project in debug instance.
    5) Go to Connect tab. Mention the Host name (Same as server name you have mentioned under Window --> Preferences --> SAP AS Java ) AND the Message server port. Please note that this server port is diffrent from the http port.
    6) Just click on Debug.
    I hope after all these steps debug should work. If not please revert back.
    Thanks and Regards,
    Pravesh

  • Java.lang.NoSuchMethodException: com.sun.mail.imap.IMAPStore.

    All:
    I have completed the following:
    1. Downloaded the JavaMail 1.4.2 API.
    2. From this downloaded API I had extracted the mail.jar file (timestamp 2009-02-26 13:28) to my C:\Program Files\Tomcat 6.0\lib directory
    3. Downloaded the jaf-1_0_2-upd2 API
    4. From this downloaded API I had extracted the activation.jar file (timestamped 2005-05-07 21:14) also to my C:\Program Files\Tomcat 6.0\lib directory.
    In Eclipse I have created a simple JSP page that calls a POJO that is to read a particular email box using IMAP. In this POJO I have code to set up the Properties, Session and Store objects as such:
    Line 1 Properties properties = System.getProperties();
    Line 2 properties.put("mail.from", "[email protected]");
    Line 3 properties.put("mail.debug","true");
    Line 4 session = Session.getDefaultInstance(properties, null);
    Line 5 session.setDebug(debug);
    Line 6 printData("About to get store object...");
    Line 7 store = session.getStore("imap");
    In eclispe, I click "Debug on Server" and Tomcat starts, begins to display my JSP and then I am dropped on the line of code in my POJO where I set a breakpoint (Line 1). Now I single step through the code. The code throws the following execption when it executes line 7 of the above code :
    (Line 6 ==>) About to get store object...
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc]
    java.lang.NoSuchMethodException: com.sun.mail.imap.IMAPStore.<init>(javax.mail.Session, javax.mail.URLName)
         at java.lang.Class.getConstructor0(Unknown Source)
         at java.lang.Class.getConstructor(Unknown Source)
         at javax.mail.Session.getService(Session.java:782)
         at javax.mail.Session.getStore(Session.java:574)
         at javax.mail.Session.getStore(Session.java:536)
         at javax.mail.Session.getStore(Session.java:515)
         at emailTest.readEmails.processMail(readEmails.java:62)
         at emailTest.readEmails.<init>(readEmails.java:24)
         at org.apache.jsp.emailTest_jsp._jspService(emailTest_jsp.java:94)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
         at java.lang.Thread.run(Unknown Source)
    There are no jar files defined in my project's classpath. The only jar file found in the project is in the WEB-INF\lib folder wherein I have a jndi.jar (timstamp 5/5/2009 8:10AM) file.
    I put the activation.jar file and the mail.jar file in my Tomcat.6\lib folder according item 4 of the JavaMail Sessions section of the Apache Tomcat JNDI Resources HOW_TO found here: http://tomcat.apache.org/tomcat-6.0-doc/jndi-resources-howto.html
    Can anybody please tell me what I need to do to get around this error? Do I perhaps have the wrong versions of one or more jar files?
    FYI: I have also put these same two jar files in my projects classpath and still recevied the same exception. Because I am invoking a POJO from a JSP should these jar files be in my projects classpath in addition to the tomcat\lib directory, or should they only be in the projects' classpath?
    Thanks to all for your time in responding.
    Gary

    bshannon:
    Thank you for your resonse. Your response got me to thinking that my instance of Ecliplse that I had had running yesterday was behaving a little strangely so this morning I closed everything I had running on my workstation and closed down the machine and rebooted. When I finally opend up Eclipse again and ran my JSP program calling my POJO, the code no longer threw the exception. Apparently Eclipse can have its tempermental moments.
    Also, let it be known that while everything is working for me now, I performed a small experiment. I moved the activiation.jar and mail.jar from my project\WEB-INF\lib folder and put them in the the C:\Program Files\Tomcat 6.0\lib directory. Then, when I ran my program I once again recieved the java.lang.NoSuchMethodException error. When I moved these jar files back from the Tomcat diretory to my project\WEB-INF\lib directory, the program worked just fine.
    Thanks again
    Gary

  • Reg: Error in Data Template ( java.sql.SQLException: ORA-00900: invalid SQL

    Hi Experts,
    Good Morning..
    I registered the data template which i created in oracle apps and while i run that, ended in error... Plz help me..
    Step :-1 Used Data Template as below:-
    <?xml version="1.0" encoding="WINDOWS-1252" ?>
    <dataTemplate name="EMP" defaultPackage="" description="Employee Data">
    - <properties>
    <property name="include_parameters" value="true" />
    <property name="include_null_Element" value="true" />
    <property name="xml_tag_case" value="upper" />
    <property name="db_fetch_size" value="500" />
    <property name="scalable_mode" value="off" />
    <property name="include_rowsettag" value="false" />
    <property name="debug_mode" value="off" />
    </properties>
    <parameters/>
    <parameters name="pdeptno" dataType="number" defaultValue=" ">
    </parameters>
    <lexicals />
    - <dataQuery>
    - <sqlStatement name="DEPT" dataSourceRef="">
    - <![CDATA[
              SELECT DEPTNO,DNAME,
              LOC,CURSOR(SELECT  EMPNO,ENAME,JOB,MGR,HIREDATE,SAL,nvl(COMM,0) COMM from EMP ) as EMP
              from dept
              where deptno=pdeptno
              order by deptno]]>
    </sqlStatement>
    </dataQuery>
    </dataTemplate>
    Step -2:-
    Registered in xml publisher administrator
    Step -3:-
    While i am running this getting below error-
    XDO Data Engine Version No: 5.6.3
    Resp: 20419
    Org ID : 204
    Request ID: 5380496
    All Parameters: pdeptno=10
    Data Template Code: EMP_DD
    Data Template Application Short Name: FND
    Debug Flag: N
    {pdeptno=10}
    Calling XDO Data Engine...
    java.sql.SQLException: ORA-00900: invalid SQL statement
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:216)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:810)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1039)
         at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:850)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1134)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3339)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3384)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeDefaultGroup(XMLPGEN.java:392)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroupStructure(XMLPGEN.java:286)
         at oracle.apps.xdo.dataengine.XMLPGEN.processData(XMLPGEN.java:273)
         at oracle.apps.xdo.dataengine.XMLPGEN.processXML(XMLPGEN.java:215)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeXML(XMLPGEN.java:254)
         at oracle.apps.xdo.dataengine.DataProcessor.processDataStructre(DataProcessor.java:390)
         at oracle.apps.xdo.dataengine.DataProcessor.processData(DataProcessor.java:355)
         at oracle.apps.xdo.oa.util.DataTemplate.processData(DataTemplate.java:348)
         at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:293)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    Start of log messages from FND_FILE
    Any mistake i made.. Issue may be silly..plz help me...
    Thanks in advance..
    Happy

    Hi all,,,,
    Thank so much for your valuable response regarding this issue..
    Actually my scenario meet this below example, path for that example:-.
    http://blogs.oracle.com/xmlpublisher/2007/02/data_templates_without_groupin.html
    I am simply executing that data template. but getting this error :-
    XDO Data Engine Version No: 5.6.3
    Resp: 20419
    Org ID : 204
    Request ID: 5380496
    All Parameters: pdeptno=10
    Data Template Code: EMP_DD
    Data Template Application Short Name: FND
    Debug Flag: N
    {pdeptno=10}
    Calling XDO Data Engine...
    java.sql.SQLException: ORA-00900: invalid SQL statement
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:216)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:810)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1039)
         at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:850)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1134)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3339)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3384)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeDefaultGroup(XMLPGEN.java:392)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroupStructure(XMLPGEN.java:286)
         at oracle.apps.xdo.dataengine.XMLPGEN.processData(XMLPGEN.java:273)
         at oracle.apps.xdo.dataengine.XMLPGEN.processXML(XMLPGEN.java:215)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeXML(XMLPGEN.java:254)
         at oracle.apps.xdo.dataengine.DataProcessor.processDataStructre(DataProcessor.java:390)
         at oracle.apps.xdo.dataengine.DataProcessor.processData(DataProcessor.java:355)
         at oracle.apps.xdo.oa.util.DataTemplate.processData(DataTemplate.java:348)
         at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:293)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    Start of log messages from FND_FILE

  • Crystal Report throws NULL Pointer Exception from Java

    Hi,
    <br>
    We are using crystal report in our application and we are changing the report datasource with the application datasource through our code. We are using CR4E 2008 to achieve this solution. We are getting a NULLPointerException, when we run the report in Oc4J(Oracle Apps Server) with JDK1.6. Could you please help us in achieving the solution
    <br><br>
    Exception:
    <br>
    Connection logon:Database DLL=s(crdb_jdbc.dll);Trusted_Connection=s(true);PreQEServerType=s(JDBC (JNDI));Server
    Type=s(JDBC (JNDI));Use JDBC=s(true);Database Class Name=s();JNDI Datasource Name=s(jdbc/1495);Connection URL=s();User ID=s(myapp);Password=
    detected an exception: java.lang.NullPointerException
    at com.crystaldecisions.reports.queryengine.driverImpl.jdbc.JDBCConnection.Open(Unknown Source)
    at com.crystaldecisions.reports.queryengine.JDBConnectionWrapper.Open(SourceFile:123)
    at com.crystaldecisions.reports.queryengine.Connection.br(SourceFile:1771)
    at com.crystaldecisions.reports.queryengine.Connection.bs(SourceFile:491)
    at com.crystaldecisions.reports.queryengine.Connection.t1(SourceFile:2978)
    at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.a(SourceFile:696)
    at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.for(SourceFile:706)
    at com.crystaldecisions.reports.reportdefinition.ReportHelper.a(SourceFile:198)
    at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.long(SourceFile:957)
    at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.a(SourceFile:635)
    at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.int(SourceFile:672)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(SourceFile:1944)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:661)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:167)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:529)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(SourceFile:527)
    at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(SourceFile:102)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(SourceFile:525)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(SourceFile:424)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(SourceFile:352)
    at com.businessobjects.sdk.erom.jrc.a.a(SourceFile:54)
    at com.businessobjects.sdk.erom.jrc.a.execute(SourceFile:67)
    at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(SourceFile:716)
    at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(SourceFile:125)
    at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:537)
    at com.crystaldecisions.sdk.occa.report.application.ds.a(SourceFile:186)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:1558)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:337)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(SourceFile:286)
    at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(SourceFile:209)
    at com.mysystems.myapp.common.CrystalRpt.print(CrystalRpt.java:387)
    at regular.ShowReport._jspService(_ShowReport.java:277)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at com.mysystems.myapp.common.ServletFilter.doFilter(ServletFilter.java:107)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:662)
    2011-06-27 10:42:03.598 09041510myappt myapp ShowReport.jspService(277) Error while generating crystal report com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: java.lang.NullPointerException---- Error code:-2147467259 Error code name:failed
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:741)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:167)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:529)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(SourceFile:527)
    at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(SourceFile:102)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(SourceFile:525)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(SourceFile:424)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(SourceFile:352)
    at com.businessobjects.sdk.erom.jrc.a.a(SourceFile:54)
    at com.businessobjects.sdk.erom.jrc.a.execute(SourceFile:67)
    at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(SourceFile:716)
    at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(SourceFile:125)
    at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:537)
    at com.crystaldecisions.sdk.occa.report.application.ds.a(SourceFile:186)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:1558)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:337)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(SourceFile:286)
    at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(SourceFile:209)
    at com.mysystems.myapp.common.CrystalRpt.print(CrystalRpt.java:387)
    at regular.ShowReport._jspService(_ShowReport.java:277)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at com.mysystems.myapp.common.ServletFilter.doFilter(ServletFilter.java:107)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: java.lang.NullPointerException
    at com.crystaldecisions.reports.queryengine.driverImpl.jdbc.JDBCConnection.Open(Unknown Source)
    at com.crystaldecisions.reports.queryengine.JDBConnectionWrapper.Open(SourceFile:123)
    at com.crystaldecisions.reports.queryengine.Connection.br(SourceFile:1771)
    at com.crystaldecisions.reports.queryengine.Connection.bs(SourceFile:491)
    at com.crystaldecisions.reports.queryengine.Connection.t1(SourceFile:2978)
    at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.a(SourceFile:696)
    at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.for(SourceFile:706)
    at com.crystaldecisions.reports.reportdefinition.ReportHelper.a(SourceFile:198)
    at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.long(SourceFile:957)
    at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.a(SourceFile:635)
    at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.int(SourceFile:672)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(SourceFile:1944)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:661)
    ... 33 more
    Regards,
    Karthik.

    Hi,
    <br>
    We are using crystal report in our application and we are changing the report datasource with the application datasource through our code. We are using CR4E 2008 to achieve this solution. We are getting a NULLPointerException, when we run the report in Oc4J(Oracle Apps Server) with JDK1.6. Could you please help us in achieving the solution
    <br><br>
    Exception:
    <br>
    Connection logon:Database DLL=s(crdb_jdbc.dll);Trusted_Connection=s(true);PreQEServerType=s(JDBC (JNDI));Server
    Type=s(JDBC (JNDI));Use JDBC=s(true);Database Class Name=s();JNDI Datasource Name=s(jdbc/1495);Connection URL=s();User ID=s(myapp);Password=
    detected an exception: java.lang.NullPointerException
    at com.crystaldecisions.reports.queryengine.driverImpl.jdbc.JDBCConnection.Open(Unknown Source)
    at com.crystaldecisions.reports.queryengine.JDBConnectionWrapper.Open(SourceFile:123)
    at com.crystaldecisions.reports.queryengine.Connection.br(SourceFile:1771)
    at com.crystaldecisions.reports.queryengine.Connection.bs(SourceFile:491)
    at com.crystaldecisions.reports.queryengine.Connection.t1(SourceFile:2978)
    at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.a(SourceFile:696)
    at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.for(SourceFile:706)
    at com.crystaldecisions.reports.reportdefinition.ReportHelper.a(SourceFile:198)
    at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.long(SourceFile:957)
    at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.a(SourceFile:635)
    at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.int(SourceFile:672)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(SourceFile:1944)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:661)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:167)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:529)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(SourceFile:527)
    at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(SourceFile:102)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(SourceFile:525)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(SourceFile:424)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(SourceFile:352)
    at com.businessobjects.sdk.erom.jrc.a.a(SourceFile:54)
    at com.businessobjects.sdk.erom.jrc.a.execute(SourceFile:67)
    at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(SourceFile:716)
    at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(SourceFile:125)
    at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:537)
    at com.crystaldecisions.sdk.occa.report.application.ds.a(SourceFile:186)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:1558)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:337)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(SourceFile:286)
    at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(SourceFile:209)
    at com.mysystems.myapp.common.CrystalRpt.print(CrystalRpt.java:387)
    at regular.ShowReport._jspService(_ShowReport.java:277)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at com.mysystems.myapp.common.ServletFilter.doFilter(ServletFilter.java:107)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:662)
    2011-06-27 10:42:03.598 09041510myappt myapp ShowReport.jspService(277) Error while generating crystal report com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: java.lang.NullPointerException---- Error code:-2147467259 Error code name:failed
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:741)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:167)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:529)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(SourceFile:527)
    at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(SourceFile:102)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(SourceFile:525)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(SourceFile:424)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(SourceFile:352)
    at com.businessobjects.sdk.erom.jrc.a.a(SourceFile:54)
    at com.businessobjects.sdk.erom.jrc.a.execute(SourceFile:67)
    at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(SourceFile:716)
    at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(SourceFile:125)
    at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:537)
    at com.crystaldecisions.sdk.occa.report.application.ds.a(SourceFile:186)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:1558)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:337)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(SourceFile:286)
    at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(SourceFile:209)
    at com.mysystems.myapp.common.CrystalRpt.print(CrystalRpt.java:387)
    at regular.ShowReport._jspService(_ShowReport.java:277)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at com.mysystems.myapp.common.ServletFilter.doFilter(ServletFilter.java:107)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: java.lang.NullPointerException
    at com.crystaldecisions.reports.queryengine.driverImpl.jdbc.JDBCConnection.Open(Unknown Source)
    at com.crystaldecisions.reports.queryengine.JDBConnectionWrapper.Open(SourceFile:123)
    at com.crystaldecisions.reports.queryengine.Connection.br(SourceFile:1771)
    at com.crystaldecisions.reports.queryengine.Connection.bs(SourceFile:491)
    at com.crystaldecisions.reports.queryengine.Connection.t1(SourceFile:2978)
    at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.a(SourceFile:696)
    at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.for(SourceFile:706)
    at com.crystaldecisions.reports.reportdefinition.ReportHelper.a(SourceFile:198)
    at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.long(SourceFile:957)
    at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.a(SourceFile:635)
    at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.int(SourceFile:672)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(SourceFile:1944)
    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:661)
    ... 33 more
    Regards,
    Karthik.

  • Problem running a Java program

    Hi...I'm developing a CORBA project and I'm using java to implement it. I wrote a Hello World program and I could compile all my files (IDL files and all the generated .java files). But when I try to run my Server program I get the following error message:
    Exception in thread "main" java.lang.NoClassDefFoundError: HelloApp/_HelloImplBase
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:486)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:111)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:248)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:297)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:286)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:313)
    at HelloStringifiedServer.main(HelloStringifiedServer.java:24)
    Can anyone please help me!
    Thanks in advance

    Sure, here is the Server code:
    // HelloStringifiedServer.java, stringified object reference version
    import java.io.*;
    import org.omg.CORBA.*;
    import HelloApp.*;
    public class HelloStringifiedServer {
    class HelloServant extends _HelloImplBase
    public String sayHello()
    return "\nHello world !!\n";
    public static void main(String args[])
    try{
    // create and initialize the ORB
    ORB orb = ORB.init(args, null);
    // create servant and register it with the ORB
    HelloServant helloRef = new HelloServant();
    orb.connect(helloRef);
    // stringify the helloRef and dump it in a file
    String str = orb.object_to_string(helloRef);
    String filename = System.getProperty("user.home")+
    System.getProperty("file.separator")+"HelloIOR";
    FileOutputStream fos = new FileOutputStream(filename);
    PrintStream ps = new PrintStream(fos);
    ps.print(str);
    ps.close();
    // wait for invocations from clients
    java.lang.Object sync = new java.lang.Object();
    synchronized (sync) {
    sync.wait();
    } catch (Exception e) {
    System.err.println("ERROR: " + e);
    e.printStackTrace(System.out);
    I get the previous error message when I try to run this file. Other files are those generated by the IDL compiler
    PS: Are you familiar with CORBA?

  • Urgent :-Need Help in DOtnet Dll integration with CFM 8. for error "java.lang.NullPointerException"

    Hi Everyone,
    I am trying to intergrate Dotnet DLL with coldfusion. The basic perpose of this DLL is putting value in cache.
    My code is working fine on my local machine but it giving me problem on live server.
    It is throwing "java.lang.NullPointerException" error.
    Description of task:-
    DLL:-
    made in : Dotnet 3.0
    Functions:-
    setCache:- setting a string into cache.
    getCache:- getting value from cache.
    ClearCache:- Clearing all value from Cache.
    Local Machine:-
    OS: window server 2003
    Coldfusion version :MX8
    coldfusion Product level:-Developer
    Result:-Task is working fine.No error what so ever.
    Live server:-
    OS: window server 2003
    Coldfusion version :MX8
    coldfusion Product level:-Standred
    Result:-Task is throwing error "java.lang.NullPointerException"

    Thanks for your response, but surely if the .NET Services was not running how can CF instantiate and dump the object with all the correct methods?
    Anyway for some strange reason there is no Coldfusion .NET service in my services control panel even though I am running CF8. I have since downloaded the .NET service installer, run it and done a restart but I can still see no such service and the error continues?
    I am running CF8 Dev on IIS 6 – Window XP pro and here is debug
    java.lang.NullPointerException
                   at com.jnbridge.jnbcore.clientTransports.d$b.close(Unknown Source)
                   at java.net.Socket.<init>(Socket.java:368)
                   at java.net.Socket.<init>(Socket.java:209)
                   at com.jnbridge.jnbcore.clientTransports.d$b.<init>(Unknown Source)
                   at com.jnbridge.jnbcore.clientTransports.d.if(Unknown Source)
                   at com.jnbridge.jnbcore.clientTransports.c.a(Unknown Source)
                   at com.jnbridge.jnbcore.clientTransports.f.a(Unknown Source)
                   at com.jnbridge.jnbcore.DotNetSideProxy.int(Unknown Source)
                   at com.jnbridge.jnbcore.DotNetSideProxy.getObjectStaticProperty(Unknown Source)
                   at System.Environment.Get_CurrentDirectory()
                   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                   at java.lang.reflect.Method.invoke(Method.java:597)
                   at coldfusion.runtime.java.JavaProxy.invoke(JavaProxy.java:87)
                   at coldfusion.runtime.dotnet.DotNetProxy.invoke(DotNetProxy.java:38)
                   at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2272)
                   at cftestDotNet2ecfm215937280.runPage(C:\Inetpub\wwwroot\his_clothing\testDotNet.cfm:20)
                   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196)
                   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370)
                   at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
                   at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:273)
                   at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
                   at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
                   at coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
                   at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
                   at coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:74)
                   at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
                   at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
                   at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
                   at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
                   at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
                   at coldfusion.CfmServlet.service(CfmServlet.java:175)
                   at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
                   at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
                   at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
                   at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
                   at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
                   at jrun.servlet.FilterChain.service(FilterChain.java:101)
                   at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
                   at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
                   at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
                   at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
                   at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
                   at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
                   at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
                   at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
                   at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

Maybe you are looking for

  • Setting CC field in Sender Mail Adapter

    Hi, I am on SP16, and using Sender Mail Adapter. I need to retrieve the CC field from the mail. I have set the <i>Adapter-Specific Message Attributes</i>. ie. Set <i>Adapter-Specific Message Attributes</i>, and <i>Variable Transport Binding</i> boxes

  • Front Row shuts down when ever I click on the movies button

    I have read through the majority of issues on the DQ board. My problem differs as I can use iTunes, DVD, and iPhoto through Front Row but when ever I select Movies it just closes unexpected and I am back to the desktop. Have rebooted, no go. I only h

  • Lightroom will not read sony ARW files

    I understood the latest version of Lightroom supported the recent Sony A7 series, whose RAW files are Sony's own ARW files. I have the latest Lightroom but it will not read these files.

  • Oracle 11g liance details

    Hi All We need to install oracle 11 g on developer machines. As this is puarly developement phase which edition need to install ? Oracle 11g personal edition or oracle 11g express edition Installtion need to perform on windows 7 with 64 bit machine (

  • Event imported from camcorder jiggles

    Imported HD video jiggles, but only when the content is panning or zooming. No such problem playing back the video on the camera's monitor, or directly from the camera to a TV. No such problem using this camera and computer prior to this attempt. Hap