IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 16, 2008, 1:30:47 PM (18 years ago)
Author:
jhoblitt
Message:

add soap bindings for setxattr,getxattr,listxattr,removexattr

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/nebclient/src/nebulous.h

    r20110 r20208  
    11/* src/nebulous.h
    22   Generated by wsdl2h 1.2.11 from nebulous.wsdl and typemap.dat
    3    2008-10-13 22:06:54 GMT
     3   2008-10-16 23:26:37 GMT
    44   Copyright (C) 2001-2008 Robert van Engelen, Genivia Inc. All Rights Reserved.
    55   This part of the software is released under one of the following licenses:
     
    111111  - @ref ns1__lock_USCOREobject
    112112  - @ref ns1__unlock_USCOREobject
     113  - @ref ns1__setxattr_USCOREobject
     114  - @ref ns1__getxattr_USCOREobject
     115  - @ref ns1__listxattr_USCOREobject
     116  - @ref ns1__removexattr_USCOREobject
    113117  - @ref ns1__find_USCOREobjects
    114118  - @ref ns1__find_USCOREinstances
     
    450454/******************************************************************************\
    451455 *                                                                            *
     456 * ns1__setxattr_USCOREobject                                                 *
     457 *                                                                            *
     458\******************************************************************************/
     459
     460
     461/// Operation "ns1__setxattr_USCOREobject" of service binding "SOAP"
     462
     463/**
     464
     465Operation details:
     466
     467  - SOAP RPC encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
     468  - SOAP action="urn:Nebulous/Server/SOAP#setxattr_object"
     469
     470C stub function (defined in soapClient.c[pp] generated by soapcpp2):
     471@code
     472  int soap_call_ns1__setxattr_USCOREobject(
     473    struct soap *soap,
     474    NULL, // char *endpoint = NULL selects default endpoint for this operation
     475    NULL, // char *action = NULL selects default action for this operation
     476    // request parameters:
     477    char*                               key,
     478    char*                               name,
     479    char*                               value,
     480    char*                               flags,
     481    // response parameters:
     482    int                                *result
     483  );
     484@endcode
     485
     486C server function (called from the service dispatcher defined in soapServer.c[pp]):
     487@code
     488  int ns1__setxattr_USCOREobject(
     489    struct soap *soap,
     490    // request parameters:
     491    char*                               key,
     492    char*                               name,
     493    char*                               value,
     494    char*                               flags,
     495    // response parameters:
     496    int                                *result
     497  );
     498@endcode
     499
     500*/
     501
     502//gsoap ns1  service method-style:      setxattr_USCOREobject rpc
     503//gsoap ns1  service method-encoding:   setxattr_USCOREobject http://schemas.xmlsoap.org/soap/encoding/
     504//gsoap ns1  service method-action:     setxattr_USCOREobject urn:Nebulous/Server/SOAP#setxattr_object
     505int ns1__setxattr_USCOREobject(
     506    char*                               key,    ///< Request parameter
     507    char*                               name,   ///< Request parameter
     508    char*                               value,  ///< Request parameter
     509    char*                               flags,  ///< Request parameter
     510    int                                *result  ///< Response parameter
     511);
     512
     513/******************************************************************************\
     514 *                                                                            *
     515 * ns1__getxattr_USCOREobject                                                 *
     516 *                                                                            *
     517\******************************************************************************/
     518
     519
     520/// Operation "ns1__getxattr_USCOREobject" of service binding "SOAP"
     521
     522/**
     523
     524Operation details:
     525
     526  - SOAP RPC encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
     527  - SOAP action="urn:Nebulous/Server/SOAP#getxattr_object"
     528
     529C stub function (defined in soapClient.c[pp] generated by soapcpp2):
     530@code
     531  int soap_call_ns1__getxattr_USCOREobject(
     532    struct soap *soap,
     533    NULL, // char *endpoint = NULL selects default endpoint for this operation
     534    NULL, // char *action = NULL selects default action for this operation
     535    // request parameters:
     536    char*                               key,
     537    char*                               name,
     538    // response parameters:
     539    char*                              *result
     540  );
     541@endcode
     542
     543C server function (called from the service dispatcher defined in soapServer.c[pp]):
     544@code
     545  int ns1__getxattr_USCOREobject(
     546    struct soap *soap,
     547    // request parameters:
     548    char*                               key,
     549    char*                               name,
     550    // response parameters:
     551    char*                              *result
     552  );
     553@endcode
     554
     555*/
     556
     557//gsoap ns1  service method-style:      getxattr_USCOREobject rpc
     558//gsoap ns1  service method-encoding:   getxattr_USCOREobject http://schemas.xmlsoap.org/soap/encoding/
     559//gsoap ns1  service method-action:     getxattr_USCOREobject urn:Nebulous/Server/SOAP#getxattr_object
     560int ns1__getxattr_USCOREobject(
     561    char*                               key,    ///< Request parameter
     562    char*                               name,   ///< Request parameter
     563    char*                              *result  ///< Response parameter
     564);
     565
     566/******************************************************************************\
     567 *                                                                            *
     568 * ns1__listxattr_USCOREobject                                                *
     569 *                                                                            *
     570\******************************************************************************/
     571
     572/// Operation response struct "ns1__listxattr_USCOREobjectResponse" of service binding "SOAP" operation "ns1__listxattr_USCOREobject"
     573struct ns1__listxattr_USCOREobjectResponse
     574{
     575    struct ArrayOfString*               result;
     576};
     577
     578/// Operation "ns1__listxattr_USCOREobject" of service binding "SOAP"
     579
     580/**
     581
     582Operation details:
     583
     584  - SOAP RPC encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
     585  - SOAP action="urn:Nebulous/Server/SOAP#listxattr_object"
     586
     587C stub function (defined in soapClient.c[pp] generated by soapcpp2):
     588@code
     589  int soap_call_ns1__listxattr_USCOREobject(
     590    struct soap *soap,
     591    NULL, // char *endpoint = NULL selects default endpoint for this operation
     592    NULL, // char *action = NULL selects default action for this operation
     593    // request parameters:
     594    char*                               key,
     595    // response parameters:
     596    struct ns1__listxattr_USCOREobjectResponse*
     597  );
     598@endcode
     599
     600C server function (called from the service dispatcher defined in soapServer.c[pp]):
     601@code
     602  int ns1__listxattr_USCOREobject(
     603    struct soap *soap,
     604    // request parameters:
     605    char*                               key,
     606    // response parameters:
     607    struct ns1__listxattr_USCOREobjectResponse*
     608  );
     609@endcode
     610
     611*/
     612
     613//gsoap ns1  service method-style:      listxattr_USCOREobject rpc
     614//gsoap ns1  service method-encoding:   listxattr_USCOREobject http://schemas.xmlsoap.org/soap/encoding/
     615//gsoap ns1  service method-action:     listxattr_USCOREobject urn:Nebulous/Server/SOAP#listxattr_object
     616int ns1__listxattr_USCOREobject(
     617    char*                               key,    ///< Request parameter
     618    struct ns1__listxattr_USCOREobjectResponse* ///< Response struct parameter
     619);
     620
     621/******************************************************************************\
     622 *                                                                            *
     623 * ns1__removexattr_USCOREobject                                              *
     624 *                                                                            *
     625\******************************************************************************/
     626
     627
     628/// Operation "ns1__removexattr_USCOREobject" of service binding "SOAP"
     629
     630/**
     631
     632Operation details:
     633
     634  - SOAP RPC encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
     635  - SOAP action="urn:Nebulous/Server/SOAP#removexattr_object"
     636
     637C stub function (defined in soapClient.c[pp] generated by soapcpp2):
     638@code
     639  int soap_call_ns1__removexattr_USCOREobject(
     640    struct soap *soap,
     641    NULL, // char *endpoint = NULL selects default endpoint for this operation
     642    NULL, // char *action = NULL selects default action for this operation
     643    // request parameters:
     644    char*                               key,
     645    char*                               name,
     646    // response parameters:
     647    int                                *result
     648  );
     649@endcode
     650
     651C server function (called from the service dispatcher defined in soapServer.c[pp]):
     652@code
     653  int ns1__removexattr_USCOREobject(
     654    struct soap *soap,
     655    // request parameters:
     656    char*                               key,
     657    char*                               name,
     658    // response parameters:
     659    int                                *result
     660  );
     661@endcode
     662
     663*/
     664
     665//gsoap ns1  service method-style:      removexattr_USCOREobject rpc
     666//gsoap ns1  service method-encoding:   removexattr_USCOREobject http://schemas.xmlsoap.org/soap/encoding/
     667//gsoap ns1  service method-action:     removexattr_USCOREobject urn:Nebulous/Server/SOAP#removexattr_object
     668int ns1__removexattr_USCOREobject(
     669    char*                               key,    ///< Request parameter
     670    char*                               name,   ///< Request parameter
     671    int                                *result  ///< Response parameter
     672);
     673
     674/******************************************************************************\
     675 *                                                                            *
    452676 * ns1__find_USCOREobjects                                                    *
    453677 *                                                                            *
Note: See TracChangeset for help on using the changeset viewer.