Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Logging multiple server requests?

New Here ,
May 19, 2009 May 19, 2009

We will have a "log server" that will receive data from various webservers.

The purpose is to store every event that takes place on the "log server".

A user clicks on a picture, we send a data record containing the picture name, picture owner, and other data, to the "log server", that stores the info in a database.  Later, another program will come along and collect the data to generate reports.

My question is, what is the best way to go about this in Coldfusion?  I'm looking for the most efficient way with least loss of data.  And any pitfalls that others have had implementing a similar design.

Right now we're looking at creating a Web Service that is a template that waits for HTTP post operations and records them in a database.

Is there a better way?

Thanks in advance for any ideas or suggestions!

Mike

TOPICS
Advanced techniques
401
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
May 20, 2009 May 20, 2009
LATEST

In my opinion web services are overkill in this situation. Just create

a simple cfm page that receives it's parameters via URL or FORM,

validates those parameters and saves the log entry to the database. A

simple HTTP request is lightweight compared to a soap request (both in

encoding-decoding performance and in length).

Mack

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources