How do I change Pro Web’s Server Address (Windows platforms)?
Associated product(s): Product name: Pro Web
Views: 237 | Created: Last year | Last updated: Last year
This document discusses how to change the Pro Web Server Address on Windows platforms.
Solution
When you run the server, it will attempt to listen for incoming connections from clients on the address and port which were configured during the installation. To change the server address, follow these steps:
a. Edit the ServerAddress INI setting in qawserve.ini. It should read “ServerAddress=QATCPIP:{Server Address}:{Port}”.
b. Edit the ServerWSDLUrn INI setting in qawserve.ini. It should read “ServerWSDLUrn=http://{Server Address}:{Port}”. The server address must be an absolute address.
c. In addition, you will need to configure the server path in the relevant integration pages as follows:
|
Integration Code |
File |
Form |
|
ASP |
constants.asp in the root directory |
const CONTROL_WSDL_URN = http://localhost:2021/proweb.wsdl |
|
JSP |
web.xml. Uncompress the war file and extract the web.xml file from the WEB-INF subdirectory. |
<param-name>QasEndpoint</param-name> <param-value>http://localhost:2021</ param-value> |
|
C#.NET |
web.config in the root directory |
<add key="com.qas.proweb.ServerURL" value="http://localhost:2022/" /> |
|
VB.NET |
As for C#.NET |
As for C#.NET |
|
PHP |
constants.inc in the root directory |
define( CONTROL_WSDL_URN, "http://localhost:2021/proweb.wsdl" ); |
Send to friend