Java program not running by the Ant

i have a small java program.
its a classpath problem.
cant figure out where is the problem.
i am running the code via Ant.
build.xml
<?xml version="1.0"?>
<project name="myproject" basedir="." default="all">
    <property name="src.dir"     value="src"/>
     <property name="classes.dir" value="classes"/>
     <property name="lib.dir"     value="C:/tomcat/webapps/axis/WEB-INF/lib"/>
     <property name="runclass" value="TestClient"/>
     <target name="all" depends="clean,compile"/>
     <target name="clean">
        <delete dir="${classes.dir}"/>
    </target>
    <path id="classpath">
        <fileset dir="${lib.dir}" includes="**/*.jar"/>
    </path>
    <target name="compile">
        <mkdir dir="${classes.dir}"/>
     <javac srcdir="${src.dir}"
      destdir="${classes.dir}"
      deprecation="on"
      debug="on">
   <classpath><path refid="classpath"/></classpath>
  </javac>
     </target>
     <target name="run" depends="compile">
   <!-- run the class -->
   <java classname="${runclass}">
        <classpath>
          <pathelement path="${classpath}"/>
          <fileset dir="${lib.dir}">
            <include name="**/*.jar"/>
        </fileset>
          </classpath>
       </java>
  </target>
     </project>i invoked
