Fms3.5 NetConnection.Connect.Rejected

hi all,
today I  install fms3.5 on my pc.
1)I can use rtmp://localhost/vod/mp4:sample2_1000kbps.f4v , it works ok.
But when I use rtmp://192.168.8.3/vod/mp4:sample2_1000kbps.f4v, I got Netconnect.connection.rejected. 192.168.8.3 is my fms server IP.
I was first use fms, who can help me?
2)When I set fms use port 1935 and 80, rtmp://192.168.8.3/vod/mp4:sample2_1000kbps.f4v works ok on other pc. But  using  wireshark(Wireshark is a network protocol analyzer for Unix and Windows.) I found , the flash player connect 1935 port at first, it send "connect",the server replay "connection.rejected" and "no scope "vod" on this server". Than it connect to 80 port, so I see the video is not send throw 1935 port with rtmp, but throw 80 port with rtmpt. Why? How can I see video throw rtmp?

hi,the following is my edge.00.log
#Version: 1.0
#Start-Date: 2010-06-09 13:30:26
#Software: Adobe Flash Media Server 3.5.2 r654
#Date: 2010-06-09
#Fields: date    time    x-pid    x-status    x-ctx    x-comment
2010-06-09    13:30:21    4580    (i)2581173    Host: softwaretest-pc IPv4: 192.168.8.3    -
2010-06-09    13:30:21    4580    (i)2631174    Listener started ( _defaultRoot__edge1 ) : localhost:19350/v4    -
2010-06-09    13:30:22    4580    (i)2581252    Registering core (4600).    -
2010-06-09    13:30:23    4580    (i)2631174    Listener started ( _defaultRoot__edge1 ) : 80/v4    -
2010-06-09    13:30:23    4580    (i)2631174    Listener started ( _defaultRoot__edge1 ) : 1935/v4    -
2010-06-09    13:30:23    4580    (i)2581252    Registering core (3252).    -
2010-06-09    13:30:46    4580    (i)2581252    Registering core (5916).    -
2010-06-09    14:00:53    4580    (i)2581250    Edge disconnected from core (5916).    -
2010-06-09    14:16:29    4580    (i)2581250    Edge disconnected from core (3252).    -
2010-06-09    14:16:30    4580    (i)2581250    Edge disconnected from core (4600).    -
#Date: 2010-06-09
#Fields: date    time    x-pid    x-status    x-ctx    x-comment
2010-06-09    14:17:05    3388    (i)2581173    Host: softwaretest-pc IPv4: 192.168.8.3    -
2010-06-09    14:17:06    3388    (i)2631174    Listener started ( _defaultRoot__edge1 ) : localhost:19350/v4    -
2010-06-09    14:17:06    3388    (i)2581252    Registering core (3328).    -
2010-06-09    14:17:07    3388    (i)2631174    Listener started ( _defaultRoot__edge1 ) : 192.168.8.3:1935/v4    -
2010-06-09    14:17:07    3388    (i)2631174    Listener started ( _defaultRoot__edge1 ) : 1935/v4    -
2010-06-09    16:19:50    3388    (w)2581171    System memory load (92) is high.    -
2010-06-09    16:20:02    3388    (i)2581172    System memory load (87) is now below the maximum threshold.    -
It display the fms is listene 1935 port. And I can get description: "no scope 'vod' on this server"
, while I receive "NetConnection.connect.rejected" from fms.

