~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to tools/gsoap/gsoap-linux-2.7/samples/listing/.svn/text-base/listing.h.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//gsoap ns service name:        XMethodsQuery
2
 
//gsoap ns service style:       rpc
3
 
//gsoap ns service encoding:    encoded
4
 
//gsoap ns service namespace:   http://www.xmethods.net/interfaces/query.wsdl
5
 
//gsoap ns service location:    http://www.xmethods.net/interfaces/query
6
 
 
7
 
//gsoap ns schema namespace: http://www.xmethods.net/interfaces/query
8
 
//gsoap t schema namespace: http://www.xmethods.net/interfaces/query.xsd
9
 
 
10
 
class t__ServiceSummary
11
 
{ public:
12
 
  char *name;
13
 
  char *id;
14
 
  char *shortDescription;
15
 
  char *wsdlURL;
16
 
  char *publisherID;
17
 
};
18
 
 
19
 
class t__ServiceDetail
20
 
{ public:
21
 
  char *name;
22
 
  char *id;
23
 
  char *shortDescription;
24
 
  char *description;
25
 
  char *implementationID;
26
 
  char *email;
27
 
  char *wsdlURL;
28
 
  char *infoURL;
29
 
  char *discussionURL;
30
 
  char *notes;
31
 
  char *tmodelID;
32
 
  char *publisherID;
33
 
  char *uuid;
34
 
};
35
 
 
36
 
class t__IDNamePair
37
 
{ public:
38
 
  char *id;
39
 
  char *name;
40
 
};
41
 
 
42
 
class ArrayOfServiceSummary
43
 
{ public:
44
 
  t__ServiceSummary *__ptr;
45
 
  int __size;
46
 
  void print() const;
47
 
};
48
 
 
49
 
class ArrayOfIDNamePair
50
 
{ public:
51
 
  t__IDNamePair *__ptr;
52
 
  int __size;
53
 
  void print() const;
54
 
};
55
 
 
56
 
//gsoap ns service method-action: getAllServiceSummaries ""
57
 
ns__getAllServiceSummaries(ArrayOfServiceSummary&);
58
 
 
59
 
//gsoap ns service method-action: getServiceSummariesByPublisher ""
60
 
ns__getServiceSummariesByPublisher(char *publisherID, ArrayOfServiceSummary&);
61
 
 
62
 
//gsoap ns service method-action: getServiceDetail ""
63
 
ns__getServiceDetail(char *id, t__ServiceDetail&);
64
 
 
65
 
//gsoap ns service method-action: getAllServiceNames ""
66
 
ns__getAllServiceNames(ArrayOfIDNamePair&);
67
 
 
68
 
//gsoap ns service method-action: getServiceNamesByPublisher ""
69
 
ns__getServiceNamesByPublisher(char *publisherID, ArrayOfIDNamePair&);
70