ant runand got this
Buildfile: build.xml
compile:
run:
     [java] Could not find TestClient. Make sure you have it in your classpath
     [java]     at org.apache.tools.ant.taskdefs.ExecuteJava.execute(ExecuteJava
.java:170)
     [java]     at org.apache.tools.ant.taskdefs.Java.run(Java.java:710)
     [java]     at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:178)
     [java]     at org.apache.tools.ant.taskdefs.Java.execute(Java.java:84)
     [java]     at org.apache.tools.ant.UnknownElement.execute(UnknownElement.ja
va:275)
     [java]     at org.apache.tools.ant.Task.perform(Task.java:364)
     [java]     at org.apache.tools.ant.Target.execute(Target.java:341)
     [java]     at org.apache.tools.ant.Target.performTasks(Target.java:369)
     [java]     at org.apache.tools.ant.Project.executeSortedTargets(Project.jav
a:1216)
     [java]     at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
     [java]     at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(De
faultExecutor.java:40)
     [java]     at org.apache.tools.ant.Project.executeTargets(Project.java:1068
     [java]     at org.apache.tools.ant.Main.runBuild(Main.java:668)
     [java]     at org.apache.tools.ant.Main.startAnt(Main.java:187)
     [java]     at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
     [java]     at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
BUILD SUCCESSFUL
Total time: 2 secondsso, code is not running......its dfinitely a classpath problem , because error message says "Could not find TestClient. Make sure you have it in your classpat".
TestClient is the name of main class file.
not sure whats wrong with this build.xml ? whats wrong in it ?
one thing , i guess, i did not mention "." , current directory in the build.xml ......is it because of that ?
i browsed apache manual......To Run a Java program.....first, they are making a JAR file ...and then they are executing the JAR.
i really, dont need the JAR file......i just want to run it.....thats enough.
somewhere, i have to do some modification in this buld.xml.......do you have any idea ?
thank you

TestClient folder has
1)src
2)classes
3)build.xml
i have posted the build.xml already.
now, src folder has TestClient.java
TestClient.java
==================
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import javax.xml.namespace.QName;
public class TestClient {
   public static void main(String [] args) {
     try {
       String endpoint =
           "http://ws.apache.org:5049/axis/services/echo";
       Service  service = new Service();
       Call     call    = (Call) service.createCall();
       call.setTargetEndpointAddress( new java.net.URL(endpoint) );
       call.setOperationName(new QName("http://soapinterop.org/","echoString"));
       String ret = (String) call.invoke( new Object[] { "Hello!" } );
       System.out.println("Sent 'Hello!', got '" + ret + "'");
     } catch (Exception e) {
       System.err.println(e.toString());
}and i did
ant runand i got those errors.
clearly, its not able to run it.
looked the manual....did not find anything special about java task....still not working.

Similar Messages

  • Can a java program be run in the background?

    Hi all,
    Can a java program be run in the background without the user being aware of it? I need to make a program that continuosly monitors a pc at regular intervals and runs at all time. It should be hidden(shouldn't display on the screen while running) from the user, and also, can it be run as a system file so that even if a user checks he/she would think of it as a system file?

    I'm the administrator of all the computers. Then as I said there are commercial applications that do that.
    Presumably you expect a problem now. And implementing an acceptable solution is going to take you months. Because not only need to 'hide' the application, you also need to set up all the monitoring and logging capability. And the first will require quite a bit of JNI work along with testing (in particular as it could interfer with existing applications on the users computers.)
    I need to
    install the software in all the machines and i want
    that the users who use the machine should not be able
    to close the program through the task manager. If the users have admin rights then they can terminate a windows service.
    And if they don't have admin rights then you can simply turn off the ability to install anything.
    I want
    to know what the resources of the computers are and
    that if anyone has added a resource to it or
    not(attaching a flash usb thumbdrive etc). Lots of JNI.

  • How to find that a java program is running for the first time on daily basi

    it is like this
    1. i will ran a java program every day and i have to find that it is running for the first time(as i may stop that program and may run again the same day )
    Pls share ur ideas

    san.kumar wrote:
    it is like this
    1. i will ran a java program every day and i have to find that it is running for the first time(as i may stop that program and may run again the same day )
    Pls share ur ideasAs kajbj said - you need to store a token / file with a run date on the file system. Each time the application runs, have it compare with the date from this file with the current date. If different, it's the first run of the day. If not, it is not the first run of the day. Each time have it update the date on the file.

  • Java Program Not Running

    Hi,
    I have a small Java program that imports Oracle.sql.* and Oracle.jdbc.*.
    It establishes a default connection and converts a String[ ] to Oracle.sql.ARRAY type.
    As per Oracle documentation, I have added paths of required .zip files in CLASSPATH variable.
    Though I am able to compile the code, but when I try to run it thru java, it gives me error:
    Exception in Thread "main" java.lang.NoClassDefFoundError: TestInstallJDBC
    The .java and .class files are in current directory and I'm using
    java TestInstallJDBC.
    What can be the problem?
    Any help is appreciated.
    Thanks

    Ah, I re-read your first post - you said you added paths to the Classpath. So you need to add . to your Classpath as well. For Windows .;<existing_classpath> or for Unix .:<existing_classpath>

  • I was going to upgrade from 10.6.8 to mavericks 10.9.2, but the installer program notified me stating my appleworks 6 app will not run on the new set up. is there a procedure to keep or switch my documents in order to obtain the mavericks upgrade?

    i was going to upgrade from 10.6.8 to mavericks 10.9.2, but the installer program notified me stating my appleworks 6 app will not run on the new set up. is there a procedure to keep or switch my documents in order to obtain the mavericks upgrade?

    I can't say personally since I never used AW, but see if these articles help:
    http://www.macworld.com/article/1166370/open_old_docs.html
    http://www.cultofmac.com/248546/convert-system-os-9-appleworks-6-files-to-os-x-p ages-files-os-x-tips/
    I suggest that you clone your current drive with 10.6.8 to an external drive. If you have any issues after upgrading to Mavericks, you can boot back into 10.6.8.
    Both of these applications can be used to create a clone. If you need help creating your clone, let us know.
    SuperDuper! http://www.shirt-pocket.com/
    CCC http://www.bombich.com/download.html

  • I just got an IPAD2 on Saturday.  With the Mac, I could always tell when programs were open/running by going to the menu bar.  How can I tell what programs are running in the background.  I am struggling with not being able to go to a menu bar at the top

    I just got an IPAD2 on Saturday.  With the Mac, I could always tell when programs were open/running by going to the menu bar.  How can I tell what programs are running in the background.  I am struggling with not being able to go to a menu bar at the top

    You can see which apps are open and/or recently used by double-clicking the home button to bring up the taskbar at the bottom of the screen (not all apps that appear there are active) - you can then close apps on it by pressing and holding one of them for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar. If you have an app 'open' on-screen then it won't appear on the taskbar, you will need to go back to the homescreen first, and it should then show when you next open the taskbar.
    If you haven't already got a copy then you can download the iPad manual from here : http://support.apple.com/manuals/#ipad

  • Applet not running in the broweser.

    Hello everyone I have a problem that is bugging me.
    in my pc at home i have operating system window xp i have oracle9i installed and also java and j2ee and version of internet explorer is 6.0
    .there is no proble running html pages but the problem is the applet are not running in the broweser even the java demo from sun is not running
    .when i try to run the applet a dialog box appears and shows this
    " jvm not find Download now" i do not have internet connection.
    and one more thing i want to down load or save file in webserver
    i donot know whether my pc is having default webserver but when i type this "http://localhost" a page of oracle is display listing jserver ,appache server and so many thing.
    do i have a webserver that can be used by me for java program(adv java) or i have to get one .as i told you there is java1.3 and j2ee1_2_3
    something like this i donot remember is there no default webserver along with them .how can i use them for my java programe .
    let me remind you the applet not getting downloaded in the browser is a bigger problem for me.
    i appreciate your concern please help me out
    have a nice day bye.

    1} The applet is not getting loaded in my internet
    browser.Error messages? Are you sure your setup is correct? Search. "Applet not working" usually has only a small range of reasons, all well-covered here.
    2}why the oracle page is displayed when i type
    "http://localhost".
    Maybe because you have some Oracle webserver?
    3} Do i have any default webbrowser in my system.Yes. The one that opens when you double-click on an HTML page.
    >
    thanks.

  • Java will not run in IE9

    I find this problem posted all over the internet -- however, I have found few answers and no solutions that work.
    Java will not run in IE9 
    In the last three days I have installed Java 7.5 at least five times (after total uninstalls).
    I have Windows 7 Home premium with all updates installed.  Anti-virus programs are installed.
    Even the java website   http://www.java.com/en/download/testjava.jsp cannot detect the Java program in IE9.  It displays the following message:  “No working Java was detected
    on your system.  Install Java by clicking the button below.”
    I know you don’t want to hear about other browsers, however, this is part of the diagnoses – Java works fine in Chrome.  (Obviously, there are some programs that can only be accessed in IE.)
    I have tried turning off the firewall, anti-virus AVG, active x filtering, and every other program.  I have cleared the browsing history, cookies, etc.  50 times = nothing works.
    I experienced that Java did work once and only once in IE9 after each of two new reinstallations of Java 7.5.
    Process Explorer shows that Java is running, I’ve included a screen- shot (hope it shows up)
    All knowledgeable answers are appreciated.

    Hi,
    Have you tried the compatibility mode in Internet Explorer 9? Or does this issue occur to previous Internet Explorer versions?
    For reference about compatibility mode:
    http://blogs.msdn.com/b/ie/archive/2010/10/19/testing-sites-with-browser-mode-vs-doc-mode.aspx
    How to use Compatibility View in Internet Explorer 9
    You could try to deselect the “Automatically Detect Settings” to check how it works.
    And enable the scripting of Java applets settings:
    1. Click "Tools" --> "Internet Options"  
    2. Next, select the Security Tab, and select the "Custom Level" button
    3. Scroll down to "Scripting of Java applets"
    4. Make sure the "Enable" radio button is checked.
    5. Click OK to save your preference.
    Or you could try to change the settings in group editor:
    Computer Configuration\Administrative Templates\Windows Components\Internet Explorer\Internet Control Panel\Security Page\Internet Zone\Java Permissions
    Meanwhile, I suggest you could
    reset Internet Explorer settings to see the results.
    Hope this helps.
    Vincent Wang
    TechNet Community Support

  • Java program stopped running when using JVMPI

    Hi!
    I'm writting a very simple profiler using JVMPI. I intended to pause/continue it by sending signal, like kill -SIGUSR2 PID, to it, but whenever I did this, the java program that ran with the profiler stopped running, however the profiler kept running properly.
    Here's the code of the simple profiler and the testing java program.
    //myprofiler.cc
    #include <jvmpi.h>
    #include <pthread.h>
    #include <stdio.h>
    #include <signal.h>
    void sig_handler_pause(int);
    static JVMPI_Interface *jvmpi_interface;
    void notifyEvent(JVMPI_Event *event) {
    switch(event->event_type) {
    case JVMPI_EVENT_CLASS_LOAD:
    fprintf(stderr, "myprofiler> Class Load : %s\n", event->u.class_load.class_name);
    break;
    case JVMPI_EVENT_OBJECT_ALLOC:
    fprintf(stderr, "myprofiler>object alloc \n");
    break;
    extern "C" {
    JNIEXPORT jint JNICALL JVM_OnLoad(JavaVM jvm, char options, void *reserved) {
    fprintf(stderr, "myprofiler> initializing ..... \n");
    // get jvmpi interface pointer
    if ((jvm->GetEnv((void **)&jvmpi_interface, JVMPI_VERSION_1)) < 0) {
    fprintf(stderr, "myprofiler> error in obtaining jvmpi interface pointer\n");
    return JNI_ERR;
    // initialize jvmpi interface
    jvmpi_interface->NotifyEvent = notifyEvent;
    // enabling class load event notification
    jvmpi_interface->EnableEvent(JVMPI_EVENT_CLASS_LOAD, NULL);
    fprintf(stderr, "myprofiler> .... ok \n\n");
    signal(SIGUSR2,sig_handler_pause);
    return JNI_OK;
    void start(){
              fprintf(stderr,"start...\n");
         jvmpi_interface->EnableEvent(JVMPI_EVENT_OBJECT_ALLOC, NULL);
    jvmpi_interface->EnableEvent(JVMPI_EVENT_CLASS_LOAD,NULL);
    void pause(){
              fprintf(stderr,"pause...\n");
              jvmpi_interface->DisableEvent(JVMPI_EVENT_OBJECT_ALLOC, NULL);
    jvmpi_interface->DisableEvent(JVMPI_EVENT_CLASS_LOAD,NULL);
    int status=0;
    void sig_handler_pause(int sig){
         if(status == 0){
              start();
              status = 1;
         else if(status == 1){
              pause();
              status = 0;
    //Test.java
    public class Test {
    public static void main(String[] args) {
         try {
                        int i = 0;
    while(true)
                             Thread.sleep(1000);
                        System.out.println(i++);
              catch (Exception e) {
                        e.printStackTrace();
    Here're some notes:
    1)If I didn't call
    jvmpi_interface->EnableEvent(JVMPI_EVENT_OBJECT_ALLOC, NULL);
    in "start()" function, the java program Test ran properly after I sent signal to the process by using kill command in an command line;
    or
    2) If I delete "Thread.sleep(1000)" in Test.java, then whether I call
    jvmpi_interface->EnableEvent(JVMPI_EVENT_OBJECT_ALLOC, NULL);
    in "start()" or not, the Test program ran properly after I sent signal to the process.
    It seems to be a thread dead lock, but I'm not sure. Can any body help?Thanks very much.

    I should strongly recommend moving from JVMPI to JVM TI if you can. The reason is that JVMPI has been deprecated since 5.0 and can not be used with Java SE 6 and newer.
    Anyway, the issue you have may be due to the signal you are using. I'm not sure which operating system this is but on Linux the USR2 signal is used for the suspend/resume implementation. Have you looked at the Troubleshooting Guide or the Signal Chaining page for details on how signals are used and how to chain handlers? Another idea is to remove the signal handling code implementation and to use the data dump event. This is supported by both JVMPI and JVM TI so that you get an event (via the QUIT signal).

  • CE 7.2 Java server not running

    Hi,
    We have installed CE 7.2 on a 32 bit Windows XP SP2 machine with 4GB of ram.
    According to the 7.2 download page this more than meets the 3GB recommended amount of ram but the server is still not running.
    The log for server0 is as follows:
    F  ********************************************************************************
    I  [Thr 3792] MtxInit: 10002 0 2
    I  [Thr 3792] MPI: dynamic quotas disabled.
    I  [Thr 3792] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    I  [Thr 3792] *** ERROR => [MapOsShm] Can't find free space for Shared Memory (Size=84239 KB)
                   [shmnt0.c     2249]
    I  [Thr 3792] *** ERROR => [AttachOsShm] MapViewOfFile(Key=62,Handle=0x000005D0) failed with Err=0
                   [shmnt0.c     2249]
    I  [Thr 3792] *** ERROR => ShmCreate: Attach (62,86260736,2) failed [shmnt0.c     426]
    I  [Thr 3792] *** ERROR => ShmCreate( ATTACH 62, 86260728) failed 1 [mpixx.c      1064]
    I  [Thr 3792] *** ERROR => FcaInit: MpiInit failed (rc=MPI_ERROR: General error(1)) [fcaxxcomm.c  928]
    I  [Thr 3792] *** ERROR => JfcaInit(): Native FCA layer broken: 1 ***unknown error occurred*** [sfxxjfca.c   5264]
    F  [Thr 3792] *** ERROR => SfCSapVm::initJniClasses: com.sap.bc.proj.jstartup.fca.FCAProperties::mInit() failed (rc = 1) [sfxxjvm.hpp  362]
    F  [Thr 3792] *** ERROR => SfEInternalError: JNI <b>class</b> init failed  [sfxxjvm.hpp  373]
    F  [Thr 3792] *** ERROR => Operation failed: SfEInternalError: JNI <b>class</b> init failed
    [sfxxmain.cpp 1171]

    F  ********************************************************************************
    F  *** ERROR =>
    F  ***
    F  *** Please see section 'Java VM shared library issues'
    F  *** in SAP Note 1316652 <b>for</b> additional information and trouble shooting advice.
    F  ********************************************************************************

    F  [Thr 3792] *** LOG => exiting (exitcode -21001, retcode 2).
    I have looked at the suggested SAP note 1316652 and couldn't find any relevant fixes.
    Any help would be appreciated.
    Thanks,
    Will

    Hi,
    Java version ?
    Configured Virtual Memory ?
    The Supported Operating system to run NW CE is 64 Bit OS. The installation of SAP NW CE is only supported on 64-bit platforms.
    For supported operating system and database releases, see its corresponding[ Product Availability Matrix for NW CE 7.2|http://service.sap.com/~form/handler?_EVENT=DISP_NEW&_APP=00200682500000001303&00200682500000002804=01200615320900001418]. SAP JVM 5.1 is recommended to use with SAP CE 7.2 on Windows Platform.
    You will face memory address space related issue in 32 bit Windows OS with more than 2 GB of physical memory. You can avoid this problem by switching to 64bit OS Platform.
    Please refer [SAP Note 129813 - Windows: Problems due to address space fragmentation|https://service.sap.com/sap/support/notes/129813] to get more information.
    In that SAP Note 129813, one alternative is mentioned to deal with this address related issue by activating 3GB feature in your existing Windows OS. Please refer Microsoft KB article [283037 |http://support.microsoft.com/kb/283037]and KB [268363|http://support.microsoft.com/kb/268363/*] for the same. You will have to edit your boot.ini file to append /PAE switch.
    Regards,
    Bhavik G. Shroff

  • Java is not active in the application server

    Hi Experts
    We recently installed CRM 5.0.  Everything seems to have installed without any issues. 
    However, we are having a few issues the Java Virtual Machine (VMC). 
    When trying to access the VMC through ABAP side of CRM (SM53), it gives and error message that "Java is not active in the application server". 
    Eventhough everything seems to have been installed.
    Any ideas on how to activate java. 
    Any help would be really appreciated.
    Thanks
    Imran Khan

    Hi Daniele:
    There are indeed only 3 parameter additions
    vmcj/enable = on
    vmcj/option/ps = 512M
    vmcj/option/maxJavaHeap = 200M
    The 4th one is just explanation for calculating sizes.
    My VMC is active with only the above three settings.
    Also make sure that the SP level for both the JAVA components and ABAP components is the same.  i.e. they are both running on the latest version.  The latest update was released in Late April.
    If the SPs are from differnt releases, the VMC will not work.
    Also, go into the server and have a look at the parameter file to make sure that settings are actually there. i have found out that settings  in RZ10 and the real parameter settings can be different.  Just make sure that the settings you want the system to take are indeed in the real parameter file.
    I am not sure what else you can do...but rest assured that the thing works with the above mentioned settings.
    Imran

  • Two java.exe processes running in the Task Manager in Windows XP

    I tried to find the best possible place to post this and after spending about 20 minutes searching for an appropriate forum starting from java.com I ended up here. So forgive me if the is a wrong place and if there?s a more appropriate place for my question, please provide a pointer to it.
    I don't know much about java and what it does but as the title says when I open the Task manager there are two java.exe processes running at the same time with about 20 000 k each.
    One of the processes is coming from:
    C:\Program Files\Alias\Maya6.5\docs\jre\bin\java.exe
    and the other from:
    C:\Program Files\Alias\Maya7.0\docs\jre\bin\java.exe
    in addition to that a jusched.exe process is also running coming from
    C:\Program Files\Java\jre1.5.0_10\bin\jusched.exe
    I rarely open the Maya 6.5 and 7 documentations but the two java.exe process are running all the time and I would like to stop them running when I don?t need them but I don?t know how.
    I can't end these processes from the Task Manager; they reappear immediately after I end them.
    Any help with this is greatly appreciated.
    Thank you

    Try to see:
    http://forums.cgsociety.org/showthread.php?t=294973
    Bye,
    leo

  • How to prevent the program not to skip the process when exception is genera

    Hi, friends.
    How to prevent the program not to skip the process when exception is generated?
    For example, I am doing a process for 100 records. If the 15th record causes a Java Exception, I want to be able to skip it and continue processing the remaining 85 records.
    How it is possible with Java Exception handling? Any sample code?
    Thanks,
    Jaykishan

    [http://java.sun.com/docs/books/tutorial/essential/exceptions/]
    while (there are more lines) {
      try {
        process the next line
      catch (...) {
        log the error
    }[http://java.sun.com/docs/books/tutorial/essential/exceptions/]
    You'll want to be careful about which exceptions you catch though. For instance, if there's an unchecked exception, like NullPointerException, it's a sign of a bug in your code. Continuing to process as if that bug weren't there is often a worse approach than just failing. In this particular case, however, as long as you log the exception and then followup by fixing the bug that caused it, it may be acceptable to continue trying to process the rest of the file, even if some lines bring out a bug in your code.

  • When i using firefox its hangups lot of time and theres no other program was running at the time only i am open 4 tab the sites gmail yahoomail facebook twitter

    When i use the firefox 12.02 beta version its hangs lot of time and theres no program was running at the time only i am open 4 tab the sites gmail yahoomail facebook twitter why i am using HP 512 MB ram and 40 gb hard disk and intel pentium 4 cpu 3.20GHZ this 11 stable firefox also hanging pls help i am a firefox lover i am using firefox for 4 years
    please answer the solution :(
    [http://farm8.staticflickr.com/7074/7108695957_a7cd035fd3_b.jpg hangup the tap]
    [http://farm8.staticflickr.com/7125/6962618028_b32ecdc8c0_b.jpg Not respond]
    [http://farm8.staticflickr.com/7055/7108688293_4916dbe0e6_b.jpg Remember password box not hide ]
    [http://farm8.staticflickr.com/7110/7108684531_b394182705_b.jpg hangups on browsing with G+ page]

    I should have explained further. The game opens in a new window over to the upper left of my screen, leaving the original page underneath. I tried minimizing it so that I could get to my toolbar and did the View > Zoom > Reset. This has no effect. The lower portion of the game is still not showing. Using other browsers the window or frame of the game is much larger, therefore everything shows.

  • The Oracle BI server is not running. The repositiry had to be closed

    Hi guys,
    I have a OBI Standard Edition 10.1.3.4.1.
    I have modify the rpd and if I try to "Check In Changes", the error appears: "The Oracle BI server is not running. The repositiry had to be closed".
    In the nQServer.log this error appears:
    [nQSError: 12002] Socket communication error at call=recv: (Number=10055) An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.
    Why?
    The problem persist if I restart the services.
    The problem only occurs if I make a change in the Business Model Layer. The changes in the Physical Layer do not generate errors.
    Thank you,
    Sara

    Hi Sara,
    Can you please let us know, if there are any other messages in the NQServer.out.log ? I just googled around with this code to hit at the following link : http://www.bookmark-master.com/socket-error-10055.html
    Socket error (#10055): No buffer space available.
    Analyse & Solutions:
    An operation on a socket or pipe was not performed because the system lacked sufficient buffer space or because a queue was full. This error indicates a shortage of resources on your system. It can occur if you're trying to run too many applications (of any kind) simultaneously on your machine. If this tends to occur after running certain applications for a while, it might be a symptom of an application that doesn't return system resources (like memory) properly. It may also indicate you are not closing the applications properly. If it persists, exit Windows or reboot your machine to remedy the problem.
    From the above information, I understand that this is a system resource issue. Can you please recheck if your system has got enough resources?
    Hope this helps.
    Thank you,
    Dhar

Maybe you are looking for

  • ARD 3.3.2 problem with connecting to 10.5.8 server

    Hi, I am running ARD (3.3.2) on 10.6.2 client trying to Control a 10.5.8 Mac OS X Server system. The All Computers pane Name column shows the SACSI Server-Home, Current Status is Idle, Current Application is Finder, Current User is Server Admin 1, IP

  • Using xmltype in JDeveloper 10.1.3.3

    Hi ! I have a table that has one of the columns defined as xmltype datatype. I am trying to use ADF to create a simple form that the end users can use to view/edit this xml data. I get some garbage data like this ... in this field when displayed ...

  • HTTP 400 Bad Request when accessing Oracle XE/Apex from the Internet

    I have Oracle Express Edition upgraded to Apex 3.2. I can access everything (SQL prompt, Apex HTTP) from my local machine. I have configured the server for remote access on a non-default (not 8080) port. I have executed: exec dbms_xdb.setListenerLoca

  • Import Data from Office Control (Web Dynpro for ABAP) into SAP-Table

    Hello, I have a question concerning the Office Control UI-Eelement in Web Dynpro for ABAP: How can I import spreadsheet data from the Office Control in a SAP-table? I have an Excel-sheet (without any data) which is shown initially in the Office Contr

  • Problem in fetching the latest updated record.

    Hello , I have  a program in which i am creating a BDC session and submit the same in program rsbdcsub, now the problem is that i need to capture the Field Qstate from the table APQI, its not updated instantaneously, so i am not able to get the lates