PowerBuilder to other running server connection - web-services

please help...
I want to use the web services of an application server(java application server) Which is running on the localhost:9000 on my system in my powerbuilder 8 application.
Thanks in advance.

Are you saying you want to use your local workstation (localhost) as the production backend server for your application? That's definitely NOT a good idea.

Related

Consume soap web service from Azure web app

I'm trying to consume a soap web service from an azure web app.
To do this I need to run a connectivity test through telnet to do this.
How would I go about doing this in Azure?
thanks
Chris
Unfortunately, Telnet client is not setup by default on Azure App Service.
It is not possible to install it as it requires elevated permissions.
My advice would be to develop a quick app, for example based on this kind of tool: https://github.com/mkozjak/node-telnet-client
Hope this helps,

Access localhost site from web server

I have a site running via Visual Studio (i.e. at http://localhost:1234)
I need to access this site from test web server(windows/IIS).
I can ping from the web server to my machine name.
Just wondering what I need to do to test this? to browse the site from the web server?
Thanks
I usually just do a quick Publish and set up a web site application in IIS to point to the published location. I am interested to know if there is another way though.

Webservices performance: Cross server vs same server

My client has site in Drupal, I created webservices to expose data on mobile site. My question: Is there any difference in web service performance if Drupal site and mobile site are on same server VS on different server?
Yes. It will be quicker if they are on the same server as the request won't have to go out into the internet.
Yes. If one app is on server, server is fast. Else server is slower and slower.

Call web services from IIS it works slowly

I'm developing asp.net mvc web application that calls third party web services.
I'm not sure about web services but looks like that they are java web services. They work perfect when I call them from windows console application or run my site under asp.net development server. But when I host my site under IIS 7.5 (I check it under Windows 7 32x and Windows Web Server 64x) performance is degraded in 10 time.
Could anybody suggest me with settings which I should check or anything else?
The best idea that I have, it is using Reversed Proxy for matching data that pass.
I've tired to use Fiddler 2 in this way. But what a pity I have trouble because web services are hosted via https.
Somebody has idea how to solve this?

installing an XML Websevice on Windows7 home basic

i've searched the site for this answer but couldnt find a good answer.
My client has a computer with Windows7 Home Basic Installed in his workstation (Thank you HP).
and i need to install a web service on IIS. Web service is written in c# (.asmx). When i installed IIS into that windows, i've realized that there is no IIS comsole available in windows7 home basic machines.
is there a way to register web service from the command prompt? this web service is a middleware for communication several mobile devices with the sql server on the machine so it has to be able to connect form outer ip's too.
I've tried IISExpress but it only lets connectiong from localhost.
I cannot format his harddisk, also my client doesnt really want an edition upgrade.
Thanks for spending your time.
I did a quick google search on hosting a web service (*.asmx) without IIS, and found this article: Run ASMX Without IIS. A quick glance at it looks like you'd wind up writing your own host and implementing your own web server.
If this is the only solution available, I think you'd be far better off to rewrite your ASMX web service as a WCF web service, and then either self-host it or host it in a Windows Service.