Loadrunner not allowing to connect to a telnet host in RTE recording - telnet

I have used loadrunner 12.53 in my previous machine and had connected to a telnet host for recording without any issues.
But I recently downloaded 12.55 community edition in my new machine. When I give the host name and terminal type as before, it says "unable to connect to host".
I don't have any idea why it is showing this. The installation was done the same way as before. The telnet application also didn't change recently. Can you suggest what could be the problem?

Related

SSHing into WSL2 of a remote Windows 10 from Windows 10

I am planning on using VS Code to work out of WSL2 installed on a remote machine. Before doing that, I wanted to check the direct connectivity from a Windows 10. I followed the instructions given in this blog. Also, the remote Windows 10 is on a VPN.
When I use the command ssh <username>#<IP address>, I get the message
kex_exchange_identification: read: Connection reset
Is there anything I am missing to get the connection going?

Pycharm Remote Dev using SFTP with Yubi Key authentication

I have PyCharm Pro. I am trying to do remote development on a server. I have read the following Jetbrains tutorials:
Deploying Applications
Remote Development on Raspberry Pi
as well as the very helpful tutorial:
Remote debugging with pycharm the missing tutorial
While I seem to be able to set everything up, authentication fails when I try to connect to the remote server using the 'SFTP' protocol. I can make an SSH and SFTP connection from the CLI in a terminal so I know the ssh configuration settings are correct. However, in my case authentication requires ssh and having a Yubi key connected to my laptop. Does that make a difference?
Has anyone had a similar issue? If so, how did you resolve it?
On MacOS the challenge is where the IDE is getting it's ssh socket agent. To make this work in my case I have to launch the PyCharm Pro IDE from a terminal.
Go to '/Applications/PyCharm.app/Contents/MacOS' directory and launch with './pycharm'

how to connect to the virtual machine via remote desktop on the screen without enabling remote desktop check option in virtualbox

as stated in my question. I'm trying to have connection to a virtual machine remotely without enabling virtualbox remote desktop screen. using the network host only. but I could not make this connection without having to enable the option on the screen.
according to my research it is possible because applications as Andy or genymotion does this.
if anyone knows the subject. appreciate your help

How can I run Selenium tests when my site is in Vagrant?

I use Vagrant for my local development. Now I want to use Selenium for automated browser testing. When I setup Selenium in my VM, it works like a charm (great stuff by the way).
But now I want to move the Selenium testing out of the box. I tried to run the Java server on my host machine, forward port 4444 to port 4444 in virtualbox, and then fire the phpunit-command in VirtualBox, hoping to trigger the server on my host machine.
But instead I get a CURL-message that phpunit can't connect to 127.0.0.1:4444, so obviously there is no connection to my host machine on this port.
Can anyone tell me what I'm doing wrong?
Edit: I figured out that when I'm running the server on the host, I cannot access 127.0.0.1:4444 in my browser, however, I am able to access localhost:4444. Which is weird, because my hosts-file has the correct line (although it shouldn't matter since phpunit is trying to access a numeric address).
I think the best solution for this is to setup a "private network" this way you'll be able to use internal address to access your vm and host separately...
Depending of your vm provider different solution are possible (for example, Virtualbox support internal netowrk only)
Have a look at : http://docs.vagrantup.com/v2/networking/private_network.html

WorkLight: Failed executing POST /applications/upload

I am new to IBM WorkLight. I am getting an error when I am trying to execute "Build All And Deploy" from the Run menu from eclipse IDE when my Mac connected to Internet (static IPv4). I am using Mac Book Pro with mac os x 10.9. If it is disconnected from the Internet then build will get succeeded. The error message is given below,
Failed executing POST /applications/upload
java.lang.RuntimeException: java.net.SocketTimeoutException: Socket operation timed out before it could be completed
Please help to resolve this issue.
Thanks
I suspect you got more than one IPv4 address for your machine.
can you post here the result of the 'ifconfig' command (while failure occurs)? (run it in terminal).
in such case you will need to tell Eclipse which IP you prefer for your Development Worklight Server or to close extra network interfaces (for example: disable wireless network).
You can affect Eclipse and "hint" what IP should be chosen by using a special environment variable which contains a begining of an IP (or just the whole IP address)
for example: WL_PREFERRED_IP_PREFIX=192.168.4
this will help Eclipse detect your server on 192.168.4.100 (for example).