Similar Messages

  • Upgrade FMS2 - Streaming Server 3.5 - Video not streaming - NetConnection.Connect.Rejected

    I have Flash Media Server 2 set up with a simple bandwidth detection application (with serverside code), and a videoplayer application (no serverside code).    I have upgraded to Flash Media Streaming Server 3.5 and have managed to successfully get video to stream using the basic examples on the startup screen both locally and from another machine.  However, when I try and connect to either the bandwidth detection application, or the videoplayer I get the error message:
    NetConnection.Connect.Rejected
    [ Server.Reject ] : (_defaultRoot_, _defaultVHost_) : Application (**my appname**/) is not a valid signed application; loading access denied.
    I saw another post in this forum saying that for custom applications you need Flash Media Interactive Server instead of Streaming Server.  This worries me as I'm quite far down this route now and don't want to tell my boss that actually we need to find another £2k to make this a viable solution!  But looking at the credentials of Flash Media Streaming server (http://www.adobe.com/products/flashmediaserver/compare/), it seems to be that what I want to do is viable.  At worst I would have thought that only the bandwidth application would be a problem as it has serverside code.  But even so, the Streaming Server apparently does have bandwidth detection.  How does this work then?
    By having the Steaming Server am I somehow tied into Adobe video players if I want to use the streaming capabliities?  Am I not able to have my own named application?    Or is it simply likely that there is some setting somewhere I have missed which is causing the error.
    Any advice would be much appreciated as I'm struggling to get to the root of these answers on my own.

    You just need to define handlers specially onBWDone on client side to do Bandwidth detection. Just check example "Bandwidth" in documentation/samples/Bandwidth/Bandwidth.as.
    Since you are using VOD, i think you can just pass "true" as second parameter when you make nc.connect call in you client side and VOD application would make call to checkBandwidth and would call onBWDone when it finishes bandwidth detection. Read more about this in Client API documentation in SSLR.pdf and Dev_Guide.pdf.
    Also Adobe has come with advanced Bandwidth detection which you can do using client-side Flash Player API's - Please check this link for more info:http://www.adobe.com/devnet/flashmediaserver/articles/dynstream_on_demand.html
    Also you can NetStreamInfo documentation which should be present in AS3LR (check documentation folder of FMS)

  • NetConnection.Connect.Rejected in FMS 2

    I want to create Audio/video chat application.
    I have FMS 2.0.4 and XAMMP 1.6 installed on my computer
    locally.
    i use the following code to test a connection to the FMS:
    conn = new NetConnection();
    conn.connect("rtmp:/localhost/my_app");
    conn.onStatus = function(info) {
    trace ("Level: "+info.level+" Code: "+info.code);
    but it seems it cannot establish a connection to the FMS
    server and
    returned the following errors:
    Level: error Code: NetConnection.Connect.Rejected
    Level: status Code: NetConnection.Connect.Closed
    tried these other codes too on the connect function:
    conn.connect("rtmp://localhost/my_app");
    conn.connect("rtmp://127.0.0.1/my_app");
    conn.connect("rtmp:/127.0.0.1/my_app");
    conn.connect("rtmp:/my_app");
    but still no luck.
    What seems to be the problem in my configuration?
    By the way, I tried to disable the XAMMP but stll it cannot
    establish a connection?
    Tried to run it in macromedia flash 8 using alt+enter and
    through the
    webserver using the publish html and swf files but still the
    same.
    Ive been working on this for days.
    Im desperate,i need to start working on the application
    already.
    Somebody please help..
    tnx..

    also be sure to check your log files (or you can go in
    through the admin console and view the server log).
    with this particular error, i personally had:
    "Asynchronous I/O operation failed (Failed to attach to
    completion port: The parameter is incorrect."
    if you do a search on this error you will find not so much
    information. i was able to get my application working using the
    rtmpt protocol, but now, after coming back to work and booting my
    machine, it's not working again and i have the same error.
    things i've tried:
    1) i shut down all anti-virus and firewall applications and
    services
    2) run netstat -a to see what is running and what ports are
    being used
    3) try specifying a different port for FMS to run on (default
    = 1935). this can be changed via $InstallDirectory$\conf\fms.ini
    (in windows). Inside the file search for ADAPTOR.HOSTPORT and
    change the value to whatever port you want to try.
    4) try variations of the url e.g. rtmp:/ rtmpt:/
    rtmpt://localhost rtmpt://localhost:1935 etc.
    5) make sure you don't have programs like netlimiter
    installed as this is a known app that can cause problems w/ FMS by
    intercepting system calls on the machine.
    If you do find something that works, please contribute to
    this thread as it could become valuable for others having these
    issues.

  • Getting NetConnection.Connect.Rejected

    I signed up with a FMS hosting service. They have a nice
    interface where I was able to install an application. I called it
    "simple", cause its bare bones simple. After installing, it gives
    me the rtmp connection string. Problem is - I get
    NetConnection.Connect.Rejected every time. I tried removing it, and
    installing again. But same thing.
    This is in frame 1. Is there something wrong with this?
    my_nc = new NetConnection();
    my_nc.onStatus = function (info) {
    switch(info.code)
    case "NetConnection.Connect.Success":
    textbox.text = "success" + "\n";
    break;
    case "NetConnection.Connect.Rejected":
    textbox.text = "rejected" + "\n";
    textbox.text += info.application.msg + "\n";
    textbox.text += "Event: " + info.code + "\n";
    textbox.text += "Type: " + info.level + "\n";
    textbox.text += "Message:" + info.description + "\n";
    break;
    case "NetConnection.Connect.Failed":
    textbox.text = "failed";
    break;
    case "NetConnection.Connect.Closed":
    textbox.text += "Connection closed.";
    break;
    my_nc.connect("rtmp://exx3333.rtmphost.com/simple");
    (I didn't put in the exact rtmp string in there, since this
    is a public forum)
    The result I get printed out in the text box is:
    rejected
    undefined
    Event: NetConnection.Connect.Rejected
    Type: error
    Message:[ Server.Reject ] : (_defaultRoot_, _defaultVHost_) :
    Application (simple) is not defined.
    But - the hosting service's interface panel shows that
    application "simple" is there. I sent the hosting service a support
    request, but I probably won't hear back from them until
    Monday.

    Hi Cisco_s,
    Your code looks good - I think there's nothing you can do
    other than wait. Apparently there's something wrong with the VHOST
    configuration on their side.

  • FMS3 NetConnection.Connect.Failed

    FMS3 NetConnection.Connect.Failed
    I have two pc ,one have FMS+Apache ,the other have none.
    I access from local (IP: 192.168.0.3),that is OK!
    and I access from (IP: 192.168.0.4 ) ,the flashplayer
    trace a error:NetConnection.Connect.Failed?
    my app named "test" ,app path: "rtmp://192.168.0.3/test"
    help !!

    Is there a firewall on the FMS machine? If so, make sure port
    1935 is open

  • Rtmp flv stream problems (connection rejected for certain resource addresses)

    Hi all,
    I have a problem loading rtmp flv and mp4 files. Here are some example addresses I am trying to load:
    rtmp://s14swvywt7xype.cloudfront.net/cfx/st/leadersinfootball/Brett_Yormark_Powershift_Sta ndard_16_9.flv
    rtmp://s14swvywt7xype.cloudfront.net/cfx/st/leadersinfootball/Peter_Moore_Powershift_Stand ard_16_9.flv
    rtmp://s14swvywt7xype.cloudfront.net/cfx/st/leadersinfootball/Danny_Jordaan_Powershift_Sta ndard_16_9.flv
    rtmp://s14swvywt7xype.cloudfront.net/cfx/st/leadersinfootball/Lord_Mawhinney_Powershift_St andard_16_9.flv
    rtmp://s14swvywt7xype.cloudfront.net/cfx/st/mp4:114/114_640x368.mp4
    rtmp://s14swvywt7xype.cloudfront.net/cfx/st/mp4:boats-show-cannes-24-09-2010_1.mp4
    None of these appear to work, however they do work with the original streaming player I created. I'm using an adaptation of the Strobe Player and an unmodified version of the OSMF framework.
    I'm using a slightly modified version of the StreamingURLResource class when loading which adds some functionality overriding the mediaType getter, but I dont think that this is the cause because it simply returns the super.mediaType property unless the URL is a YouTube URL.
    When I break into the class responsible for creating the NetConnection I notice that I always get a net connection rejected status.
    Any help would be appreciated. You should find that this problem is reproducable with any of the example code on the OSMF website.
    Cheers,
    Mat

    Hi Mat,
    I didn't manage to get your assets load either. Are they still up?
    Ty the following assets with your modified Strobe Media Playback:
    http://osmf.org/dev/1.5.rc1/debug.html?src=rtmp://sz612asgrc6v4.cloudfront.net/cfx/st/andr ian_adina_1&urlIncludesFMSApplicationInstance=true
    http://osmf.org/dev/1.5.rc1/debug.html?src=rtmp://sz612asgrc6v4.cloudfront.net/cfx/st/mp4: Beowulf_1080p.mov&urlIncludesFMSApplicationInstance=true
    (mind urlIncludesFMSApplicationInstance setting, which you need for accessing cloudfront assets).
    Looking forward to your reply,
    Andrian

  • Netconnection.connect.failed

    hi, all. i am a freshman in the flash media server. I write
    the client with the flex, and the server is the flash media
    server2, when i connect to the server, the test information tells
    me the message: netconnection.connect.failed. but i write some
    trace code in the server, the server log has shown them, i don't
    know if i have connected the server, but when i connect to my
    server with other's computer, it give me a error: Unhandled
    NetStatusEvent:level=error, code=NetConnection.Connect.Failed
    WebService/linkserver() at WebService/__btn1_click() at
    [mouseEvent].
    as follow the source code
    the client:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import flash.net.*;
    import mx.rpc.events.ResultEvent;
    import mx.controls.Alert;
    import flash.net.NetConnection;
    public function linkserver():void
    nc = new NetConnection();
    //nc.client;
    nc.addEventListener("netStatus", test);
    nc.connect("rtmp://localhost/firstApp","b");
    public function test(event:NetStatusEvent):void
    Alert.show(event.info.code);
    <mx:Button id="button2" label="linkserver"
    click="linkserver()" x="255" y="397"/>
    </mx:Application>
    server( main.asc)
    application.onConnect=function(client,name){
    if(name=="a"){
    trace("rejectConnection");
    application.rejectConnection(client, {msg:"server don't
    let"+name+"connecting~"});
    if(name=="b"){
    trace("succeful");
    this.acceptConnection(client);

    You may have the app set to rtmp:/app or rtmp://localhost/app
    but should be rtmp://public ip to server/app or
    rtmpt://public ip to server:1935/app
    Also firewalls and some antivirus or security programs make
    stop the connection.
    HTH

  • WEBLOGIC 5.1SP9 : ListenThread Connection rejected: 'Login timed out after 5000 msec.

    I'm running WL Express 5.1SP9 on a NT 4 server, Oracle 8.1.7 and an j2EE
    application from an editor.
    With the previous version of the application i wasn't having any problem,
    since I installed the new version in the same environnement, I'm getting the
    message when running the application :
    "<E> <ServletContext-General> Warning: One of the getParameter family of
    methods called after reading from the ServletInputStream(), can't mix these
    two! "
    "<W> <ListenThread> Connection rejected: 'Login timed out after 5000 msec.
    The socket came from [host=10.56.13.202,port=1539,localport=80] See property
    weblogic.login.readTimeoutMillis to increase of decrease timeout. See
    property weblogic.login.logReadTimeoutsProp to turn off these log
    messages.'"
    The editor says it comes from WL configuration
    Please Help !
    Christophe

    hi.
    I'm not clear on this - what do you mean you are running a J2EE application from
    an editor?
    Also the error is coming from a servlet. Is one of your servlets calling a
    getParameter() method after reading from the ServletInputStream()? If it is it
    should be corrected.
    Regards,
    Michael
    Christophe Chastang wrote:
    I'm running WL Express 5.1SP9 on a NT 4 server, Oracle 8.1.7 and an j2EE
    application from an editor.
    With the previous version of the application i wasn't having any problem,
    since I installed the new version in the same environnement, I'm getting the
    message when running the application :
    "<E> <ServletContext-General> Warning: One of the getParameter family of
    methods called after reading from the ServletInputStream(), can't mix these
    two! "
    "<W> <ListenThread> Connection rejected: 'Login timed out after 5000 msec.
    The socket came from [host=10.56.13.202,port=1539,localport=80] See property
    weblogic.login.readTimeoutMillis to increase of decrease timeout. See
    property weblogic.login.logReadTimeoutsProp to turn off these log
    messages.'"
    The editor says it comes from WL configuration
    Please Help !
    Christophe--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • NetConnection.connected is false upon receiving NetStatus event "NetConnection.Connect.Success"

    I can only reproduce this on Chrome with a non-debug version of Flash.
    I can see that "NetConnection.connected" is still false after receiving NetStatus event "NetConnection.Connect.Success".
    1. I wonder whether this issue only applies to certain versions.
    2. Using a netConnection which is not connected to create a NetStream populates an "arugment error". I wonder what would be the safe thing to do here? Perhaps after receiving the NetConnection.Connect.Success, check "NetConnection.connected" before using it to create the NetStream?

    Are you sure your FMS is up - NetConnection.Connect.Failed comes when  client was not able to reach server kind - which would happen when FMS  is down or your FMS is running on some other machine and your client is  on some other machine as i see you are using localhost. If your FMS is  one "A" machine and your client in on "B" machine please put "ip  address" or "domain name" of "A" machine where FMS is in Netconnection  URI i.e. "rtmp://ipaddressofA/live"
    my fms is on and it is on the same computer as my flash document

  • NetConnection.Connect.Closed event not triggered in Vista FF3 when in fullscreen mode

    Hello Pals -
    I'm trying to handle the net connection drop and provide some kind of visual cue to user. For this I'm listening to NetConnection.Connect.Closed event and when its triggered, I take further steps. The events are triggered in Vista FF3(window mode)/IE7 but in Vista FF3 full screen mode, the event is not triggered. I forcefully disconnect the network cable to see the NetConnection.Connect.Closed event is triggered.
    I have following piece of code to listen to the event,
    nc = new NetConnection;
    nc.addEventListener(NetStatusEvent.NET_STATUS, onStatus, false, 0, true);
    nc.connect();
    public function onStatus(event:NetStatusEvent):void {
    trace("Status " + event.info.level + " : " + event.info.code);
    The function onStatus should be called whenever there is a status change in net connection. The events are not triggered in Vista FF3 full screen mode. Please share your views/ideas about this here. Thanks in advance. Please let me know incase more information is required.

    The problem decribed as above was caused by a fragile and eventually broken soldered connection on the curcuit board. My local dealer replaced the curcuit board and everything works fine again.
    I still wonder how that happend. I did not try to bend my MacBook and it did not fall of my desk.
    Thanks for reading.

  • FMS 3.5 /  server/app1 - netconnect - server/app2 = NetConnect.Connect.FailedHello

    Hello all,
    I've hit a snag with my current FMS project and Im hoping someone out there might be able to help.
    I have a working FMS server with two applications:
    I'm trying to get application 2 to connect to application1.
    I can connect to app1 if i write up a quick client in as3... i CANT seem to connect from FMS server side code in app2. ( which is what I require )
    What am I doing wrong?  Is there something on the server that I need to configure to allow this?
    Do I need to specify something in one of the app's  Application.xml files?
    Thank you for taking the time to read this post,  code is below:
    other info:
         my development server url looks like this:    fms.internal.companyname.com
         my netConnection.uri is simply "rtmp://fms.internal.companyname.com/app1"
         running Flash Media Interactive Server 3.5
         server is working.  I can use live / vod / and some other custom apps that I've written so far.  Just app to app connections aren't functioning.
        I havn't done any other custom configuration to the server.  Its all stock.
    app1's code:
    application.allowDebug = true;
    application.onAppStart = function(){
         trace("[ Booting up app1 ]");
    application.onConnect = function( clientObj ){
        trace("onConnect detected: ");
         application.acceptConnection(clientObj);
    application.onStatus = function(statusObj){
         trace("onStatus detected:  "+ statusObj);
    app2's code:
    application.allowDebug = true;
    nc = new NetConnection();
    nc.onStatus = function(infoObj){
       trace(infoObj.code);
    application.onAppStart = function(){
         trace("[ Booting up app2 ]");
         nc.connect( "rtmp://server/app1");
    application.onStatus = function(statusObj){
         trace("[ onStatus: "+statusObj+" ]");
    So as you can see I'm having app2 connect up to app1 on startup.
    However, no matter what I do I can't seem to get them to connect!  Please help!
    App 2's log tells me that "NetConnection.Connect.Failed".
    When I check the over all server log I just get a "Connection failed"

    Thanks Chess,
    Ok.. sounds like I'm going about this all wrong... 
    I'm building out an Audio/Video Chat application.. ( who doesn't with FMS?    )
    My specific challenge with this project is that I need to pass the client app "secret" data that I can't allow other users to have access to.
    ( By secret I mean I need to push the username and password for another app down to the client. so I'll be using RTMPE or RTMPS by the time this goes live. )
    So how does the following sound?
    My client, ( a flex RIA )  will provide my server "myserver.com/ChatServer"  with a "token":String that can uniquely identify that user.
    So say clientA wants to connect to chat session "42"..   it connects up to "myserver.com/ChatServer/42"  and provides their token.
    1.     When ChatServer/42   onConnect Method fires it will take that token and will put the client into a pending state.
    2.     The server will then hit a webservice on another server with that user's token and the name of the instance.   ( "user_token", "42") and will get back a UserData object... or xml... or whatever FMS uses best for transmitting data i guess... ( would FMS work with ZendAMF?  I'd love to use typed objects for this!)
    3.     Once the ChatServer instance receives the UserData it will pass it back to the client via Client.Call("setClientCredentials", responder, clientData stuff);   // I need to get secret data back to the client that I don't want made available to other users.  ( their passwords etc... )
    4.     ChatServer will also accept the client connection at this point and Add this client to a Roster Shared Object along with some specifics from that ClientData... like name, avatar, etc.
    5.  Once the approved clients begin broadcasting I can then update that Roster_shared_object and use the .sync events to have all connected clients update and start sucking down those streams.
    Does this sound like a better FMS architecture?
    I appreciate everyone's input,
    Thank you for taking the time to read up to this point. 

  • Connection rejected ..

    When running the app against a load tool, wl 5.1 running sp9 almost stops
              handling requests after a say considerable size of requests and throws
              serious of the attached message.
              I guess wls is running out of sockets, but the app is perfect in normal
              conditions.
              When would this happen?
              <W> <ListenThread> Connection rejected: 'Login timed out after: '5000' ms on
              socket: 'Socket[addr=34.22.0.125/34.22.0.125,port=3345,localport=7001]''
              Thanks
              Madhu
              

    Thanks Mike. I'm using Apache JMeter, test machines and server hooked to a
              single switch. Another issue that I'm seeing the o/p queue length on the NIC
              on the server is pretty high, so I guess that NIC takes all the request and
              it doesn't reach weblogic. Any suggestions?
              - Madhu
              "Mike Reiche" <[email protected]> wrote in message
              news:[email protected]...
              >
              > WLS prints out 'Login timed out' if something connects to it
              > but does not send any data for five seconds.
              > If you want to see this - then telnet <weblogic-host> 7001, and
              > wait for five seconds.
              >
              > Check what your load tool is doing. Is the machine where you are
              > running the load tool bogged down?
              >
              > Mike
              >
              > "Madhu" <[email protected]> wrote:
              > >When running the app against a load tool, wl 5.1 running sp9 almost stops
              > >handling requests after a say considerable size of requests and throws
              > >serious of the attached message.
              > >
              > >I guess wls is running out of sockets, but the app is perfect in normal
              > >conditions.
              > >
              > >When would this happen?
              > >
              > ><W> <ListenThread> Connection rejected: 'Login timed out after: '5000'
              > >ms on
              > >socket: 'Socket[addr=34.22.0.125/34.22.0.125,port=3345,localport=7001]''
              > >
              > >Thanks
              > >Madhu
              > >
              > >
              > >
              > >
              > >
              >
              

  • ListenThread Connection rejected:

    I get the following message a lot in my log.
              Tue Jan 08 14:13:18 EST 2002:<W> <ListenThread> Connection rejected: 'Login timed out after: '5000' ms on socket: 'Socket[addr=HAMPTONS2/159.234.28.15,port=3731,localport=7001]
              Why does this occur? I see that it is occuring for all of my remote users.
              I see the property weblogic.login.readTimeoutMillis if I increase it to 20 or 30 seconds would that be a problem? What does this property really control.
              thanks
              gdh
              

    This is read login timeout, the default is 5000 (5 seconds). If you need
              longer time for your application, tune up this property in your
              weblogic.properties:
              weblogic.login.readTimeoutMillis
              Cheers - Wei
              Michael Hansen <[email protected]> wrote in message
              news:[email protected]..
              > I'm getting the following error on weblogic, when connecting from an
              applet
              > to a servlet:
              > on aug 02 16:29:52 GMT+02:00 2000:<W> <ListenThread> Connection rejected:
              > 'Login timed out after: '5000' ms on socket: '
              > Socket[addr=localhost/127.0.0.1,port=1775,localport=7001]''
              >
              > Does anyone know why it appears, and how to avoid it?
              > I'm running Weblogic 5.1 servicepack 5 and JDK 1.2.2
              >
              > MH
              >
              >
              

  • Re: Connection Rejected:Login Timed Out

    This sounds like a slow client to me. Specifically the client isn't sending
    enough data within the first 9 seconds for the server to determine which
    protocol the client is using.
    Srikant, [email protected], http://weblogic.bea.com/, etc.
    Ajit wrote:
    "Hi, I went through the various versions of Login Timed Out problems.This is my version. My Web server currently running on Weblogic Web Server 5.1.0 with service pack 9 is shutting down frequently.My server platform is SUN SOLARIS 2.6 5/98. The following messages reflect in the weblogic.log Thu Aug 02 08:49:52 EDT 2001:<W> <ListenThread> Connection rejected: 'Login timed out after 9000 msec. The socket came from [host=147.154.232.3,port=19431,localport=80] See property weblogic.login.readTimeoutMillis to increase of decrease timeout. See property weblogic.login.logReadTimeoutsProp to turn off these log messages.'Thu Aug 02 08:50:13 EDT 2001:<W> <ListenThread> Connection rejected: 'Login timed out after 9000 msec. The socket came from [host=147.154.232.5,port=10656,localport=80] See property weblogic.login.readTimeoutMillis to increase of decrease timeout. See property weblogic.login.logReadTimeoutsProp to turn off these log messages.'Thu Aug 02 09:23:18 EDT
    2001:<!> <SSLListenThread> **** The WebLogic Server is no longer listening for connections.Thu Aug 02 09:23:18 EDT 2001:<!> <SSLListenThread> **** You should probably restart it.Thu Aug 02 09:23:18 EDT 2001:<I> <WebLogicServer> Server shutdown by systemThu Aug 02 09:23:18 EDT 2001:<I> <WebLogicServer> Server shutdown commencing NOWThu Aug 02 09:23:18 EDT 2001:<A> <ListenThread> ListenThread.run() failed:java.lang.ThreadDeathThu Aug 02 09:23:18 EDT 2001:<!> <ListenThread> **** The WebLogic Server is no longer listening for connections.Thu Aug 02 09:23:18 EDT 2001:<!> <ListenThread> **** You should probably restart it.Thu Aug 02 09:23:18 EDT 2001:<I> <WebLogicServer> Server shutdown by systemThu Aug 02 09:23:19 EDT 2001:<I> <HTTP> Destroying servlets in default servlet context.Thu Aug 02 09:23:19 EDT 2001:<I> <ServletContext-General> proxy: destroyThu Aug 02 09:23:19 E

    hi srikanth i am facing some problem in weblogic for a particular port.weblogic
    is shutting down for that port .this port
    is configured for SSL.
    when i have reviewed the logs i could trace
    following error.i dont know whether this error is linked to the shutting down of weblogic.
    ERROR:on Apr 08 13:30:36 CEST 2002:<W> <SSLListenThread> Connection rejected: 'Login
    timed out after: '25000' ms on socket: 'Socket[addr=192.193.118.137/192.193.118.
    137,port=33280,localport=7003}''
    Each and everytime restarting the weblogic
    instance is not a proper solution so please
    let me know what can i do for this weblogic
    shutting down abnormally.
    waiting for ur reply
    Best Regards
    Surender
    Wipro Limited.

  • Error message: X11 connection rejected because of wrong authentication

    Until recently I was able to ssh from the Mac in my office -- runing
    MacOS 10.6.4, to a Sun Solaris server -- running Solaris 10 10/09
    (update 8) and all available patches installed, and run X11 programs
    displaying on my Mac.
    I installed these patches recently:
    142900-15 SunOS 5.10: kernel patch
    124867-15 Sun Studio 12: Patch for C 5.9 compiler
    122212-42 GNOME 2.6.0: GNOME Desktop Patch
    138764-02 SunOS 5.10: acc driver patch
    120199-16 SunOS 5.10: sysidtool Patch
    119252-29 SunOS 5.10: System Administration Applications Patch
    124630-44 SunOS 5.10: System Administration Applications, Network, and Core Libraries Patch
    124628-10 SunOS 5.10: CD-ROM Install Boot Image Patch
    118777-17 SunOS 5.10: Sun GigaSwift Ethernet 1.0 driver patch
    121118-17 SunOS 5.10: Update Connection System Client 1.0.17
    144759-02 SunOS 5.10: mount patch
    145019-01 SunOS 5.10: ifconfig patch
    119313-38 SunOS 5.10: WBEM Patch
    124393-10 CDE 1.6: Dtlogin smf patch
    119278-37 CDE 1.6: dtlogin patch
    121734-13 SunOS 5.10: patch to support addition of new UTF-8 locales
    119254-75 SunOS 5.10: Install and Patch Utilities Patch
    118666-27 JavaSE 5.0: update 25 patch (equivalent to JDK 5.0u25)
    118667-27 JavaSE 5.0: update 25 patch (equivalent to JDK 5.0u25), 64bit
    121430-53 SunOS 5.8 5.9 5.10: Live Upgrade Patch
    119246-38 SunOS 5.10: Manual Page updates for Solaris 10
    121308-22 SunOS 5.10: Solaris Management Console Patch
    119315-21 SunOS 5.10: Solaris Management Applications Patch
    118712-24 SunOS 5.10: Sun XVR-100 Graphics Accelerator Patch
    144325-02 SunOS 5.10: Resource Management User Interface Patch
    145074-01 SunOS 5.10: Trusted JDS Help rebranding patch
    124457-03 X11 6.6.2: xdm patch
    and now when I try to run certain programs, namely Symantec NetBackup
    Server (NBS) administrator interface, jnbSA, when I run the program I see:
    X11 connection rejected because of wrong authentication.
    and jnbSA fails. I removed these patches:
    118666-27 JavaSE 5.0: update 25 patch (equivalent to JDK 5.0u25)
    118667-27 JavaSE 5.0: update 25 patch (equivalent to JDK 5.0u25), 64bit
    124457-03 X11 6.6.2: xdm patch
    with no change. I have made NO updates to NBS, and what's
    even more weird, regular X11 programs such as x{eyes,biff,emacs}
    work fine.
    I've tried tinkering with the contents of ~/sshconfig and /etc/ssh_config
    to no avail.
    Is anyone else seeing this problem?
    Any suggestions?
    Thanks!

    I'm confused why you posted on the Tarantella/SGD Forum then?
    Yes, you can use SGD to have your Mac client display back a Solaris/Linux/Windows/Mainframe, etc application remotely.
    http://www.oracle.com/us/technologies/virtualization/oraclevm/061996.html

Maybe you are looking for

  • Replace FM GUI_DOWNLOAD with CL_GUI_FRONTEND_SERVICES= GUI_DOWNLOAD

    Hi, I want to replace FM GUI_DOWNLOAD with CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD in one of our old program, however parameter FIELDNAMES is used, and this parameter is no longer available in CL_GUI_FRONTEND_SERVICES. Any idea is there any other para

  • Adding Image to table cell

    hello, I want to add Image related to particular file to cell of the JTable, I already have name of the file in cell but want to display file or directory name with its related icon. i am using TableCellRenderer ,but don't know how to keep both filen

  • Office for Mac 2008 - Mail Merge fails under Lion

    I have upgraded to Lion and have Office ofr Mac 2008. Since the upgrade to Lion I cannot use the Word Mail Merge as it cannot find the convertor from Excel Workbook to text... everything worked fine till I upgraded to Lion

  • Converting CUCM user from local to LDAP synchronized

    Hello. I am trying to convert a few local users to users that have been synchronized with LDAP. When I am on the End user configuration page, I cannot seem to find anything that would relate to synchronizing with LDAP. Also, if I try to create them f

  • Importing a Hyper-V virtual machine into windows 8 hyper-v fails with a strange error

    Here is the error what i am suffering from, it fails and i dont know what this error is all about Saved State Errors The following saved state errors were reported... the processor settings for virtual machine.... can some one help