The web publishing tool to send data to an external web server?

We have a customer who wants to be able to see the LabView to test the results of their office. At our office is located behind a firewall and, therefore, to allow access to the web server or something else would have open access to the outside world and I don't want to do that. Can the web server web publishing LV tool publishes to be external to the Organization? For example, you will need to use FTP credentials to access the external web server? Any information would be greatly appreciated.

Hello

I don't see a way to do it with remote façade panels. However, you can take a snapshot of your façade periodically and save it to the FTP server. In this way, the results of the tests are available on the FTP site.

To save a snapshot of the façade, you use the VI reference (functions > programming > Appilcation control > reference VI Server), invoke the node (functions > programming > Application Control > node call) and the VI 'Write the JPEG' (functions > programming > graphics & Sound > graphic Format > write the JPEG file). VI reference to the reference of the thread invoke node entry, choose the front > get the Image method, and then wire the data output of the Image to write JPEG file VI to save it as a JPEG file on the FTP server.

I hope this helps.

Tags: NI Software

Similar Questions

  • PHP form script is missing from the web server or PHP is not properly configured on your web hosting provider. Help - I get this message on my site when the form is filled out and you press send... Check if the form PHP script has been downloaded correctl

    PHP form script is missing from the web server or PHP is not properly configured on your web hosting provider. Help - I get this message on my site when the form is filled out and you press send... Check if the form PHP script has been downloaded correctly, contact your host about the configuration of PHP.

    Hi Graham,

    If you, please add your site to this link ( http://my-site.com/scripts/form_check.php ) and make sure that all green checkmarks are appearing. If they don't, let us know what errors you seem to receive and include the link to your site.

    In addition, check out this guide on the forums of Muse troubleshooting: Troubleshooting Muse form used on the servers of third party Widgets

    I hope this helps!

    Emily

  • Internal server messages no longer work when published on the web server, but not locally on the web server

    Just upgraded to 8 Captivate and for some reason my server any internal messages is no longer work on the web server.  I can test locally the lesson that always points to the Web server and it works.  Can't understand why when it is on the server it does not work.  The ashx handler that manages to post is fully accessible to the web server and DNS solves very well so I can't understand why he doesn't hit the Manager.  I use IIS to host it and a .ashx for managing for results.

    Is there maybe something new that needs to be allowed in IIS for 8 Captivate work?  .js seems to be fine and firewall is not the issue.  Short of ideas and the need for this work as soon as possible.

    Thank you very much for your help!

    Nick

    OK, finally solved.  For some reason any run under HTTPS lesson could not publish my results.  As soon as I changed to HTTP the results perfectly. All of this makes sense why I could post locally on the Web server.  Hope this saves someone else 5 days of hell.

  • Picture POST on the web server problem

    Hi gurus

    I am trying to display a picture jpg on a web server. I tested my PHP script on the server and I am able to upload an image using a form. Now I am making an application Blackberry POST the image on the server by using the same script however when I test the code in Java, PHP tells me that nothing has been published, I don't know what I'm doing wrong but I am doing something like this:

    String mBoundary = "SUPSUPSUPSUP";
    
    /* Preparar objeto a enviar */
    
    InputStream mImagen = this.getClass().getResourceAsStream("sample.jpg");
    byte[] mBytesPostear = IOUtilities.streamToBytes(mImagen);
    
    HttpConnection mConexion = (HttpConnection) Connector.open("http://www.raspberry.com/script.php");                        
    
    /* Preparar headers del POST. Es multiformulario con POST de un archivo */
    mConexion.setRequestMethod(HttpConnection.POST);
    mConexion.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_TYPE, HttpProtocolConstants.CONTENT_TYPE_MULTIPART_FORM_DATA + ";boundary=" + mBoundary);
    mConexion.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_LENGTH, String.valueOf(mBytesPostear.length));
    mConexion.setRequestProperty( "x-rim-transcode-content", "none" );                      
    
    /* Preparar contenido de salida */
    ByteArrayOutputStream mOutput = new ByteArrayOutputStream();
    OutputStream mOS = mConexion.openOutputStream();
    
    /* Escribir contenido */
    String nuevaLinea = "\r\n";
    String contDisp="Content-Disposition:form-data; name=\"foto\";filename=\"sample.jpg\"";
    String contEnc = "Content-Transfer-Encoding: binary";
    String type="Content-Type:image/jpeg";
    
    mOutput.write(nuevaLinea.getBytes());
    mOutput.write("--".getBytes());
    mOutput.write(mBoundary.getBytes());
    mOutput.write(nuevaLinea.getBytes());
    mOutput.write(contDisp.getBytes());
    mOutput.write(nuevaLinea.getBytes());
    mOutput.write(type.getBytes());
    mOutput.write(nuevaLinea.getBytes());
    mOutput.write(contEnc.getBytes());
    mOutput.write(nuevaLinea.getBytes());
    mOutput.write(nuevaLinea.getBytes());
    mOutput.write(mBytesPostear);
    mOutput.write(nuevaLinea.getBytes());
    mOutput.write("--".getBytes());
    mOutput.write(mBoundary.getBytes());
    mOutput.write("--".getBytes());
    mOutput.write(nuevaLinea.getBytes());
    
    /**********************/
    
    /* Escribir el contenido */
    mOS.write(mOutput.toByteArray());
    
    mOutput.flush();
    mOutput.close();
    
    mOS.flush();
    mOS.close();
    
    /* Recibir respuesta del servidor */
    InputStream mIS = mConexion.openInputStream();
    int mLongitud = (int) mConexion.getLength();
    
    if (mLongitud > 0) {             
    
        int mActual = 0;
        int mBytesLeidos = 0;
        byte[] mBytes = new byte[mLongitud];
    
        while ((mBytesLeidos != mLongitud) && (mActual != -1)){
            mActual = mIS.read(mBytes, mBytesLeidos, mLongitud - mBytesLeidos);
            mBytesLeidos += mActual;
        }               
    
        String mRespuesta = new String(mBytes);
        System.out.println("Respuesta: " + mRespuesta);
    
    }
    

    I just tried to clone the header sent by Chrome when I use the form, I think that they have the same information.

    My PHP script first checks to see if something has been posted, if nothing has been validated, it returns a message so I'm able to "consume" the script on the web server and I see that the BlackBerry is the download of the data, but the answer is that nothing has been reported.

    I think I sent you the info about the server in the wrong format.

    Any help would be greatly appreciated.

    Thank you!

    Thank you all, it works fine now, I send you the length of the full header now, it works now, I'm sharking my code. Just create and instance of this object, passing the URL of web script and the bytes of the image to the constructor, then call the getRespuesta() method

    Here we have the code:

    public class PostImagen {
        private String mURL;
        private byte[] mDatos;
    
        public PostImagen(String URLServicio, byte[] Datos){
            mDatos = Datos;
            mURL = URLServicio;
        }
    
        public void getRespuesta() throws Exception {
            try {
                String mBoundary = "SUPSUP";            
    
                /* Strings a usar para el contenido */
                String nuevaLinea = "\r\n";
                String contDisp="Content-Disposition: multipart/form-data; name=\"foto\";filename=\"sample.jpg\"";
                String contEnc = "Content-Transfer-Encoding: binary";
                String type="Content-Type:image/jpeg";
    
                /* Preparar objeto a enviar */
                byte[] mBytesPostear;
                if (mDatos == null){
                    InputStream mImagen = this.getClass().getResourceAsStream("sample.jpg");
                    mBytesPostear = IOUtilities.streamToBytes(mImagen);
                } else {
                    mBytesPostear = mDatos;
                }                       
    
                System.err.println("Longitud de imagen: " + mBytesPostear.length);
    
                /* Preparar contenido de salida */
                ByteArrayOutputStream mOutput = new ByteArrayOutputStream();
                mOutput.write(nuevaLinea.getBytes());
                mOutput.write("--".getBytes());
                mOutput.write(mBoundary.getBytes());
                mOutput.write(nuevaLinea.getBytes());
                mOutput.write(contDisp.getBytes());
                mOutput.write(nuevaLinea.getBytes());
                mOutput.write(type.getBytes());
                mOutput.write(nuevaLinea.getBytes());
                mOutput.write(contEnc.getBytes());
                mOutput.write(nuevaLinea.getBytes());
                mOutput.write(nuevaLinea.getBytes());
                mOutput.write(mBytesPostear);
                mOutput.write(nuevaLinea.getBytes());
                mOutput.write("--".getBytes());
                mOutput.write(mBoundary.getBytes());
                mOutput.write("--".getBytes());
                mOutput.write(nuevaLinea.getBytes());
    
                /* Preparar conexión y headers */
                HttpConnection mConexion = (HttpConnection) Connector.open(mURL);
                mConexion.setRequestMethod(HttpConnection.POST);
                mConexion.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_TYPE, HttpProtocolConstants.CONTENT_TYPE_MULTIPART_FORM_DATA + ";boundary=" + mBoundary);
                mConexion.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_LENGTH, String.valueOf(mOutput.size()));
                mConexion.setRequestProperty( "x-rim-transcode-content", "none" );      
    
                /**********************/
                System.err.println("Escribiendo stream");
    
                OutputStream mOS = mConexion.openOutputStream();            
    
                /* Escribir el contenido */
                mOS.write(mOutput.toByteArray());
    
                mOutput.flush();
                mOutput.close();
    
                mOS.flush();
                mOS.close();
    
                System.err.println("Se terminó de escribir payload, recibiendo respuesta");
    
                /* Recibir respuesta del servidor */
                if (mConexion.getResponseCode() != HttpConnection.HTTP_OK){
                    throw new Exception("El servidor NO regresó OK (200) al leer la respuesta. Saliendo...");
                }
    
                InputStream mIS = mConexion.openInputStream();
                int mLongitud = (int) mConexion.getLength();
    
                if (mLongitud > 0) {             
    
                    int mActual = 0;
                    int mBytesLeidos = 0;
                    byte[] mBytes = new byte[mLongitud];
    
                    while ((mBytesLeidos != mLongitud) && (mActual != -1)){
                        mActual = mIS.read(mBytes, mBytesLeidos, mLongitud - mBytesLeidos);
                        mBytesLeidos += mActual;
                    }               
    
                    String mRespuesta = new String(mBytes);
                    System.out.println("Respuesta: " + mRespuesta);
    
                } else {
                    throw new Exception("No se recibió respuesta del servidor");
                }
            } catch (IOException e) {
                throw new Exception("Error de lectura o escritura: " + e.getMessage());
            }
        }
    }
    
  • start the Web server in different folders

    I developed a compiled VI (Smarts - Net .exe) that has been designed to operate in a specific folder (\Smarts-Net) and activated the Server Web page of Smarts - Net .html in the same folder.  So far so good.

    The application receives data in real time produced another of our programs and generates graphs to show "what happens".

    My clients would like run multiple instances of my program for their customers, but want to isolate their customer 'A' customer 'B' so that they cannot display the data on the other.  I can start my application using different IP ports so that I can have multiple views, but I want to further isolate the data of the customer in different folders.

    I did a 'manager' program that will create a subfolder of the folder in my main application (\Smarts-Net) so that it would appear as "\Smarts-Net\JobA" and copy all the files in the main folder in the new subfolder.  I then change the of Smarts - Net .ini file with the new pathname of the file and the new port like this number:

    [Smarts-Net]
    server.app.propertiesEnabled = True
    Server.OLE.Enabled = True
    Server.TCP.servic = "My Server computer/VI"
    server.vi.propertiesEnabled = True
    WebServer.DirectoryIndex = "index.htm"
    WebServer.LogEnabled = True
    WebServer.LogPath=C:\Smarts-Net\Logs\Smarts-Net.log
    WebServer.MimeTypes = (a LOT of Mime types in here... I left aside for this post)
    WebServer.Port = 9501
    WebServer.Enabled = True
    WebServer.RootPath=C:\Smarts-Net\JobA
    WebServer.TcpAccess = "" + c * ' "
    WebServer.ViAccess = "' + * '"
    DebugServerEnabled = False
    DebugServerWaitOnLaunch = False

    After you change the .ini file, I start the application (Smarts - Net .exe) to the new folder.

    This is where I need help.  If I try to display the VI from another computer using an address like http://snape:9600/JobA/Smarts-Net.html, I get an "HTTP 404 - File not found" error.  But, if I try to http://snape:9600 / Smarts - Net .html, I get the VI Panel!

    Thus, it seems that I can change the Port in the .ini file, but not the RootPath.  Does anyone know how to get the html to load from a different folder from the one specified when I created the application code?

    Hello Steve,.

    From your description it looks that the web server is already doing what you say you need for.

    There is a difference between the URL path, the path that is entered in the browser and the path of file system, the location of the file on the disk.

    The WebServer.RootPath token specifies the directory of the file system that corresponds to the root directory, "/", in the URL. You have specified C:\Smarts-Net\JobA as root your path so all files in this directory will be the URL of the http://mycomputer:myport / myFile. If you want the URL of http://mycomputer:myport/Logan/myFile then you need to have your root C:\Smarts-Net\ directory.

    Does make sense?

    Nathan

  • Unable to connect to port 80 on the web server on host Ubuntu guest

    I have a very strange problem. I've been running a VM of 14.04 Ubuntu on my MBP under VMware Fusion for some time. I have re-installed Yosemite during the weekend for a clean installation trying to solve some of the problems I had. I now have my Ubuntu VM up and running. All right, except that I can't hit the web server on the virtual machine.

    I can access the virtual machine in a variety of different ways!

    • Ping: I can ping
    • SSH: I can ssh in
    • psql: I can connect to the database remotely via port 5432
    • NFS: can I get the files of the virtual machine files on my hard drive
    • Tomcat: I can access my web application directly through Tomcat on port 8080

    When I do a scan of port of the virtual machine, I get this:

    Port scan started...

    Host port scan: 10.39.186.13

    Open TCP Port: 22 ssh

    Open TCP Port: 111 sunrpc

    Open TCP Port: 389 ldap

    Open TCP Port: 2049 nfsd

    Open TCP Port: 5001 commplex-link

    Open TCP Port: 5432 postgresql

    Open TCP Port: 8000 irdmi

    Open TCP Port: 8080 http-alt

    Open TCP Port: 8104

    Open TCP Port: 37805

    Open TCP Port: 41301

    Open TCP Port: 42060

    Open TCP Port: 55224

    Open TCP Port: 60974

    Port scan has completed...

    Port 80 is not even there. The virtual machine itself, I can access the site via port 80:

    wget xnat@xnatdev:~$ http://xnatdev.wurstworks.com

    -2015-06-22 11:20:50- http://xnatdev.wurstworks.com/

    Resolution xnatdev.wurstworks.com (xnatdev.wurstworks.com)... 127.0.0.1

    Connection to xnatdev.wurstworks.com (xnatdev.wurstworks.com) | 127.0.0.1 |: 80... connected.

    Query HTTP sent, awaiting response... 302 Found

    Location: http://xnatdev.wurstworks.com/app/template/login.VM;JSESSIONID=18A2C3A7C7AB6A63F39F7AC49E54FCD4 [next]

    -2015-06-22 11:20:50- http://xnatdev.wurstworks.com/app/template/login.VM;JSESSIONID=18A2C3A7C7AB6A63F39F7AC49E54FCD4

    Reuse an existing connection to xnatdev.wurstworks.com:80.

    Query HTTP sent, awaiting response... 200 OK

    Length: unspecified [text/html]

    Record on: 'index.html '.

    [ <=>                                                                                         ] 12,818      --.-K/s   in 0.001s

    2015-06-22 11:20:50 (11.2 MB/s) - 'index.html' saved [12818]

    But the host OS, I get this:

    wget rherrick@Aerys:~$ http://xnatdev.wurstworks.com

    -2015-06-22 11:21:50- http://xnatdev.wurstworks.com/

    Resolving xnatdev.wurstworks.com... 10.39.186.13

    Connection to xnatdev.wurstworks.com | 10.39.186.13 |: 80... has failed: connection refused.

    I tried switching between NAT and open networking (I know that I had to work with NAT before, but I'm willing to try anything at this point).

    I'm on OS X 10.10.3 and the most recent, and VMware Fusion 7.1.2. Any ideas on how to get this working would be greatly appreciated!

    OK, got it market. The issue was the listen directive in configuring nginx for connecting Tomcat. I'd put it domain name FULL and port 80 on the server, but something I did is the determination of the FULL domain to 127.0.0.1 instead of the IP DHCP-published name. If this does not work because the incoming request has been the full domain name of host configured in my/etc/hosts, OS, then nginx not pair together configuring nginx for the domain since listening has been screwed up.

  • Force the url of the web server to hit the (slot) instance particularly jboss

    Is there a way we can force the url of the web server to hit the (slot) specific jboss instance? I remember that we can do in DAS from the drp port in the url of the Web server.

    Published by: 865729 on June 20, 2011 01:30

    This isn't the best forum for this question (you could get better results this announcement to the unduly JBoss: [http://community.jboss.org | http://community.jboss.org]), but I think that you can accomplish this by putting a dummy jsessionid in URL (at the first application so there is no jsessionid) and adding the jvmroute of the instance you want to hit. The jvmroute is what determines what roads of mod_jk instance demand so, theoretically, this should work.

    -George

  • Search and Index do not work in the project on the Web server

    Hello

    I use RH 7 on Windows XP and build my project to help using WebHelp.

    Search and Index functions work perfectly well in the project generated on my hard drive, but when the project is deployed on our Web server for user acceptance testing, these functions do not work.

    • When I search for a term, aid poster project "search...". ' or 'Chargement loading data, please wait... '. "(in a yellow box that displays only for a second or two,) but no display search results. When I search for a word in the project generated on my hard drive, the results appear immediately.
    • When I click on the Index tab, the list of indexes is completely empty.

    For both functions, the "done, but with errors on page" or "Error on page" message appears in the lower left corner of the browser window. When I click the icon (point), an error message appears with the following details:

    Line: 688

    Char: 7

    Error: ' Notes [...]. sTopicTitle' is null or not an object

    Code: 0

    URL: http:// < I removed this part of the path for security reasons > /webhelp/whfbody.htm

    I have attached a PDF file that contains screenshots comparing how these functions work on my drive hard and on the Web server (for security reasons, I've roughly blackened references from the company in the URL in the screenshots).

    Does anyone have an idea on top of their head as to what could prevent indexing and job search functions? Perhaps this is due to a configuration setting or the security on our Web server or something - this entire process is new to me, so I have no idea how to solve this problem.

    Thanks in advance!

    Matt

    Are you sure that all the WebHelp output files make the trip to your server, especially all these small weird things in the files whdata, whgdata and whxdata?

    Good luck

    Leon

  • Not possible to activate the scripts on the Web server

    Hello

    I would like to create a page .html for Web with a bit of scripting ESP included - Services because now I understand just this:

    <% for (i=0; i<3; i++) {
      ...some text...
     } %>

    According to this document NOR, I first need to enable scripting:

    To use the script with a Web service, you must enable the feature on the Web of LabVIEW server. In LabVIEW, select the script on the Web Server: Configuration page in the dialog box Options to enable the use of scripts on the Web server.

    I activated the Web server and it works OK. But there is nothing called "Scripting" in the configuration page - and the script is executed (the code is just printed in the form of simple text).

    Anyone know how to activate the ESP script?

    Version: LV 2012.

    Best regards, Jan

    Hi Jan,

    In fact, you use the ESP file instead of a static HTML file.  For example, if we had the static html file:

    Hello world

    This file can be located at something like /MyWebService/HelloWorld.html.

    If I then do something like have a page to say "Hello, Jan" or "Hello, Mark" I could use ESP.  In this case, your code might look like:

    <>

    var xname = form ['name'];

    %>

    Hello, @@xname

    The URL of such a web method is perhaps something like jan/MyWebService/Hellovar/Jan where Jan string literal passed to the terminal of a web method that can resemble

    In this example, the string "Jan" is passed to the terminal of the value of the VI.  What implementation of the Web method in the spec to build his signature might look like in /Hellovar /: value.

    So, back to your original question.  You embed not ESP breast and the HTML document.  Instead, you embed HTML inside a document of ESP and the rendering of the document in HTML format when accessing the URL of the Web method.  While the paper you mentioned earlier has an example project in that you can use as a reference

  • How to allow the clean-up actions to be taken by a reentrant clone before he is killed, seen through the web server, through a narrow browser?

    Here's a question I'll get lucky with.  I have a VI, set to be reentrant, broadcast via the web server.  The main instance of the VI is never worked with: it's a clone whenever someone accesses the correct URL, and the user interacts with the newly created clone (never the main forum).  A clone is able to configure and calling instrument VI when good IDs are entered, which translates to browser popups that are controllable on the end of the user (even if only one user ever does both. To clarify, many clones can be opened simultaneously for connection purposes, but that a user never interacts with the instruments that are not themselves reentrant).

    If the user clicks on my Logout button in their browser, it is trivial to close these instruments other, independent and properly clean.  But if the user simply click on the red X in their browser, it is non-stop and the instruments that the clone called stay open on the server, when they close.

    My experience so far:

    No close panel? event seems to be triggered in the clone.  The clone simply cease to be.

    The remote_panel_connections property doesn't seem to work properly in this case (I have not had luck so far), since it is possible that more than a clone to be active and that the main parent who is spawning clones stays running, but is not interacted with in some way.

    What I need:

    One way for the clone of VI recognize that the user has closed his browser and communicate that it closes all the assets of VI before ending.

    --------------

    I would like to avoid forcing the instruments that the clone call to constantly query to see if the VI clone is present on the network.  If there is no other solution, but this, I would appreciate a suggestion as to the intensive way less code and resources to implement this type of interrogation, as the instruments are really designed to be totally independent after they are called, rather than under vi.

    Thanks for all comments, let me know if you need more information.

    MTdev wrote:

    One way for the clone of VI recognize that the user has closed his browser and communicate that it closes all the assets of VI before ending.

    When a VI stops running, any reference as a queue is also cancelled.  You can make use of this fact.  If your original clone VI could launch a second reentrant VI, which remains active, you could channel all communications to the instruments via VI second using a queue created in the first.  When the first VI disappears, it will trigger an error waiting waiting VI in the second (no vote office is involved).  The second VI can take all the necessary measures.

  • Additional installers do I need to use the web server?

    I am building an application in LabVIEW 8.6 and want it includes the Web of LabVIEW server and eventually Web Services.  Should additional installers I include?  In addition to the runtime, the following options are: 'LV Web Services', "NI LabVIEW Run-Time Engine Web Server", "NI LabVIEW Web Server."  I can find no documentation explaining the differences between these - especially the last two.

    Hello Nathan,.

    From 8.6 web server is a separate component. Just as LabVIEW desktop is a separate installation program since the runtime if there is a web server for each component. In addition, Web Services is a component that is generated on the web server.

    So, if you need web server in the Office two, LabVIEW and RTE and you eventually will need to deploy web services, as well, then you'll need to install these components.

    Here's our FAQ to get Web services work - you might be useful.

    FAQ Web services

  • Activation of scripts on the Web server

    I found this, but cannot locate Scripting on the Web Server: Configuration page

    Activation of scripts on the Web server

    To use the script with a Web service, you must enable the feature on the Web of LabVIEW server. In LabVIEW, select the script on the Web Server: Configuration page in the dialog box Options to enable the use of scripts on the Web server.

    http://zone.NI.com/DevZone/CDA/tut/p/ID/7738

    It seems that scripting is enabled automatically.

  • What is the web server integrated for Windows XP Professional?

    Hello

    I would like to know what the web server integrated for Windows XP Professional.

    I don't know of a free web server like Apache or IIS.

    I want to host my site on the net using the web server integrated in XP (not IIS).

    Thanks in advance.

    It is not just any server web, other than IIS, integrated with Windows XP Professional.

    You think perhaps of Personal Web Server (PWS) which was part of the old operating systems like Windows NT.  Which no longer exists in Windows XP Professional - it has been replaced by IIS.

    -B-
    http://www.officeforlawyers.com | http://www.OneNote-tips.com
    Author: Guide to counsel for Microsoft Outlook

  • run the Web server in vmware

    Hello
    I run the Web server in the os(xp pro) host and now I want to run the Web server in the guest operating system
    I put things in the host operating system, follow
    router setting page (shared ip settings page)
    1 DHCP using OFF
    2 DMZ host server using on 192.168.10.201
    3. setting of virtual server 192.168.10.201 port TCP port internal external port 81 81
    TCP/IP
    1 use the following IP 192.168.10.201
    2 gateway 192.168.10.1
    3. the DNS settings of
    4. on the Advanced tab > Internet connection sharing > VMware Network Adapter VMnet 8
    for now, when someone tries to access my WAN IP then page host server is apear (from external network)
    If I stop server Web host then cannot access my WAN IP

    and in VMware, I put the (Windows XP Pro)
    TCP/IP configuration
    1 use the following IP 192.168.88.201
    2. default gateway 192.168.88.2
    3. the DNS settings of
    4. click the guest OS tab and click Edit > virtual network editor > NAT VMnet host is VMnet8
    5. setting NAT > Port forwarding > Add >: host port 81 machine virtual ip address 192.168.88.201 port 81
    and at the moment access to 192.168.88.201 in the guest operating system is ok the page is apear
    but nothing is apear when try and access my WAN IP external network and if I start it the host Web server then the host page is apear that im is not the intention of
    How can I make the Web server of the guest to access other networks operating system?
    in the guest operating system, I can access Web server of the customer by access 192.168.10.201
    but I can't access Web server of the client by typing host operating system access the 192.168.10.201
    any ideas? My version of vmware's vmware-workstation - 6.5.2 for windows

    Hi Teayun,

    Thanks for visiting the site of the community of Microsoft Windows XP. The question you have posted is related to VMware and would be better suited to the VMware or TechNet community. Please visit the link below to find a community that will support what ask you

    http://www.VMware.com/support/
    http://TechNet.Microsoft.com/en-us/default.aspx Shawn - Support Engineer - MCP, MCDST
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • WANT to 114 does not connect to the Web server

    Have installed a 114 WANT, everything works except for the webservices - wireless eprint etc.

    I tried everything-

    1 re-install services - error cannot connect to the web server

    2. Update - error cannot connect to the web server

    3 give the static IP address

    4 restore the default settings

    I have an internet connection on all computers.  Can someone give me a hint on how to get Web services to work?

    Hi sbenzie,

    How your printer is currently connected to the network? Via Ethernet or wireless? What is your current router / network configuration? That shows your printer because it is the IP address? What happens when you try to launch applications?

    Not yet given the information above, here's what I would try.

    I suggest to reconnect the printer to the network by running the Wireless Setup Wizard and attempt to restart the web services. If this is not enough, you may change some DNS settings in printers EWS (built-in web server) to do this, put the IP address in a browser window on your PC.

    This should start the integrated Web server. In SAP, select the network on the network tab, select 'network '.

    Then select "network address" (IP). Do not change the IP configuration at the top. Go down under "DNS address configuration"and select 'Manual DNS server'. " Under manual DNS server, enter (an 8 in each box on the first line) 8.8.8.8 and 8.8.4.4 on the second line. Press the button 'Apply' at the bottom.

    Now try to connect to Web Services again.

Maybe you are looking for

  • Need to access Mac files

    I don't have my MacBook Air more, but I need to get the files. I only have 10 Windows allotted to me. Is there anyway that I can get the files without the Mac needed?

  • Cannot connect by Satellite P750 to TV via HDMI

    Hello I am trying to connect a Satellite P750 with Windows 7 to a TV via HDMI and have had no success. I tried without success to the following:1. I chose F5 function to extend the desktop with desktop + HDMI, but also just HDMI only2. I tried the wi

  • Update size of HDD for old Compaq Presario V5000

    I have a Compaq Presario V5000 older n/p ET826UA #ABA that uses a Toshiba MK8025GAS 80 GB hard drive. The laptop is in perfect condition and I'm still very happy with it except disk space HARD is a bit cramped these days. Could someone offer manufact

  • Fable: The lost chapters not valid product key

    I bought Fable: The Lost Chapters recently and went home to install it. When I'm in the product key and it entered into it sayed it was invalid, I thought they could have messed up or something so I took it back and got a new. I went to install the n

  • I managed to install 8 GB of memory for my m9600t, he does not win 7 64 bit

    Model m9600t V5.29 BIOS (newest hp site) 8 GB system memory OS Win 7 64 bit 3.24 GB usable memory The internet search, suggestion was to "remapping memory - Enable" in BIOS.  However, I can't find anywhere to do this in the BIOS of hp