Quantcast
Channel: Ivanti User Community : All Content - Terminal Emulation (Powered by Wavelink)
Viewing all 466 articles
Browse latest View live

WIB: 10 to 20 second response time for scanning a barcode

$
0
0

Environment:

Intermec CK71 WEH6.5 with Wavelink Industrial Browser 7.3.x


Issue:

  • 10 to 20 second response time for scanning a barcode

 

Resolution:

  • In Emulation Parameters, Enable "WEB SAP Keyboard Support"

How to activate SSH2 for Telnet CE Version 6.0.42

$
0
0

Hello,

 

we have several client's running produtiv with TelnetCE Version 6.0.42

 

How is it possible to activate SSH2 protocol with this version?

 

I can not find a option in the configuration of the host profil.

 

Thanks and best regards,

Uwe

Does WavelinkTE for android not support UTF8?

$
0
0

I am suing WavelinkTE for android

I cannot find ufr8 encoding.

How to solve it?

Echo Delay Enter Script for Use in VT When Scan Terminator Moves too Fast for Scan Verification

$
0
0

Issue:  Scan terminator enters too fast in VT to allow you to verify what is scanned (Will not work with Windows TelNet)

 

First go under Emulation Parameters>Emulation>VT and HP>Common>Scan Terminator

Edit Scan Terminator, delete the information listed, click OK, save and close your emulation parameters.  Note:  Will not work with Windows TelNet as the scan terminator is not an option available at this time.

 

 

Upload the attached script via the script editor and import option.  Click done to save.

You can edit this to add other Keypress_Key pieces if needed for other scan terminators by editing the script.

 

Here is the text of the script itself that can be added to a new script by using the Add As Text button in the Script Editor:

 

Script( echo_delay_enter )

String( scanData )

Number( ScanType )

 

 

Comment: Activated on scan

 

 

    Activate( On_Input, scanData, ScanType )

 

 

Comment: Scan data

 

 

    Scan_String( scanData, ScanType )

 

 

Comment: Delays for two seconds to allow verification

 

 

    Delay( 2000 )

 

 

Comment: Sends the VT220 Enter keypress

 

 

    Keypress_Key( "VT220", "Enter" )

 

 

    Return

Script Print Screen Any Emulation Type

$
0
0

Grabs all data from the current screen and sends it to the host when pressing Ctrl-P (Note: 5250 already has Ctrl-P assigned, and the key will need to be changed)

 

Script( print_screen )

String( screen_data )

String( screen_row )

Boolean( print2 )

Number( max_screen_rows )

Number( counter )

Number( nRows )

Activate( On_Key, 0x70, Ctrl )

 

 

 

 

Comment: parse the ammount of rows on the screen

 

max_screen_rows = Get_Screen_Rows

 

Comment: set your counter to one

 

counter = 1

 

Comment: Get your screen information to the max ammount of rows, then combine the information with proper formatting

 

While( Number_Less_Than_Or_Equal( counter, max_screen_rows ) )

 

Comment: get screen information

 

screen_row = Get_Screen_Text( counter, 1 )

 

Comment: set formatting

 

If_Not( Number_Equal( counter, 1 ) )

screen_row = String_Combine( screen_row, "\0D\0A" )

End_If

 

Comment: combine data

 

screen_data = String_Combine( screen_data, screen_row )

 

Comment: run counter

counter = Number_Plus( counter, 1 )

 

End_While

 

Comment: Send data to printer

 

print2 = Printer_Data( screen_data, TRUE )

 

 

 

Return

How to change the platform version from IBMHost to VT

$
0
0

I need your help on how I can change the license platform version from IBMHost to VT. Thank you

Arrow keys acting like the tab key

$
0
0

On a screen with entry fields in a vertical list, when I use the up and down arrow keys they act like the tab key. The down arrow will move to the end of the field on the first press, the start of the next field with the second press, the end of that field with the third press, etc. Up arrow does the same thing. Left and right arrows work as expected. What setting am I missing that would change this behavior? This is on a new device, a Honeywell Thor VM3 with Windows 7 Pro. Telnet version 7.3.251 running 5250 emulation connecting to an IBM iSeries. Thanks!

Disabling and Enabling the Keyboard

$
0
0

Issue:  You need to disable the keyboard to allow scanning only

 

