Embed a socket in applet

I want to embed a socket in an applet so that when I write a string from the other socket(this socket suppose to be an application not applet) which connect with the applet socket,the string can be print on the applet webpage.
can anyone tell me how to make it?
Thanks

You can create (if local web browser security allows) a socket connection between the applet and the server from which the applet came from.
This means that an applet from www.my-applet.com can only create socket connections to www.my-applet.com and not www.give-me-a-virus.com
Basics: My applet is on www.my-applet.com and I have a server that gives a message to my applet (such as news headlines or stock info) listening on port 1234.
import java.net.*;
import java.io.*;
Socket myconnection = new Socket("www.my-applet.com", 1234);
BufferedReader in = new BufferedReader(new InputStreamReader(myconnection.getInputStream());
String messageForApplet = in.readLine();
appletLabel.setText(messageForApplet);
repaint();
in.close();
myconnection.close();Now, this code will throw an IOException that needs to be caught.

Similar Messages

  • Sockets in Applet

    Hello,
    Is it possible to connect to another web-server in Java Applet via sockets?
    Best Regards, Dmitry.

    and is it possible to do with JSP?

  • How to use sockets in applets?

    hi,
    i wrote the following applet:
    http://spidey.bei.t-online.de/rest/java/jtv/jTV.html
    its a little applet which asks tvtoday.de for the movies which are running on the channels/time and day you specified and puts them into the table
    as a normal java application everything works fine
    but as an applet i always get an exception that im not allow to open sockets to tvtoday.de
    how comes? and is there a way to fix that?
    thx

    Applets are only allowed to create sockets back to the host that they originally came from. This is a security measure - otherwise, a trojan horse applet could be downloaded through a firewall, then open connections and do malicious things to hosts that were supposed to be protected by the firewall.
    I am not sure if there is a way the solve this. Perhaps you could sign your applet and let java pop up a "Let this applet open sockets elsewhere?" window (similar to what java web start can do), but I personally don't know of such a system.

  • Working with sockets with applets

    Hello, I am working in my account on a web server, and I am trying to develop a chat using applets. My program works great on the command line, but the applets cannot create a socket because of a SocketPermission problem. I have read about this problem a lot, and I found that applets will only create a socket with the server the applet originates from. I have still not had any success in allowing my applet to create a socket to connect to a server.
    I would appreciate any advice concerning this problem!
    Thanks so much!
    Christina

    If you are calling the HTML page containing the Applet as http://localhost then the Applet has to open a socket back to local host.
    Make sure you call the applet using the full ip address of the where the web server is running. This should match the socket ip address you are trying to open inside the Applet.

  • Simple server/client socket in applets code.

    Can anyone please help me with Java sockets ? I want to create an applet that simply checks if it's still online. This means that i'll be using this applet thru modem(that is, dial-up connection). All i want the applet to do is send a signal to the server and the server answer back that it is still online. The server should be able to handle multiple sends and receives. I need just a simple code for me to work on (both server and client). The client doesn't have to send any special message to the server and vice versa.
    Thanks.

    Below is the code for both Applet and Servlet .I think this will solve your problem.
    Applet:
    import java.applet.*;
    import java.awt.*;
    import java.io.*;
    import java.net.*;
    public class OnlineApplet extends Applet implements Runnable
         private static Thread thread;
         private static HttpURLConnection URLConn;
         public void init()
              try
                   //Connect to the URL where servlet is running.
                   URL url = new URL("http://localhost/servlet/OnlineServlet");
                   URLConn = (HttpURLConnection)url.openConnection();
                   URLConn.setDoInput(false);
                   URLConn.setDoOutput(true);
              catch (Exception ex)
              thread = new Thread(this);
         public void start()
              thread.start();
         public void paint(Graphics g) {}
         public void stop() { }
         public void destroy() { }
         public void run()
              while(true)
                   try
                        thread.sleep(1000 * 60);
                        sendConfirmation();
                   catch (Exception ex)
         private void sendConfirmation() throws Exception
              DataOutputStream dos = new DataOutputStream(URLConn.getOutputStream());
              dos.writeChars("Fine");
              dos.flush();
              dos.close();
    Servlet:
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    public class OnlineServlet extends HttpServlet implements Runnable
         public static Hashtable hsh;
         private static Thread thread;
         public void init(ServletConfig scon) throws ServletException
              hsh = new Hashtable();
              thread = new Thread(this);
         public void service(HttpServletRequest req, HttpServletResponse res)
              String strHostName = req.getRemoteHost();
              if(hsh.containsKey(strHostName))
                   updateHash(strHostName);
              else
                   hsh.put(strHostName, System.currentTimeMillis() + "");
         private void updateHash(String strHostName)
              hsh.remove(strHostName);
              hsh.put(strHostName, System.currentTimeMillis() + "");
         public void run()
              while(true)
                   try
                        thread.sleep(1000 * 120);
                   catch (Exception ex)
                   validateUsers(System.currentTimeMillis());
         private void validateUsers(long msec)
              Enumeration keys = hsh.keys();
              int size = hsh.size();
              while(keys.hasMoreElements())
                   String strKey = keys.nextElement().toString();
                   String strLong = hsh.get(strKey).toString();
                   long lg1 = Long.parseLong(strLong);
                   if((lg1 - msec) > 100000)
                        // This means there is no response from user . That means he is not online. So you can remove from hashtable.
                        hsh.remove(strKey);

  • Using sockets with Applet

    Hey,
    I have a website which has an applet on one of the pages. I put in code that uses a socket to connect to MY computer. ( i want to use my computer as a server which stores data/accounts/etc) A SecurityException was thrown when I tested the applet. Is what I'm trying to do possible? or does something like this have to connect to a server which is on my website?
    Thanks

    I believe you can run something like this by signing the applet.
    And then the user has the option of allowing or disallowing a signed applet to do that kind of thing. I don't know which is the default.

  • SSL Sockets and Applets

    Overview: I need to make an Applet communicate with a server using an SSLSocket and I can't figure out how to include a truststore when running the applet in a web browser.
    Background:
    The applet communicates perfectly using regular non-secure sockets. I am now porting it to use secure sockets (SSLSocket, SSLServerSocket from JSSE).
    The applet communicates perfectly using secure sockets when run in appletviewer with the truststore file in the classpath. I have specified the appropriate truststore properties in the Applet as follows:
         System.setProperty("javax.net.ssl.trustStore", "truststore");
         System.setProperty("javax.net.ssl.trustStorePassword", "password");
    This works when run using appletviewer when the "truststore" file is in the classpath, and now I need to make it work in a web browser.
    Problem: How do I include the "truststore" file with an Applet?
    I have tried including it in the .jar file, which seems conceptually similar to including it in the classpath, which worked with appletviewer. However, including it with the .jar file doesn't work. The exception I get is:
    javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found
    Any ideas on how I can include the truststore file or suggestions on another approach that will accomplish the same thing?
    Thanks a lot!
    -Jeff Dyck

    Hi,
    I'm in the same boat.
    Thought I had a solution. I'm running an applet that opens an SSL socket back to the web server it came from
    URL url = new URL("https://" + baseUrl);
    URLConnection connection = url.openConnection();
    connection.setDoOutput(true);
    connection.setDoInput(true);
    -then just open streams. Info related to this at
    http://java.sun.com/products/plugin/1.3/docs/https.html
    Essentially, I'm taking advantage of the SSL connection made during the initial web page/applet load ([SSL_RSA_WITH_RC4_128_MD5 is what my HTTPS server wanted )
    The down side is that GET/POST are the only actions supported (refer to the link).
    I'm looking for a solution that specifies HOW I ACCESS my local browser's security so I don't get
    j'avax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found'.
    Hope someone replies...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Sockets in Applets

    hi i am trying to open Socket in an Applet but i am not succesful kindly tell me any way or tell me any
    alternative
    i will be very thankful

    you have to sign your applet before to open a Socket...
    other: you just can open a connection to the server where the applet comes from.

  • Win socket with applet socket by byte type data network

    Server is windock
    Client is applet
    How do i receive and send byte type data..
    What i do using sock type?
    UDP? just i use Inputstream, Outputstream?
    and i some warring..
    Packet Buffering...
    how do i?
    plz help me...

    Hi
    Search the Forum for "socket", start reading other people questions and answers, i am sure that after spending few hours you will find some answers.
    Noah

  • Am I able to use Sockets in applets

    I developed a server-client application in java using datagrams, and decided to try to convert the client application into an applet.
    The problem was that the applet wouldn't run in a browser but it worked if I used javas appletviewer!
    Tryed both JDK1.1.8 and JDK1.3.1!
    Browser = IE5
    Am I able to do any networking with browser at all?

    My applet only connects to the server (and port) it was served from! But it still doesn't work... It works fine in an appletviewer but in a Browser I won't even get my GUI up :(
    Hmmm... OK! I'll try to make a TCP connection from Applet to my server application, I've done it once before but as an application, the server then had to be multithreaded so it could work with multiple users simuntaniusly... the reason I switched over to datagram packages is that I could make the server single threaded!

  • Applet not running in browser?

    Hi
    What is the reason why an applet will be running in appletviewer but not in a browser???

    Hi,
    Try out with this html file:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
    <html>
    <head>
    <title>Example</title>
    <script language="JavaScript">
    function MyToolBar()
    window.open("Login.html","LoginPage","toolbar=0,menubar=0,scrollbar=0,resizable=0,directories=0,width='110%',height='150%'");
    </script>
    </head>
    <body>
    <blockquote>
    <!--"CONVERTED_APPLET"-->
    <!-- CONVERTER VERSION 1.1 -->
    <SCRIPT LANGUAGE="JavaScript"><!--
    var info = navigator.userAgent; var ns = false;
    var ie = (info.indexOf("MSIE") > 0 && info.indexOf("Win") > 0 && info.indexOf("Windows 3.1") < 0);
    //--></SCRIPT>
    <COMMENT><SCRIPT LANGUAGE="JavaScript1.1"><!--
    var ns = (navigator.appName.indexOf("Netscape") >= 0 && ((info.indexOf("Win") > 0 && info.indexOf("Win16") < 0 && java.lang.System.getProperty("os.version").indexOf("3.5") < 0) | | (info.indexOf("Sun") > 0) | | (_info.indexOf("Linux") > 0)));
    //--></SCRIPT></COMMENT>
    <SCRIPT LANGUAGE="JavaScript"><!--
    if (_ie == true) document.writeln('<Center><OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" WIDTH = "100%" HEIGHT = "150%" codebase="http://java.sun.com/products/plugin/1.1.2/jinstall-112-win32.cab#Version=1,1,2,0"><NOEMBED><XMP>');
    else if (_ns == true) document.writeln('<EMBED type="application/x-java-applet;version=1.1.2" java_CODE = "MyApplet.class" WIDTH = "110%" HEIGHT = "150%" pluginspage="http://java.sun.com/products/plugin/1.1.2/plugin-install.html"><NOEMBED><XMP>');
    //--></SCRIPT>
    <APPLET CODE = "MyApplet.class" WIDTH = "110%" HEIGHT = "150%" ></XMP>
    <PARAM NAME = CODE VALUE = "MyApplet.class" >
    </APPLET>
    </NOEMBED></EMBED></OBJECT></Center>
    <!--
    <APPLET CODE = "MyApplet.class" WIDTH = "110%" HEIGHT = "150%" >
    </APPLET>
    -->
    </body>
    </html>
    Hope this will help you.
    Anil
    Developer Technical Support
    Sun Microsystems Inc,
    http://www.sun.com/developers/support

  • Call Applet's method in javascript? (Urgent!)

    My applet has a method that returns a string.
    public String getName()In my html page [IE5.5]
    <script language="javascript1.2">
    function getName() {
       alert(myApplet.getName());
    </script>
    <applet name="myApplet" .....></applet>
    <button id=test onClick="getName()">Test</button>Is this possible? Do you know any better way?
    I really appreciate for your help.
    Thanks a lot.
    Tom

    Maybe I didn't set my path correctly?
    Here is what it's all about:
    I have a serialized object stored in Java folder.
    The class files are packed in Java/com.so.bo.MyApplet.class
    html file is the same level as Java folder
    codebase="Java"
    code="com.so.bo.MyApplet.classDid I do it right?
    For IE:
    The point is set the parameter "Scriptable" to
    "True".
    This is an example of an applet made scriptable:
    <!--"CONVERTED_APPLET"-->
    <!-- HTML CONVERTER -->
    <OBJECT
    classid="clsid:CAFEEFAC-0013-0001-0000-ABCDEFFEDCBA"
    WIDTH = "100%" HEIGHT = "280" NAME = "XmlApplet"
    codebase="http://java.sun.com/products/plugin/1.3.1/ji
    stall-131-win32.cab#Version=1,3,1,0">
    <PARAM NAME = CODE VALUE = "XmlApplet.class" >
    <PARAM NAME = CODEBASE VALUE = ".." >
    <PARAM NAME = ARCHIVE VALUE = "XMLApplet.jar" >
    <PARAM NAME = NAME VALUE = "XmlApplet" >
    <PARAM NAME="type"
    VALUE="application/x-java-applet;jpi-version=1.3.1">
    <PARAM NAME="scriptable" VALUE="true">
    <COMMENT>
    <EMBED
    type="application/x-java-applet;jpi-version=1.3.1"
    CODE = "XmlApplet.class" CODEBASE = ".." ARCHIVE =
    "XMLApplet.jar" NAME = "XmlApplet" WIDTH = "100%"
    HEIGHT = "280" scriptable = "true"
    pluginspage="http://java.sun.com/products/plugin/1.3.1
    plugin-install.html"><NOEMBED>
    </NOEMBED>
    </EMBED>
    </COMMENT>
    </OBJECT>
    <!--
    <APPLET CODE = "XmlApplet.class" CODEBASE = ".."
    ARCHIVE = "XMLApplet.jar" WIDTH = "100%" HEIGHT =
    "280" NAME = "XmlApplet">
    <PARAM NAME = "scriptable" VALUE ="true">
    </APPLET>
    -->
    <!--"END_CONVERTED_APPLET"-->You can see this applet working with IE in
    http://www.amicworld.com by following XMLBroker.

  • My applet can access an image in Eclipse, but not when I put it online...

    Basically, I have an applet that displays images among other things.
    I stuck the images in the bin directory, and when I run the applet from Eclipse, there's no problem.
    But when I put the applet on my webpage, it crashes with a NullPointerException because
    image = ImageIO.read( new File( imageName ) ) can't seem to get the image.
    The images are in the same directory as my class files. I tried turning on all permissions.
    My html code is very simple:
    <applet code="ImageGenerator.class" width=1000 height= 500> </applet>
    Am I missing anything?
    Any idea what the problem is?

    Meteor,
    Can you shed some light on how big these files are?
    If these images are 200K each and you have 10 of them, then you're loading 2MB across the network each time the application loads. Depending on what you are doing, that may not be a good design.
    If these slow-loading images are needed right away, then embed them with your applet (preferably a Jar) and they should load pretty fast.
    If these slow-loading images are needed later, then thread the loading of them to a background task and use some form of visual feedback (like a "please wait" image) until they're finished.
    Lastly, if these images are relatively small and you are experiencing a significant speed difference between accessing them locally (such as on the server's file system or through a mapped-drive) and accessing them through http (or url, etc) then make sure your web server is feeding them up in a timely fashion and that there's no outstanding issues with the URL loading method and the Java version you're using.
    Please read Andrew's posts closely as you should not be designing an applet that loads files as a local resource unless you really need to. Signing the applet will allow you to save them locally to the filesystem (as a "cached" version to be loaded later), but don't try to load the images as files directly from the web server's file system. The signed applet will only be able to access the local file system of the station it's being run on, hence, usually not the server!
    As far as caching the files locally, Java webstart has potentially a better ways of doing that sort of stuff for you.
    -Tres

  • How to run applet program in browser

    I am new in the field. I have begun with some basic programming. I wish to know how do you run a java programme in browser. I have added the html tag in the .java file. can anyone kindly let me know. thanks

    You don't add the tag to the .java file. You need a separate HTML document (such as a .html file, or a .jsp, etc.) that has the <applet> tag in it. (Also there's some stuff you can do with <object> and/or <embed>, apparently.) The applet tag tells the browser to load your applet.
    http://java.sun.com/docs/books/tutorial/deployment/applet/index.html

  • Applet crossdomain timeout

    Hi,
    I getting some problems deploying an unsigned applet that use JavaScript integration and sockets, the applet is a chat client demo.
    https://demo.zeroc.com/chat/applet/
    I have added crossdomain.xml file
    https://demo.zeroc.com/chat/applet/crossdomain.xml
    https://demo.zeroc.com/crossdomain.xml
    Are this both necessary?
    Seems that the applet try to access crossdomain file in the ip of my local computer
    network: Connecting http://192.168.50.2/crossdomain.xml with proxy=DIRECT
    network: Connecting socket://192.168.50.2:80 with proxy=DIRECT
    Any ideas what could cause that? to be clear this is while accessing the applet in https://demo.zeroc.com/chat/applet/index.html and 192.168.50.2 is the ip of the compunter running the web browser. The second time i try to run it success
    See the java console output.
    basic: New window ID: 10004e2
    basic: Value of xembed: 1
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@22c95b, refcount=1
    basic: setWindow: call before applet exists:10004e2
    security: Accessing keys and certificate in Mozilla user profile: null
    security: JSS is not configured
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@169ca65
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    basic: completed perf rollup
    network: Cache entry not found [url: https://demo.zeroc.com/chat/applet/ChatDemoAppletGUI.jar, version: null]
    network: Connecting https://demo.zeroc.com/chat/applet/ChatDemoAppletGUI.jar with proxy=DIRECT
    network: Connecting socket://demo.zeroc.com:443 with proxy=DIRECT
    security: Loading Root CA certificates from /opt/sun-jdk-1.6.0.15/jre/lib/security/cacerts
    security: Loaded Root CA certificates from /opt/sun-jdk-1.6.0.15/jre/lib/security/cacerts
    security: Loading SSL Root CA certificates from /opt/sun-jdk-1.6.0.15/jre/lib/security/cacerts
    security: Loaded SSL Root CA certificates from /opt/sun-jdk-1.6.0.15/jre/lib/security/cacerts
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Checking if certificate is in Deployment denied certificate store
    network: Connecting https://demo.zeroc.com/chat/applet/ChatDemoAppletGUI.jar with cookie "bblastvisit=1255442210; bblastactivity=0"
    network: Downloading resource: https://demo.zeroc.com/chat/applet/ChatDemoAppletGUI.jar
    Content-Length: 817,306
    Content-Encoding: null
    network: CleanupThread used 4833 us
    network: Wrote URL https://demo.zeroc.com/chat/applet/ChatDemoAppletGUI.jar to File /home/pepone/.java/deployment/cache/6.0/19/272ab6d3-7e68dfdf-temp
    security: Blacklist revocation check is enabled
    network: CleanupThread used 3 us
    liveconnect: JavaScript: calling Java system code
    liveconnect: JavaScript: default security policy = https://demo.zeroc.com
    liveconnect: JavaScript: UniversalBrowserRead enabled
    liveconnect: JavaScript: default security policy = https://demo.zeroc.com
    liveconnect: the url of the applet is https://demo.zeroc.com and the permission is = false
    liveconnect: JSObject::call: name=setState
    liveconnect: the url of the applet is https://demo.zeroc.com and the permission is = false
    liveconnect: JavaScript: calling Java system code
    liveconnect: JavaScript: default security policy = https://demo.zeroc.com
    liveconnect: JavaScript: calling Java system code
    liveconnect: JavaScript: default security policy = https://demo.zeroc.com
    network: Cache entry not found [url: https://demo.zeroc.com/chat/applet/org/apache/tools/bzip2/CBZip2InputStream.class, version: null]
    network: Connecting https://demo.zeroc.com/chat/applet/org/apache/tools/bzip2/CBZip2InputStream.class with proxy=DIRECT
    network: Connecting socket://demo.zeroc.com:443 with proxy=DIRECT
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Checking if certificate is in Deployment denied certificate store
    network: Connecting https://demo.zeroc.com/chat/applet/org/apache/tools/bzip2/CBZip2InputStream.class with cookie "bblastvisit=1255442210; bblastactivity=0"
    network: Cache entry not found [url: http://[fe80:0:0:0:21b:24ff:fe50:240e%2]/crossdomain.xml, version: null]
    network: Connecting http://[fe80:0:0:0:21b:24ff:fe50:240e%2]/crossdomain.xml with proxy=DIRECT
    network: Connecting socket://%5bfe80:0:0:0:21b:24ff:fe50:240e%252%5d:80 with proxy=DIRECT
    java.security.PrivilegedActionException: java.net.SocketTimeoutException: connect timed out
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.deploy.net.CrossDomainXML.check(CrossDomainXML.java:363)
    at com.sun.deploy.net.CrossDomainXML.check(CrossDomainXML.java:150)
    at sun.plugin.security.ActivatorSecurityManager.checkConnect(ActivatorSecurityManager.java:206)
    at java.net.NetworkInterface$1checkedAddresses.<init>(NetworkInterface.java:90)
    at java.net.NetworkInterface.getInetAddresses(NetworkInterface.java:110)
    at IceInternal.Network.getLocalAddresses(Network.java:902)
    at IceInternal.Network.getLocalAddress(Network.java:819)
    at Ice.Util.generateUUID(Util.java:212)
    at ChatDemoGUI.Coordinator.login(Coordinator.java:113)
    at ChatDemoGUI.ChatDemoApplet$1.run(ChatDemoApplet.java:84)
    Caused by: java.net.SocketTimeoutException: connect timed out
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    at java.net.Socket.connect(Socket.java:525)
    at sun.net.NetworkClient.doConnect(NetworkClient.java:161)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:394)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:529)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:233)
    at sun.net.www.http.HttpClient.New(HttpClient.java:306)
    at sun.net.www.http.HttpClient.New(HttpClient.java:323)
    at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:860)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:801)
    at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:726)
    at com.sun.deploy.net.CrossDomainXML$2.run(CrossDomainXML.java:367)
    ... 11 more

    at java.net.NetworkInterface.getInetAddresses(NetworkInterface.java:110)
    at IceInternal.Network.getLocalAddresses(Network.java:902)
    at IceInternal.Network.getLocalAddress(Network.java:819)
    at Ice.Util.generateUUID(Util.java:212)
    My code shouldn't be doing that, i fixed that code and all is working fine now.

