Applocker for server as a client

Hi Guys,
I wanted to know the recommendation and Best Practice for Applocker where Windows server 2012 R2 is the Client and not windows 7 as we have windows 7 client as applocker but i want to apply applocker for server as a Client
Please help
Thank you
Viraj
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Hi Viraj,
>>I wanted to know the recommendation and Best Practice for Applocker where Windows server 2012 R2 is the Client and not windows 7 as we have windows 7 client as applocker but i want to apply applocker for server as a Client
This depends on what we want to achieve but not if the operating system is a server or workstation. However, for Windows Server 2012/R2 or Windows 8/8.1, there are added functions for Applocker.
In Windows Server 2008 R2 and Windows 7, we can manage four types of files: executable (.exe), Windows Installer (.msi and .msp), script (.bat, .cmd, .js, .ps1, and .vbs), and DLL (.dll and .ocx). Each of these file types is managed in
its own rule collection.
In Windows Server 2012 and Windows 8, in addition to the file types, we can manage .mst and .appx files with AppLocker.
Regarding Applocker and its rule behavior, the following articles can be referred to for more information.
AppLocker: Frequently Asked Questions
http://technet.microsoft.com/en-us/library/ee619725(v=WS.10).aspx
AppLocker Overview
http://technet.microsoft.com/library/hh831440.aspx
Understanding AppLocker Rules
http://technet.microsoft.com/en-us/library/dd759068.aspx
Best regards,
Frank Shen