Attached are the scripts for disabling and enabling both the virtual and physical keyboards.  The below steps will go through using Screen Reformatter to call these at specific screens as once the keyboard is disabled using the script it must be enabled again if it is to be used during your session.

 

First import the scripts attached here using the Script Editor in the configuration utility.

 

You will need to have recorded your screens in their entirety.  The pdf guide on this can be found here:

 

Screen Reformatter Reference Guide

 

Once you have created and imported your screens, you will then call the proper script for the screen from the Screen Reformatter.  It is important to note that your script will not run if no Screen Verify Criteria is set.

 

 

Add your script by pressing F4 or going to Edit>Add Script>select script from drop down>press OK

 

 

 

Save, push out your new config and test


Scripting - Enable / Disable integrated scanner / RFID / Escape Sequences

$
0
0

Environment:

TelnetCE 7.2.x to 7.3.x

 

The following scripts will allow for the scanner to be turned on or off. Be careful when using these scripts.. if you turn off the scanner do not forget to turn it back on.

 

* These methods do not work for BT scanners. for BT scanners you need to create a script to intercept the scanned data before it is printed to the screen

 

Disable Scanner:

 

Script( Scanner_Disable )

Activate( From_Menu )

    Escape_Sequence( "%0S" )
    Return

 

Enable Scanner:

 

Script( Scanner_Enable )

Activate( From_Menu )

    Escape_Sequence( "%1S" )
    Return

 

Enable scan Trigger:

Script( ScanTrigger_Enable )
Activate( From_Menu )

    Escape_Sequence( "%6;1S" )
    Return

 

Disable Scan Trigger:

 

Script( ScanTrigger_Enable )
Activate( From_Menu )

    Escape_Sequence( "%6;0S" )
    Return

 

This type of script is normally used in conjunction with the Screen Reformatter to better handle of when to enable / disable the scanner on particular screens.

 

Escape Sequence defined:

 

Sets the scanner to be enabled/disabled after successful scans, where Pb is the bar code type scanned and Ps is the scanner setting to be set:

 

Pb=0  After no scans (Ps ignored); disables mode

Pb=1  After all scans

Pb=2  After 1-D bar code scans

Pb=3  After 2-D bar code scans

Pb=4  Return current setting (Ps ignored).  Returns:

          ESC % ? <type> ; <setting> A

 

Ps=0  Set mode off

Ps=1  Set mode on

 

Soft Trigger:

Pn=6  Soft Trigger.  Disable 6 trigger.

Pn=6  Soft Trigger.  Enable soft trigger.

Example:

ESC % 6 ; 0 S

ESC % 6 ; 1 S

 

Custom Sequence:

 

ESC % Pb ; Ps A

 

RFID Enable and Disable:

 

Format: ESC $ Pe ; Pr R

 

PE=0 Disable RFID

Pe=1 Enable RFID

Pe=2 Don't change RFID state

 

Pr=0 Don't return new state

Pr=1 Return new state

 

if Pr=1, it returns ESC $ Pe R

 

Where Pe=0 if the RFID reader is disabled, or Pe=1 if the RFID reader is enabled

(The command ESC $ 2; 0 R is valid, but will do nothing)

change codepage TelnetCE to display the correct letters: ä, ö, ü

$
0
0

Hi all,

where can i change the codepage to change correct display of ä,ö,ü.

 

Thanks

Max

Cannot get script working (multiple conditions)

$
0
0

Hi there,

 

I kindly ask you for some help because I'm stuck on a script for a customer.

 

My conditions work fine when alone, everytime I try to combine my conditions, i won't have any output when scanning (bulding the script returns no error).

Do you have an idea of what I'm doing wrong please ?

 

Device : MC92 CE, using TNCE v7.3.252

 

Thank you,

Nicolas

 

 

Script( KE1_REC )

String( sBarcode )

String( NewString )

Number( nBarcode )

