Changeset 861 for branches/prototype-v0/zoo-project/zoo-kernel
- Timestamp:
- Dec 13, 2017, 1:33:26 PM (7 years ago)
- Location:
- branches/prototype-v0/zoo-project/zoo-kernel
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/prototype-v0/zoo-project/zoo-kernel/Makefile.in
r854 r861 45 45 46 46 service_callback.o: service_callback.c 47 g++ -fPIC ${XML2CFLAGS} ${ JSON_CFLAGS} ${CFLAGS} -c service_callback.c47 g++ -fPIC ${XML2CFLAGS} ${GDAL_CFLAGS} ${JSON_CFLAGS} ${CFLAGS} -c service_callback.c 48 48 49 49 request_parser.o: request_parser.c request_parser.h -
branches/prototype-v0/zoo-project/zoo-kernel/sql/schema.sql
r854 r861 31 31 -- Create a dedicated schema to store all tables 32 32 -- Uncomment the following 2 lines to activate the schema use 33 -- CREATE SCHEMA process ;34 -- SET search_path TO process ;33 -- CREATE SCHEMA processdb; 34 -- SET search_path TO processdb; 35 35 -------------------------------------------------------------------------------- 36 36 -- Services table -
branches/prototype-v0/zoo-project/zoo-kernel/zoo_loader.c
r854 r861 86 86 fflush(stderr); 87 87 #endif 88 fprintf (stderr, "Addr:%s\n", cgiRemoteAddr);89 fprintf (stderr, "RequestMethod: (%s) %d %d\n", cgiRequestMethod,strncasecmp(cgiRequestMethod,"post",4),strncmp(cgiContentType,"text/xml",8)==0 || strncasecmp(cgiRequestMethod,"post",4)==0);90 fprintf (stderr, "Request: %s\n", cgiQueryString);91 fprintf (stderr, "ContentType: %s\n", cgiContentType);92 fprintf (stderr, "ContentLength: %d\n", cgiContentLength);93 fflush(stderr);94 88 95 89 char *strQuery=NULL; -
branches/prototype-v0/zoo-project/zoo-kernel/zoo_service_loader.c
r860 r861 1194 1194 }; 1195 1195 r_inputs = getMap (request_inputs, "Request"); 1196 fprintf(stderr," ** DEBUG %s %d \n",__FILE__,__LINE__);1197 fflush(stderr);1198 //dumpMap(r_inputs);1199 fprintf(stderr," ** DEBUG %s %d \n",__FILE__,__LINE__);1200 fflush(stderr);1201 1196 if(r_inputs!=NULL) 1202 1197 REQUEST = zStrdup (r_inputs->value); 1203 fprintf(stderr," ** DEBUG %s %d \n",__FILE__,__LINE__);1204 fflush(stderr);1205 1198 int reqId=-1; 1206 1199 if (strncasecmp (REQUEST, "GetCapabilities", 15) != 0){ … … 1305 1298 close(saved_stdout); 1306 1299 } 1307 1308 dumpMap(request_inputs);1309 1300 1310 1301 if (strncasecmp (REQUEST, "GetCapabilities", 15) == 0) … … 1896 1887 #ifdef META_DB 1897 1888 int metadb_id=_init_sql(m,"metadb"); 1898 fprintf(stderr,"CONNECTING METADB!\n");1899 1889 //FAILED CONNECTING DB 1900 1890 if(getMapFromMaps(m,"lenv","dbIssue")!=NULL || metadb_id<0){
Note: See TracChangeset
for help on using the changeset viewer.