Similar Messages

  • Can i use same Server for server side and client??

    Hi,
    i m developing webservices in java and using two different server for server side and client.
    e.g. i m using one tomcat server on a machine to run webservice and again using one more tomcat server on client side at different machine.
    and hence it need two tomcat server.
    But i want only one server to run webservice and client.
    So please help me out...
    Thanks

    Hi,
    It is always recommended to maintain different servers
    REgards,
    Ravi.

  • I need code example for server act as client and vice versa

    Hi all,
    I want code example for performing both server and clients using RMI. I mean Server will act as client and client will act as server. So a single program will act as both client and server .
    Please give example, it will helpful to complete my project. I am struggling in this stage. Its like peer to peer action.
    Thanks & Regards
    R.Ragupathi

    1. The tutorial shows you how to do cleint/server.
    2. Search on the topic "callback" to see how cleint and server roles can be reversed.

  • Begging for help. SSLSocket client/server

    Hello Everyone,
    At my wits end and behind my project plan. I need to secure my server.
    I have generated a keystore
    Exported certificate into CER file
    Imported this certicate into the JAVA_HOME/lib/security/cacerts file.
    I have my JBoss secured on port 8443.
    Here is m client code
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStreamWriter;
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.IOException;
    import javax.net.ssl.SSLSocket;
    import javax.net.ssl.SSLSocketFactory;
    public
    class EchoClient
    public
    static
    void
    main(String [] arstring)
    try
    SSLSocketFactory sslsocketfactory = (SSLSocketFactory)SSLSocketFactory.getDefault();
    SSLSocket sslsocket = (SSLSocket)sslsocketfactory.createSocket("172.16.220.178:8443", 9999);
    InputStream inputstream = System.in;
    InputStreamReader inputstreamreader = new InputStreamReader(inputstream);
    BufferedReader bufferedreader = new BufferedReader(inputstreamreader);
    OutputStream outputstream = sslsocket.getOutputStream();
    OutputStreamWriter outputstreamwriter = new OutputStreamWriter(outputstream);
    BufferedWriter bufferedwriter = new BufferedWriter(outputstreamwriter);
    String string = null;
    while ((string = bufferedreader.readLine()) != null)
    bufferedwriter.write(string + '\n');
    bufferedwriter.flush();
    catch (Exception exception)
    exception.printStackTrace();
    and here is my server code
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStreamWriter;
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.IOException;
    import javax.net.ssl.SSLSocket;
    import javax.net.ssl.SSLSocketFactory;
    public
    class EchoClient
    public
    static
    void
    main(String [] arstring)
    try
    SSLSocketFactory sslsocketfactory = (SSLSocketFactory)SSLSocketFactory.getDefault();
    SSLSocket sslsocket = (SSLSocket)sslsocketfactory.createSocket("172.16.220.178:8443", 9999);
    InputStream inputstream = System.in;
    InputStreamReader inputstreamreader = new InputStreamReader(inputstream);
    BufferedReader bufferedreader = new BufferedReader(inputstreamreader);
    OutputStream outputstream = sslsocket.getOutputStream();
    OutputStreamWriter outputstreamwriter = new OutputStreamWriter(outputstream);
    BufferedWriter bufferedwriter = new BufferedWriter(outputstreamwriter);
    String string = null;
    while ((string = bufferedreader.readLine()) != null)
    bufferedwriter.write(string + '\n');
    bufferedwriter.flush();
    catch (Exception exception)
    exception.printStackTrace();
    How can I get this client/server talking using my own keystore. ????
    I only need my server to be secured. I dont need any client authentication or anything. I just need my client to connect using Sockets to a secure server.
    Thanks.
    Desperate Joyce

    Ok, you can't secure a server, you can only sercure the connection between them. That means either the client needs who it is talking to or the server needs to know who it is talking to. You can have a ssl connection where nobody knows who they are talking to as well if you want. I'll go through it for server authentication by client. If you need it the other way around the same principle holds. Give me an hour and I'll put up the code for a connection without auth.
    Ok, if you need to authenticate the server.
    In the client you will need to have a keystore for trusted certificates (i.e. cacerts)
    You will need a trustmanager to decide whether or not to trust the server.
    And using both of these you need to create as ssl context.
    On the server, you will need a keystore containing its X509 certificates
    A keymanager to manage these certificate and again an SSL context.
    Then start the handshake. The client will connect to the server using an SSL Socket.
    On the starthandshake() method, the server will sent the client its X509 certificates from its
    keystore. The clients trust manager will then try to create a certificate chain from these certificates
    back to one of its trusted certificates (stored in its trusted keystore).
    Client should look a little like this:
    SSLContext ctx;
         TrustManagerFactory tmf;
         KeyStore ks;
         char[] passphrase = "passphrase".toCharArray();
         System.out.println("set up context, keystore and trustManagerFactory");
         ctx = SSLContext.getInstance("SSL");
         tmf = TrustManagerFactory.getInstance("SunX509");
         ks = KeyStore.getInstance("JKS");
                         System.out.println("set context to ssl, tmf to X509 and keystore to JKS");
         ks.load(new FileInputStream("testkeys"), passphrase);
         System.out.println("loading testkeys using passphrase");
         tmf.init(ks);
         System.out.println("initialise keystore using passphrase");
         ctx.init(null, tmf.getTrustManagers(), null);
         System.out.println("initialise the key manager");
         SSLSocketFactory factory = ctx.getSocketFactory();
         System.out.println("got socket factory, now trying to create socket");
                          SSLSocket socket = (SSLSocket)factory.createSocket(serverAddress, port);
                         System.out.println("starting handshake");
         socket.addHandshakeCompletedListener(new HandshakeCompletedListener()
                               public void     handshakeCompleted(HandshakeCompletedEvent event)
                   System.out.println("Handshake finished!");
                   System.out.println("\t CipherSuite:" +
                   event.getCipherSuite());
                   System.out.println("\t SessionId " +
                   event.getSession());
                   System.out.println("\t PeerHost " +
                   event.getSession().getPeerHost());
         socket.startHandshake();
         System.out.println("SSL Socket Connected");
         catch (Exception e)
              System.out.println("error along the way somewhere :" + e.getMessage());
                              e.printStackTrace();
        }The Server will look a little like this:
    //=================================================================================
    SSLServerSocketFactory ssf = null;
    try
                         SSLContext ctx;
         KeyManagerFactory kmf;
         KeyStore ks;
         char[] passphrase = "passphrase".toCharArray();
                         System.out.println("set up context, keystore and keymanagerfactory");
         ctx = SSLContext.getInstance("SSL");
         kmf = KeyManagerFactory.getInstance("SunX509");
         ks = KeyStore.getInstance("JKS");
         System.out.println("set context to ssl, kmf to X509 and keystore to JKS");
         ks.load(new FileInputStream("testkeys"), passphrase);
         System.out.println("loading testkeys using passphrase");
         kmf.init(ks, passphrase);
         System.out.println("initialise keystore using passphrase");
         ctx.init(kmf.getKeyManagers(), null, null);
         System.out.println("initialise the key manager");
         ssf = ctx.getServerSocketFactory();
         System.out.println("got the server socket factory for that context");
    catch (Exception ex)
         System.out.println("Error along the way somewhere : " + ex.getMessage());
         ex.printStackTrace();
    try
         SSLServerSocket ss = (SSLServerSocket) ssf.createServerSocket(port);
         System.out.println("created ssl server socket for port " + port);
         myServer serve = new myServer(ss);
    catch(IOException e)
               System.out.println(e.getMessage());
                 e.printStackTrace();
                 System.exit(1);
    }where myServer is this:
    import java.net.*;
    import javax.net.*;
    import javax.net.ssl.*;
    public class myServer implements Runnable {
    private ServerSocket server = null;
    public myServer(SSLServerSocket ss)
                         System.out.println("Created myServer instance with server socket");
         server = ss;
         newListener();
        private void newListener()
         System.out.println("Created new listener");
             (new Thread(this)).start();
        public void run()
         System.out.println("Listening for connections");
             Socket socket;
             try
              System.out.println("Trying to accept connection");
                                     socket = server.accept();
                                  System.out.println("Accepted Connection, starting handshake");
                                  ((SSLSocket)socket).addHandshakeCompletedListener(new HandshakeCompletedListener()
                   public void     handshakeCompleted(HandshakeCompletedEvent event)
                        System.out.println("Handshake finished!");
                        System.out.println("\t CipherSuite:" +
                        event.getCipherSuite());
                        System.out.println("\t SessionId " +
                        event.getSession());
                        System.out.println("\t PeerHost " +
                        event.getSession().getPeerHost());
                                  ((SSLSocket)socket).startHandshake();
             catch (IOException e)
                 System.out.println("Class Server died: " + e.getMessage());
                 e.printStackTrace();
                 return;
             newListener();
    }Most of this code came from the sun website, just a couple of tweaks for it to do what I wanted it to.

  • Forum label for Server/Client

    Mac OS X Server posts frequently end up in the Mac OS X Client forum. Perhaps a link in the Client forum to the Server category could help, or labelling the Client 10.6, 10.5, 10.4, 10.3 and earlier forums "Client" so people don't mispost anything for Server could help prevent posts for Server ending up in Client?
    Or perhaps a Server category could be put together with the Mac OS X and related software?
    Or perhaps in the Mac OS X support pages, a link to Server category could be added?
    Just some suggestions.

    a brody,
    Except for rare exceptions the forum and category names match the actual product marketing name. The server forums are marked as server and we will happily move the occasional post that shows up in the client section when it occurs.
    -Eric W.

  • Custom protocol handler for Server and Client

    Hi there,
    I have been reading about "A New Era for Java Protocol Handlers" from http://java.sun.com/developer/onlineTraining/protocolhandlers/ . I would like to redesign my existing codes to suit this architecture.
    The article mentioned about write client side application. I am wondering whether it will be possible to use the same architecture for server side as well ?
    If it is possible, it will be the very kind of you all to guide me to the right direction. Thank you in advance.

    Thanks for your input. Yeah, the article has been there for quite sometimes. That's why I am a bit sceptical about using it. The strange thing is that there has not been any updates about this topic since then (searched in google and not many web pages are mentioning this thing). I am wondering whether it is a good choice to change the code or not.

  • Apache 2.2 21 forward Proxy 2 way SSL for weblogic server as a client

    Hi All,
    Currently, i am trying to implement a forward SSL proxy. The client will hit my apache server which in return will hit a IIS Server.
    scenarios 1
    client(weblogic)--*2 way SSL*Apache(forward proxy)*2 way SSL*-- IIS
    If i were to implement 1 way ssl, i am able to see the content of the website.
    client(weblogic) --- Apache(forward proxy) --- IIS
    If i were to launch the web browser from the client machine (with the client certificate imported in the browser), i am able to view the content in the IIS. But if i were to simulate the connection from weblogic server, it just give me end of file exception (response contain no data) on the logs.
    Below is my configuration
    Listen 8080
    <VirtualHost default:8080>
    ServerName serverA
    ErrorLog "logs/ssl_error_log"
    CustomLog "logs/ssl_access_log" common
    SSLProxyEngine On
    SSLProxyMachineCertificateFile /certificate/servercert.cer
    SSLProxyCACertificateFile /certificate/rootCA.cer
    SSLProxyVerify require
    SSLProxyVerifyDepth 10
    ProxyRequests On
    ProxyVia On
    AllowConnect 12345
    <Proxy *>
    Order allow,deny
    Allow from all
    </Proxy>
    </VirtualHost>
    For 2 way SSL, will the client forward their client certificate to my apache proxy server and apache will on the client behalf forward the client certificate to the IIS server for authenication?
    Or the SSL authenication still happen between the client (weblogic) and the end server (IIS) bypassing the proxy server.
    Please help.

    It is a domain wide setting. Can you not create a new domain? I do not think that you can handle it from web.xml. I have never seen such thing in web.xml.

  • FDS for server push + client to client

    Just want to double check - if I was to create a chat like
    app in Flex - where new messages are "pushed" to clients, this
    would require FDS.

    Using FDS would be the far easiest way to implement a chat
    application.
    Theoretically you could implement a chat application without
    FDS by having each client poll the server for messages for new
    messages for that client using HTTPService or WebService.
    You can also do "poor man's data push" using a long-lasting
    HTTP request - in this pattern each client posts an HTTP request
    that it doesn't expect and immediate response to - when the server
    has a message for the client is sends the response (perhaps a long
    time later). In the client's event handler for the response the
    client posts another request (so that the server has a means of
    "pushing" data to the client). This is how Blackberry-style email
    works in Windows Mobile (in the absence of a proper data push
    protocol).
    Sean
    Neville's Introduction to the Flex Message Service has a good
    example of how to write a chat application in FDS.
    Graeme Harker's Flex.NET
    Blog

  • Using MDT 2013 for deploying Software from MDT Server to PC Client automatically and silently ?

    I have a trouble about deploying software from MDT 2013 server to PC Client , Can we using MDT 2013 for deploying software automatically and silently , that Users/Clients don't have to click "next,next" to install software ?
    If you have a solutions to deploying it , please share me about that solutions ?
    Thanks.
     

    you can make software silently with boot opción:
    with chocolatey opensource.
    or make software with switches
    here link to help you:
    http://blogs.itpro.es/octaviordz/2014/05/29/instalando-aplicaciones-con-chocolatey
    http://blogs.itpro.es/octaviordz/2014/06/05/integrando-chocolatey-a-mdt-2013-e-instalando-aplicaciones-de-forma-desatendida-en-windows-8-1/
    http://blogs.itpro.es/octaviordz/2014/10/31/probando-chocolatey-en-windows-10
    http://blogs.itpro.es/octaviordz/2012/07/10/aplicaciones-desatendidas
    MVP Jesús Octavio Rdz http://blogs.itpro.es/octaviordz

  • How can connect different ejb server in one client program

    hi , every
    i want to make connect ejb server into one client program.
    for that , but i try to change PROVIDER_URL property , it's not correct
    who solve this problem for novice? :(

    You need to create separate initialContext to each of the different servers
    and lookup up the different ejbs.
    -Sabha
    "inking" <[email protected]> wrote in message
    news:[email protected]..
    hi , every
    i want to make connect ejb server into one client program.
    for that , but i try to change PROVIDER_URL property , it's not correct
    who solve this problem for novice? :(

  • Sockets: How can server detect that client is no longer connected?

    Hi,
    I really need help and advice with the following problem:
    I have a Client - Server socket program.
    The server listens on port 30000 using a server socket on one machine
    The client connects to localhost on port 20000, previously creating an ssh port forward connection using the Jsch package from www.jcraft.com with
    "session.setPortForwardingL(20000, addr, 30000);"
    Then the client sends Strings to the server using a PrintWriter.
    Both are connected to each other through the internet and the server uses a dynamic dns service.
    This all works well until the IP address of the Server changes, The client successfully reconnects to the server using the dynamic dns domain name, but the server keeps listening on the old socket from the previous connection, while opening a new one for the new client connection. The server doesn't seem to notice that Client has disconnected because of this IP address change.
    looks like the server is stuck inside the while loop. If i cut the connection manually on the client side, the server seems to notice that the client has disconnected, and jumps out of the while look (see code below)
    this is the code I'm using for the server:
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.net.Socket;
    import java.util.logging.Logger ;
    public class SocketHandler extends Thread {
        static Logger logger = Logger.getLogger("Server.SocketHandler");
        private Socket clientSocket = null;
        private BufferedReader in = null;
        private InputStreamReader inReader = null;
        public SocketHandler(Socket clientSocket) throws IOException {
            this.clientSocket = clientSocket;
            inReader = new InputStreamReader(clientSocket.getInputStream ());
            in = new BufferedReader(inReader);
        public void run() {
            try {
                String clientMessage = null;
                while ((clientMessage = in.readLine()) != null) {
                    logger.info("client says: " + clientMessage);
            } catch (IOException e) {
                logger.severe(e.getMessage());
                e.printStackTrace();
            } finally {
                try {
                    logger.info("closing client Socket: " + clientSocket);
                    clientSocket.close();
                    in.close();
                    ServerRunner.list.remove(clientSocket);
                    logger.info("currently "+ServerRunner.list.size()+" clients connected");
                } catch (IOException e) {
                    logger.severe (e.getMessage());
                    e.printStackTrace();
    }I've tried making the server create some artificial traffing by writing some byte every few seconds into the clients OutputStream. However I get no exceptions when the IP address changes. The server doesn't detect a disconnected socket connection.
    I'd really appreciate help and advice

    If a TCP/IP peer is shut down "uncleanly", the other end of the connection doesn't get the final end of connection packet, and read() will wait forever. close() sends the final packet, as will killing the peer process (the OS does the close()). But if the OS crashes or for some other reason can't send the final packet, the server never gets notification that the peer has gone away.
    Like you say, one way is timeout, if the protocol is such that there always is something coming in at regular intervals.
    The other way is a heartbeat. Write something to the other end periodically, just some kind of "hello, I'm here, ignore this message". The other end doesn't even have to answer. If the peer has gone away, TCP will retransmit your heartbeat message a few times. After about a minute it will give up, and mark the socket as broken. read() will then throw an IOException. You could send heartbeats from the client too, so that the client detects if the server computer dies.
    TCP/IP also has a TCP-level heartbeat; see Socket.setKeepAlive(). The heartbeat interval is about two hours, so it takes it a while to detect broken connections.

  • Regarding mountain lion server: clients experience intermittent service connections. the server system log has the following error- Client handshake failed (6):113: Server not accepting client connections (any ideas???)

    regarding mountain lion server: clients experience intermittent service connections. the server system log has the following error- Client handshake failed (6):113: Server not accepting client connections. any suggestions would be greatly appreciated - thank you

    Hi Jason
    I was getting the same behavior after Apple support had me delete some plist files to get Airplay going. I was also getting the following error:
    the error occurred while processing a command of type 'writesettings' in the plug-in 'server vpn'
    I went into ~/Library/Preferences/ and /Library/Preferences/ and deleted every plist contating the word server. I had to re-set up my server (meaning walk through some intial steps) but all of my settings were still there after that and everything started working again.
    Just a thought, obviously try at your own risk but it worked for me.
    Kellen

  • How to control one server with multiple clients via TCP/IP

    I am wanting to control a single server with multiple clients.  Only one client would be active at a time, so there would be no conflict.  I want to use TCP/IP.  So far, I have programmed a cluster that passes data back to the server with no problems.  The challenge come in when a second client is added to the mix.  I have't been able to figure out how to turn each client on and send the appropriate data and then turn it off so it doesn't keep sending the same data to the server. 
    Here are the things that I have considered and did some preliminary testing, but don't really know how to impliment:
    1.  Send a numeric on the front of the cluster packet that tells the server that data is on the way.
    2.  Send a boolean on the front of the cluster packet to somehow turn the server TCP/IP on.
    The problem I have found is that LabVIEW TCP/IP doesn't like to be turned on and off.  If it doesn't get the data it expects, it goes into a reset mode and that kills the response time.
    Any help?

    You should consider implementing a set of simple one-byte commands that can be sent back and forth between the Server and the Clients. You can base all of these ideas off the example in the Example Finder under Networking >> TCP and UDP called Multiple Connections - Server.
    You will have two loops in the server VI: one to wait for new connections, and one to send and receive data from the existing connections. For instance, after one of the clients connects, it can request control of the server to send data to it by sending the character "R" for request. Every time the send/receive loop of the Server executes, the first thing it can do is to check all the existing connections to see if any of the clients have sent a control request ("R"). If so, it will create a buffer (array) of control requests. This could be in the form of Connection IDs or indexes in the array for a particular Connection ID. Your choice.
    After the Server receives a request for contol, if it is not already under control by another client, then it can send a response to the first client on the control request list. For instance, the server could send the first client a "S" command for send. Note that after the clients send their control request, they should execute a TCP Read and wait indefinitely for the server to respond with the one-byte "S" command. Then, once the client in control is finished sending data to the server, it could send the character "X" telling the Server to release it from control.
    The example I mentioned above already does a similar thing. Note how when a client wants to disconnect, they send the letter "Q". You can see this in the Multiple Connections - Client VI. The Server then checks each individual connection to see if it's received this one-byte command, and if it has, it closes the connection to the client. This is what you would want to implement, but instead of having just one command, you'll have to distinguish between a few and build up a buffer of control requests.
    Finally, if a client does decide to disconnect in your application, they could send the command "Q" just like the example above. At this point, close the connection and remove that Connection ID from the array of connections. You will also have to handle the case that this client was in the request control waiting line when it disconnected, in which case you need to delete it from that array as well.
    This will definitely work for you, but it will take some work. Best of luck!
    Jarrod S.
    National Instruments

  • Copy a file from server to the client - URLConnection to a Portal page

    Hello:
    I have an application running on the client side. When the app startup it must open a file which is at the server side, to be more specific, the file is at KM content of the portal.
    I try to read it with URLConnection to copy the file from the server to the client, the app will do it, but "Server returned HTTP response code: 401 for URL:"
    If you copy&paste the url's file directly on the browser (http://host:port/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/ImagenesIM/file.txt) a login popup (look and feel windows) is display. After entering the user and psw the file is open without problem.
    Any idea what can I use or how do it ?.
    I think that probably I have to move the app to a was directory instead of portal directory.
    The app is execute via *.jnlp with a link at a portal page.
    Thanks a lot for your time.

    Javier,
    401 means authentication error, i.e. your application is not authenticated to KM.
    What you can do? Actually, it depends. Check current cookies in your application, probably there are SSO coockie or J2EE authentication cookie. You may try to set this cookies in URLConnection (via addHeader). Otherwise you have to supply authentication creadentials to URLConnection (also via addHeader, most probably, via Basic HTTP authentication scheme).
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com

  • Using iChat Server with Windows clients in an integrated Active Directory/Open Directory environment

    A co-worker (Super Brent) and I were working on using iChat as an internal IM server after having used Openfire for a couple days. The reason for switching was basically that we had a Mac Mini Server that was available so we decided to take this on.
    First problem: Knowing whether or not Kerberos was needed for AD/OD integration. We spent a ton of time on this, not knowing a huge amount about AD and with our server administrator on courses, we just kept poking at it and removed Kerberos.
    For the AD/OD integration, we first bound the Mac Mini to our Active Directory server. We shut off LDAPv3 support as we only wanted to use the AD functionality. Additionally, we ensured that the search policy in Directory Utility only used Active Directory. Then we created an Open Directory master in the Open Directory service. We enabled a self-signed certificate and trusted it locally. After creating the iChat service, ensure that you use the self-signed SSL Certificate and set authentication to Standard. (no kerberos).
    Second problem: Once this was complete, we started to test clients out. We were unable to successfully login using our AD credentials using Spark IM and Pandium IM. After trying nearly 100 different variations of server configs, we decided to try a new client. I installed Miranda IM on my Windows XP machine and tried a few different setups. It turned out that the magic potion was to make sure that the "resource" field was set to "Home" and use SSL for encryption. This resource setting was the deal breaker for the other IM clients as many of them such as Spark and Pandium do not have this as a login option.
    We ended up using Pidgin IM as the Windows client of choice as it did have the resource variable and it's interface was the best suited for our environment and users.
    I hope this helps someone out there as we spent days looking all over the internet trying to figure this out.
    Cheers,
    Frenchy and Super Brent

    Hi,
    iChat Server is not something that I know a great deal about.
    I tend to point people to the OS  X Server Communities and to look out for posts by Tim Harris.
    Thanks for taking the time to post this.
    9:58 PM      Friday; February 10, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for

  • How to unsync my wife's iPhone from my iTunes and my iPad

    I am very new to the iTunes and the different products from Apple. We I have recently synced my wife's iPhone3f to my iTunes. Currently her contacts our on my IPad and not on my iPhone. My wide is unable to send emails from her phone. It requests my

  • Doubt in Sender IDoc Adapter

    Hi Gurus I have doubts regarding the sender IDoc adapter.The sender IDoc adapter is present by default and we do not create manually. the qos of this is EO by default. How can we change the QOS of the sender IDoc adapter? do we have to maitain any se

  • Peculiar Issue :RFx line item issue in SAP Sourcing

    Greetings of the day , We  are trying to ADD line items in an RFx , when i click on ADD button in the Line items TAB ,the timer just revolves and nothing happens , no line item gets added , It's  a  Very  peculiar issue since it's an standard SAP  Fu

  • MSİ AE2420 3D PS3 connection via hdmi and No 3d output.

    As i mentioned, i wanted to Connect my ps3 to hdmi in port in my ae24203D. Non problem at all. But i want to play crysis2, gt5 in 3D but i couldnt manage it. İs there any way to get 3d support via hdmi in poRt? Thanks in Advance.

  • Question about eaither a user or dreamweaver error

    Hello everyone, When I added some html code that  integrates with another php file for a  "contact us" form, now all of the  content almost is blank in  dreamweaver. I can still preview in the  browser and it looks correctly  but am wondering why it