Socket operation on nonsocket: recv failed

I get this Exception when operating with Socket : Socket operation on nonsocket: recv failed
What does this exception mean?

Looking on google,
http://www.google.co.uk/search?num=20&hl=en&c2coff=1&q=+Socket+operation+on+nonsocket%3A+recv+failed+&btnG=Search&meta=
this appears to be a windows error
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock/winsock/windows_sockets_error_codes_2.asp

Similar Messages

  • Socket operation on nonsocket

    Hi,
    I have an SMSModule that:
    * connects to an SMS center via a socket.
    * sends an SMS.
    * disconnects
    * if SMS send fails then sms is put in queue and we do the whole thing
    again.
    This worked fine when I only did one sms. But when I put them in a queue
    I got this problem.
    Any hints or ideas?
    //Mikael
    Trace
    Sending sms to queue
    now waiting...
    Queue is not empty sending.....
    class com.lightlabs.teaching.help.lab3.SMSModule:send()
    class com.lightlabs.teaching.help.lab3.SMSModule:connect()
    class com.lightlabs.teaching.help.lab3.MSIPProtocolHandler:connect()
    MSIPIncomingHandlerThread starting...
    GOT: !LogonConf:
    mSIP Kommando var: !LogonConf
    CoolFlix log: MSIPProtocolHandler;setLoggedin(true)
    Is the module connected? :true
    CoolFlix log: MSIPProtocolHandler;sendSMS
    CoolFlix log: Waiting for response from SMSC
    MSIPIncomingHandlerThread starting...
    GOT: SubmitConf:MsgReference=9,At=1058494566369,
    mSIP Kommando var: SubmitConf
    CoolFlix log: MSIPProtocolHandler:setMessageSent()
    GOT:
    StatusInd:MsgReference=9,Sequence=11,At=1058494567359,Originator=0046702673044,Status=buffered,Reason=0,Time=1058494567,
    mSIP Kommando var: StatusInd
    CoolFlix log: MSIPProtocolHandler:getMessageSent()
    CoolFlix log: Message has been sent
    CoolFlix log: MSIPProtocolHandler:setMessageSent()
    class com.lightlabs.teaching.help.lab3.SMSModule:disconnect()
    class com.lightlabs.teaching.help.lab3.MSIPProtocolHandlerdisconnect()
    GOT:
    StatusInd:MsgReference=9,Sequence=12,At=1058494576359,Originator=0046702673044,Status=delivered,Reason=0,Time=1058494576,
    mSIP Kommando var: StatusInd
    GOT: !LogoffConf:
    mSIP Kommando var: !LogoffConf
    CoolFlix log: MSIPProtocolHandler;setLoggedin(false)
    We got LogOffConf
    Waiting ......for thread to die
    java.net.SocketException: Socket operation on nonsocket: JVM_recv in
    socket input stream read
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:116)
    at
    sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:405)
    at
    sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:445)
    at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:179)
    at java.io.InputStreamReader.read(InputStreamReader.java:167)
    at java.io.BufferedReaMSIPIncomingHandlerThread dying...
    der.fill(BufferedReader.java:136)
    at java.io.BufferedReader.readLine(BufferedReader.java:299)
    at java.io.BufferedReader.readLine(BufferedReader.java:362)
    at
    com.lightlabs.teaching.help.lab3.MSIPIncomingHandlerThread.run(MSIPIncomingHandlerThread.java:31)
    java.net.SocketException: Socket operation on nonsocket: JVM_recv in
    socket input stream read
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:116)
    at
    sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:405)
    at
    sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:445)
    at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:179)
    at java.io.InputStreamReader.read(InputStreamReader.java:167)
    at java.io.BufferedReader.fill(BufferedReader.java:136)
    at java.io.BufferedReader.readLine(BufferedReader.java:299)
    at java.io.BufferedReader.readLine(BufferedReader.java:362)
    at
    com.lightlabs.teaching.help.lab3.MSIPIncomingHandlerThread.run(MSIPIncomingHandlerThreaMSIPIncomingHandlerThread
    dying...
    d.java:31)
    Queue is not empty sending.....

    Hi,
    I just provided the output trace. I have a zip file with the code I am using and it is a bit to much to copy and paste. I am willing to send you the code in a zip if you would like to look at it.
    Basically in my SMSModule I start a thread that that checks if a queue has an sms. If It has an sms then we do send().
    Send () --> connect(), sendSMS(),disconnect()
    For some reason the is a problem when we disconnect.
    Any ideas?
    //Mikael
    SMSModule.java
    public class SMSModule extends Thread{
    public static final int MSIP_PROTOCOL=1;
    public static final int SMPP_PROTOCOL=2;
    private static SMSModule instance;
    //Properties
    private String protocol = null;
    private String host = null;
    private int port = 0;
    private String userid = null;
    private String passwd = null;
    //SMS
    private Sms smsCurrent = null;
    private Sms smsOldest = null;
    private Sms smsFailed = null;
    private QueueHandler qh;
    private int protocolType;
    private SMSProtocolHandler myProtocolHandler;
    private SMSModule(){
    //Create a queue
    qh = new QueueHandler();
    public static SMSModule getInstance(){
    if(instance == null){
    instance = new SMSModule();
    return instance;
    public void run (){
    while(true){
    //Check queue
    if(!qh.empty()){
    send();
    public void setProtocol(int protocolType){
    this.protocolType=protocolType;
    public void connect(String ip,
    int port,
    String username,
    String password)
    throws Exception{
    if(myProtocolHandler!=null)
    throw new Exception("SMS Module already connected!");
    switch(protocolType){
    case MSIP_PROTOCOL:
    myProtocolHandler=new MSIPProtocolHandler();
    break;
    // case SMPP_PROTOCOL:
    // myProtocolHandler=new SMPPProtocolHandler();
    // break;
    default:
    throw new Exception("Protocoltype "+protocolType+" unknown or not set.");
    myProtocolHandler.connect(ip,port,username,password);
    public void disconnect() throws Exception{
    if(myProtocolHandler==null)
    throw new Exception("SMS Module not connected!");
    myProtocolHandler.disconnect();
    public boolean isLoggedIn(){
    if(myProtocolHandler==null)
    return false;
    return myProtocolHandler.isLoggedIn();
    public void sendSMS(){
    if(isLoggedIn()){
    //We have connection to SMSC
    //Get sms from queue
    smsCurrent =(Sms)qh.get();
    //Get originator, body and destination
    String from = smsCurrent.getOriginator();
    String message = smsCurrent.getBody();
    String to = smsCurrent.getDestination();
    //send SMS
    myProtocolHandler.sendSMS(from, message,to);
    debug("Waiting for response from SMSC");
    try{
    Thread.sleep(5000);
    }catch(Exception e){}
    if(myProtocolHandler.getMessageSent()){
    debug("Message has been sent");
    myProtocolHandler.setMessageSent(false);
    }else{
    debug("Message not successfully sent");
    //Put message back in queue
    qh.add(smsCurrent);
    }else{
    System.err.println("There is no connection");
    public void setHost(String host){
    this.host = host;
    public void setPort(int port){
    this.port = port;
    public void setUserid(String userid){
    this.userid = userid;
    public void setPasswd(String passwd){
    this.passwd = passwd;
    private void send(){
    try {
    connect(host,port,userid,passwd);
    try{
    Thread.sleep(5000);
    }catch(Exception e){}
    sendSMS();
    try{
    Thread.sleep(5000);
    }catch(Exception e){}
    disconnect();
    }catch (Exception e){
    e.printStackTrace();
    /* Debug support */
    private static boolean debugOn = true;
    private static void debug(String msg){
    if(debugOn)
    System.out.println("\nCoolFlix log: "+msg+"\n");
    public class MSIPProtocolHandler implements SMSProtocolHandler{
    private MSIPHelper myHelper;
    private Socket connection;
    private BufferedReader in = null;
    private PrintWriter out = null;
    private boolean hasLoggedIn=false;
    private boolean messageSent=false;
    private MSIPIncomingHandlerThread myIncomingHandlerThread;
    public MSIPProtocolHandler(){
    myHelper=new MSIPHelper();
    * F���rs���ker koppla upp sig mot en SMS-server.
    * @param ip address till SMS-servern
    * @param port port p��� SMS-servern
    * @param username anv���ndarnamn f���r inloggning
    * @param password l���senord f���r inloggning
    public synchronized void connect( String ip,
    int port,
    String username,
    String password){
    System.out.println("MSIPProtocolHandler;connect");
    if(connection!=null){
    try{connection.close();}catch(Exception e){
    System.out.println("MSIPProtocolHandler;connect;closing old connection:"+e.toString());}
    try{
    connection=new Socket(ip,port);
    in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    out = new PrintWriter(connection.getOutputStream(), true);
    if(myIncomingHandlerThread!=null&&myIncomingHandlerThread.isAlive())
    myIncomingHandlerThread.destroy();
    myIncomingHandlerThread=new MSIPIncomingHandlerThread(in,this);
    myIncomingHandlerThread.start();
    String logonMessage=myHelper.createLogonRequest(username,password);
    out.println(logonMessage);
    }catch(Exception e){
    e.printStackTrace();
    try{connection.close();
    in.close();
    out.close();
    }catch(Exception f){}
    connection=null;
    in=null;
    out=null;
    * F���rs���ker st���nga ner uppkopplingen mot SMS-servern om den ���r uppkopplad.
    public synchronized void disconnect(){
    System.out.println("MSIPProtocolHandler;disconnect");
    try{
    if(connection!=null){
    //skicka en LogoffReq innan vi st���nger ner (egentligen ska man
    //inte st���nga socketen innan man f���tt en LogoffConf, men...
    out.println(myHelper.createLogoffRequest());
    try{Thread.sleep(2000);}catch(Exception e){}
    connection.close();
    in.close();
    out.close();
    myIncomingHandlerThread.destroy();
    }catch(Exception e){
    e.printStackTrace();
    connection=null;
    in=null;
    out=null;
    * Skickar en SMS-PDU till SMS-servern.
    * @param originator avs���ndare eller 'header'
    * @param body SMS-texten
    * @param destination slut-telefonnummer
    * @return boolean 'true' om det kunde skickas.
    public boolean sendSMS(String originator, String body, String destination){
    /* H���r f���r man skriva hantering f���r att skapa en SubmitReq-PDU med
    r���tt parametrar och skicka den till SMS-servern*/
    debug("MSIPProtocolHandler;sendSMS");
    if(connection !=null){
    try {
    //Create buffers for in-& out-streams.
    in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    out = new PrintWriter(connection.getOutputStream(), true);
    //Start listener for incoming messages
    if(myIncomingHandlerThread!=null&&myIncomingHandlerThread.isAlive()){
    myIncomingHandlerThread.destroy();
    myIncomingHandlerThread=new MSIPIncomingHandlerThread(in,this);
    myIncomingHandlerThread.start();
    //Create String to send on out stream
    String sendMessage=myHelper.createSubmitRequest(body, destination);
    out.println(sendMessage);
    }catch (Exception e){
    System.err.println("Exception caught :"+e.getMessage());
    e.printStackTrace();
    return false;
    return true;
    }else{
    //No connection
    return false;
    public void setMessageSent(boolean status){
    debug("MSIPProtocolHandler:setMessageSent()");
    messageSent=status;
    public boolean getMessageSent(){
    debug("MSIPProtocolHandler:getMessageSent()");
    return messageSent;
    public boolean isLoggedIn(){
    return this.hasLoggedIn;
    public void setLoggedIn(boolean login){
    debug("MSIPProtocolHandler;setLoggedin("+login+")");
    this.hasLoggedIn=login;
    /* Debug support */
    private static boolean debugOn = true;
    private static void debug(String msg){
    if(debugOn)
    System.out.println("\nCoolFlix log: "+msg+"\n");
    public class MSIPIncomingHandlerThread extends Thread{
    private Socket mySocket;
    private BufferedReader myReader;
    private boolean destroyed=false;
    private MSIPHelper myHelper;
    MSIPProtocolHandler myHandler;
    public MSIPIncomingHandlerThread(BufferedReader myReader,
    MSIPProtocolHandler myHandler){
    this.myReader=myReader;
    this.myHandler=myHandler;
    myHelper=new MSIPHelper();
    public void destroy(){
    destroyed=true;
    public void run(){
    System.out.println("MSIPIncomingHandlerThread starting...");
    String temp;
    while(!destroyed){
    try{
    while((temp=myReader.readLine())!=null&&temp.length()>0){
    System.out.println("GOT: "+temp);
    myHelper.decodeMessage(temp);
    if(myHelper.getMessageType().equals(MSIPHelper.LOGON_CONFIRMED))
    myHandler.setLoggedIn(true);
    else if(myHelper.getMessageType().equals(MSIPHelper.LOGON_REJECTED))
    myHandler.setLoggedIn(false);
    else if(myHelper.getMessageType().equals(MSIPHelper.LOGOFF_CONFIRMED))
    myHandler.setLoggedIn(false);
    else if(myHelper.getMessageType().equals(MSIPHelper.SUBMIT_CONFIRMED))
    myHandler.setMessageSent(true);
    else if (myHelper.getMessageType().equals(MSIPHelper.SUBMIT_REJECTED))
    myHandler.setMessageSent(false);
    }catch(Exception e){
    e.printStackTrace();
    System.out.println("MSIPIncomingHandlerThread dying...");
    **********************************************************************

  • I fail to start the sap server with error:Operating system call recv failed

    I fail to start the sap server in SAP R3 Management Console and the message in the syslog was :
    R/3 Basis System: Operating system call           recv failed (error no. 10053)
    Is there any one could tell me how to resolve the problem or give me some advice?I will appreciate him/her very much.Thank you.

    trc file: "dev_disp", trc level: 1, release: "620"
    Sun May 07 13:14:30 2000
    kernel runs with dp version 3(ext=1) (@(#) DPLIB-INT-VERSION-3)
    length of sys_adm_ext is 304 bytes
    systemid   560 (PC with Windows NT)
    relno      6200
    patchlevel 0
    patchno    674
    intno      20020600
    pid        3628
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3628) [dpxxdisp.c   978]
         shared lib "dw_xml.dll" version 674 successfully loaded
         shared lib "dw_xtc.dll" version 674 successfully loaded
         shared lib "dw_stl.dll" version 674 successfully loaded
    Sun May 07 13:14:32 2000
    WARNING => DpNetCheck: NiAddrToHostCanon() took 2 seconds
    Sun May 07 13:14:37 2000
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 2 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  3212]
    MtxInit: -2 0 0
    DpShMCreate: sizeof(wp_adm)          12784     (752)
    DpShMCreate: sizeof(tm_adm)          1690816     (8412)
    DpShMCreate: sizeof(wp_ca_adm)     18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpShMCreate: sizeof(comm_adm)     192000     (384)
    DpShMCreate: sizeof(wall_adm)     (22440/34344/56/100)
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 001E0040, size: 1977824)
    DpShMCreate: allocated sys_adm at 001E0040
    DpShMCreate: allocated wp_adm at 001E0560
    DpShMCreate: allocated tm_adm_list at 001E3750
    DpShMCreate: allocated tm_adm at 001E3778
    DpShMCreate: allocated wp_ca_adm at 00380438
    DpShMCreate: allocated appc_ca_adm at 00384A88
    DpShMCreate: allocated comm_adm_list at 003861F8
    DpShMCreate: allocated comm_adm at 00386210
    DpShMCreate: allocated ca_info at 003B5010
    DpShMCreate: allocated wall_adm at 003B5018
    MBUF state OFF
    Sun May 07 13:14:38 2000
    EmInit: MmSetImplementation( 2 ).
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation std
    <EsNT> Memory Reset enabled as NT default
    <EsNT> EsIUnamFileMapInit: Initialize the memory 2458 MB
    <ES> 2457 blocks reserved for free list.
    ES initialized.
    ***LOG Q0K=> DpMsAttach, mscon ( db01) [dpxxdisp.c   9115]
    CCMS: Initalizing shared memory of size 20000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 6200, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   941]
    DpMsgAdmin: Set patchno for this platform to 674
    Release check o.K.
    Sun May 07 13:15:18 2000
    ERROR => W2 (pid 4776) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W2
    Sun May 07 13:15:38 2000
    ERROR => W5 (pid 4548) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W5
    ERROR => W8 (pid 4592) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W8
    ERROR => W9 (pid 4584) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W9
    ERROR => W12 (pid 4676) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W12
    ERROR => W13 (pid 4272) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W13
    my types changed after wp death/restart 0xbf --> 0xb7
    Sun May 07 13:15:58 2000
    ERROR => W4 (pid 4888) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W4
    ERROR => W6 (pid 4788) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W6
    ERROR => W15 (pid 4596) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W15
    Sun May 07 13:16:18 2000
    ERROR => W1 (pid 4892) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W1
    ERROR => W3 (pid 4904) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W3
    ERROR => W7 (pid 4000) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W7
    ERROR => W10 (pid 4864) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W10
    my types changed after wp death/restart 0xb7 --> 0xb5
    Sun May 07 13:16:38 2000
    ERROR => W0 (pid 4900) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W0
    ERROR => W11 (pid 4500) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W11
    ERROR => W14 (pid 4636) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W14
    ERROR => W16 (pid 3532) died [dpxxdisp.c   11523]
    force unlock of wp_adm mutex W16
    my types changed after wp death/restart 0xb5 --> 0x80
    DP_FATAL_ERROR => DpEnvCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    DpModState: change server state from STARTING to SHUTDOWN
    Sun May 07 13:16:42 2000
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   9341]
    MBUF state OFF
    MBUF component DOWN
    ***LOG Q05=> DpHalt, DPStop ( 3628) [dpxxdisp.c   7883]

  • SocketExceptopn: Socket Operation on nonsocket: JVM_Bind - what ?

    Hi,
    I'm a new Java-application developer. I'm stadying Java at university in Kassel (germany) an now in university holiday I wnat to development a little messanging tool. So I have tried some basic technics.... but the simplesed things won't work!
    I've wrote this code:
    import java.net.*;
    import java.io.*;
    class MulClient
    public static void main( String args[] ) throws IOException
    Socket server = new Socket("localhost", 450 );
    But if I complie the code an run it....the JVM throws an Exception:
    Exception in thread "main" java.net.SocketException: Socket operation on nonsocket: JVM_Bind
    at java.net.PlainSocketImpl.socketBind(Native Method)
    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
    at java.net.Socket.bind(Socket.java:553)
    at java.net.Socket.<init>(Socket.java:363)
    at java.net.Socket.<init>(Socket.java:178)
    at MulClient.main(MulClient.java:8)
    I'm using windows xp Sp1 an a firewall (kerio personal firewall), ie 6 sp1....I'm behind a router but protocolls such as TCP/ip are installed..of course....
    Excause me bad english.....
    Thanks!
    Faithfully MrSandman

    Hi,
    1) You haven't created a ServerSocket so nothing's
    listening on that port. I doubt this is it, as it
    would probabl time out.If I start the server class-file (changed port 1044):
    import java.net.*;
    import java.io.*;
    public class MulServer
      public static void main( String args[] ) throws IOException
        ServerSocket server = new ServerSocket( 1044 );
         while ( true )
          Socket client = server.accept();
          InputStream  in  = client.getInputStream();
          OutputStream out = client.getOutputStream();
          int start = in.read();
          int end = in.read();
          int result = start * end;
          out.write( result );
          client.close();
    }the same exception appears. So there can't be a server listining on that port. But why doesn't this work?
    on MS developers page the exception or winsocket error is explained:
    "An operation was attempted on something that is not a socket. Either the socket handle parameter did not reference a valid socket, or for select, a member of an fd_set was not valid."
    But I don't understand; what does this mean?
    2) There is a server/listener type dealy bound to
    that port, but it's a FIFO or named pipe or
    something, rather than a Socket.What? do you think there is another application running on that port. There isn't anyone.
    I can't believe. I've tried another network-sample file taken from an internet tutorial...(I thought...this should work...) but the same exception....
    Any ideas? Please help!
    Thanks MrSandman

  • System log shows operating system call recv failed(error no.73)

    hi all,
      here i have some doubt in system log please clarify me,
    here in my (sm21)system log files i find more no  of logs for dispatcher and it indicates operating system call recv failed(error no.73)
    system log  Short Text shows:
    Operating system call &5&5&4 failed (error no. &>E5)
    The specified operating system call was returned with an error.
    For communication calls (receive, send, etc) often the cause of errors are network problems.
    It could also be a configuration problem at operating system level. (file cannot be opened, no space in the file system etc.).
    what is means

    Hello,
    Yes, you are right, these kind of problems (OS Error 73) are usually caused by network issues. Error 73 means 'connection reset by peer'. In most cases, this is because the connection was interupted by the communication partner or an active network component between.
    I provide you some recommendations:
    - Check your Network environment. You can use NIPING tool to diagnose it (note 500235), check your MTU stability.
    - Check note 27320 - keep alive and gui_auto_logout profile param
    - Also you can implement note 1002075 for a possible solution
    I hope this helps you.
    Regards,
    Blanca

  • Error in BW ( Operating system call SiPeekPendConn failed )

    Hi All,
    This is Ganesh, new to SAP BASIS. We are facing some errors in BW, where users cannot able to run BW reports from yesterday.
    Please find below system log details:
    Operating system call recv failed (error no. 10054)
    NiConnect Unsuccessful, Return Code: -0010
    > Host: 156.5.30.34
    > Service: sapgw00
    Please help me out by providing the solution and the cause for above system log.
    Waiting for your reply.
    Best Regards,
    Ganesh

    Hi,
    check this,
    http://sap.ittoolbox.com/groups/technical-functional/sap-bw/sap-r3-to-bw-521356#M521423
    Also try to search with the error ur getting in Google or for Notes in SMP.
    Regards,
    Ravi

  • Getpeername: Socket operation on non-socket

    when i am starting the in.ftpd service. i am getting the below error
    in.ftpd&#91;5418&#93;: &#91;ID 572618 daemon.error&#93; getpeername: Socket operation on non-socket.
    Thanks in advance.

    I had the same problem with VMware.  I also tried to connect with the VMware  remote console, but got a similar error.  In both cases it seems that it can not connect to the server for some very strange reasons.
    I gave it another try with VMware player.  The latest available version 3.1.0 and the previous version 3.0.1.  Both versions did not start.  The version 3.1.0 did not install a init script and 3.0.1 failed to start.  In the end I gave up searching for errors.
    Now I'm using VirtualBox and I am quite impressed of it's speed and stability.  As long as you need a desktop virtualisation virtualbox will be probably all you need.  I found it easier than vmware server.  Sadly I was unable to try vmware player.  So I can not compare the speed, but it is definetly faster than vmware servers remote console.  But on the other hand the remote console of vmware server was developed for other purposes.  It's not intended to be used as a desktop solution like vmware player.
    If you need a full vmware server replacement then maybe xen would be a good try.  Did not use it though, yet.

  • The share operation "master file" has failed. the operation could not be completed because an error occurred creating Frame 93164 (error-1). how can i find the frame?

    The share operation "master file" has failed. the operation could not be completed because an error occurred creating Frame 93164 (error-1). how can i find the frame?

    https://discussions.apple.com/thread/6219522

  • Please help i can't share my project I did try in all of them and it doesnt work it apears like that........ The share operation Master File has failed The operation could not be completed because an error occurred when creating frame 608 (error -1). and

    I did try in all of them and it doesnt work it apears like that........
    The share operation Master File has failed
    The operation could not be completed because an error occurred when creating frame 608 (error -1).
    and i dont know what to do plese hlp me....
    Re: when i try to share my project to quicktime aroun 50% appears error -1 and i can't share it what to do please help 

    Double post…

  • Could not open error log file ''. Operating system error = 5(failed to retrieve text for this error. Reason: 15105).

    Hello
    When I try to start the SQl server service i get the following error:
    Event id 17058
    Could not open error log file ''. Operating system error = 5(failed to retrieve text for this error. Reason: 15105).
    As a test I have made sure the errorlog file ,and the entire drive it is, has everyone full control permissions, but to no avail. Does anyone have any ideas to resolve this issue?
    Thank you

    Hi,
    Try running:
    SELECT SERVERPROPERTY('ErrorLogFileName')
    Then verify that the account being used to run the SQL Server service account has access to the path output above.  If possible, you could try logging onto the server with the same account used to run SQL Server then navigate to the errorlog folder.
    Thanks,
    Andrew Bainbridge
    SQL Server DBA
    Please click "Propose As Answer" if a post solves your problem, or "Vote As Helpful" if a post has been useful to you

  • "Software caused connection abort: recv failed" from Applet in IE to JBoss

    Hi
    We have an application hosted as applets on our web-site, but offer the
    same application to customers as a "standalone" off-line version. This
    off-line version is the same code-base, deploy and HTML but run from the
    local file system (in the absence of a web-server).
    I have a J2EE Jasper Reporting framework running in JBoss. On the off-line
    product JBoss runs on the same machine.
    The on-line version works perfectly in both IE and FireFox.
    The off-line version works perfectly in FireFox, but alas, NOT in IE!
    First, here's some code:
    private JasperPrint generateReport() {
              Hashtable enva = new Hashtable();
              System.out.println("enva.put(\"java.naming.factory.initial\", \"org.jnp.interfaces.NamingContextFactory\");");
              enva.put("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
              System.out.println("enva.put(\"java.naming.factory.url.pkgs\", \"org.jboss.naming:org.jnp.interfaces\");");
              enva.put("java.naming.factory.url.pkgs", "org.jboss.naming:org.jnp.interfaces");
              int port = 1099;
              String host = "127.0.0.1";
              System.out.println("enva.put(\"java.naming.provider.url\", \"jnp:// " + host + ":" + port);
              enva.put("java.naming.provider.url", "jnp:// " + host + ":" + port);
              try {
                   System.out.println("Context ictx = new InitialContext(enva);");
                   Context ictx = new InitialContext(enva);
                   System.out.println("Object o = ictx.lookup(\"java:/SessionReport\");");
                   Object o = ictx.lookup("java:/SessionReport");
                   System.out.println("SessionReportControllerHome home = (SessionReportControllerHome) PortableRemoteObject.narrow(o, SessionReportControllerHome.class);");
                   SessionReportControllerHome home = (SessionReportControllerHome) PortableRemoteObject.narrow(o, SessionReportControllerHome.class);
                   System.out.println("SessionReportController remote = home.create();");
                   SessionReportController remote = home.create();
                   PSIberRDSParameterSEIFSAPensionProvidendFund rVO = new PSIberRDSParameterSEIFSAPensionProvidendFund();
                   //call the function on remote
                   try {
                        JasperPrint jasperPrint = new JasperPrint();
                        JasperVO jasperVO = remote.generateMyJasperReport(rVO);
                        jasperPrint = jasperVO.getJasperPrint();
                        return jasperPrint;
                   } catch (Exception re) {
                        System.err.println("remote exception is " + re.getMessage());
              } catch (Exception e) {
                   e.printStackTrace();
              return null;
         }This function returns a net.sf.jasperreports.engine.JasperPrint object wich I
    feed to the JasperViewer.
    Here's the output in my Java console:
    enva.put("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
    enva.put("java.naming.factory.url.pkgs", "org.jboss.naming:org.jnp.interfaces");
    enva.put("java.naming.provider.url", "jnp:// 127.0.0.1:1099
    Context ictx = new InitialContext(enva);
    Object o = ictx.lookup("java:/SessionReport");
    javax.naming.CommunicationException [Root exception is java.rmi.UnmarshalException: Error unmarshaling return header; nested exception is:
         java.net.SocketException: Software caused connection abort: recv failed]
         at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:707)
         at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:572)
         at javax.naming.InitialContext.lookup(Unknown Source)
         at psiber.v2.pp.psiberworks.server.MessageRouter_PAY.callSEIFSAPensionProvidentFundReport(MessageRouter_PAY.java:15159)
         at psiber.v2.pp.psiberworks.server.MessageRouter_PAY.getPayAppletDataImpl(MessageRouter_PAY.java:14895)
         at psiber.v2.pp.psiberworks.server.MessageRouter_PAY.getAppletDataImpl(MessageRouter_PAY.java:14228)
         at psiber.v2.pp.psiberworks.server.MessageRouter.getAppletData(MessageRouter.java:135)
         at psiber.v2.pp.psiberworks.server.RemoteSessionImpl.getAppletDataImpl(RemoteSessionImpl.java:734)
         at psiber.v2.pp.psiberworks.server.RemoteSessionImpl.access$0(RemoteSessionImpl.java:710)
         at psiber.v2.pp.psiberworks.server.RemoteSessionImpl$1.exec(RemoteSessionImpl.java:668)
         at psiber.v2.pp.psiberworks.server.SynchronizedAccessController.doExecuteQuery(SynchronizedAccessController.java:61)
         at psiber.v2.pp.psiberworks.server.SynchronizedAccessController.executeQuery(SynchronizedAccessController.java:137)
         at psiber.v2.pp.psiberworks.server.RemoteSessionImpl.getAppletData(RemoteSessionImpl.java:690)
         at psiber.v2.pp.psiberworks.client.RemoteSessionProxy.getAppletData(RemoteSessionProxy.java:109)
         at psiber.v2.pp.psiberworks.client.hr.psiberpay.PsiberPayReportWizardApplet.getAppletData(PsiberPayReportWizardApplet.java:7094)
         at psiber.v2.pp.psiberworks.client.hr.psiberpay.PsiberPayReportWizardApplet.callSEIFSAPensionProvidentFundReport(PsiberPayReportWizardApplet.java:14492)
         at psiber.v2.pp.psiberworks.client.hr.psiberpay.PsiberPayReportWizardApplet.processSelectedReport(PsiberPayReportWizardApplet.java:14091)
         at psiber.v2.pp.psiberworks.client.hr.psiberpay.PsiberPayReportWizardApplet.onNextButtonPressed(PsiberPayReportWizardApplet.java:13229)
         at psiber.v2.pp.psiberworks.client.hr.psiberpay.PsiberPayReportWizardApplet.actionPerformed(PsiberPayReportWizardApplet.java:361)
         at java.awt.Button.processActionEvent(Unknown Source)
         at java.awt.Button.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.rmi.UnmarshalException: Error unmarshaling return header; nested exception is:
         java.net.SocketException: Software caused connection abort: recv failed
         at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
         at sun.rmi.server.UnicastRef.invoke(Unknown Source)
         at org.jnp.server.NamingServer_Stub.lookup(Unknown Source)
         at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:610)
         ... 28 more
    Caused by: java.net.SocketException: Software caused connection abort: recv failed
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(Unknown Source)
         at java.io.BufferedInputStream.fill(Unknown Source)
         at java.io.BufferedInputStream.read(Unknown Source)
         at java.io.DataInputStream.readByte(Unknown Source)
         ... 32 more
    remote exception is null
    You'll see just as the InitialContext.lookup is executed a
    javax.naming.CommunicationException is thrown.
    I have re-tried changing hostnames, ip addresses etc.
    Port 1099 is allowed on Personal Firewall and I even diabled it to be sure.
    Like I said, it works fine in FireFox.
    I'm running Windows XP Version 5.1 (Build 2600.xpsp_sp2_gdr.050501-1519 : Service Pack 2)
    and IE Version 6.0.2900.2180.xpsp_sp2_gdr.050501-1519
    and SUN JAVA Version 1.4.2_06 (build 1.4.2_06-b03)
    I have tested this on 1.5.0 (build 15.0_02-b09) with the same result.
    Please help! F1! F1! F1!
    Thanks in advance :D

    Hello again
    I have discovered more info. I'm not realy enthusiastic about these latests
    findings and I realy hope someone can help me figure a work around.
    Intermittently I get this stack trace in the java console:
    enva.put("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
    enva.put("java.naming.factory.url.pkgs", "org.jboss.naming:org.jnp.interfaces");
    enva.put("java.naming.provider.url", "jnp://localhost:1099
    Context ictx = new InitialContext(enva);
    Object o = ictx.lookup("java:/SessionReport");
    javax.naming.CommunicationException [Root exception is java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.net.MalformedURLException: no protocol: Files/psiberworks/lib/pcl.jar]
         at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:707)
         at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:572)
         at javax.naming.InitialContext.lookup(Unknown Source)
         at psiber.v2.pp.psiberworks.server.MessageRouter_PAY.callSEIFSAPensionProvidentFundReport(MessageRouter_PAY.java:15160)
         at psiber.v2.pp.psiberworks.server.MessageRouter_PAY.getPayAppletDataImpl(MessageRouter_PAY.java:14895)
         at psiber.v2.pp.psiberworks.server.MessageRouter_PAY.getAppletDataImpl(MessageRouter_PAY.java:14228)
         at psiber.v2.pp.psiberworks.server.MessageRouter.getAppletData(MessageRouter.java:135)
         at psiber.v2.pp.psiberworks.server.RemoteSessionImpl.getAppletDataImpl(RemoteSessionImpl.java:734)
         at psiber.v2.pp.psiberworks.server.RemoteSessionImpl.access$0(RemoteSessionImpl.java:710)
         at psiber.v2.pp.psiberworks.server.RemoteSessionImpl$1.exec(RemoteSessionImpl.java:668)
         at psiber.v2.pp.psiberworks.server.SynchronizedAccessController.doExecuteQuery(SynchronizedAccessController.java:61)
         at psiber.v2.pp.psiberworks.server.SynchronizedAccessController.executeQuery(SynchronizedAccessController.java:137)
         at psiber.v2.pp.psiberworks.server.RemoteSessionImpl.getAppletData(RemoteSessionImpl.java:690)
         at psiber.v2.pp.psiberworks.client.RemoteSessionProxy.getAppletData(RemoteSessionProxy.java:109)
         at psiber.v2.pp.psiberworks.client.hr.psiberpay.PsiberPayReportWizardApplet.getAppletData(PsiberPayReportWizardApplet.java:7094)
         at psiber.v2.pp.psiberworks.client.hr.psiberpay.PsiberPayReportWizardApplet.callSEIFSAPensionProvidentFundReport(PsiberPayReportWizardApplet.java:14492)
         at psiber.v2.pp.psiberworks.client.hr.psiberpay.PsiberPayReportWizardApplet.processSelectedReport(PsiberPayReportWizardApplet.java:14091)
         at psiber.v2.pp.psiberworks.client.hr.psiberpay.PsiberPayReportWizardApplet.onNextButtonPressed(PsiberPayReportWizardApplet.java:13229)
         at psiber.v2.pp.psiberworks.client.hr.psiberpay.PsiberPayReportWizardApplet.actionPerformed(PsiberPayReportWizardApplet.java:361)
         at java.awt.Button.processActionEvent(Unknown Source)
         at java.awt.Button.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.net.MalformedURLException: no protocol: Files/psiberworks/lib/pcl.jar
         at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:292)
         at sun.rmi.transport.Transport$1.run(Transport.java:148)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
         at java.lang.Thread.run(Thread.java:534)
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknown Source)
         at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
         at sun.rmi.server.UnicastRef.invoke(Unknown Source)
         at org.jnp.server.NamingServer_Stub.lookup(Unknown Source)
         at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:610)
         ... 28 more
    Caused by: java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.net.MalformedURLException: no protocol: Files/psiberworks/lib/pcl.jar
         at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:249)
         at sun.rmi.transport.Transport$1.run(Transport.java:148)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: java.net.MalformedURLException: no protocol: Files/psiberworks/lib/pcl.jar
         at java.net.URL.<init>(URL.java:537)
         at java.net.URL.<init>(URL.java:434)
         at java.net.URL.<init>(URL.java:383)
         at sun.rmi.server.LoaderHandler.pathToURLs(LoaderHandler.java:747)
         at sun.rmi.server.LoaderHandler.loadClass(LoaderHandler.java:147)
         at java.rmi.server.RMIClassLoader$2.loadClass(RMIClassLoader.java:631)
         at org.jboss.system.JBossRMIClassLoader.loadClass(JBossRMIClassLoader.java:79)
         at java.rmi.server.RMIClassLoader.loadClass(RMIClassLoader.java:257)
         at sun.rmi.server.MarshalInputStream.resolveClass(MarshalInputStream.java:200)
         at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1513)
         at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1435)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1626)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
         at javax.naming.CompoundName.readObject(CompoundName.java:554)
         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 java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:838)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1746)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1646)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
         at sun.rmi.server.UnicastRef.unmarshalValue(UnicastRef.java:297)
         at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:246)
         ... 6 more
    remote exception is null
    So why would I get a java.net.MalformedURLException?!?! And why is the
    classloader having problems loading on of the referenced jars?!
    It's that space in "Program Files"......
    So I copied the folder to D:\Temp and.... volla!! the off-line deploy of the
    application now works fine in Internet Explorer. It's that space!
    So this is my theory, when the initialcontext.lookup is called the classnames specified are reflected, instanciated etc. So when the applet gets the
    document base from the browser IE gives it "C:\Program Files\" and not an
    encoded "file://C:\Program%20Files\" and the spaces causes the classloader
    (or something) to not parse the path correctly and causes a bad URL.
    If I type the encoded URL in IE's address bar it finds the HTML, displayes it and changes the address bar contents back to "C:\Program Files".
    FireFox doen't do this, and therefore works.
    Does anyone know if their is a patch for IE, or if there is another way to
    connect to JBoss?
    How frustrating!! IE Stuffs up the encoded URLS!!!

  • SXPG_COMMAND_EXECUTE - Recv failed:Connection reset by peer

    We are calling external commands in a batch job using the SAP supplied function module SXPG_COMMAND_EXECUTE.  However, if the external command takes longer than 2 minutes (120 seconds) to execute the call to the external command is terminated (from the SAP perspective) with the message Recv failed:Connection reset by peer.  The termination is precisely at 120 seconds.  The external command, however, continues to run as an u201Corphanu201D task and finishes normally.  However, due to the connection termination, SAP is no longer aware of it.
    Do you have any ideas where the termination is occurring and/or where the wait limit of 120 seconds is set?

    CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
        EXPORTING
          commandname                   = 'ZTEST_BATCH'
          additional_parameters         = param1
          operatingsystem               = castserveropsys
          targetsystem                  = target
          stdout                        = 'X'
          stderr                        = 'X'
          terminationwait               = 'X'
        IMPORTING
          status                        = funcstatus
        TABLES
          exec_protocol                 = iserveroutput[]
        EXCEPTIONS
          no_permission                 = 1
          command_not_found             = 2
          parameters_too_long           = 3
          security_risk                 = 4
          wrong_check_call_interface    = 5
          program_start_error           = 6
          program_termination_error     = 7
          x_error                       = 8
          parameter_expected            = 9
          too_many_parameters           = 10
          illegal_command               = 11
          wrong_asynchronous_parameters = 12
          cant_enq_tbtco_entry          = 13
          jobcount_generation_error     = 14
          OTHERS                        = 15.

  • The share operation Blu- ray has failed. quicktime Error: 0

    the share operation Blu- ray has failed. quicktime Error: 0 anyone any idea how i overcome this ?

    Are you working with native media? If you are, see if Final Cut will let you transcode a clip to Pro Res 422. Do an export test with that single clip. (Write the output to a disk image so you don't waste a disk.)
    Russ

  • Sun Messaging Queue (Sun MQ) Connectivity Error - recv failed

    Dear Readers
    I am using following code to connect to SUN MQ Server.
    I only have IP Address, Port number and username password of server. JMS Server has three brokers having their own ports.
    com.sun.messaging.ConnectionFactory myConnFactory = new com.sun.messaging.ConnectionFactory();
    myConnFactory.setProperty(com.sun.messaging.ConnectionConfiguration.imqBrokerHostName,"19.11.12.3");
    myConnFactory.setProperty(com.sun.messaging.ConnectionConfiguration.imqBrokerHostPort,"141");
    myConnFactory.setProperty(com.sun.messaging.ConnectionConfiguration.imqDefaultUsername,"ad1min");
    myConnFactory.setProperty(com.sun.messaging.ConnectionConfiguration.imqDefaultPassword,"ad1min");
    Connection myConn = myConnFactory.createConnection();
    but when i try to run this code the exception comes given below
    After then i just commented Hostname and Port section and added following to it:
    myConnFactory.setProperty(com.sun.messaging.ConnectionConfiguration.imqAddressList,  "mq://19.11.12.3:141");
    but i got same exception with slight difference:
    Exception:
    +15 Feb, 2013 12:32:08 PM com.sun.messaging.jmq.jmsclient.ExceptionHandler throwConnectionException+
    +Exception occurred : com.sun.messaging.jms.JMSException: [C4003]: Error occurred on connection creation [19.11.12.3:141]. - cause: java.net.SocketException: Software caused connection abort: recv failed+
    +WARNING: [C4003]: Error occurred on connection creation [19.11.12.3:141]. - cause: java.net.SocketException: Software caused connection abort: recv failed+
    +com.sun.messaging.jms.JMSException: [C4003]: Error occurred on connection creation [19.11.12.3:141]. - cause: java.net.SocketException: Software caused connection abort: recv failed+
    at com.sun.messaging.jmq.jmsclient.ExceptionHandler.throwConnectionException(ExceptionHandler.java:274)
    at com.sun.messaging.jmq.jmsclient.ExceptionHandler.handleConnectException(ExceptionHandler.java:220)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.readBrokerPorts(PortMapperClient.java:241)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.init(PortMapperClient.java:150)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.<init>(PortMapperClient.java:92)
    at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPConnectionHandler.<init>(TCPConnectionHandler.java:164)
    at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPStreamHandler.openConnection(TCPStreamHandler.java:135)
    at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnection(ConnectionInitiator.java:778)
    at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnectionNew(ConnectionInitiator.java:254)
    at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnection(ConnectionInitiator.java:208)
    at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnection(ConnectionInitiator.java:158)
    at com.sun.messaging.jmq.jmsclient.ProtocolHandler.init(ProtocolHandler.java:816)
    at com.sun.messaging.jmq.jmsclient.ProtocolHandler.<init>(ProtocolHandler.java:1529)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.openConnection(ConnectionImpl.java:2327)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.init(ConnectionImpl.java:1024)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.<init>(ConnectionImpl.java:418)
    at com.sun.messaging.jmq.jmsclient.UnifiedConnectionImpl.<init>(UnifiedConnectionImpl.java:60)
    at com.sun.messaging.BasicConnectionFactory.createConnection(BasicConnectionFactory.java:147)
    at com.sun.messaging.BasicConnectionFactory.createConnection(BasicConnectionFactory.java:132)
    at demo.JAMS.main(JAMS.java:31)
    Caused by: java.net.SocketException: Software caused connection abort: recv failed
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:237)
    at com.sun.messaging.jmq.io.PortMapperTable.readLine(PortMapperTable.java:310)
    at com.sun.messaging.jmq.io.PortMapperTable.read(PortMapperTable.java:266)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.readBrokerPorts(PortMapperClient.java:235)
    +... 17 more+
    I also used imqadmin command and tried same credentials from console but i got same error
    Anyone please guide me what issue is actually?
    Is this server side issue? Is this access rights issue.
    Tried to google it but unable to find correct solutions

    >
    I also used imqadmin command and tried same credentials from console but i got same errorTry using imqcmd
    imqcmd query bkr -b 19.11.12.3:141
    (you will be prompted for user and password)
    Try running this command from your client machine and also from 19.11.12.3 (i.e. locally to the broker)
    This command simply displays a few lines of info about the broker, and is a simple way to confirm that you can connect to the broker.
    >
    Anyone please guide me what issue is actually?
    Is this server side issue? Is this access rights issue.
    Tried to google it but unable to find correct solutionsCan you confirm that the broker listening on 19.11.12.3:141 has started correctly? Have you looked at the broker log? If the broker has started successfully there should be a message something like "Broker "19.11.12.3:141" ready".
    Nigel

  • Export Problems: "The share operation Master File has failed"

    When I try to export anything out of fcprx whatever the setting I get this "The share operation Master File has failed- The operation could not be completed because an error occurred when creating frame 1406 (error -1)"
    I have read that it a dodgy import but I did it correct this time?
    Any Idea how I can stop this?
    Cheers

    Have tried to disable nap? http://reviews.cnet.com/8301-13727_7-57612009-263/how-to-disable-app-nap-in-os-x -mavericks/

Maybe you are looking for

  • OS won't load from ide hd during boot

    I recently purchased an k8n neo platinum mobo and got it all hooked up and ready to go. I intended on using the hd from my old system which already had set up windows xp pro with service pack 2 installed. I was then going to install another copy of x

  • How do I get my data back?

    All my apps disappeared and when I put them back on all their data was gone, is there a way to put it back on?

  • Saving a TGA from an Export plug-in

    I am new to Photoshop plug-in development and I'm still finding my way around the API.  I am writing an Export plugin, I would like to first save the current image as a TGA file, if possible I would like to let everything run just as if the user sele

  • How to display data in a grid after selecting topic from combo box?

    could someone help me out? i'm displaying a combo box (about 20 items) vertically. when user selects one of these items, i'd like for information regarding that choice to be displayed in my data grid. thanks - Karl from Kansas

  • Need Acknowledgement When Posting Goods Receipt Document

    Hi, My scenario is i want to post the Goods Receipt Document using an idoc MBGMCR02. After posting if any error occurs  i want acknowledgement file describing the error. How can i achieve this. Kindly suggest. Regards, Venkat