Activate( On_Input, sBarcode, nBarcode )

    Comment: :  If(Boolean_And( String_Equal( Get_Screen_Text( 1, 1 ), "KE1 REC", 7, FALSE ),String_Equal( Get_Screen_Text( 4, 1 ), "LPN:", 4, FALSE ),Number_Equal(nBarcode, Get_Scan_Type_Value("QR CODE"))))

   If( String_Equal( Get_Screen_Text( 1, 1 ), "KE1 REC", 7, FALSE ) )

    If( String_Equal( Get_Screen_Text( 4, 1 ), "LPN:", 4, FALSE ) )

     If( Number_Equal( nBarcode, Get_Scan_Type_Value( "QR CODE" ) ) )

        NewString = String_Middle( sBarcode, 2, 18 )

        Keypress_String( NewString )

        Keypress_Key( "VT100", "Enter" )

        NewString = String_Middle( sBarcode, 30, 6 )

        Keypress_String( NewString )

        Keypress_Key( "VT100", "Enter" )

        NewString = String_Middle( sBarcode, 38, 10 )

        Keypress_String( NewString )

        Keypress_Key( "VT100", "Enter" )

        NewString = String_Middle( sBarcode, 50, 5 )

        Keypress_String( NewString )

        Keypress_Key( "VT100", "Enter" )

End_If

End_If

    Else

        Scan_String( sBarcode, nBarcode )

    End_If

    Return

Scanner not returning data

$
0
0

I've been having some occasional trouble with the Wavelink Industrial Browser on some Datalogic Falcon X3s. (Both the Falcon X3 and Falcon X3+)
The IB shows the web page correctly, but when a scan is attempted, it seems like it reads the barcode (IE, the laser turns off), but there is no confirmation beep, and the data is not returned to the input box on the screen.
I've already confirmed that the scanning functionality works fine outside of Wavelink. Dropping back to Windows, they can scan text to Notes just fine.

 

I found this article in the knowledge base, but these settings don't seem to have made a difference.
Scanner wont input data on CI70 Device Using TelnetCE.

 

Anyone else run into this issue before?

How to enable keyclicks in Android TE 2.0

$
0
0

How to enable keyclicks in Android TE 2.0 *Please don't suggest Velocity due to the context bar not fitting screens info

Can scaning with MC92N0 include Vibration?

$
0
0

Is there a TelnetCE 7.3.x CE7 Script command for MC92N0 to include Vibration with a scan beep? This can be triggered by DataWedge as per the user guide.

TE SSH login with GSW UTS Saved Sessions

$
0
0

Hello,

 

We're using WaveLink TE on MC92N0As with a GSW UTS server. We're populating the user name and password fields under SSH Settings so that the users aren't prompted for the logon credentials to the server. Once the user successfully connects to the server, they are prompted for their SAP credentials. However, we're utilizing the Saved Session feature with GSW. Because of this, if the user terminates the session from within TE, then connects again, TE isn't prompted by the server for the SSH credentials. As a result, TE is populating the SAP fields with the GSW credentials as it's the first user and password fields that it encounters.

 

The only workaround I've found so far is to terminate the Saved Session from the GSW server but obviously this isn't satisfactory. Does anyone know of a way to prevent TE from populating the credential fields if it's a Saved Session that's being launched?


Symbol MC3190

$
0
0

Hi our company recently purchased a few Symbol MC3190 RFID Scanners. Does Telnet Ce comes pre license ? we have about 30 Motorola MC3190 that came pre licensed. Symbol and Motorola same company?

 

thanks

Wavelink Emulator license server

$
0
0

Can i install and run wavelink emulator license server and Avalance server on the same box? Will this cause any issues or conflicts?

Why does the IOS not read itf

$
0
0

I have downloaded the app, which comes up as an unlicensed version. No setup for decoders. I need ITF enabled. How do I license it and will this solve the problem?  

Terminal Emulation Dolphin 6510 CE6.0

$
0
0

I need to install Terminal Emulation on Dolphin 6510 CE6.0, but there is no option to download.

 

Is there any alternative solution?

Emulation License Server - Unable to distribute licenses once the device is re-imaged or back from repair

$
0
0

Environment:

Emulation License Server

All licenses in Use

Device comes back from repair and you connect it to the emulation license server

Issue:

A device comes back for reimaging or back from repair, I connect it to the Emulation License Server and is unable to get a device because none are available

 

Resolution:

In the license server configuration, change ReassignDays = 0 to ReassignDays = 5

 

This will allow the server to recycle licenses.

 

Advice going forward:

Only set ReassignDays to 0 if you are absolutely certain that the device will NEVER talk to the emulation license server again.

 

If there is any chance that the device WILL talk to the emulation license server, then you will need to have it set to at least 5 or higher.

Viewing all 466 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>