aboutsummaryrefslogtreecommitdiff
path: root/samples/listing/listing.h
blob: 9602d886a181cb8861b8881030ee8910ffea0302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//gsoap ns service name:	XMethodsQuery
//gsoap ns service style:	rpc
//gsoap ns service encoding:	encoded
//gsoap ns service namespace:	http://www.xmethods.net/interfaces/query.wsdl
//gsoap ns service location:	http://www.xmethods.net/interfaces/query

//gsoap ns schema namespace: http://www.xmethods.net/interfaces/query
//gsoap t schema namespace: http://www.xmethods.net/interfaces/query.xsd

class t__ServiceSummary
{ public:
  char *name;
  char *id;
  char *shortDescription;
  char *wsdlURL;
  char *publisherID;
};

class t__ServiceDetail
{ public:
  char *name;
  char *id;
  char *shortDescription;
  char *description;
  char *implementationID;
  char *email;
  char *wsdlURL;
  char *infoURL;
  char *discussionURL;
  char *notes;
  char *tmodelID;
  char *publisherID;
  char *uuid;
};

class t__IDNamePair
{ public:
  char *id;
  char *name;
};

class ArrayOfServiceSummary
{ public:
  t__ServiceSummary *__ptr;
  int __size;
  void print() const;
};

class ArrayOfIDNamePair
{ public:
  t__IDNamePair *__ptr;
  int __size;
  void print() const;
};

//gsoap ns service method-action: getAllServiceSummaries ""
ns__getAllServiceSummaries(ArrayOfServiceSummary&);

//gsoap ns service method-action: getServiceSummariesByPublisher ""
ns__getServiceSummariesByPublisher(char *publisherID, ArrayOfServiceSummary&);

//gsoap ns service method-action: getServiceDetail ""
ns__getServiceDetail(char *id, t__ServiceDetail&);

//gsoap ns service method-action: getAllServiceNames ""
ns__getAllServiceNames(ArrayOfIDNamePair&);

//gsoap ns service method-action: getServiceNamesByPublisher ""
ns__getServiceNamesByPublisher(char *publisherID, ArrayOfIDNamePair&);