Maybe you are looking for

  • Residual Clearing for Customer in F-32

    Hi We have two instances, one with New GL and the other one on Classical Gl, but ECC 6.0 I am facing issue in residual clearing for Customer Open Items. I have a customer open item - Invoice of 1000 and Payment Recipet of 200. I am clearing 200 again

  • HELP!! Installation of OS X Panther 10.3 stops at Asian Languages Support

    I had trouble trying to move the user directory onto another harddrive so I have had to reinstall from scratch. I have a clean harddrive that has been formatted (extended journalled) twice, and written over with zeros... When the installer get to 'Pr

  • No AIM Audio Chat with PC - Why!?!

    Why is there no support for iChat AV (AIM) to PC? Why doesn't it work? I have read through this board and the "Trillian solution" FAQ and can't seem get an answer to why? Certainly seems to be a hot topic. I really would like to audio chat with why A

  • IRecruitment - custom page based on selected row in advanced table

    HI, We are implementing an addition to iRec. From the vacancy search page I have added an extra image column called worklog to the advanced table. Within the attributes I have set the view instance and and view attribute to View Attribute VacancyId V

  • Brown splotches on image in Lightroom but not Camera RAW?

    I'm using Lightroom 4.1 and Photoshop Camera RAW from CS5 version 6.6 In Lightroom I'm getting some brown splotches on the faces of the groomsmen to the right.  These splotches while less noticeable also appear on the bride and groom. Process the sam