on 2024 Dec 20 12:34 PM
We are running some old RF devices on SAPConsole with Telnet and are using the solution from OSS note 371838 (NOTIFY_BELL_SIGNAL) to get a sound from the device.
We have also some Zebra MC330K running from SAP ITS. On this Android device we are running on the Velocity browser. IT has chosen this to lock down for unwanted features in the browser. But the result is that the old solution with sound don't work anymore.
Are somebody running this combination ?
The browser basically just supports the IDA Command IDA_BEEP and IDA_ERROR_BEEP
The only way to send this sound is by using code from this : https://help.ivanti.com/wl/help/de_DE/Velocity/1.1/Velocity/DevelopingPages/IDA_Commands.htm
Basically I have modified the SOUND.HTML that was added with ~ITSMOBILESOUNDINCLUDE
The sound.html looks like this
<script type="text/javascript" language="javascript">
`if ( ( ~messageline != "" ) && ( ~itsmobilemsgsound == "1" ) || ( ~currdynpro.messagesound != "" ) )
if ( ~currdynpro.messagesound == "S" )
<!-- sucess message -->
` location.href = "ida:IDA_BEEP" ;
` elseif ( ~currdynpro.messagesound == "I" )
<!-- information message -->
` location.href = "ida:IDA_BEEP" ;
` elseif ( ~currdynpro.messagesound == "W" )
<!-- warning message -->
` location.href = "ida:IDA_ERROR_BEEP" ;
` elseif ( ~currdynpro.messagesound == "E" )
<!-- error message -->
` location.href = "ida:IDA_ERROR_BEEP" ;
` else
<!-- message type not set -->
` location.href = "ida:IDA_ERROR_BEEP" ;
` end;
end;`
</script>
I can't get "document.location" or "window.navigate" to give a sound. And the problem with "location.href" is that it displays a empty screen, when I have to use Back un the device to get back to the screen.
Has anyone a solution for this combination ?
Request clarification before answering.
| User | Count |
|---|---|
| 16 | |
| 16 | |
| 6 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.