Click here to Skip to main content
15,885,936 members
Articles / Web Development / ASP.NET

Web Services For Ecologists

,
Rate me:
Please Sign up or sign in to vote.
4.20/5 (10 votes)
27 May 2008CPOL17 min read 39.6K   231   35  
A framework for distributing scientific models over the web
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//

#pragma once

#define WIN32_LEAN_AND_MEAN		// Exclude rarely-used stuff from Windows headers

#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS	// some CString constructors will be explicit

// critical error descriptions will only be shown to the user
// in debug builds. they will always be logged to the event log
#ifndef _DEBUG
#define ATL_CRITICAL_ISAPI_ERROR_LOGONLY
#endif

#define _ATL_APARTMENT_THREADED

#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0403
#endif

// TODO: this disables support for registering COM objects
// exported by this project since the project contains no
// COM objects or typelib. If you wish to export COM objects
// from this project, add a typelib and remove this line
#define _ATL_NO_COM_SUPPORT


#include <atlstencil.h>
#include <atlsoap.h>
#include "RandomNumbers.h"

// TODO: reference additional headers your program requires here

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Other
United States United States
Andrew Birt is a Research Ecologist with interests in the development of models and software to support ecological decision making.

He currently works at Texas A&M University in the Knowledge Engineering Laboratory (KEL) of the Department of Entomology.

Written By
Software Developer Environmental Systems Research Institute (Intern)
United States United States
Rahul Ravikumar is currently a Master's student at the Department of Geography at Texas A&M University.

His interests lie in the areas of Geographic Information Systems, Remote Sensing and Digital Image Processing.

Comments and Discussions