Azure WebApp - Test Hybrid Connection from Kudu Console - testing

I have an Azure web app that has some Hybrid Connections setup. I'd like to be able to prove they are working from the KuDu cmd interface.
Unfortunately telnet is not installed as part of the Azure WebApp OS (Win Server 2012) and I seem to have limited permissions.
Can anyone help?
Specifically I want to make sure I can relay to an email server, so telnetting to the port would be very useful.
Kind regards
Si

Can you try tcpping instead? tcpping is installed and available for use from the Kudu console.

Related

How to connect SQL server beta (Google Cloud) to Google API engine (Node.js)

I have a node.js API that is using SQL server beta from Google Cloud SQL. Works fine when testing locally and connecting directly via IP.
I deployed the API on Google APP Engine and works fine less the connection to the database. Now, what will be the server connection string to connect directly from the project API to Google cloud - SQL server beta. How I can make use of instance connection name? (Note: Cloud SQL Admin API is enabled for this project)
I found many examples to connect for mySQL instances, but none to an SQL beta.
How to connect SQL server beta (Google Cloud) to Google API engine (Node.js) ?
As Eugen point out, Cloud SQL instance that are using SQL server are still in beta and therefore, many features are not yet available.
As stated here there's still no option to connect to a Cloud SQL SQL server instance from App Engine. Neither it seems to exist options to connect from external application such as Kubernetes or Compute Engine, as seen here.
Nonetheless, you could try to connect to your SQL server instance by using the Cloud SQL proxy to do local testing, as shown here.
Then, you could try to use some node.js library that can act as a node.js library, as this one for example, but I can not confirm that I will work within App Engine.
Nonetheless, if you have the option, I highly recommend you to use Cloud SQL instance using MySQL or PostgreSQL since they support connection from App Engine apps, as seen here.
I hope this helps.

Access Google Cloud SQL from SDK Shell

I have created a PostgreSQL Instance in Google Cloud.
I can access the Instance and perform SQL actions using the Cloud Shell.
When i try to access the same from my local using the 'Google Cloud SDK Shell', it fails to connect to the instance,
C:\Program Files (x86)\Google\Cloud SDK>gcloud sql connect [my-instance] --user==user-name
Whitelisting your IP for incoming connection for 5 minutes...done.
ERROR: (gcloud.sql.connect) Could not whitelist client IP. Server did not reply with the whitelisted IP.
I have replaced my-instance and user-name with correct entries
Can someone guide me on how to access this database from my local SDK shell and not using the Cloud shell ?
There are some options to connect to your SQL instance depending on the client that you use, some of them are: Compute Engine, App Engine, mysql client, External applications.
I think your machine could be considered an external application, so you have to follow this guide to authorize your Windows client machine. However, the recommended way is using the cloudsqlproxy since it will free you from whitelisting all connections.
Hope it help you!

does ldap works in a offline environment?

Does LDAP server & phpldapadmin works in an offline environment?
I've successfully tested on a online environment it's works, however there is some issue encounter after i removed the internet connection.
Trying to use LDAP address book for outlook
any help?
I think it depends what you are trying to achieve and where is your LDAP server. But generally, LDAP directory servers are centralized, and an offline environment will not be able to access it.
It doesn't work in local network or offline, When you test your solution in local environment. When you publish your solution deploy in server then run on test production link it will works

How do I connect JProfiler on a JBoss 7.x server in Domain mode?

I want to profile a server (JVM) that is part of a JBoss 7.1.3 domain. The Server Integration wizard of JProfiler only modifies standalone.sh, which is of no use in domain mode. Does anyone know how to accomplish this?
For application servers that don't have an integration wizard, use the [Generic] integration wizard. It will give you a VM parameter that has to be added to the java invocation of the application server.

WCF Service testing with connections external to localhost

I'm developing a WCF webservice, but when it loads via visual studio in the built in server (Cassini) I cannot access it anyway except via localhost on that machine. I would like to try it with connections from other machines as well though... what's the best way to do this without installing IIS on my box (I can't...stupid system corporate policies prevent it).
You might be able to use / install IIS Express (see this link) without administrative privileges. However sadly Cassini does not allow remote connections.
If I am not mistaken, you should install IIS. Cassini does not support remote connections.