Need to login to remote X server on suse enterprise server 9 from mac

hello,
I have the a powerbook G4 with the latest OS X installed. I also have X11 installed.
Can someone please tell me how I can login to a vnc server on a sles9 server from my mac laptop? I tried the browser way but the picture looks aweful. I'd like to use a X session from the sles9 server to my mac laptop.
Thanks,
Oskar

Hi Oskar,
   Thanks for the info on the browser method. I won't get to test it for a bit but it seems like a lot to ask of a browser, even if it does render images well. Which browser do you use?
   Please forgive my manners; welcome to Apple Discussions. I don't know how much experience you have reading the Discussion but this one isn't touchy-feely. It's very easy to cut-and-paste from the terminal, especially Apple's, in which it can be done completely from the keyboard. Thus it almost seems prevarication to be vague.
> I TRY the ssh -Y method
   This is vague. Please post the command. Is X11 running when you do this?
> It doesn't work.
   This is more vague. In addition to the command, please post the output, and any entries in your console.log and the system.log that ensue.
> it's running kde to I have kde& at the end of that line
   When you login to the remote computer, please don't put a command in the line. Login to the machine to get shell access and then invoke the command. You might see some output that would otherwise be "hidden" in a remote log. What is this "kde" command? The usual command for starting KDE is "startkde."
   I've never tried to forward KDE. It's not an application that runs in a window. I'm sure there would be no problem setting up the tunnel but it was hard enough to port KDE to run with Apple's X11. Thus I can easily see the potential for difficulties but I don't know of any problems and I actually think I remember someone saying they did it. You might try running X11 full screen instead of rootless.
> Is there anything I should be doing on the suse server?
   Do you mean besides configuring and starting the secure shell daemon? Yes, you might have to make a hole in the firewall. There should be a suse "sysadmin" way to configure it but if you have to edit the sshd_config file and invoke sshd yourself, we can probably help with that.
> also, chicken of the vnc doesn't work well with sles
vnc server.
   That probably means you don't have the bandwidth for it. I know that using CotVNC can be almost like being at the machine and Linux is generally fast even on old hardware. That's all the more reason to get X window forwarding working.
   If you can't find the information to diagnose the problem with secure shell in the logs, you can also invoke secure shell with the "-vvv" option. That will dump a maximal amount of diagnostic information.
Gary
~~~~
   Mohandas K. Gandhi often changed his mind publicly. An aide once asked him how he could so freely contradict this week what he had said just last week. The great man replied that it was because this week he knew better.

