1.

Are We Able To Communicate From Coldfusion To An Apache Or Iis Server?

Answer»

COLDFUSION is like a Common Gateway INTERFACE Application. This means it works like a mechanism that enables dynamic output to be received by web servers. Usually web servers use static data and now the dynamic data will be seen as static.

  • when a request is transmitted by the browser to a web server for the purpose of getting a Coldfusion template the server will see the data sent by the browser as a CGI output request.
  • in the case in which forms are used to initiate REQUESTS the data from the form will be stored by the server in a place where other PROGRAMS may find it.To do this we often use STDOUT data streams. The form information will be written to the INI type of files by the WinCGI interface, it will become available for the CGI application for reading.
  • the data is requested by the CGI program and returned in step.
  • the data is formatted by the CGI program and return in step.
  • the output is received by the server which makes the next server side processing that is required and then it is sent to the browser. Normally Coldfusion uses server API modules for server to server communication.

Coldfusion is like a Common Gateway Interface Application. This means it works like a mechanism that enables dynamic output to be received by web servers. Usually web servers use static data and now the dynamic data will be seen as static.



Discussion

No Comment Found