Changeset 393 for trunk/zoo-project/zoo-kernel/service_internal.c
- Timestamp:
- Mar 15, 2013, 2:16:47 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-kernel/service_internal.c
r392 r393 1359 1359 /* We need to write the ExecuteResponse Document somewhere */ 1360 1360 FILE* output=fopen(stored_path,"w"); 1361 if(output==NULL){ 1362 /* If the file cannot be created return an ExceptionReport */ 1363 char tmpMsg[1024]; 1364 sprintf(tmpMsg,_("Unable to create the file : \"%s\" for storing the ExecuteResponse."),stored_path); 1365 map * errormap = createMap("text",tmpMsg); 1366 addToMap(errormap,"code", "InternalError"); 1367 printExceptionReportResponse(m,errormap); 1368 freeMap(&errormap); 1369 free(errormap); 1370 xmlCleanupParser(); 1371 zooXmlCleanupNs(); 1372 return; 1373 } 1361 1374 xmlChar *xmlbuff; 1362 1375 int buffersize;
Note: See TracChangeset
for help on using the changeset viewer.