Similar Messages

  • Oracle 10.2 on AIX -- need to connect to remote SQL server by dblink

    oracle 10.2 on AIX -- need to connect to remote SQL server by dblink
    i didn't see a odbc diectory in our oracle home path. how do i know odbc driver is installed in the oracle on our AIX server.
    If it is there, do i just need to modify the odbc.ini and then the inithsodbc.ora, linster.ora, tnsnammes.ora files, or am I missing something
    Appreciate your response
    Edited by: user10876711 on May 12, 2011 9:18 AM
    Edited by: user10876711 on May 12, 2011 9:18 AM

    when you want to connect from Oracle to a SQl Server you need the Oracle Gateway (HSODBC or even better Dg4ODBC) and a FOREIGN ODBC DRIVER for your foreign database - a SQL Server ODBC driver. You have to get this driver from a 3rd party vendor - Oracle does not offer any foreign ODBC drivers.
    So before being able to use DG4ODBC/HSODBC you need to install from a 3rd paryt vendor a SQL Server ODBC driver. Commercial vendrs are for example Data Direct, Openlink or Easysoft.
    On Unix ODBC drivers commonly also require a driver manager. If the ODBC driver vendor does not ship one with the ODBC driver you can get it from www.unixodbc.org

  • Need to access/connect Remote Unix server from Java

    Please any one give me a direct solution for connecting a remote Unix server through telnet connection from java application. Thanks in advance..

    If I run the below program codes, in the console it is asking to enter username and password in manual but I need to give it automatically.
    The highlighted "root" is entered by the user manually using keyboard.
    Expected:
    I mean the username, password and some action is set to be automatic, so that it should not ask the user to enter the input from keyboard.
    import java.awt.Robot;
    import java.awt.event.KeyEvent;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import org.apache.commons.net.telnet.TelnetClient;
    import org.apache.commons.net.telnet.TelnetNotificationHandler;
    import org.apache.commons.net.telnet.SimpleOptionHandler;
    import org.apache.commons.net.telnet.EchoOptionHandler;
    import org.apache.commons.net.telnet.TerminalTypeOptionHandler;
    import org.apache.commons.net.telnet.SuppressGAOptionHandler;
    import org.apache.commons.net.telnet.InvalidTelnetOptionException;
    import java.util.StringTokenizer;
    * This is a simple example of use of TelnetClient.
    * An external option handler (SimpleTelnetOptionHandler) is used.
    * Initial configuration requested by TelnetClient will be:
    * WILL ECHO, WILL SUPPR
    * ESS-GA, DO SUPPRESS-GA.
    * VT100 terminal type will be subnegotiated.
    * <p>
    * Also, use of the sendAYT(), getLocalOptionState(), getRemoteOptionState()
    * is demonstrated.
    * When connected, type AYT to send an AYT command to the server and see
    * the result.
    * Type OPT to see a report of the state of the first 25 options.
    * <p>
    * @author Bruno D'Avanzo
    public class UnixConnect implements Runnable, TelnetNotificationHandler
        static TelnetClient tc = null;
         * Main for the TelnetClientExample.
        public static void main(String[] args) throws IOException
            FileOutputStream fout = null;
            /*if(args.length < 1)
                System.err.println("Usage: TelnetClientExample1 <remote-ip> [<remote-port>]");
                System.exit(1);
            String remoteip = "192.168.20.11";
            int remoteport;
            if (args.length > 1)
                remoteport = (new Integer(args[1])).intValue();
            else
                remoteport = 23;
            try
                fout = new FileOutputStream ("spy.log", true);
            catch (Exception e)
                System.err.println(
                    "Exception while opening the spy file: "
                    + e.getMessage());
            tc = new TelnetClient();
            TerminalTypeOptionHandler ttopt = new TerminalTypeOptionHandler("VT200", false, false, true, false);
            EchoOptionHandler echoopt = new EchoOptionHandler(true, false, true, false);
            SuppressGAOptionHandler gaopt = new SuppressGAOptionHandler(true, true, true, true);
            try
                tc.addOptionHandler(ttopt);
                tc.addOptionHandler(echoopt);
                tc.addOptionHandler(gaopt);
            catch (InvalidTelnetOptionException e)
                System.err.println("Error registering option handlers: " + e.getMessage());
            while (true)
                boolean end_loop = false;
                try
                    tc.connect(remoteip, remoteport);
                    Thread reader = new Thread (new UnixConnect());
                    tc.registerNotifHandler(new UnixConnect());
                    reader.start();
                    OutputStream outstr = tc.getOutputStream();
                    byte[] buff = new byte[1024];
                    int ret_read = 0;
                    do
                        try
                            ret_read = System.in.read(buff);
                            if(ret_read > 0)
                            outstr.write(buff, 0 , ret_read);
                            outstr.flush();
                        catch (Exception e)
                            System.err.println("Exception while reading keyboard:" + e.getMessage());
                            end_loop = true;
                    while((ret_read > 0) && (end_loop == false));
                    try
                        tc.disconnect();
                    catch (Exception e)
                              System.err.println("Exception while connecting:" + e.getMessage());
                catch (Exception e)
                        System.err.println("Exception while connecting:" + e.getMessage());
                        System.exit(1);
         * Callback method called when TelnetClient receives an option
         * negotiation command.
         * <p>
         * @param negotiation_code - type of negotiation command received
         * (RECEIVED_DO, RECEIVED_DONT, RECEIVED_WILL, RECEIVED_WONT)
         * <p>
         * @param option_code - code of the option negotiated
         * <p>
        public void receivedNegotiation(int negotiation_code, int option_code)
            String command = null;
            if(negotiation_code == TelnetNotificationHandler.RECEIVED_DO)
                command = "DO";
            else if(negotiation_code == TelnetNotificationHandler.RECEIVED_DONT)
                command = "DONT";
            else if(negotiation_code == TelnetNotificationHandler.RECEIVED_WILL)
                command = "WILL";
            else if(negotiation_code == TelnetNotificationHandler.RECEIVED_WONT)
                command = "WONT";
            System.out.println("Received " + command + " for option code " + option_code);
         * Reader thread.
         * Reads lines from the TelnetClient and echoes them
         * on the screen.
        public void run()
            InputStream instr = tc.getInputStream();
            try
                byte[] buff = new byte[1024];
                int ret_read = 0;
                do
                    ret_read = instr.read(buff);
                    if(ret_read > 0)
                       System.out.print(new String(buff, 0, ret_read));
                while (ret_read >= 0);
            catch (Exception e)
                System.err.println("Exception while reading socket:" + e.getMessage());
            try
                tc.disconnect();
            catch (Exception e)
                System.err.println("Exception while closing telnet:" + e.getMessage());

  • WLST : Error connecting to a remote Weblogic server instance from OEPE 3.7

    Attempting a to run a weblogic script connecting to a remote weblogic server instance (10.3.5), which is generating the following exception in OEPE 3.7.2 -
    username = 'weblogic'
    password = 'weblogic6'
    url='t3://xxx.xxx.com:7001'
    connect(username,password,url)
    Connecting to t3://xxx.xxx.com:7001 with userid weblogic ...
    This Exception occurred at Fri Feb 01 13:20:54 MST 2013.
    Error occured while performing connect : Error connecting to the server : Failed to generate class for weblogic.management.mbeanservers.compatibility.internal.MBeanHomeImpl_1035_WLStub
    Use dumpStack() to view the full stacktrace :
    java.lang.AssertionError: Failed to generate class for weblogic.management.mbeanservers.compatibility.internal.MBeanHomeImpl_1035_WLStubconnect
    Problem invoking WLST - Traceback (innermost last):
    File "C:\Users\hughese\workspace\12c_wlst\wlst\heapsize.py", line 13, in ?
    File "<iostream>", line 22, in connect
    File "<iostream>", line 648, in raiseWLSTException
    WLSTException: Error occured while performing connect : Error connecting to the server : Failed to generate class for weblogic.management.mbeanservers.compatibility.internal.MBeanHomeImpl_1035_WLStub
    Use dumpStack() to view the full stacktrace
    Connecting to the local weblogic server instance (t3://localhost:7001) works okay.
    From the command prompt (wlst.cmd) I'm able to connect to the remote weblogic server instance -
    wls:/offline> connect('weblogic','xxxxx','t3:xxx.xxx.com:7001') ;
    Connecting to t3://xxx.xxx.com:7001 with userid weblogic ...
    Successfully connected to Admin Server 'AdminServer' that belongs to domain 'IDMDomain'.
    I've compared the CLASSPATHs between OEPE and the command prompt.
    Any assistance would be greatly appreciated.
    Edited by: 950635 on Feb 1, 2013 7:47 PM

    Hi,
    1)To get mysql JDBC driver to work on my Linux system, i had to add the classpath for the driver to the .bashrc:
    CLASSPATH=./:home/<user>/java/mm.mysql-2.0.6/:home/<user>/java
    Note that I execute the java program as the user <user> (and .bashrc is the config. file of this <user>...). Perhaps you must do this as well for the Oracle driver on your client machine. I don't know if your client machine is UNIX/LINUX or WINDOWS. It should only be clear that the CLASSPATH is set in the config. file of the user under which the java program runs and that this user has the permission to access the files.
    There are no differences between accessing the database locally than accessing it by a network connection. The only thing that matters are that the connection parameters are right and that the network works properly.
    2) are you sure that the table tname (case sensitivity?) exits?
    Marc

  • Can not connect to a remote SSH server with my mac

    Ok have tried 4 different applications, fetch , captain ftp, terminal, etc.
    I am trying and connect to a friends ssh server to upload some file logs. I have the correct login/password, have tried both protocol 1 and 2. Port 22 is correct. I keep getting the error message
    User logging error - captain ftp
    SFTP connection to ..... could not be opened becasue the connection to the SFTP server could not be established or was lost - Fetch
    sshexchangeidentification: Connection closed by remote host - Ternminal
    We have tested it using Telnet and other programs on a PC and all is well.
    When i try and connect he receives the message
    Refused connect from cpe-"ip address"(ip address)
    policy: HostKey/etc/ssh/sshhost_rsakey
    Do i have a setting somewhere i am missing.

    1st, is the server behind a home router? Has port 22 been "Port Forwarded" from the internet side to the server's side of the router?
    2nd, from a Terminal session use the command:
    ssh -v -v -v [email protected]
    The -v -v -v triplets will give you a wealth of ssh connection information. If you read through this carefully you may find the root cause of your problems (assuming the 1st step above doesn't yield results).
    Another thing to consider, is that ssh will not make a connection to an account that it does not consider to be reasonably secure. This means that the home directory of the account and specific key subdirectories must have proper ownership and permissions, or ssh will not connect. The specific ownership and permissions needed and the files and directories checked are spelled out in the ssh man page
    man ssh

  • Need Help Connecting To My Windows Server Machine From My Linux Machine (What Program To Use)

    My name is Daniel, and I was wondering what program I could use to connect to my Windows Server R2 2012 Computer from my linux laptop. My laptop has the newest version of linux mint mate. I have tried nomachine with no success (but I could have been using
    it wrong I do not really know how). So if anyone could help me out that would be great. Thank You.
    P.S: Sorry for the weird Forum Category there is not really a category for this.

    ok so i think that worked but i ran into another problem; what password should i use? i changed my sql server 2008 username/password and it didn't work. i also tried my windows 7 username/password and it didn't work also.
    EDIT: managed to get it working, all good! thanks a lot.
    Edited by: 1008695 on May 30, 2013 7:09 AM

  • Trouble with print server password from mac to pc

    I´m trying to print in an epson l200 connected to a pc with windows 7 but I receive the error : hold for authentication - filter failed. I´m connected to the pc troguht a wireless network at home.

    You're going to need to deal with printer sharing from your windows based pc. This is an Apple forum for Apple products.

  • Need to Install Java SE 6 Runtime in order to launch Illustrator from Mac OS Yosemite?  But it's not available anywhere?

    Hello,
    Can anyone help me with this?  I upgraded to Yosemite, and now I can't launch Illustrator because it says I need Java SE 6 runtime in order to open it.  But that version is not available anywhere, not on Apple's website and not on Oracle's.  I did install the latest version of Java, but that didn't solve the problem.  Apparently Illustrator (and I assume all of the creative cloud apps) require version 6?  Any input is appreciated, this is SO frustrating ...

    yes.  but if you follow that link and click on "download" you get an Apple message that says "We're sorry.  We can't find the page you're looking for."  That was the first thing I tried.  Any other ideas?

  • Accessing remote SQL server

    Hello, all.
    This is the first time I've ever needed to access a remote SQL server, and I'm getting an attribute validation error for the cfquery tag.
    The CFQUERY tag currently opens as:
    <cfquery name="[queryName]" debug="1" username="#User#" password="#Pass#" dbserver="[SQL Server IP]" dbname="[databaseName]">
    What are the attributes that I need in order to remotely access the database?
    Thanks,
    ^_^

    You need to setup a datasource in the CF admin pointing to the remote
    server, using dbServer will not work.
    Mack

  • Need to have the keyboard and mouse 100 feet away from Mac

    I need to have the Keyboard and Mouse/Track-pad 100 feet away from Mac Mini.
    What are my options ?
    Thanks

    In your case with the need to control it from multiple locations the best and realistically only solution is to use Screen Sharing to remotely control the Mac.
    With this solution you can control it from anywhere you have a network connection and could use a laptop to control the Mac mini. This is the solution I use in a very similar situation.
    Bluetooth does not have enough range, even RF wireless keyboard and mice devices also would not have the range, and I don't believe there is a suitable USB solution.
    The only other possibility that occurs to me is to use an IP based KVM. A KVM (Keyboard/Video/Mouse) switch box allows multiple computers to be controlled from typically a single keyboard and mouse. However there are versions which allows you to do this over a TCP/IP network i.e. Ethernet. Then again you would be able to do this anywhere on your network. Here is one example - http://www.aten-usa.com/products/productItem.php?model_no=CN8600
    Personally I still strongly recommend using Screen Sharing. Its built-in and completely free!

  • Cannot save files to Windows server 2003 file server from MAC

    Hi, 
    We have few MAC users and others mostly windows based users. Problem now is MAC users cannot save any files to the file server. I had the issues to save in the portable hard drive then i format the HDD to fat 32 and now i can save, But the file server cannot
    be done like that. 
    What i can do to save the files to file server? please advice me
    thanks 
    saththiyan

    I cannot attach another NAS as CEO need to save files to all the folders which is there in the file server already, 
    You can share the folder and map a drive across the network to access the shared folder on the file server. Shared folders formatted NTFS do not affect network access. You would do that by using the SMB. Here's how:
    How to Map Network Drive in Mac OS X
    http://www.technipages.com/how-to-map-network-drive-in-mac-os-x.html
    What OS version is the server? Is it a DC? You may need to reduce security on the server to allow Macs to access the server. Here's more info:
    How to Disable SMB 2.0 on Windows Vista/2008/2008 R2
    http://www.petri.co.il/how-to-disable-smb-2-on-windows-vista-or-server-2008.htm 
    "To disable SMB ... Otherwise, disable SMB signing on Windows Server 2003 domain controllers.
    http://support.microsoft.com/kb/325379
    How to enable Windows 98/ME/NT and MAC clients to logon to Windows 2003 based Domains
    http://support.microsoft.com/default.aspx/kb/555038
    Ace Fekay
    MVP, MCT, MCITP/EA, MCTS Windows 2008/R2 & Exchange 2007, Exchange 2010 EA, MCSE & MCSA 2003/2000, MCSA Messaging 2003
    Microsoft Certified Trainer
    Microsoft MVP - Directory Services
    Technical Blogs & Videos: http://www.delawarecountycomputerconsulting.com/
    This post is provided AS-IS with no warranties or guarantees and confers no rights.

  • I have a MacBook Pro and I need to be able to access Internet Explorer in order to login to my work server (Microsoft server) and Online Business Banking system. How do I do it if Internet Explorer is not supported on Macs?

    I have a MacBook Pro and I need to be able to access Internet Explorer in order to login to my remote work server (Microsoft server) and Online Business Banking system (Bank of America Cash Pro). How do I do it if Internet Explorer is not supported on Macs?  Is there another option? Please help. 
    I also feel like such a moron as I am really new to Apple computers and don't even know what operating system I am using.  The below is what I have. Sorry to all that are well beyond me in the Mac world.  Have been a windows user for my whole life and haven't quite figured out where to find everything I need on my new laptop yet.  Thanks!
    With the following configuration:
    PROCESSOR     065-0154     2.7GHz Dual-core Intel Core i7
    MEMORY     065-0156     8GB 1333MHz DDR3 SDRAM - 2x4GB
    HARD DRIVE     065-0159     750GB Serial ATA Drive @ 5400
    OPTICAL DRIVE     065-0161     8x Double-Layer SuperDrive
    DVI Adapter     065-0162     None
    VGA Adapter     065-0164     None
    REMOTE     065-0166     None
    Apple Software - iWork     065-7672     No iWork preinstalled
    Apple Software - Final Cut Exp     065-7682     Final Cut Express preinstalled
    Apple Software - Aperture     065-0338     Aperture preinstalled
    Apple Software - Logic Express     065-7675     No Logic Express Preinstalled
    Apple Software - Filemaker     065-8307     No FileMaker Preinstalled
    Apple Software - MS Office     065-0278     MSO-HOME & BUSINESS EDITION
    KEYBOARD AND DOCUMENTATION     065-0172     Keyboard/Users Guide
    COUNTRY KIT     065-0175     Country Kit

    If you are New to Mac... you may also find these links of Value
    Mac 101
    http://www.apple.com/support/mac101/
    http://www.apple.com/support/switch101/     Switching from PC
    MBP Support
    http://www.apple.com/support/macbookpro
    Cheers,

  • Login prompt on remote shared server-Crystal Report

    HI
    I am trying to deploy crystal reports 2008 on shared server. Before publishing on the remote server i published it on the localhost while connecting it to remote sql server 2008 database. The report is shown perfactly but when i publish it on shared server it prompt me for login credentials. My hosting provider is arvixe and it support crystal report. In my popup database field is empty and locked use name field show the correct user name and password field is empty. I read somewhere it may be due to version conflict between my version and version on server. Thanks in advance for help
    I am using dataset to puch my data to report. Here is my source code
    myRpt report = new myRpt();
                crConnectionInfo.ServerName = @"mysharedserver.com";
                crConnectionInfo.DatabaseName = "mydb";
                crConnectionInfo.UserID = "myuser";
                crConnectionInfo.Password = "mypass";
                System.Data.SqlClient.SqlConnection myConnection = new System.Data.SqlClient.SqlConnection();
                myConnection.ConnectionString = "Data Source=mysharedserver.com;Initial Catalog=mydb;Persist Security Info=True;User ID=myuser;Password=mypass";
                System.Data.SqlClient.SqlCommand MyCommand = new System.Data.SqlClient.SqlCommand("dbo.spspMyStoreProc");
                MyCommand.Connection = myConnection;
                MyCommand.Parameters.Add("@PositionID", SqlDbType.Int).Value = (cmbPositions.SelectedValue == "" ? 0 : Convert.ToInt32(cmbPositions.SelectedValue));
                MyCommand.CommandType = System.Data.CommandType.StoredProcedure;
                System.Data.SqlClient.SqlDataAdapter MyDA = new System.Data.SqlClient.SqlDataAdapter();
                MyDA.SelectCommand = MyCommand;
                myDS _DS = new myDS();
                MyDA.Fill(_DS, "dbo.spspMyStoreProc");           
                report.SetDataSource(_DS);
                crDatabase = report.Database;
                crTables = crDatabase.Tables;
                for (int i = 0; i < crTables.Count; i++)
                    crTable = crTables<i>;
                    crTableLogOnInfo = crTable.LogOnInfo;
                    crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
                    crTable.ApplyLogOnInfo(crTableLogOnInfo);
                report.SetParameterValue(0, "Param 1");
                report.SetParameterValue(1, "Param 2");
                report.SetParameterValue(2, "Param 3");
                report.SetParameterValue(3, (cmbPositions.SelectedValue == "" ? 0 : Convert.ToInt32(cmbPositions.SelectedValue)));
                CrystalReportViewer1.ReportSource = report;

    If you are using a dataset, why are you using the databse login APIs? E.g.;
    crDatabase = report.Database;
                crTables = crDatabase.Tables;
                for (int i = 0; i < crTables.Count; i++)
                    crTable = crTables<i>;
                    crTableLogOnInfo = crTable.LogOnInfo;
                    crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
                    crTable.ApplyLogOnInfo(crTableLogOnInfo);
    Either use report.SetDataSource(_DS); which will make the report consume the dataset, or use the above code which will make the report connect to the database directly.
    Do not use both though.
    Ludek

  • Installing Collaboration Suite on Remote Linux Server! Need Help! URGENT!

    Hi everybody,
    I am a beginner having few months of exp as Apps DBA. I was given a task of installing OCS on a remote linux server. How to install from my local windows desktop. Wht r the steps to be followed? I need help Immediately! Is it possible through SSH ?
    Thanks in advance,
    Manoj.

    You need to have:
    - Ssh running on the remote server
    - An ssh client on your local PC (e.g. PUTTY, it's a freeware), capable to tunnel and forward X traffic
    - An X client running on your local PC
    Then:
    - On the server, configure X to accept connections from your PC:
    export DISPLAY=your_ip_address:0
    - Then, on the server, you have to enable your PC to use X but I can't remember the command.... will search for it and update the thread
    - Configure and activate the local X client on your PC
    - Configure PUTTY to forward X traffic. Connect via ssh logging in normally to the remote machine. Just leave the session open (maybe it's a good idea to remove any timeouts parameters). The SSH tunnel is now built, and the X traffic should be OK
    - Test the connection: if you type "xclock" in the SSH window, a nice little analogic clock will appear on your PC desktop (if everything is OK).
    - If the clock appears.... Well, go on with your remote installation! :-)
    Bye,
    Roberto

  • Do you need a web browser and internet server to run LabVIEW remote front panel?

    Does anyone know if ones needs an internet server to use the Remote Front Panel application of LabVIEW, or is it also possible to use a LAN/WAN for the same application?  if it is possible, how does one set up such a system?

    You can do this on any IP based system (which includes LANs).
    Basically, you need to be able to ping the server and to have the RFP port allowed in the firewall.
    Then you need to enable the option in the application. If this is an executable, you will need to configure this in the Options dialog or copy some lines from the LabVIEW.ini file into your EXE's INI file. You will also need to take the htm file created by the publishing wizard and make sure it points to your VI and that it is located in a place where it can be accessed from outside the server (read the LV help or search the site for more on this).
    Then, you just need to enter the URL for that htm file in the browser on the client (e.g. 192.3.42.5/c/rfp.htm) and it should load.
    Try to take over the world!

Maybe you are looking for