Chat Server help... outside IP adress error

In a program i am working on, whenever i replace the ip address to bind to from InetAddress.getLocalHost(); to InetAdress.getByName(">> REAL OUTSIDE IP IN HERE<<"); and run the program i get these errors...
exception in acceptNewConnections()
exception in run()
What can i do to fix this? some code attached
    private void acceptNewConnections() {
     try {
         SocketChannel clientChannel;
         // since sSockChan is non-blocking, this will return immediately
         // regardless of whether there is a connection available
         while ((clientChannel = sSockChan.accept()) != null) {
          addNewClient(clientChannel);
          log.info("got connection from: " + clientChannel.socket().getInetAddress());
          sendBroadcastMessage("login from: " + clientChannel.socket().getInetAddress(), clientChannel);
          sendMessage(clientChannel, "\n\nWelcome to ChatterBox, there are " +
                   clients.size() + " users online.\n");
          sendMessage(clientChannel, "Type 'quit' to exit.\n");
     catch (IOException ioe) {
         log.warn("error during accept(): ", ioe);
     catch (Exception e) {
         log.error("exception in acceptNewConnections()", e);
    public void run() {
     initServerSocket();
     log.info("ChatterServer running");
     running = true;
     int numReady = 0;
     // block while we wait for a client to connect
     while (running) {
         // check for new client connections
         acceptNewConnections();
         // check for incoming mesgs
         readIncomingMessages();
         // sleep a bit
         try {
          Thread.sleep(100);
         catch (InterruptedException ie) {
    }

Additional Code....
    private void initServerSocket() {
     try {
         // open a non-blocking server socket channel
         sSockChan = ServerSocketChannel.open();
         sSockChan.configureBlocking(false);
         // bind to localhost on designated port
         InetAddress addr = InetAddress.getByName("You think i'd give my ip address?");
         sSockChan.socket().bind(new InetSocketAddress(addr, PORT));
         // get a selector for multiplexing the client channels
         readSelector = Selector.open();
     catch (Exception e) {
         log.error("error initializing server", e);
    }

Similar Messages

  • Chat Server Help

    I'm developing a chat server and I am handling it with threads. I developed a executable class to handle all and I'm putting all the users in two Hashtables. There are two kinds of users. I need to know how many users do you gurus believe it can support? and how could I make it better. Thanks
    Ivan

    the way you do it is okay and the size of the hashtables is just limited by the space the jvm has and the kind of keys you are using.
    regards

  • NIO Chat Server HELP

    hi, i am new to java nio. i have the following general questions:
    1. how can the server know who all is connected.
    2. in non blocking io mode, can we govern the multiplexing sequence? i mean can we iterate the key to a specific client. if so, how?

    the way you do it is okay and the size of the hashtables is just limited by the space the jvm has and the kind of keys you are using.
    regards

  • Connecting to remote server failed with the following error message : Access is denied. For more information, see the about_Remote_Troubleshooting Help topic. It was running the command 'Discover-ExchangeServer -UseWIA $true -SuppressError $true -CurrentV

    I installed Exchange Server 2010 inside my VMWare Windows Server 2008 Ent R2. And After successful installation  when I try to open my Exchange Server Console, I am getting the following error message. I am very new to Exchange server please help me
    to solve this problem.
    Initialization Failed
    The following error occurred while searching for the on-premises Exchange server:
    [win-.local] Connecting to remote server failed with the following error message : Access is denied. For more information, see the about_Remote_Troubleshooting Help topic. It was running the command 'Discover-ExchangeServer -UseWIA $true -SuppressError
    $true -CurrentVersion 'Version 14.1 (Build 218.15)''.
    Thanks Vivek
    SharePoint Foundation 2010 Book
    http://www.redpipit.com

    Hi,
    Please have a look at the article below:
    Troubleshooting Exchange 2010 Management Tools startup issues
    http://blogs.technet.com/b/exchange/archive/2010/02/04/3409289.aspx
    Resolving WinRM errors and Exchange 2010 Management tools startup failures
    http://blogs.technet.com/b/exchange/archive/2010/12/07/3411644.aspx
    Besides, please run the cmdlet below:
     set-user alias -remotepowershellenabled$true
    Xiu Zhang
    TechNet Community Support

  • "ipad software update server could not be contacted" error.... any help?

    Hi,
    Im getting an "ipad software update server could not be contacted" error.
    Is it a fault on my end or is it Apple which are still having problems and have disconnected their servers until it's fixed?
    Thanks

    I have been trying to update my ipad 2 to ios5 "All" day with no luck. I will connect my ipad 2 to my mac, it brings up itunes and tells me there is an update, i click the download and update button, and when it gets to to "Contacting ipad update server, it just keeps trying to contact the server. it gives me no error, no matter how long i let it do its thing. i have tried rebooting mac/ipad, and trying over and over again to download, but i cant get past that "Contacting ipad update server."  anyone else having this same issue? it seems most people at least are getting somewhat further than this..

  • Need some help on JAVA CHAT SERVER

    i need some info about java chat server. Please any one who have developed give me the details about the logic and process flow.

    Have you read any of these?
    http://search.java.sun.com/search/java/index.jsp?qp=&nh=10&qt=%2B%22chat+server%22&col=javaforums

  • Trying to produce a java chat server

    Would like produce a working client/server chat system, as basic as possible but able to listen and talk to each other. Any chat servers how-to examples I've come across never seem to work.
    Would like to understand why applets don't work when I open the web page but do work when I view using the appletviewer. I use Internet Explorer 4 i think, java version 1.3.0_02
    would you understand at least part of this error which appears when I run a chat server
    exception:com.ms.security.SecurityExceptionEx[Client.<int>]:cannot access "194.81.104.26":5660
    (the error is all one line no spaces)
    the following code is one of the programs I've been working on and I receive the above error, appletviewer doesn't work so i think that means something is wrong with the code, client side as the server side works well, it listens etc
    // Client side
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.net.*;
    public class Client extends Panel implements Runnable
    // Components for the visual display of the chat windows
    private TextField tf = new TextField();
    private TextArea ta = new TextArea();
    // The socket connecting us to the server
    private Socket socket;
    // The streams we communicate to the server; these come
    // from the socket
    private DataOutputStream dout;
    private DataInputStream din;
    // Constructor
    public Client( String host,int port ) {
    // Set up the screen
    setLayout( new BorderLayout() );
    add( "North", tf );
    add( "Center", ta );
    // Receive messages when someone types a line
    // and hits return, using an anonymous class as
    // a callback
    tf.addActionListener( new ActionListener() {
    public void actionPerformed( ActionEvent e ) {
    processMessage( e.getActionCommand() );
    // Connect to the server
    try {
    // Initiate the connection
    socket = new Socket( host, port );
    // Recieved a connection
    System.out.println( "connected to "+socket );
    // Create DataInput/Output streams
    din = new DataInputStream( socket.getInputStream() );
    dout = new DataOutputStream( socket.getOutputStream() );
    // Start a background thread for receiving messages
    new Thread( this ).start();
    } catch( IOException ie ) { System.out.println( ie ); }
    // Called when the user types something
    private void processMessage( String message ) {
    try {
    // Send it to the server
    dout.writeUTF( message );
    // Clear out text input field
    tf.setText( "" );
    } catch( IOException ie ) { System.out.println( ie ); }
    // Background thread runs this: show messages from other window
    public void run() {
    try {
    // Receive messages one-by-one, forever
    while (true) {
    // Get the next message
    String message = din.readUTF();
    // Print it to our text window
    ta.append( message+"\n" );
    } catch( IOException ie ) { System.out.println( ie ); }
    // ClientApplet
    import java.applet.*;
    import java.awt.*;
    import java.io.*;
    import java.net.*;
    public class ClientApplet extends Applet
    public void init() {
    //String host = getParameter( "host" );
         String host="194.81.104.26";
         //int port = Integer.parseInt( getParameter( "port" ) );
         int port =5660;
    setLayout( new BorderLayout() );
    add( "Center", new Client( host, port ) );
    // server
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class Server
    // The ServerSocket is used for accepting new connections
    private ServerSocket ss;
    // A mapping from sockets to DataOutputStreams. This will
    // help us avoid having to create a DataOutputStream each time
    // we want to write to a stream.
    private Hashtable outputStreams = new Hashtable();
    // Constructor and while-accept loop all in one.
    public Server( int port ) throws IOException {
    // listening
    listen( port );
    private void listen( int port ) throws IOException {
    // Create the ServerSocket
    ss = new ServerSocket( port);
    // ServerSocket is listening
    System.out.println( "Listening on "+ss );
    // Keep accepting connections forever
    while (true) {
    // The next incoming connection
    Socket s = ss.accept();
    // Connection
    System.out.println( "Connection from "+s );
    // Create a DataOutputStream for writing data to the
    // other side
    DataOutputStream dout = new DataOutputStream( s.getOutputStream() );
    // Save this stream so we don't need to make it again
    outputStreams.put( s, dout );
    // Create a new thread for this connection, and then forget
    // about it
    new ServerThread( this, s );
    // Get an enumeration of all the OutputStreams, one for each client
    // connected to us
    Enumeration getOutputStreams() {
    return outputStreams.elements();
    // Send a message to all clients (utility routine)
    void sendToAll( String message ) {
    // We synchronise on this because another thread might be
    // calling removeConnection()
    synchronized( outputStreams ) {
    // For each client ...
    for (Enumeration e = getOutputStreams(); e.hasMoreElements(); ) {
    // ... get the output stream ...
    DataOutputStream dout = (DataOutputStream)e.nextElement();
    // ... and send the message
    try {
    dout.writeUTF( message );
    } catch( IOException ie ) { System.out.println( ie ); }
    // Remove a socket, and it's corresponding output stream, from our
    // list. This is usually called by a connection thread that has
    // discovered that the connectin to the client is dead.
    void removeConnection( Socket s ) {
    // Synchronise so sendToAll() is okay while it walks
    // down the list of all output streams
    synchronized( outputStreams ) {
    // Removing connection
    System.out.println( "Removing connection to "+s );
    // Remove it from our hashtable/list
    outputStreams.remove( s );
    // Make sure it's closed
    try {
    s.close();
    } catch( IOException ie ) {
    System.out.println( "Error closing "+s );
    ie.printStackTrace();
    // Main routine
    // Usage: java Server <port>
    static public void main( String args[] ) throws Exception {
    // Get the port # from the command line
    int port = Integer.parseInt( args[0] );
         //int port = 5000;
    // Create a Server object, which will automatically begin
    // accepting connections.
    new Server( port);
    // ServerThread
    import java.io.*;
    import java.net.*;
    public class ServerThread extends Thread
    // The Server that spawned
    private Server server;
    // The Socket connected to our client
    private Socket socket;
    // Constructor.
    public ServerThread( Server server, Socket socket ) {
    // Save the parameters
    this.server = server;
    this.socket = socket;
    // Start up the thread
    start();
    // This runs in a separate thread when start() is called in the
    // constructor.
    public void run() {
    try {
    // Create a DataInputStream for communication; the client
    // is using a DataOutputStream to write to us
    DataInputStream din = new DataInputStream( socket.getInputStream() );
    // Over and over, forever ...
    while (true) {
    // ... read the next message ...
    String message = din.readUTF();
    // ... sending printed to screen ...
    System.out.println( "Sending "+message );
    // ... and have the server send it to all clients
    server.sendToAll( message );
    } catch( EOFException ie ) {
    // This doesn't need an error message
    } catch( IOException ie ) {
    // This needs an error message
    ie.printStackTrace();
    } finally {
    // The connection is closed for one reason or another,
    // so have the server dealing with it
    server.removeConnection( socket );
    <body bgcolor="#FFFFFF">
    <applet code="ClientApplet" width=600 height=400>
    <param name=host value="127.0.0.1">
    <param name=port value="5660">
    [Chat applet]
    </applet>
    </body>

    Hi!
    Go to
    http://www.freecode.com/projects/jchat-java2clientserverchatmodule/
    probably u will het the answer..
    Jove

  • The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError) Log on failed. Ensure the user name and password are correct. (rsLogonFailed) Logon failure: unknown user name or bad

    The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)
    Log on failed. Ensure the user name and password are correct. (rsLogonFailed)
    Logon failure: unknown user name or bad password 
    am using Windows integrated security,version of my sql server 2008R2
    I have go throgh the different articuls, they have given different answers,
    So any one give me the  exact soluction for this problem,
    Using service account then i will get the soluction or what?
    pls help me out it is urgent based.
    Regards
    Thanks!

    Hi Ychinnari,
    I have tested on my local environment and can reproduce the issue, as
    Vaishu00547 mentioned that the issue can be caused by the Execution Account you have configured in the Reporting Services Configuration Manager is not correct, Please update the Username and Password and restart the reporting services.
    Please also find more details information about when to use the execution account, if possible,please also not specify this account:
    This account is used under special circumstances when other sources of credentials are not available:
    When the report server connects to a data source that does not require credentials. Examples of data sources that might not require credentials include XML documents and some client-side database applications.
    When the report server connects to another server to retrieve external image files or other resources that are referenced in a report.
    Execution Account (SSRS Native Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Getting an error prompt "the facebook server has returned an unknown error and is not able to fulfill your request. (2001)"

    Hi. I need help regarding facebook for blackberry. I cannot post any status update, i keep on receiving an error prompt "the facebook server has returned an unknown error and is not able to fulfill your request. (2001)".  it has been like this for the past 3 days. I already did the hard reboot many times, re-send service book though i do'nt think it's needed, and tried uninstalling and reinstalling the facebook application too but still getting the same error everytime i try to post a status update. I can comment to messages on my wall and other profiles, the news feed is updating in time too, i can also log-in and out to facebook with no problem, as well as other applications on my phone like foursquare, BBm, ubersocial, BB protect, BB app world, etc, are all working perfectly fine. And now I don't know what seems to be the problem.
    I've already contacted my network provider and told me that the error i'm getting is beyond their scope.
    Is anybody having the same problem as mine? 
    Can someone in BB support team help me regarding this issue and tell me what should I do?
    Thank you in advance. 

    I got the same issue !! Since I've updated my Facebook app 2 or 3 week ago !
    I can not  update my status and check-in ! It gives me "the facebook server has returned an unknown error and is not able to fulfill your request. (2001) "
    I can upload photo, put comment on people, like people status/picture. The news feed update perfectly !
    I also  tryied to uninstall reinstall the app, reboot etc etc ! I still can't update my status !!!! I've installed 3.0.0.17 this morning and the issue is still there...
    I've remarked one thing... On my facebook under "privacy setting/the Apps, Games and Websites" I used to have a "blackberry app" installed. It's not there anymore and I didn't remove it.
    I don't know how to reinstall it...

  • Upgrading Mail from 10.3.9 to 10.4.8 Server - Help Needed, Please

    Hi
    I posted a message a few weeks back with regard to this topic, but have had no replies. I don't seem to be any further on in solving this on my own, so I'm posting again in the hope that someone will be able to assist.
    I have an Xserve G4 running 10.3.9 which is a Open Directory Master, PDC and also acts as a Mail Server for our domain. The system software is installed on one 60gb drive in the Xserve and the Mail Store is on a second drive. All the Windows clients can log into the domain and their mail is on IMAP using Outlook as their client.
    I am now installing a second server in another office, and obviously this will be a new XServe running 10.4. I would like to make this an Open Directory Replica but now need to upgrade the first server to 10.4 before I can do this.
    Each attempt has been at the start of a weekend when staff have gone home, so that I can shutdown Mail and clone the Mail Store before proceeding.
    My first attempt was to install a new 10.4 installation onto a drive module and then attempt to upgrade the Mail. I removed the original 10.3.9 startup drive and I cloned the mail store drive before attempting and then followed the instructions given in this article:-
    http://docs.info.apple.com/article.html?artnum=301656
    When running the first part of this script, I get a socket error and don't seem to be able to get beyond this point.
    Next, I atttempted a straightforward upgrade. To do this, I again cloned the Mail Store onto another Drive Module, and so that I could roll back in case of problems, I also cloned the startup drive. Once this was done, I then removed the original drives for safety, booted and proceeded to upgrade the Server software from 10.3.9 to 10.4 performing all updates along the way.
    When I first booted, I had quite a lot of errors, DNS zones hadn't come over, and I had to kerberize the system, but after doing this and several restarts to cure other problems, all seemed to be OK, but then when I invoked Windows services and tried to log into the domain from a PC client, it failed saying the Domain Controller wasn't available, and the server log shows "Broken Pipe" errors and I cannot seem to resolve these issues. Server admin, also now loses connection with various services at intermittant times and I have to reboot.
    So, my conclusion is that the 10.3.9 installation on this server is way too flaky to be upgraded and I must find another way.
    Ideally, what I would like to do, is install a brand new 10.4 system onto the server, setting up DNS, Open Directory etc etc ensuring that my clients can log into the domain (copying their profile to the new account if necessary) and then upgrade the Mail once it is all stable. Can anyone help me with this by giving me a step by step guide? I am willing to pay for someone who knows how to do this if they can help me with a guide or perhaps even provide remote assistance.
    Thanks in advance
    Paul
    PowerBook G4 17"   Mac OS X (10.4.8)   G4 Xserve 1GHz, 1.5GB RAM, 10.3.9 Server

    They've never heard of a G4? That's shocking, perhaps you shouldn't go there anymore :P.
    OS X 10.5 requires at least an 867 MHz G4, unfortunately. You can upgrade to OS X Tiger (10.4) though (Just run software update after installation to get to 10.4.11).
    You can find Tiger cheap on eBay or the likes, note you must buy the full retail version which looks like this:
    http://jimbox.homedns.org/rants/images/uploads/tiger1.jpg

  • Report Server has encountered a SharePoint error.

    Hi,
    I am getting following error when i try to browse the reporting service url.
    http://servername/ReportServer
    Report Server has encountered a SharePoint error. The system cannot find the path specified. (Exception from HRESULT: 0x80070003)
    It is configured in sharepoint integrated mode.
    Created a site collection with "Business Intelligence Center" and published couple of reports and it gets renderd. Everything seems to be working except for browsing the reporting service URL.  Here is the Log info.
    ******************** Start LOG Info ********************************************************
    library!ReportServer_0-7!2b14!06/26/2012-03:26:56:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.SharePointException: , Microsoft.ReportingServices.Diagnostics.Utilities.SharePointException: Report Server has encountered a SharePoint
    error. ---> System.IO.DirectoryNotFoundException: The system cannot find the path specified. (Exception from HRESULT: 0x80070003)
       at Microsoft.SharePoint.Library.SPRequestInternalClass.OpenWebInternal(String bstrUrl, Guid& pguidID, String& pbstrRequestAccessEmail, UInt32& pwebVersion, String& pbstrServerRelativeUrl, UInt32& pnLanguage, UInt32& pnLocale,
    String& pbstrDefaultTheme, String& pbstrDefaultThemeCSSUrl, String& pbstrThemedCssFolderUrl, String& pbstrAlternateCSSUrl, String& pbstrCustomizedCssFileList, String& pbstrCustomJSUrl, String& pbstrAlternateHeaderUrl, String&
    pbstrMasterUrl, String& pbstrCustomMasterUrl, String& pbstrSiteLogoUrl, String& pbstrSiteLogoDescription, Object& pvarUser, Boolean& pvarIsAuditor, Int32& plSiteFlags, Boolean& pbOverwriteMUICultures, Boolean& pbMUIEnabled,
    String& pbstrAlternateMUICultures, Int32& puiVersion, Int16& pnClientTag)
       at Microsoft.SharePoint.Library.SPRequest.OpenWebInternal(String bstrUrl, Guid& pguidID, String& pbstrRequestAccessEmail, UInt32& pwebVersion, String& pbstrServerRelativeUrl, UInt32& pnLanguage, UInt32& pnLocale, String&
    pbstrDefaultTheme, String& pbstrDefaultThemeCSSUrl, String& pbstrThemedCssFolderUrl, String& pbstrAlternateCSSUrl, String& pbstrCustomizedCssFileList, String& pbstrCustomJSUrl, String& pbstrAlternateHeaderUrl, String& pbstrMasterUrl,
    String& pbstrCustomMasterUrl, String& pbstrSiteLogoUrl, String& pbstrSiteLogoDescription, Object& pvarUser, Boolean& pvarIsAuditor, Int32& plSiteFlags, Boolean& pbOverwriteMUICultures, Boolean& pbMUIEnabled, String& pbstrAlternateMUICultures,
    Int32& puiVersion, Int16& pnClientTag)
       at Microsoft.SharePoint.SPWeb.InitWebPublic()
       at Microsoft.SharePoint.SPWeb.get_ID()
       at Microsoft.ReportingServices.SharePoint.Objects.RSSPImpWeb.get_ID()
       at Microsoft.ReportingServices.SharePoint.Utilities.CatalogItemUtilities.CreateCatalogItem(RSSPWeb web)
       at Microsoft.ReportingServices.SharePoint.Server.SharePointDBInterface.InternalFindObjects(ExternalItemPath wssUrl, CatalogItemList& children)
       at Microsoft.ReportingServices.SharePoint.Server.SharePointDBInterface.FindObjectsNonRecursive(ExternalItemPath wssUrl, CatalogItemList& childList, Security secMgr, IPathTranslator pathTranslator, Boolean appendMyReports)
       --- End of inner exception stack trace ---;
    webserver!ReportServer_0-7!2b14!06/26/2012-03:26:56:: e ERROR: Reporting Services error Microsoft.ReportingServices.Diagnostics.Utilities.SharePointException: Report Server has encountered a SharePoint error. ---> System.IO.DirectoryNotFoundException:
    The system cannot find the path specified. (Exception from HRESULT: 0x80070003)
    *****************************  END LOG info  ***************************************
    Any help is greatly appreciated.
    Thanks and Regards,
    Manjunath

    Detach the contentdb from SP and then reattach it. To do that you'd run this command:
    STSADM -o deletecontentdb -url https://******.com -databasename whateverdb
    Then to add it back you'd do:
    STSADM -o addcontentdb url https://******.com -databasename whateverdb
    Thank you Mike Yin, I have confirmed that this solution works, I had the exact issue, my investigation steps are in this order:
    1. Verify if there is a orphaned site  (use stsadm.exe -o enumsites or stsadm -o enumallwebs or Test-SPContentDatabase
    2. On my case I found the site orphaned on the root url [/] so I cannot just do a stsadm -o deletesite -force -siteid, so I did is to Remove Content from the CA and then re-add the content db back using CA. (Application Management > open the affected
    Content DB and click the Remove content database checkbox. Then click Add a content Database, and re-add the same contentDB.
    3. Verify in the RS Config Manager and click the RS Web Service URL, to see if works.

  • Server service does not start, error 1075

    "Could not start the Server service on Local Computer - Error 1075:  The dependency  service does not exist or has been marked for deletion"
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Srv]
    "Type"=dword:00000002
    "Start"=dword:00000003
    "ErrorControl"=dword:00000001
    "Tag"=dword:00000006
    "ImagePath"=hex(2):73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,44,00,\
      52,00,49,00,56,00,45,00,52,00,53,00,5c,00,73,00,72,00,76,00,2e,00,73,00,79,\
      00,73,00,00,00
    "DisplayName"="Srv"
    "Group"="Network"
    "Description"="Srv"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Srv\Security]
    "Security"=hex:01,00,14,80,b8,00,00,00,c4,00,00,00,14,00,00,00,30,00,00,00,02,\
      00,1c,00,01,00,00,00,02,80,14,00,ff,01,0f,00,01,01,00,00,00,00,00,01,00,00,\
      00,00,02,00,88,00,06,00,00,00,00,00,14,00,fd,01,02,00,01,01,00,00,00,00,00,\
      05,12,00,00,00,00,00,18,00,ff,01,0f,00,01,02,00,00,00,00,00,05,20,00,00,00,\
      20,02,00,00,00,00,14,00,8d,01,02,00,01,01,00,00,00,00,00,05,04,00,00,00,00,\
      00,14,00,8d,01,02,00,01,01,00,00,00,00,00,05,06,00,00,00,00,00,14,00,00,01,\
      00,00,01,01,00,00,00,00,00,05,0b,00,00,00,00,00,18,00,fd,01,02,00,01,02,00,\
      00,00,00,00,05,20,00,00,00,23,02,00,00,01,01,00,00,00,00,00,05,12,00,00,00,\
      01,01,00,00,00,00,00,05,12,00,00,00
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Srv\Enum]
    "0"="Root\\LEGACY_SRV\\0000"
    "Count"=dword:00000001
    "NextInstance"=dword:00000001
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT]
    "Type"=dword:00000001
    "Start"=dword:00000001
    "ErrorControl"=dword:00000001
    "Tag"=dword:00000005
    "ImagePath"=hex(2):73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,44,00,\
      52,00,49,00,56,00,45,00,52,00,53,00,5c,00,6e,00,65,00,74,00,62,00,74,00,2e,\
      00,73,00,79,00,73,00,00,00
    "DisplayName"="NetBios over Tcpip"
    "Group"="PNP_TDI"
    "DependOnService"=hex(7):54,00,63,00,70,00,69,00,70,00,00,00,00,00
    "DependOnGroup"=hex(7):00,00
    "Description"="NetBios over Tcpip"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Linkage]
    "OtherDependencies"=hex(7):54,00,63,00,70,00,69,00,70,00,00,00,00,00
    "Bind"=hex(7):5c,00,44,00,65,00,76,00,69,00,63,00,65,00,5c,00,54,00,63,00,70,\
      00,69,00,70,00,5f,00,7b,00,45,00,42,00,33,00,44,00,36,00,31,00,41,00,42,00,\
      2d,00,43,00,30,00,43,00,38,00,2d,00,34,00,38,00,35,00,35,00,2d,00,41,00,37,\
      00,45,00,38,00,2d,00,42,00,46,00,38,00,38,00,32,00,36,00,33,00,37,00,32,00,\
      30,00,41,00,31,00,7d,00,00,00,5c,00,44,00,65,00,76,00,69,00,63,00,65,00,5c,\
      00,54,00,63,00,70,00,69,00,70,00,5f,00,7b,00,43,00,36,00,39,00,31,00,43,00,\
      30,00,42,00,35,00,2d,00,30,00,38,00,35,00,41,00,2d,00,34,00,35,00,41,00,41,\
      00,2d,00,39,00,36,00,42,00,35,00,2d,00,35,00,41,00,43,00,36,00,44,00,33,00,\
      37,00,35,00,35,00,36,00,33,00,39,00,7d,00,00,00,5c,00,44,00,65,00,76,00,69,\
      00,63,00,65,00,5c,00,54,00,63,00,70,00,69,00,70,00,5f,00,7b,00,38,00,34,00,\
      38,00,38,00,33,00,35,00,46,00,34,00,2d,00,33,00,37,00,41,00,41,00,2d,00,34,\
      00,32,00,44,00,39,00,2d,00,41,00,34,00,45,00,31,00,2d,00,34,00,41,00,46,00,\
      32,00,43,00,44,00,44,00,30,00,31,00,37,00,35,00,30,00,7d,00,00,00,5c,00,44,\
      00,65,00,76,00,69,00,63,00,65,00,5c,00,54,00,63,00,70,00,69,00,70,00,5f,00,\
      7b,00,45,00,38,00,33,00,34,00,42,00,34,00,41,00,38,00,2d,00,37,00,37,00,31,\
      00,46,00,2d,00,34,00,31,00,37,00,42,00,2d,00,38,00,33,00,46,00,39,00,2d,00,\
      39,00,39,00,39,00,32,00,42,00,38,00,41,00,43,00,41,00,43,00,45,00,42,00,7d,\
      00,00,00,00,00
    "Route"=hex(7):22,00,54,00,63,00,70,00,69,00,70,00,22,00,20,00,22,00,7b,00,45,\
      00,42,00,33,00,44,00,36,00,31,00,41,00,42,00,2d,00,43,00,30,00,43,00,38,00,\
      2d,00,34,00,38,00,35,00,35,00,2d,00,41,00,37,00,45,00,38,00,2d,00,42,00,46,\
      00,38,00,38,00,32,00,36,00,33,00,37,00,32,00,30,00,41,00,31,00,7d,00,22,00,\
      00,00,22,00,54,00,63,00,70,00,69,00,70,00,22,00,20,00,22,00,7b,00,43,00,36,\
      00,39,00,31,00,43,00,30,00,42,00,35,00,2d,00,30,00,38,00,35,00,41,00,2d,00,\
      34,00,35,00,41,00,41,00,2d,00,39,00,36,00,42,00,35,00,2d,00,35,00,41,00,43,\
      00,36,00,44,00,33,00,37,00,35,00,35,00,36,00,33,00,39,00,7d,00,22,00,00,00,\
      22,00,54,00,63,00,70,00,69,00,70,00,22,00,20,00,22,00,4e,00,64,00,69,00,73,\
      00,57,00,61,00,6e,00,49,00,70,00,22,00,00,00,00,00
    "Export"=hex(7):5c,00,44,00,65,00,76,00,69,00,63,00,65,00,5c,00,4e,00,65,00,74,\
      00,42,00,54,00,5f,00,54,00,63,00,70,00,69,00,70,00,5f,00,7b,00,45,00,42,00,\
      33,00,44,00,36,00,31,00,41,00,42,00,2d,00,43,00,30,00,43,00,38,00,2d,00,34,\
      00,38,00,35,00,35,00,2d,00,41,00,37,00,45,00,38,00,2d,00,42,00,46,00,38,00,\
      38,00,32,00,36,00,33,00,37,00,32,00,30,00,41,00,31,00,7d,00,00,00,5c,00,44,\
      00,65,00,76,00,69,00,63,00,65,00,5c,00,4e,00,65,00,74,00,42,00,54,00,5f,00,\
      54,00,63,00,70,00,69,00,70,00,5f,00,7b,00,43,00,36,00,39,00,31,00,43,00,30,\
      00,42,00,35,00,2d,00,30,00,38,00,35,00,41,00,2d,00,34,00,35,00,41,00,41,00,\
      2d,00,39,00,36,00,42,00,35,00,2d,00,35,00,41,00,43,00,36,00,44,00,33,00,37,\
      00,35,00,35,00,36,00,33,00,39,00,7d,00,00,00,5c,00,44,00,65,00,76,00,69,00,\
      63,00,65,00,5c,00,4e,00,65,00,74,00,42,00,54,00,5f,00,54,00,63,00,70,00,69,\
      00,70,00,5f,00,7b,00,38,00,34,00,38,00,38,00,33,00,35,00,46,00,34,00,2d,00,\
      33,00,37,00,41,00,41,00,2d,00,34,00,32,00,44,00,39,00,2d,00,41,00,34,00,45,\
      00,31,00,2d,00,34,00,41,00,46,00,32,00,43,00,44,00,44,00,30,00,31,00,37,00,\
      35,00,30,00,7d,00,00,00,5c,00,44,00,65,00,76,00,69,00,63,00,65,00,5c,00,4e,\
      00,65,00,74,00,42,00,54,00,5f,00,54,00,63,00,70,00,69,00,70,00,5f,00,7b,00,\
      45,00,38,00,33,00,34,00,42,00,34,00,41,00,38,00,2d,00,37,00,37,00,31,00,46,\
      00,2d,00,34,00,31,00,37,00,42,00,2d,00,38,00,33,00,46,00,39,00,2d,00,39,00,\
      39,00,39,00,32,00,42,00,38,00,41,00,43,00,41,00,43,00,45,00,42,00,7d,00,00,\
      00,00,00
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters]
    "NbProvider"="_tcp"
    "NameServerPort"=dword:00000089
    "CacheTimeout"=dword:000927c0
    "BcastNameQueryCount"=dword:00000003
    "BcastQueryTimeout"=dword:000002ee
    "NameSrvQueryCount"=dword:00000003
    "NameSrvQueryTimeout"=dword:000005dc
    "Size/Small/Medium/Large"=dword:00000001
    "SessionKeepAlive"=dword:0036ee80
    "TransportBindName"="\\Device\\"
    "EnableLMHOSTS"=dword:00000001
    "EnableProxy"=dword:00000002
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters\Interfaces]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters\Interfaces\Tcpip_{848835F4-37AA-42D9-A4E1-4AF2CDD01750}]
    "NameServerList"=hex(7):00,00,00,00
    "RASFlags"=dword:00000001
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters\Interfaces\Tcpip_{C691C0B5-085A-45AA-96B5-5AC6D3755639}]
    "NameServerList"=hex(7):00,00
    "NetbiosOptions"=dword:00000002
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters\Interfaces\Tcpip_{E834B4A8-771F-417B-83F9-9992B8ACACEB}]
    "NameServerList"=hex(7):00,00
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters\Interfaces\Tcpip_{EB3D61AB-C0C8-4855-A7E8-BF88263720A1}]
    "NameServerList"=hex(7):00,00
    "NetbiosOptions"=dword:00000002
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Security]
    "Security"=hex:01,00,14,80,e8,00,00,00,f4,00,00,00,14,00,00,00,30,00,00,00,02,\
      00,1c,00,01,00,00,00,02,80,14,00,ff,01,0f,00,01,01,00,00,00,00,00,01,00,00,\
      00,00,02,00,b8,00,08,00,00,00,00,00,14,00,8d,01,02,00,01,01,00,00,00,00,00,\
      05,0b,00,00,00,00,00,18,00,9d,01,02,00,01,02,00,00,00,00,00,05,20,00,00,00,\
      23,02,00,00,00,00,18,00,ff,01,0f,00,01,02,00,00,00,00,00,05,20,00,00,00,20,\
      02,00,00,00,00,18,00,ff,01,0f,00,01,02,00,00,00,00,00,05,20,00,00,00,25,02,\
      00,00,00,00,14,00,fd,01,02,00,01,01,00,00,00,00,00,05,12,00,00,00,00,00,14,\
      00,40,00,00,00,01,01,00,00,00,00,00,05,13,00,00,00,00,00,14,00,40,00,00,00,\
      01,01,00,00,00,00,00,05,14,00,00,00,00,00,18,00,9d,01,02,00,01,02,00,00,00,\
      00,00,05,20,00,00,00,2c,02,00,00,01,01,00,00,00,00,00,05,12,00,00,00,01,01,\
      00,00,00,00,00,05,12,00,00,00
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Enum]
    "0"="Root\\LEGACY_NETBT\\0000"
    "Count"=dword:00000001
    "NextInstance"=dword:00000001
    c:\windows\system32\drivers
    srv.sys
    5.2.3790.4832 (srv03_sp2_gdr.110217-0526)
    mrxsmb.sys
    5.2.3790.4883 (srv03_sp2_gdr.110706-0334)
    rdbss.sys
    5.2.3790.4671 (srv03_sp2_gdr.100224-1541)

    Hi jenhwa,
    Please run
    sfc /scannow command to scan all protected system files. Any find?
    In addition, please type
    Regedit in RUN to open Registry Editor, then follow the path:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer
    Please right-click the
    DependOnService entry, and then click "Modify...".
    In the Value data box, please check if just has
    SamSSand
    Srv services.
    In addition, please check the System event log if find relevant errors.
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Apps tab of Creative Cloud desktop helper constantly displays "Download error. press retry or contact customer support". I've quit CC desktop helper, restarted computer, checked network settings, relogged in. Cannot download any new apps or updates. HELP

    Apps tab of Creative Cloud desktop helper constantly displays "Download error. press retry or contact customer support". As well as reloading, I've also quit CC desktop helper, restarted computer, checked network settings, relogged in. Cannot download any new apps or updates. please help.
    System: Mac OSX 10.9.4. 3.4ghz intel core i7, 8gb ram

    Hello,
    Adobe has brought these new links in this matter:
    Troubleshoot Creative Cloud download and install issues and
    App doesn’t open; progress wheel spins continually
    Please have a look there. If necessary and for further questions click through http://helpx.adobe.com/contact.html and if "open" please use chat, I had the best experiences. I quote from Preran: The chat button is activated as soon as there is an agent available to help.
    Good luck!
    Hans-Günter

  • Bump VMware Server 1.0.7 Latest error --Not enough memory...

    VMware Server Help Post
    Platform:
    Intel core 2 Duo E2168.
    2G ram, but 1/2 just went missing. If this is causing my problems, the mind wobbles, yet it's easy to fix, yay!
    Lots of harddrives! Lots of harddrive space.
    gigabit eth.
    Nvidia 7600GS 512MB
    Highpoint raid card (soft) 132Gigs for VMs
    Archlinux w/ 2.6.26.3-1 kernel
    kernel-headers 2.6.25.8-1
    History:
    Four weeks ago--
    Patched and installed VMware Server 1.0.5 on Archlinux with kernel 2.6.25... everything worked well. Bliss!
    About 2 weeks ago--
    Upgraded kernel to 2.6.26... time suck began.
    Current status:
    After banging on VMware and vmmon patch and source code for a while,
    now have on kernel 2.6.26-arch--
    VMware Server 1.0.7 with patch ...117d, modified as follows:
        In .../vmmon-only/include/iocontrols.h
    line 48 #define VMMON_VERSION           (168 << 16 | 0)   changed to:
    line 48 #define VMMON_VERSION           (138 << 16 | 0)
    Patch reasoning [limited newb alert]:
    Without 117d, vmmon fails to compile with error re: .nopage
    With 117d, vmmon compiles and installs successfully but VMs
      won't start with error re: expect version 138 got 168
    With patch modified, now past the version error, but getting the error:
    Not enough physical memory is available to power on this virtual machine.
    To fix this problem, power off other virtual machines                      [No others on]
       or adjust the additional memory settings to allow more virtual machine
       memory to be swapped                                   [There's plenty of memory]
    If you were able to power on this virtual machine on this host computer
       in the past, try rebooting the host computer. Rebooting may allow you
       to use slightly more host memory to run virtual machines.                [Rebooting had no effect]
    In log:
    Failed to connect to vm: /mnt/VMs/Test Booger/Test Booger.vmx
    vmdbPipe_Streams Couldn't read: OVL_STATUS_EOF
    Error during launch: 11, The process exited with an error:
    End of error message
    Operation failed to change the VM to the expected power state.
    Not enough physical memory is available to power on this virtual machine.
    To fix this problem, power off other virtual machines                      [No others on]
       or adjust the additional memory settings to allow more virtual machine
       memory to be swapped                                   [There's plenty of memory]
    If you were able to power on this virtual machine on this host computer
       in the past, try rebooting the host computer. Rebooting may allow you
       to use slightly more host memory to run virtual machines.                [Rebooting had no effect]
    There's plenty of memory and disk free space--
    top -b >> top_out
    top - 06:59:46 up 40 min,  0 users,  load average: 0.02, 0.05, 0.03
    Tasks: 113 total,   1 running, 112 sleeping,   0 stopped,   0 zombie
    Cpu(s):  1.1%us,  0.5%sy,  0.0%ni, 97.2%id,  1.2%wa,  0.0%hi,  0.0%si,  0.0%st
    Mem:   1034920k total,   441944k used,   592976k free,    17604k buffers
    Swap:  2000084k total,        0k used,  2000084k free,   227224k cached
    df -ha
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/sda3              72G   44G   25G  65% /
    /dev/sdc1              20G   12G  7.5G  61% /mnt/home2
    /dev/mapper/hpt45x_dcafabbcai1
                          153G   21G  132G  14% /mnt/VMs
    I reduced host memory settings to 408MB and guest to 256MB as a test.            [No effect]
    After the tests I've done, I don't believe this error really has anything to do with low memory.
    I don't know whether this is a bug, a patch problem, or, or, or, or .....
    And so I post.
    What next?
    thanx in advance.
    Last edited by maxbally (2008-09-15 23:33:21)

    Hi Mike,
    Mike23 wrote:
    Hi, I  develop the device which reads the data on TCP(I use ftp://ftp.ni.com/pub/devzone/epd/stm_2.0_installer​.zip)
     from crio and then displays them on  7 waveform chart ( 5 chart with 150000 history length and 2 with 600 - 1 minute of  measurements) and 2 xy graph. After 10 minutes of work there is an error “not enough memory to complete this operation”. On the WIndows Task manger I have seen that there is a filling RAM approximately from 45 % up to 72 % then the mistake jumps out. But I do not know why. Help please.  Labview 8.6Windows Vista3 GB RAMP.S. Forgive for bad English.
    It's likely that instead of trying to plot 5 charts with 150000 data-points, you're trying to plot 150000charts with 5 data-points!  Try right-clicking on the chart - do you see "Transpose Array" property? If it's checked, UNcheck it (if UNchecked, check it!)
    Cheers!
    "Inside every large program is a small program struggling to get out." (attributed to Tony Hoare)

  • Error in File (report server\ report.rpt):  Database Connector Error

    New installation of XI R2 - using Crystal Reports Version 11.5.8.826 for developement against Oracle DB.
    Currently have around 20 reports running on XI (need to import ~1500 reports from Crystal Enterprise 10, but waiting to resolve this issue)
    Some reports sometimes (not always) get the following error:
    Error in File (report server\ report.rpt):  Database Connector Error
    If the report is re-scheduled, report will sometime run fine and sometimes gets the same error again.
    There seems to be no logical way to determine which parameters will cause the report to fail or when.
    I'm experiencing the problem on about 3 reports only - All against the same DB and only occassionally.  These 20 reports were developed with CR XI and all run against the same Oracle DB.

    I've got the same problem- the reports run fine in Crystal, but sometimes (not everytime) they fail in InfoView with "Database Connector Error" message. My report doesn't contain any data, just 8 sets of 4 subreports in different footer sections, which each connect to a different stored procedure. The report is to help with our server checks: we have a set of 4 different stored procedures which run on each of 8 different servers making 32 different SPs and there is a subreport in this report for each.
    It does seem to be random whether this problem occurs or not- I have scheduled the report to run regularly (1 recurring instance) and sometime it works, sometimes not, but always the same failure message. I have increased the success rate by allowing the report to re-try on failure, but this does take time, and isn't really curing the problem.
    I wonder whether this error could be caused by a delay in one of the SPs returning its data, and the report timing out since no data is being returned. Would anyone know whether this is likely to be the cause, and if so how to fix it? Or any suggestions what else it could be?
    Thanks,
    Tom

Maybe you are looking for