RE: Connecting to multiple gasd processes through HTTP Server
"Adam Martin" <[email protected]>
| Newsgroups | gmane.comp.lang.4gl.fourjs.user |
|---|---|
| Message-ID | <9F1149C2B476E64D90F9701F882FCABDA90870@USDAWEXCU1.ssainternal.net> |
I forgot to mention that each gasd process was started with a different/separate as.xcf file. Each as.xcf file has only one application listed in it which is the application it services. Any assistance would be appreciated. ________________________________ From: Adam Martin Sent: Thursday, May 05, 2005 2:31 PM To: [email protected] Subject: Connecting to multiple gasd processes through HTTP Server I am attempting setup IBM's HTTP Server which is powered by Apache 2.0, to connect to our application but am having trouble connecting to separate gasd processes. Appended to the end of this email is the relevant information from the connector.xcf file. I currently have seven (7) gasd processes running on ports 6393 through 6399. I am able to access the applications serviced by all seven gasd servers when I connect directly to the application server's http server. I am able to connect to the "DEFAULT" server listed in the connector.xcf through the HTTP Server without any issues. However, when I attempt to connect to another application server running on a different port I receive an error message "The page cannot be found" HTTP 404- File not found error in the Internet Explorer window. I am attempting to follow the examples listed in the Four J's "Developing Web Applications Genero Web Client" Student Workbook. Can anyone shed any light on what I am doing wrong? My environment consists of the following. Operating System: IBM AIX 5.3.1 (64-bit) Genero BDL (DVM): 1.31.2c (64-bit) Genero Web Client (GWC): 1.30.1j (32-bit) IBM HTTP Server: 2.0.47 Connector.xcf <?xml version="1.0" encoding="ISO-8859-1"?> <?fjsConnectorConfiguration Version="1.20"? <CONFIGURATION> <CONNECTOR> <INTERFACE_TO_APPLICATION_SERVER> <TCP_BASE_PORT>6300</TCP_BASE_PORT> </INTERFACE_TO_APPLICATION_SERVER> <REQUEST_LIST> <DEFAULT> <SERVER>127.0.0.1:94</SERVER> </DEFAULT> <REQUEST Id = "infdevelop"> <SERVER>localhost:94</SERVER> </REQUEST> <REQUEST Id = "oradevelop"> <SERVER>localhost:95</SERVER> </REQUEST> <REQUEST Id = "db2develop"> <SERVER>localhost:96</SERVER> </REQUEST> <REQUEST Id = "infaccept"> <SERVER>localhost:97</SERVER> </REQUEST> <REQUEST Id = "oraaccept"> <SERVER>localhost:98</SERVER> </REQUEST> <REQUEST Id = "db2accept"> <SERVER>localhost:99</SERVER> </REQUEST> <REQUEST Id = "prebase"> <SERVER>localhost:93</SERVER> </REQUEST> </REQUEST_LIST>