write the multiple value series buffer using the structure of the case

In this VI, I am generating waves by using the sliding bar. After that I compare it to a value as 0.6. If the value of wave is higher than 0.6 then led flashes and structure case written 1 value serial buffer. If it is less than 0.6 became led off and structure written case value 0 in the stamp series. now, I want to add another condition if the chart value is between 0.2 to-0.2 written structure case 2 series buffer value. can you tell me how can I do this?


Tags: NI Software

Similar Questions

  • Passing values between tabs, using a structure of housing.

    At the risk of exposing my ignorance, I have a problem of substance; How to pass values in a controlled tab structure of the case.

    I have a simple user interface that uses a control tab control container a structure of all cases wrapped in a while loop. I use

    LabVIEW 2012.

    The basic intent is to run VI in tab 1, whose results would be available for the VI tab 2 ect...

    (See the attached example; an experience I wish that changes to the controls to page 1 int & string will appear

    the indicators corresponding to page 2).

    I can "pass" the values of a case outside the case itself (through a tunnel of output) structure, but can't seem to do

    available for all other cases by a tunnel entrance.

    I tried to tunnel of the case in a registry to lag on the while loop, but am upset by retrieving that data again in another case.

    I tried to use local variables, but obviously do not understand the paradigm brought LabVIEW for variables. I can create a local

    variable but can't seem to 'plug in' to an indicator on the second page.

    First question: is a reasonable method for execution of the loop control program structure business controlled within a certain time tab?

    I chose it because I have literally dozens of parameters to define, validate and want to manage Visual space

    for the operator. For example, I would that this sequence:

    1. Question and list of facilities available on my PC
    2. Select a device to use, make sure it works properly
    3. Set the parameters for this particular device (30)
    4. run the device, collect data and save the results

    Second question: it is clear that I don't know how to use variables, and the examples I read involve transmission of data to parallel structures

    and not in a case. Is a local variable to a reasonable method of transmission of data between the "tabs"? I will gladly make

    accept the reprimand to 'RTFM' until 'FM' required is identified.

    Thank you in advance for your kind attention to my wisely first year survey

    Shift registers are simple to get data from.  Where is your problem with their use?  However, have you considered just using the terminals directly in the case of the Page 2?

    You must learn to use the Structure of the event.  You shouldn't care what tab you are on.  It's all in the same VI.  Therefore use a Structure unique event for all your control value changes.

  • Problems using the event to write new parameter values to VISA structure

    Hi all

    I created a VI to read an Omega flow meter. It is possible to change setpoint (setpoint (0-2) SLPM) of the meter and the gas (O2, CH4,...). To read instrument I write its ID (A-Z), followed by a carriage return, for example: A + 0x0D

    I created a VI with the events to write only the parameters to the instrument when a value is changed. My VI works but from time to time, it does not write the parameter change (gas or set point). I think that is has something to do with the while loop containing an entry VISA.

    Open FMA contains parameters and VISA opend

    Case of timeout initialize writing gas and setpoint for the first time

    Other events are for the change in the value of setpoint and gas

    How can I make sure that any change of setting will be writtent the instrument?

    Thank you

    Salvation Bass,

    Well, it is true that I lose this way time-out feature.

    No, you do not lose this feature. You put in a different position.

    You must call it BEFORE your loop!

    I'm not sure that I am following on this one there

    Why are you not sure? You have a large number of constants "0d" and it would be great to see that they are displayed in HEX mode instead of the normal display mode.

    The new VI manages events sometimes... but sometimes, missing a few changes... I think it is because there is an entry in the while loop. Do you have any idea how to prevent this?

    Never, NEVER use parallel loops to write and read on the same device on your serial port!

    How do ensure you that you always get the right answer to your order sent before?

    What is the purpose of using a second loop here? A loop with no wait States?

  • Using the index of multiple values

    Hi guys,.

    Trying to assess the benefits of the addition of index of multiple values, a quick question on the index of multiple values:

    Here's my content from the cache:

    Key (EmpID), value [employee (age int, double salary, Department of String)]
    (1, new employee (25, 35000.0, "Admin"));
    (2, new employee (22, 30000.0, "Admin"));
    (3, new employee (34, 40000.0, 'Communications'));
    (4, new employee (36, 41000.0, "Admin"));
    (5, new employee (36, 42000.0, "HR"));
    (6, new employee (29, 30000.0, "HR"));
    (7, new employee (51, 50000.0, "BackOffice"));
    (8, new employee (36, 35000.0, "HR"));
    (9, new employee (46, 45000.0, "Admin"));
    (10, new employee (48, 47000.0, "HR"));

    If I still want to find all employees in the 'Human resources' Department and whose salary is more than 35000.

    Eventually, I would like to do the following:
    ValueExtractor salExtractor = new PofExtractor (Integer.class, 2);
    ValueExtractor depExtractor = new PofExtractor (String.class, 3);
    cache.addIndex (salExtractor, false, null);
    cache.addIndex (depExtractor, false, null);

    EqualsFilter departmentFilter = new EqualsFilter (depExtractor, 'HR');
    GreaterFilter salFilter = new GreaterFilter (salExtractor, 35000);
    Filter allFilter = new AllFilter (new filter [] {departmentFilter, salFilter});
    Employees value = cache.entrySet (allFilter));

    For my usecase above how can I use the indexing of multiple values to the same query?
    ValueExtractor salExtractor = new PofExtractor (Integer.class, 2);
    ValueExtractor depExtractor = new PofExtractor (String.class, 3);
    MultiExtractor mExtractor is new MultiExtractor (new ValueExtractor [] {salExtractor, depExtractor});.
    cache.addIndex (mExtractor, false, null);

    But how can I use the extractor to create multivalued filter queries for employees in the Department of human resources with greater than 35000 salary? Any ideas are much appreciated.


    Thank you

    D wrote:
    Hi guys,.

    Trying to assess the benefits of the addition of index of multiple values, a quick question on the index of multiple values:

    Here's my content from the cache:

    Key (EmpID), value [employee (age int, double salary, Department of String)]
    (1, new employee (25, 35000.0, "Admin"));
    (2, new employee (22, 30000.0, "Admin"));
    (3, new employee (34, 40000.0, 'Communications'));
    (4, new employee (36, 41000.0, "Admin"));
    (5, new employee (36, 42000.0, "HR"));
    (6, new employee (29, 30000.0, "HR"));
    (7, new employee (51, 50000.0, "BackOffice"));
    (8, new employee (36, 35000.0, "HR"));
    (9, new employee (46, 45000.0, "Admin"));
    (10, new employee (48, 47000.0, "HR"));

    If I still want to find all employees in the 'Human resources' Department and whose salary is more than 35000.

    Eventually, I would like to do the following:
    ValueExtractor salExtractor = new PofExtractor (Integer.class, 2);
    ValueExtractor depExtractor = new PofExtractor (String.class, 3);
    cache.addIndex (salExtractor, false, null);
    cache.addIndex (depExtractor, false, null);

    EqualsFilter departmentFilter = new EqualsFilter (depExtractor, 'HR');
    GreaterFilter salFilter = new GreaterFilter (salExtractor, 35000);
    Filter allFilter = new AllFilter (new filter [] {departmentFilter, salFilter});
    Employees value = cache.entrySet (allFilter));

    For my usecase above how can I use the indexing of multiple values to the same query?
    ValueExtractor salExtractor = new PofExtractor (Integer.class, 2);
    ValueExtractor depExtractor = new PofExtractor (String.class, 3);
    MultiExtractor mExtractor is new MultiExtractor (new ValueExtractor [] {salExtractor, depExtractor});.
    cache.addIndex (mExtractor, false, null);

    But how can I use the extractor to create multivalued filter queries for employees in the Department of human resources with greater than 35000 salary? Any ideas are much appreciated.

    Thank you

    I remember, values multiple index refers to a different concept: a multivalued index means that you can retrieve a collection of values of similar role of an attribute on which you can do Contains, ContainsAll filtering, and ContainsAny.

    In this case to fully the lever consistency of querying capabilities, you would
    - either add a sorted index with a custom comparator that compares the tables containing a salary and a Department on a first salary so the base of the Department and add a filter custom which is able to take advantage of the index for the request for the salary and also able to filter on the element of the array of index service
    -Add two independent indices (a sorted index of wages and a unsorted for the Department), in which case you can leverage all existing (GreaterThanFilter, EqualsFilter and AndFilter) code

    Best regards

    Robert

  • How ins or upd multiple values in a record of diff of the fields by using the cursor

    Hai All

    I need to insert or update or multiple values in a single diff of one field records to another table.

    Table 1 has 3 fields

    Bartime bardate barcode

    02/01/10 0011, 0815

    02/01/10 0022, 0820

    02/01/10 0011, 1130

    02/01/10 0022, 1145

    02/01/10 0011, 1230

    02/01/10 0022, 1235

    02/01/10 0011, 1645

    02/01/10 0022, 1650


    These are the times that arrives at 0815 and pauses at 1130 and arrives at 12: 30 a.m. and coming home at 4:45 pm
    These table I have to insert into another table called table2
    and the fields are bar codes, date, intrinsically timein, introut, tiomout

    And the output you want to like this

    barcode timein intrinsically introut timeout date
    0011 0815 1130 1230 1645 02/01/10

    0022 0820 1145 1235 1650 02/01/10

    If all give some good answer that it will be help full...

    Thanks and greetings

    Srikkanth.M

    Hi Srikanth,

    1. first create a datablock (better do instead of the table because its only for querying details of table 1 for the period) with table1 as table base and better use order by clause in form as "order to barcode, date, bartime.

    2. create a second datablock with table2 and get this rank on the two table (second block as base table, because here, you should insert/update)

    now on the screen you can see all the data in 2 tables.

    3. fix the button of some process.

    a time-but-press

    Loop

    1 block of travel and take a line

    Find the same block 2

    If code in bars-avail so
    -you want to update
    on the other
    -you want to insert

    end if;

    end of loop

    and 2nd block will be updated / inserted as u desire, and finally, you can save the second block.

    Iqbal

  • Problem with the format of the values in the command prompt (when you use multiple values)

    Hi all

    I have problem with the format of the values in the command prompt when you use multiple values.

    Value is year (2009) and when I use it in the drop-down list that is formatted, all right, as 2009, but when I use several values I get number as 2009,00. I put in year column format number with 0 decimal places and save by default in the year column. Year is formatted well anywhere in the query, such as 2009. Why is - what happens at the command prompt when you choose multiple values in prompt dashboard?

    Thank you

    I think the YEAR Data Type could be defined DOUBLE RPD.

    Use the CAST function in the formula (fx) and the output from test.

    CAST (INT YEAR)

    Hope, it will help you.

  • Using the calculation script to write the value of the variable Substitution in a file

    Hello

    I am trying to use the calculation script to write the value of Substitution variable in a text file.
    I use the dataexport command. But it is not able to write values in the text file.

    Any help is appreciated.

    Thank you.

    MaxL would display variable. See: http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_techref/maxl/ddl/statements/dispvarb.htm

    BTW, I mostly prefer Esscmd MaxL. I think that makes me a heretic, but I don't understand why I don't want to type more rather than less to get the same result.

    Running a calc:
    Esscmd - RUNCALC 2 calcname
    MaxL - run calculation Sample.Basic.calcname;

    To be fair, Esscmd requires a dbname appname SELECT before the RUNACALC, but it is always less striking.

    However, time is running, so I don't have too. And of course, MaxL now has many things that Esscmd doesn't like Esscmd is obsolete.

    I always use Esscmd to run scripts of calc I can actually watch the output in real time as opposed to MaxL that exports the console at the end of execution.

    Kind regards

    Cameron Lackpour

  • Peovisioning attribute to multiple values in a table SQL using the GTC in detail

    I have a recon trust implemented Sun LDAP for IOM followed to auto put into service at table 'MyUser' to SQL using GTC. It works great so far.

    Now the difficult part of the requirements. I have a multivalued attribute called "AppRoles" associated with Sun's LDAP user. I would like access to this attribute to the 'MyUserToRole' of SQL table (this is a picture of detail table Master "MyUser"). What should be the best approach to this task?

    Thank you!
    Kabi

    For the look-up:
    Once you run Trusted Recon, all your AppRoles are inserted in this research and the different lines for different users. Use the IOM API for this. A basic structure could be as follows:

    Code - Decode
    User01 - Role01, Role02
    User02 - Role02, Role03, Roel04
    User03 - Role08, Role12

    In this way all the roles are stored in this research. Bu the only problem with it could be the change in the look upwards manually which could be tolerated as there are glitches with almost all of the solutions implemented.
    --------------------

    For the field of the UDF
    Yes, their would be a limitation in the text box and it is * 200 * characters. So if that's the case then you should go for the look-up which has no such restrictions at least for your condition.

  • Write the blob value in a file

    Hi all


    I'm looking on the correct method of writing a blob value to a file. I know the best way to use an external language. For example, Java or C. But also, I met a number of solutions to do within pl/SQL block. All of them look like this:


    CREATE OR REPLACE PROCEDURE Write_Binary_file
    (
    PC$ Directory IN VARCHAR2
    , PC$ file_name IN VARCHAR2
    , PC$ SQL_Order IN VARCHAR2
    , PB$ Raise IN DEFAULT BOOLEAN FALSE
    )
    -- -------------------------------------------
    -Procedure to empty a BLOB column in a file
    -- -------------------------------------------
    -settings:
    -PC$ Directory: name of an existing directory of Oracle
    -PC$ file_name: name of the file output expected
    -PC$ SQL_Order: SQL command to select the BLOB column
    -PB$ Raise: boolean to indicate if the process
    -would be stopped after an error
    --
    IS
    src_lob BLOB;
    RAW buffer (16384).
    AMT directory: = 16384;
    INTEGER POS: = 1;
    LF$ FicOUT UTL_FILE. TYPE_DE_FICHIER;
    LC$ Msg VARCHAR2 (2000);
    BEGIN

    -get the BLOB column-
    BEGIN
    EXECUTE IMMEDIATE PC$ SQL_Order IN src_lob;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    LC$ Msg: = ' Write_Binary_File(): NO_DATA_FOUND';
    If PB$ increase THEN
    RAISE_APPLICATION_ERROR (-20100, LC$ Msg);
    END IF;
    Dbms_Output.put_line(LC$MSG);
    RETURN;
    END;

    -Open the output file-
    LF$ FicOUT: = UTL_FILE. FOPEN (Directory$ PC, PC$ filename, 'W', 32764);

    -write the file-
    LOOP
    -play songs-
    Dbms_Lob.read (src_lob, amt, pos, buffer);
    -write the songs-
    Utl_File.Put_Raw (LF$ FicOut, buffer);
    POS: = pos + amt;
    END LOOP;
    -Close the file-
    Utl_File.fclose(LF$FicOut);

    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    UTL_FILE.fclose(LF$FicOut);
    WHILE OTHERS THEN
    LC$ Msg: = ' error Write_Binary_File(): ' | TO_CHAR (SQLCODE) | "everything by managing the file (')"
    || PC$ Directory | ') ' || PC$ file_name;
    If PB$ increase THEN
    RAISE_APPLICATION_ERROR (-20100, LC$ Msg);
    END IF;
    Dbms_Output.put_line(LC$MSG);
    END Write_Binary_file;
    /


    But this code doesn't seem to work. The problem is that it always creates a slightly bigger than an initial file. So copy jpg will never be opened with any viewer.

    Can someone explain this problem and give no work around?

    Thank you

    Hello

    If I look at this procedure, I think that you forget to check if the last part, it takes to read is less than 32000. Now you put the always full buffer to the desired quantity. The last part, you only need to read from the BLOB what remains, nothing more. By reading more, get your blob of larger than expected.

    I use the package lie on this page for several years and no complains: http://www.adp-gmbh.ch/blog/2005/november/20.html

    Herald tiomela
    http://htendam.WordPress.com

  • Multiple values per column in the stacked bar chart

    I want to use a bar chart stacked in a dashboard of the process, but I am wondering how I can add multiple values per column, because through the available methods, you can only add one value per column. I add some values to hardcode and I get the chart but, for example, I want to add series anocher in the table named 'Closed' and values for this in each column (January, February, etc.)

    Data source for filling
    result as a Fuego.Chart.DefaultXYDataSource
    result = Fuego.Chart.DefaultXYDataSource ("Opened");

    addValue result
    using
    value = 5,
    columnHeader = "January".

    addValue result
    using
    value = 10,
    columnHeader = "February".

    addValue result
    using
    value = 15,
    columnHeader = "March".

    addValue result
    using
    value = 7,
    columnHeader = "April".


    I enjoyed your collaboration if you have worked with graphics stacked bar.

    Hello

    You were very close.

    Try to use the Fuego.Chart.XYZDataSourceImpl object. This will give you the third dimension that your stacked bar chart needs and these attributes in the addValue method:

  • value
  • rowHeader (maybe that's where you set your month name)
  • columnHeader (maybe it's where set it to 'Open' or 'Closed' in your example)

    Dan

  • Why doesent runstate.sequencefile.data.seq.mysequence.mystep.result.numeric contains a measure value when I use it in a reminder of the UUT post?

    Hello

    I want to write that a witch of the csv file contains all the measured values and the limits of my machine. So I try to give the values in post use reminder to a vi. The limits work and the csv file contains all my limits, but the measured values are all 0. I used runstate.sequencefile.data.seq.mysequence.mystep.result.numeric

    I do not want to do with FileGlobals because they are values much.

    Thanks for any advice for this problem.

    There is probably a better way to accomplish what you want.  But to make your life easier, I'll give you the hacky solution:

    Use: Runstate.ProcessModelClient.Data.Seq.MyStep.Result.Numeric

    The funny is that the report must contain all the information you want. Just, I would create an engine to convert your csv look.  If you use 2012 then this seems to be an ideal candidate for a plugin.

    Hope this helps,

  • Can after get values a RGB pixel, hoe I write the name of the color?

    Team,

    I'm quite new to LabVIEW and I'm working on an application using USB webcam to capture the color of the object.

    So far, it's finished, but now I need to write the name of the color on the screen.

    Please, could someone help identify if IMAQ or Labview have this feature?

    For help in understanding:

    Below you can see the example.

    R = 236

    G = 0

    B = 116

    And the name of the color is pink.

    But the problem is how to get the name by using certain features available.

    Thank you.

    Kind regards

    JCG

    There is not such a function, but you can create a pretty easily.

    I would divide each color component by 64 and to get a value of 2 bits for each color.  Combining these (multiply/shift and add) would give you a 6-bit integer, which gives you 64 color combinations.  Create an array of 64 strings with the names of the colors and the correct name indexes.  You need to browse manually the first time and assign a name to each color, but that wouldn't be too bad.

    Bruce

  • Write the previous values DBL

    Hello

    I work with LabVIEW 2013. I'm receiving the channels of a robot and the analysis of the data and plot the position real vs commanded position. When the robot meets and error, it sends LV and messages. All string parsing is done in the same place, so the graph just to draw all 0 when it receives an error.

    I have it such that when it detects an error, it lights a Boolean value. What I have to do now is to write the previously known values for the "true position" instead of setting them to 0. Is this possible?

    A snippet of my code is attached. I get this channel 4 times per second.

    Thank you

    SM

    Here's a quick example. If an error occurs, use the old value of the FN, if not use the new string data.

  • When Microsoft Excel loads the following error occurs: Error 1406 Setup cannot write the value in the \xlsx registry key.

    I have Windows XP on a PC, I bought at the beginning of 2009.  I have been using Microsoft Office applications with no problems until now.  When I try to open Excel, the following events occur: 1) a presentation box appears and poster - "Please wait while the window configures Microsoft Office Home and Student 2007.  Collection of the required information.   2nd) another box displays the following message: Error 1406 Setup cannot write the value in the \xlsx registry key.  Make sure you have sufficient permissions to access the registry or contact the Support Services technical Microsoft (PSS) for help.  For more information about how to contact PSS, see PSS10R. CHM.
    3rd, the next area said cancel, start over or ignore.   Retry and ignore just redisplays the same message box again.  When I click Cancel, the following error message is displayed - fatal error during installation.   I do not understand why this is happening since 1) I've been using Excel for quite a while and 2) I'm not trying to install office as it was installed on my PC when it came from the manufacturer (Dell).  Also, I have no problem with the opening of other Office programs.  I am the only user on this computer.  Help, please!  Thank you, Dennis

    Okie dokie.

    Well I dug on the web and found someone with the same problem, and they said that when they have disabled "McAfee VirusScan 8.5 Access Protection", this error has disappeared. If this applies to you, give it a whirl if you wish.

    But the best support that I found came from this website: http://support.microsoft.com/kb/838687. The jist of it is (trying to fix it yourself):
    Fix it myself to fix this problem yourself, follow these steps:

    1. Log the computer by using an administrator user account.
    2. Start Microsoft Windows Explorer.
    3. On the Tools menu, click Folder Options.
    4. Click the view tab.
    5. Under hidden files and folders, click Show hidden folders and files.
    6. Clear the Hide extensions for known file types check box, and then click OK.
    7. Open the following folder: C:\Documents and Settings\All Users\Application Data\Microsoft\Office\Data\
    8. If you are running Office 2003, right-click Opa11.dat, and then click Properties. If you are running Office XP, right-click Data.dat, and then click Properties.
    9. Click the Security tab.
    10. Click Advanced.
    11. Click the permissions tab.
    12. Click to select everyone in the list entered permissions and then click change.
    13. Click to select the full control check box.
    14. Click OK three times. If these steps do not resolve this issue, delete the Opa11.dat file or the Data.dat file in the following folder and then restart an Office 2003 program or an Office XP program:
      C:\Documents and Settings\All Users\Application Data\Microsoft\Office\Data

      If this does not work for you, I would take my installation CD< completely="" uninstall="" microsoft="" excel="" (or="" any="" other="" problems="" that="" are="" giving="" you="" this="" error),="" then="" install="" microsoft's="" windows="" installer="" cleanup="" utility="" (which="" completely="" removes="" all="" stuff="" pertaining="" to="" whichever="" program="" you="" delete,="" for="" you,="" excel)="" and="" then="" reinstall="" microsoft="" excel.="" this="" utility="" program="" is="" really="" powerful,="" and="" you="" can="" download="" your="" copy="" from="">http://support.microsoft.com/kb/290301.

      So, here are three options for you to try. I hope one works for you - let me know it to be.

    -Carson

    P.S. - KC Chiefs? Colts all the way! :)

  • Microsoft Camera Codec Pack (16.0.0652.0621) - "couldn't write the Progid value to key" error - Windows 7 on Macbook/Boot camp

    I am trying to install the new codec from Microsoft to allow me to browse/preview of RAW files. I use Windows 7 as administrator on a MacBook Pro with the book Camp. The error I get is

    Could not write the Progid value to key
    \software\microsoft\windows\currentversion\explorer\fileExts codec\.arw\userchoice
    Check that you have sufficient access to that key or contact your support team
    I used the x 86 file on the site
    Any ideas?
    Thank you.

    What a PITA, it was!

    1. go in HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts

    2. right click on permissions
    3. click on advanced
    4 uncheck «include permissions inheritable...» »
    5. click on remove
    6. click on add
    7. tap all and press enter
    8. click on the control to total control
    9 check "replace all child object permissions...". »
    10. click on Yes
    11. click on OK
    12 run the installation. It should go right now
    Once completed
    Repeat steps 1 to 3.
    4. check «include permissions inheritable...» »
    5. check "replace all child object permissions...". »
    6. click on Yes
    7. click on all members of the list of albums
    8. click on remove
    9. click on OK
    This should be it. Hope this helps everyone and MS solves the problem.

Maybe you are looking for

  • Y50 - 70 - cannot install nvidia GTX960M graphics card

    Hello everyone, I just reinstalled OS (Win 8.1 64 bit) on my Lenovo Y50-70 with geforce GTX 960 M and I can't find the correct driver. When you run the installer it is said that there is no compatible hardware detected for this software... Graphics I

  • Double-sided printing option

    I have a manual duplexing option in Word, but not in Excel. Why?

  • Does anyone know when they will update HP Support Assistant for Windows 8.1 64bits?

    Anyonre know when HP will release an update for HP Support Assistant for Windows 8.1 64 bit or are we suppose to fight with whatever we have, which stops working all the time.

  • Fill pdf and Windows Forms

    I recently installed a new computer with Windows 7.  Open files that I can open and fill out and print on vista and Windows xp, but there is no option to flood the Windows 7 computer.  What I'm missing or is there a setting somewhere that I don't kno

  • 4.1 VCO Client connection problem

    HelloI used the vCenter Orchestrator Configuration Web Interfarce for Configuration. Everything is green and the LDAP connection Test worksBut I can't connect with the client / I'm looking for the (long and short) hostname IP address / Loopback addre