IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 30, 2009, 5:20:29 PM (17 years ago)
Author:
watersc1
Message:

Finished up my edits to the detrend cleanup, and some changes to my
copy of burntool and the pslib astrometry. Detrend cleanup has not
been tested yet. That's up next.

Location:
branches/czw_branch/cleanup
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/cleanup

  • branches/czw_branch/cleanup/Nebulous/nebclient/src/soapServer.c

    r24289 r24951  
    1010#endif
    1111
    12 SOAP_SOURCE_STAMP("@(#) soapServer.c ver 2.7.12 2009-06-01 23:55:50 GMT")
     12SOAP_SOURCE_STAMP("@(#) soapServer.c ver 2.7.12 2009-07-25 01:30:29 GMT")
    1313
    1414
     
    107107        if (!soap_match_tag(soap, soap->tag, "ns1:chmod_object"))
    108108                return soap_serve_ns1__chmod_USCOREobject(soap);
     109        if (!soap_match_tag(soap, soap->tag, "ns1:prune_object"))
     110                return soap_serve_ns1__prune_USCOREobject(soap);
    109111        return soap->error = SOAP_NO_METHOD;
    110112}
     
    759761}
    760762
     763SOAP_FMAC5 int SOAP_FMAC6 soap_serve_ns1__prune_USCOREobject(struct soap *soap)
     764{       struct ns1__prune_USCOREobject soap_tmp_ns1__prune_USCOREobject;
     765        struct ns1__prune_USCOREobjectResponse soap_tmp_ns1__prune_USCOREobjectResponse;
     766        int soap_tmp_int;
     767        soap_default_ns1__prune_USCOREobjectResponse(soap, &soap_tmp_ns1__prune_USCOREobjectResponse);
     768        soap_default_int(soap, &soap_tmp_int);
     769        soap_tmp_ns1__prune_USCOREobjectResponse.result = &soap_tmp_int;
     770        soap_default_ns1__prune_USCOREobject(soap, &soap_tmp_ns1__prune_USCOREobject);
     771        soap->encodingStyle = "http://schemas.xmlsoap.org/soap/encoding/";
     772        if (!soap_get_ns1__prune_USCOREobject(soap, &soap_tmp_ns1__prune_USCOREobject, "ns1:prune_object", NULL))
     773                return soap->error;
     774        if (soap_body_end_in(soap)
     775         || soap_envelope_end_in(soap)
     776         || soap_end_recv(soap))
     777                return soap->error;
     778        soap->error = ns1__prune_USCOREobject(soap, soap_tmp_ns1__prune_USCOREobject.key, &soap_tmp_int);
     779        if (soap->error)
     780                return soap->error;
     781        soap_serializeheader(soap);
     782        soap_serialize_ns1__prune_USCOREobjectResponse(soap, &soap_tmp_ns1__prune_USCOREobjectResponse);
     783        if (soap_begin_count(soap))
     784                return soap->error;
     785        if (soap->mode & SOAP_IO_LENGTH)
     786        {       if (soap_envelope_begin_out(soap)
     787                 || soap_putheader(soap)
     788                 || soap_body_begin_out(soap)
     789                 || soap_put_ns1__prune_USCOREobjectResponse(soap, &soap_tmp_ns1__prune_USCOREobjectResponse, "ns1:prune_objectResponse", "")
     790                 || soap_body_end_out(soap)
     791                 || soap_envelope_end_out(soap))
     792                         return soap->error;
     793        };
     794        if (soap_end_count(soap)
     795         || soap_response(soap, SOAP_OK)
     796         || soap_envelope_begin_out(soap)
     797         || soap_putheader(soap)
     798         || soap_body_begin_out(soap)
     799         || soap_put_ns1__prune_USCOREobjectResponse(soap, &soap_tmp_ns1__prune_USCOREobjectResponse, "ns1:prune_objectResponse", "")
     800         || soap_body_end_out(soap)
     801         || soap_envelope_end_out(soap)
     802         || soap_end_send(soap))
     803                return soap->error;
     804        return soap_closesock(soap);
     805}
     806
    761807#ifdef __cplusplus
    762808}
Note: See TracChangeset for help on using the changeset viewer.