memotoo 1.0.6 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +65 -11
- data/Rakefile +10 -1
- data/VERSION +1 -1
- data/lib/memotoo.rb +69 -2
- data/lib/memotoo/core-ext/hash.rb +2 -2
- data/lib/memotoo/core-ext/kernel.rb +1 -1
- data/lib/memotoo/main.rb +280 -0
- data/memotoo.gemspec +17 -18
- data/test/test_memotoo.rb +6 -8
- data/test/test_soapobjects.rb +123 -0
- metadata +19 -19
- data/.rvmrc-old +0 -1
- data/lib/memotoo/bookmark/bookmark.rb +0 -72
- data/lib/memotoo/connect.rb +0 -244
- data/lib/memotoo/contact/contact.rb +0 -162
- data/lib/memotoo/contact/contact_group.rb +0 -69
- data/lib/memotoo/wsdl/http.xml +0 -526
- data/lib/memotoo/wsdl/https.xml +0 -526
- data/test/test_bookmark.rb +0 -85
- data/test/test_contact.rb +0 -78
- data/test/test_contact_group.rb +0 -78
@@ -1,162 +0,0 @@
|
|
1
|
-
|
2
|
-
module Memotoo
|
3
|
-
|
4
|
-
class Connect
|
5
|
-
|
6
|
-
|
7
|
-
#--
|
8
|
-
# == Examples
|
9
|
-
#
|
10
|
-
# # Setting up the client
|
11
|
-
# @connect=Memotoo::Connect.new("myusername","mypassword")
|
12
|
-
|
13
|
-
# # retrieving search results
|
14
|
-
# @response = @connect.searchContact({:search=>"ka"})
|
15
|
-
|
16
|
-
# # get a contact from id
|
17
|
-
# @response = @connect.getContact(12345)
|
18
|
-
|
19
|
-
# # Add a contact
|
20
|
-
# @response = @connect.addContact({:title => "Mr",:lastname => "Wonder",:firstname => "Test"})
|
21
|
-
|
22
|
-
# # modify a contact
|
23
|
-
# @response = @connect.modifyContact({:id=>"12345",:lastname=>"New",:jobtitle => "cat-doctor",:otherphone => "12345"})
|
24
|
-
|
25
|
-
#
|
26
|
-
# # extracting lastnames of search results
|
27
|
-
# # use this in console only for a few results - the output is to big !
|
28
|
-
#++ @response.each {|contact|puts contact[:id]+"-"+contact[:firstname]+" "+contact[:lastname]}
|
29
|
-
|
30
|
-
|
31
|
-
# required: lastname
|
32
|
-
#
|
33
|
-
# optional: all other contact_details - see below
|
34
|
-
def addContact(details={})
|
35
|
-
if has_needed_fields(details, :lastname)
|
36
|
-
format_result(addApiCall({:contact => details}), :id)
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
|
41
|
-
#[searchparameter:]
|
42
|
-
# {:search=>"something", :limit_start=>0, :limit_nb=>100}
|
43
|
-
#* required:
|
44
|
-
# search
|
45
|
-
#* optional:
|
46
|
-
# limit_start
|
47
|
-
# limit_nb
|
48
|
-
#e.g. @connect.searchContact({:search=>"ka", :limit_nb=>50})
|
49
|
-
#
|
50
|
-
# returns nil or a hash of one contact or an array of contacts
|
51
|
-
#
|
52
|
-
def searchContact(searchparameter={})
|
53
|
-
if has_needed_search_parameter(searchparameter)
|
54
|
-
format_result(searchApiCall(searchparameter), :return, :contact)
|
55
|
-
end
|
56
|
-
end
|
57
|
-
|
58
|
-
# id = integer
|
59
|
-
# e.g. @connect.getContact(12345)
|
60
|
-
#
|
61
|
-
# returns the contact or nil
|
62
|
-
#
|
63
|
-
def getContact(id)
|
64
|
-
format_result(getApiCall(id), :return, :contact)
|
65
|
-
end
|
66
|
-
|
67
|
-
# get modified contacts since date
|
68
|
-
# datetime = "2010-02-23 10:00:00" or just "2010-02-23"
|
69
|
-
# e.g. @connect.getContactSync("2010-02-23 10:00:00")
|
70
|
-
def getContactSync(datetime)
|
71
|
-
format_result(getSyncApiCall(datetime), :return, :contact)
|
72
|
-
end
|
73
|
-
|
74
|
-
# required: lastname and id
|
75
|
-
#
|
76
|
-
# optional: all other \contact_details - see contact fields at bottom
|
77
|
-
# return true if the changed happened
|
78
|
-
def modifyContact(details={})
|
79
|
-
if has_needed_fields(details, :lastname, :id)
|
80
|
-
format_result(modifyApiCall({:contact => details}), :ok)
|
81
|
-
end
|
82
|
-
end
|
83
|
-
|
84
|
-
# id = integer
|
85
|
-
# e.g. @connect.deleteContact(12345)
|
86
|
-
# return true when contact is deleted
|
87
|
-
def deleteContact(id)
|
88
|
-
format_result(deleteApiCall(id), :ok)
|
89
|
-
end
|
90
|
-
|
91
|
-
|
92
|
-
# ----------------------------------------
|
93
|
-
#:section: contact_details
|
94
|
-
# all contacts fields
|
95
|
-
# :id
|
96
|
-
# :title => 'Mr.',
|
97
|
-
# :lastname => 'test',
|
98
|
-
# :firstname => 'user',
|
99
|
-
# :middlename => '',
|
100
|
-
# :nickname => 'bob',
|
101
|
-
# :suffix => '',
|
102
|
-
# :birthday => '1975-02-14', // Format YYYY-MM-DD
|
103
|
-
# :homeaddress => '',
|
104
|
-
# :homecity => 'new york',
|
105
|
-
# :homepostalcode => '',
|
106
|
-
# :homestate => '',
|
107
|
-
# :homecountry => 'usa',
|
108
|
-
# :homeemail => '',
|
109
|
-
# :homephone => '',
|
110
|
-
# :homemobile => '',
|
111
|
-
# :homefax => '',
|
112
|
-
# :homewebpage => '',
|
113
|
-
# :businessaddress => '',
|
114
|
-
# :businesscity => '',
|
115
|
-
# :businesspostalcode => '',
|
116
|
-
# :businessstate => '',
|
117
|
-
# :businesscountry => '',
|
118
|
-
# :businessemail => '',
|
119
|
-
# :businessphone => '',
|
120
|
-
# :businessmobile => '',
|
121
|
-
# :businessfax => '',
|
122
|
-
# :businesswebpage => '',
|
123
|
-
# :company => '',
|
124
|
-
# :department => '',
|
125
|
-
# :jobtitle => '',
|
126
|
-
# :notes => '',
|
127
|
-
# :otheraddress => '',
|
128
|
-
# :othercity => '',
|
129
|
-
# :otherpostalcode => '',
|
130
|
-
# :otherstate => '',
|
131
|
-
# :othercountry => '',
|
132
|
-
# :otheremail => '',
|
133
|
-
# :otherphone => '',
|
134
|
-
# :othermobile => '',
|
135
|
-
# :otherfax => '',
|
136
|
-
# :skypeid => '',
|
137
|
-
# :msnid => '',
|
138
|
-
# :aimid => '',
|
139
|
-
# :pager => '',
|
140
|
-
# :carphone => '',
|
141
|
-
# :managersname => '',
|
142
|
-
# :assistantsname => '',
|
143
|
-
# :assistantsphone => '',
|
144
|
-
# :parent => '',
|
145
|
-
# :spouse => '',
|
146
|
-
# :children => '',
|
147
|
-
# :custom1 => '',
|
148
|
-
# :custom2 => '',
|
149
|
-
# :custom3 => '',
|
150
|
-
# :custom4 => '',
|
151
|
-
# :group => '0',
|
152
|
-
# :photo => '', // Photo encoded with Base64
|
153
|
-
# ----------------------------------------
|
154
|
-
|
155
|
-
|
156
|
-
end # class
|
157
|
-
|
158
|
-
end # module
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
@@ -1,69 +0,0 @@
|
|
1
|
-
|
2
|
-
module Memotoo
|
3
|
-
|
4
|
-
class Connect
|
5
|
-
|
6
|
-
# required: name
|
7
|
-
# {:name=>groupname}
|
8
|
-
# #e.g. @connect.addContactGroup({:name=>"Testgroup"})
|
9
|
-
def addContactGroup(groupname)
|
10
|
-
if has_needed_fields(groupname, :name)
|
11
|
-
addparams = { :id => '',
|
12
|
-
:updated => ''
|
13
|
-
}.merge!(groupname)
|
14
|
-
format_result(addApiCall({:contactGroup => addparams}), :id)
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
#[searchparameter:]
|
19
|
-
# {:search=>"something", :limit_start=>0, :limit_nb=>100}
|
20
|
-
#* required:
|
21
|
-
# search
|
22
|
-
#* optional:
|
23
|
-
# limit_start
|
24
|
-
# limit_nb
|
25
|
-
#e.g. @connect.searchContactGroup({:search=>"ka", :limit_nb=>50})
|
26
|
-
#
|
27
|
-
# returns nil or a hash of one contactgroup or an array of contactgroups
|
28
|
-
#
|
29
|
-
def searchContactGroup(searchparameter={})
|
30
|
-
if has_needed_search_parameter(searchparameter)
|
31
|
-
format_result(searchApiCall(searchparameter), :return, :contact_group)
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
# id = integer
|
36
|
-
# e.g. @connect.getContactGroup(12345)
|
37
|
-
#
|
38
|
-
# returns the contactgroup or nil
|
39
|
-
#
|
40
|
-
def getContactGroup(id)
|
41
|
-
format_result(getApiCall(id), :return, :contact_group)
|
42
|
-
end
|
43
|
-
|
44
|
-
# get modified contactgroups since date
|
45
|
-
# datetime = "2010-02-23 10:00:00" or just "2010-02-23"
|
46
|
-
# e.g. @connect.getContactGroupSync("2010-02-23 10:00:00")
|
47
|
-
def getContactGroupSync(datetime)
|
48
|
-
format_result(getSyncApiCall(datetime), :return, :contact_group)
|
49
|
-
end
|
50
|
-
|
51
|
-
# required: name and id
|
52
|
-
# note: you can only change the name
|
53
|
-
# return true if the changed happened
|
54
|
-
def modifyContactGroup(details={})
|
55
|
-
if has_needed_fields(details, :name, :id)
|
56
|
-
format_result(modifyApiCall({:contactGroup => details}), :ok)
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
# id = integer
|
61
|
-
# e.g. @connect.deleteContactGroup(12345)
|
62
|
-
# return true when contactgroup is deleted
|
63
|
-
def deleteContactGroup(id)
|
64
|
-
format_result(deleteApiCall(id), :ok)
|
65
|
-
end
|
66
|
-
|
67
|
-
end # class
|
68
|
-
|
69
|
-
end # module
|
data/lib/memotoo/wsdl/http.xml
DELETED
@@ -1,526 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="ISO-8859-1"?>
|
2
|
-
<definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:memotooSoap" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:memotooSoap">
|
3
|
-
<types><xsd:schema targetNamespace="urn:memotooSoap">
|
4
|
-
<xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
|
5
|
-
<xsd:import namespace="http://schemas.xmlsoap.org/wsdl/"/>
|
6
|
-
<xsd:complexType name="paramDelete">
|
7
|
-
<xsd:sequence>
|
8
|
-
<xsd:element name="login" type="xsd:string"/>
|
9
|
-
<xsd:element name="password" type="xsd:string"/>
|
10
|
-
<xsd:element name="id" type="xsd:int"/>
|
11
|
-
</xsd:sequence>
|
12
|
-
</xsd:complexType>
|
13
|
-
<xsd:complexType name="paramSearch">
|
14
|
-
<xsd:sequence>
|
15
|
-
<xsd:element name="login" type="xsd:string"/>
|
16
|
-
<xsd:element name="password" type="xsd:string"/>
|
17
|
-
<xsd:element name="search" type="xsd:string"/>
|
18
|
-
<xsd:element name="limitStart" type="xsd:int" default="0"/>
|
19
|
-
<xsd:element name="limitNb" type="xsd:int" default="100"/>
|
20
|
-
</xsd:sequence>
|
21
|
-
</xsd:complexType>
|
22
|
-
<xsd:complexType name="bookmark">
|
23
|
-
<xsd:sequence>
|
24
|
-
<xsd:element name="id" type="xsd:int"/>
|
25
|
-
<xsd:element name="updated" type="xsd:string"/>
|
26
|
-
<xsd:element name="url" type="xsd:string"/>
|
27
|
-
<xsd:element name="description" type="xsd:string"/>
|
28
|
-
<xsd:element name="tags" type="xsd:string"/>
|
29
|
-
<xsd:element name="rank" type="xsd:int"/>
|
30
|
-
<xsd:element name="id_bookmarkFolder" type="xsd:int"/>
|
31
|
-
</xsd:sequence>
|
32
|
-
</xsd:complexType>
|
33
|
-
<xsd:complexType name="paramUpdateBookmark">
|
34
|
-
<xsd:sequence>
|
35
|
-
<xsd:element name="login" type="xsd:string"/>
|
36
|
-
<xsd:element name="password" type="xsd:string"/>
|
37
|
-
<xsd:element name="bookmark" type="tns:bookmark" minOccurs="1" maxOccurs="10"/>
|
38
|
-
</xsd:sequence>
|
39
|
-
</xsd:complexType>
|
40
|
-
<xsd:complexType name="paramGetBookmark">
|
41
|
-
<xsd:sequence>
|
42
|
-
<xsd:element name="login" type="xsd:string"/>
|
43
|
-
<xsd:element name="password" type="xsd:string"/>
|
44
|
-
<xsd:element name="id" type="xsd:int"/>
|
45
|
-
</xsd:sequence>
|
46
|
-
</xsd:complexType>
|
47
|
-
<xsd:complexType name="paramGetBookmarkSync">
|
48
|
-
<xsd:sequence>
|
49
|
-
<xsd:element name="login" type="xsd:string"/>
|
50
|
-
<xsd:element name="password" type="xsd:string"/>
|
51
|
-
<xsd:element name="date" type="xsd:date"/>
|
52
|
-
</xsd:sequence>
|
53
|
-
</xsd:complexType>
|
54
|
-
<xsd:complexType name="bookmarkResponse">
|
55
|
-
<xsd:sequence>
|
56
|
-
<xsd:element name="bookmark" type="tns:bookmark" minOccurs="0" maxOccurs="99999"/>
|
57
|
-
</xsd:sequence>
|
58
|
-
</xsd:complexType>
|
59
|
-
<xsd:complexType name="bookmarkFolder">
|
60
|
-
<xsd:sequence>
|
61
|
-
<xsd:element name="id" type="xsd:int"/>
|
62
|
-
<xsd:element name="updated" type="xsd:string"/>
|
63
|
-
<xsd:element name="name" type="xsd:string"/>
|
64
|
-
<xsd:element name="id_bookmarkFolderParent" type="xsd:int"/>
|
65
|
-
</xsd:sequence>
|
66
|
-
</xsd:complexType>
|
67
|
-
<xsd:complexType name="paramUpdateBookmarkFolder">
|
68
|
-
<xsd:sequence>
|
69
|
-
<xsd:element name="login" type="xsd:string"/>
|
70
|
-
<xsd:element name="password" type="xsd:string"/>
|
71
|
-
<xsd:element name="bookmarkFolder" type="tns:bookmarkFolder" minOccurs="1" maxOccurs="10"/>
|
72
|
-
</xsd:sequence>
|
73
|
-
</xsd:complexType>
|
74
|
-
<xsd:complexType name="paramGetBookmarkFolder">
|
75
|
-
<xsd:sequence>
|
76
|
-
<xsd:element name="login" type="xsd:string"/>
|
77
|
-
<xsd:element name="password" type="xsd:string"/>
|
78
|
-
<xsd:element name="id" type="xsd:int"/>
|
79
|
-
</xsd:sequence>
|
80
|
-
</xsd:complexType>
|
81
|
-
<xsd:complexType name="paramGetBookmarkFolderSync">
|
82
|
-
<xsd:sequence>
|
83
|
-
<xsd:element name="login" type="xsd:string"/>
|
84
|
-
<xsd:element name="password" type="xsd:string"/>
|
85
|
-
<xsd:element name="date" type="xsd:date"/>
|
86
|
-
</xsd:sequence>
|
87
|
-
</xsd:complexType>
|
88
|
-
<xsd:complexType name="bookmarkFolderResponse">
|
89
|
-
<xsd:sequence>
|
90
|
-
<xsd:element name="bookmarkFolder" type="tns:bookmarkFolder" minOccurs="0" maxOccurs="99999"/>
|
91
|
-
</xsd:sequence>
|
92
|
-
</xsd:complexType>
|
93
|
-
<xsd:complexType name="calendarCategory">
|
94
|
-
<xsd:sequence>
|
95
|
-
<xsd:element name="id" type="xsd:int"/>
|
96
|
-
<xsd:element name="updated" type="xsd:string"/>
|
97
|
-
<xsd:element name="name" type="xsd:string"/>
|
98
|
-
<xsd:element name="color" type="xsd:string"/>
|
99
|
-
</xsd:sequence>
|
100
|
-
</xsd:complexType>
|
101
|
-
<xsd:complexType name="paramUpdateCalendarCategory">
|
102
|
-
<xsd:sequence>
|
103
|
-
<xsd:element name="login" type="xsd:string"/>
|
104
|
-
<xsd:element name="password" type="xsd:string"/>
|
105
|
-
<xsd:element name="calendarCategory" type="tns:calendarCategory" minOccurs="1" maxOccurs="10"/>
|
106
|
-
</xsd:sequence>
|
107
|
-
</xsd:complexType>
|
108
|
-
<xsd:complexType name="paramGetCalendarCategory">
|
109
|
-
<xsd:sequence>
|
110
|
-
<xsd:element name="login" type="xsd:string"/>
|
111
|
-
<xsd:element name="password" type="xsd:string"/>
|
112
|
-
<xsd:element name="id" type="xsd:int"/>
|
113
|
-
</xsd:sequence>
|
114
|
-
</xsd:complexType>
|
115
|
-
<xsd:complexType name="paramGetCalendarCategorySync">
|
116
|
-
<xsd:sequence>
|
117
|
-
<xsd:element name="login" type="xsd:string"/>
|
118
|
-
<xsd:element name="password" type="xsd:string"/>
|
119
|
-
<xsd:element name="date" type="xsd:date"/>
|
120
|
-
</xsd:sequence>
|
121
|
-
</xsd:complexType>
|
122
|
-
<xsd:complexType name="calendarCategoryResponse">
|
123
|
-
<xsd:sequence>
|
124
|
-
<xsd:element name="calendarCategory" type="tns:calendarCategory" minOccurs="0" maxOccurs="99999"/>
|
125
|
-
</xsd:sequence>
|
126
|
-
</xsd:complexType>
|
127
|
-
<xsd:complexType name="contact">
|
128
|
-
<xsd:sequence>
|
129
|
-
<xsd:element name="id" type="xsd:int"/>
|
130
|
-
<xsd:element name="updated" type="xsd:string"/>
|
131
|
-
<xsd:element name="title" type="xsd:string"/>
|
132
|
-
<xsd:element name="lastname" type="xsd:string"/>
|
133
|
-
<xsd:element name="firstname" type="xsd:string"/>
|
134
|
-
<xsd:element name="middlename" type="xsd:string"/>
|
135
|
-
<xsd:element name="nickname" type="xsd:string"/>
|
136
|
-
<xsd:element name="suffix" type="xsd:string"/>
|
137
|
-
<xsd:element name="birthday" type="xsd:string"/>
|
138
|
-
<xsd:element name="homeaddress" type="xsd:string"/>
|
139
|
-
<xsd:element name="homecity" type="xsd:string"/>
|
140
|
-
<xsd:element name="homepostalcode" type="xsd:string"/>
|
141
|
-
<xsd:element name="homestate" type="xsd:string"/>
|
142
|
-
<xsd:element name="homecountry" type="xsd:string"/>
|
143
|
-
<xsd:element name="homeemail" type="xsd:string"/>
|
144
|
-
<xsd:element name="homephone" type="xsd:string"/>
|
145
|
-
<xsd:element name="homemobile" type="xsd:string"/>
|
146
|
-
<xsd:element name="homefax" type="xsd:string"/>
|
147
|
-
<xsd:element name="homewebpage" type="xsd:string"/>
|
148
|
-
<xsd:element name="businessaddress" type="xsd:string"/>
|
149
|
-
<xsd:element name="businesscity" type="xsd:string"/>
|
150
|
-
<xsd:element name="businesspostalcode" type="xsd:string"/>
|
151
|
-
<xsd:element name="businessstate" type="xsd:string"/>
|
152
|
-
<xsd:element name="businesscountry" type="xsd:string"/>
|
153
|
-
<xsd:element name="businessemail" type="xsd:string"/>
|
154
|
-
<xsd:element name="businessphone" type="xsd:string"/>
|
155
|
-
<xsd:element name="businessmobile" type="xsd:string"/>
|
156
|
-
<xsd:element name="businessfax" type="xsd:string"/>
|
157
|
-
<xsd:element name="businesswebpage" type="xsd:string"/>
|
158
|
-
<xsd:element name="company" type="xsd:string"/>
|
159
|
-
<xsd:element name="department" type="xsd:string"/>
|
160
|
-
<xsd:element name="jobtitle" type="xsd:string"/>
|
161
|
-
<xsd:element name="notes" type="xsd:string"/>
|
162
|
-
<xsd:element name="otheraddress" type="xsd:string"/>
|
163
|
-
<xsd:element name="othercity" type="xsd:string"/>
|
164
|
-
<xsd:element name="otherpostalcode" type="xsd:string"/>
|
165
|
-
<xsd:element name="otherstate" type="xsd:string"/>
|
166
|
-
<xsd:element name="othercountry" type="xsd:string"/>
|
167
|
-
<xsd:element name="otheremail" type="xsd:string"/>
|
168
|
-
<xsd:element name="otherphone" type="xsd:string"/>
|
169
|
-
<xsd:element name="othermobile" type="xsd:string"/>
|
170
|
-
<xsd:element name="otherfax" type="xsd:string"/>
|
171
|
-
<xsd:element name="skypeid" type="xsd:string"/>
|
172
|
-
<xsd:element name="msnid" type="xsd:string"/>
|
173
|
-
<xsd:element name="aimid" type="xsd:string"/>
|
174
|
-
<xsd:element name="pager" type="xsd:string"/>
|
175
|
-
<xsd:element name="carphone" type="xsd:string"/>
|
176
|
-
<xsd:element name="managersname" type="xsd:string"/>
|
177
|
-
<xsd:element name="assistantsname" type="xsd:string"/>
|
178
|
-
<xsd:element name="assistantsphone" type="xsd:string"/>
|
179
|
-
<xsd:element name="parent" type="xsd:string"/>
|
180
|
-
<xsd:element name="spouse" type="xsd:string"/>
|
181
|
-
<xsd:element name="children" type="xsd:string"/>
|
182
|
-
<xsd:element name="custom1" type="xsd:string"/>
|
183
|
-
<xsd:element name="custom2" type="xsd:string"/>
|
184
|
-
<xsd:element name="custom3" type="xsd:string"/>
|
185
|
-
<xsd:element name="custom4" type="xsd:string"/>
|
186
|
-
<xsd:element name="group" type="xsd:string"/>
|
187
|
-
<xsd:element name="photo" type="xsd:base64"/>
|
188
|
-
</xsd:sequence>
|
189
|
-
</xsd:complexType>
|
190
|
-
<xsd:complexType name="paramUpdateContact">
|
191
|
-
<xsd:sequence>
|
192
|
-
<xsd:element name="login" type="xsd:string"/>
|
193
|
-
<xsd:element name="password" type="xsd:string"/>
|
194
|
-
<xsd:element name="contact" type="tns:contact" minOccurs="1" maxOccurs="10"/>
|
195
|
-
</xsd:sequence>
|
196
|
-
</xsd:complexType>
|
197
|
-
<xsd:complexType name="paramGetContact">
|
198
|
-
<xsd:sequence>
|
199
|
-
<xsd:element name="login" type="xsd:string"/>
|
200
|
-
<xsd:element name="password" type="xsd:string"/>
|
201
|
-
<xsd:element name="id" type="xsd:int"/>
|
202
|
-
</xsd:sequence>
|
203
|
-
</xsd:complexType>
|
204
|
-
<xsd:complexType name="paramGetContactSync">
|
205
|
-
<xsd:sequence>
|
206
|
-
<xsd:element name="login" type="xsd:string"/>
|
207
|
-
<xsd:element name="password" type="xsd:string"/>
|
208
|
-
<xsd:element name="date" type="xsd:date"/>
|
209
|
-
</xsd:sequence>
|
210
|
-
</xsd:complexType>
|
211
|
-
<xsd:complexType name="contactResponse">
|
212
|
-
<xsd:sequence>
|
213
|
-
<xsd:element name="contact" type="tns:contact" minOccurs="0" maxOccurs="99999"/>
|
214
|
-
</xsd:sequence>
|
215
|
-
</xsd:complexType>
|
216
|
-
<xsd:complexType name="contactGroup">
|
217
|
-
<xsd:sequence>
|
218
|
-
<xsd:element name="id" type="xsd:int"/>
|
219
|
-
<xsd:element name="updated" type="xsd:string"/>
|
220
|
-
<xsd:element name="name" type="xsd:string"/>
|
221
|
-
</xsd:sequence>
|
222
|
-
</xsd:complexType>
|
223
|
-
<xsd:complexType name="paramUpdateContactGroup">
|
224
|
-
<xsd:sequence>
|
225
|
-
<xsd:element name="login" type="xsd:string"/>
|
226
|
-
<xsd:element name="password" type="xsd:string"/>
|
227
|
-
<xsd:element name="contactGroup" type="tns:contactGroup" minOccurs="1" maxOccurs="10"/>
|
228
|
-
</xsd:sequence>
|
229
|
-
</xsd:complexType>
|
230
|
-
<xsd:complexType name="paramGetContactGroup">
|
231
|
-
<xsd:sequence>
|
232
|
-
<xsd:element name="login" type="xsd:string"/>
|
233
|
-
<xsd:element name="password" type="xsd:string"/>
|
234
|
-
<xsd:element name="id" type="xsd:int"/>
|
235
|
-
</xsd:sequence>
|
236
|
-
</xsd:complexType>
|
237
|
-
<xsd:complexType name="paramGetContactGroupSync">
|
238
|
-
<xsd:sequence>
|
239
|
-
<xsd:element name="login" type="xsd:string"/>
|
240
|
-
<xsd:element name="password" type="xsd:string"/>
|
241
|
-
<xsd:element name="date" type="xsd:date"/>
|
242
|
-
</xsd:sequence>
|
243
|
-
</xsd:complexType>
|
244
|
-
<xsd:complexType name="contactGroupResponse">
|
245
|
-
<xsd:sequence>
|
246
|
-
<xsd:element name="contactGroup" type="tns:contactGroup" minOccurs="0" maxOccurs="99999"/>
|
247
|
-
</xsd:sequence>
|
248
|
-
</xsd:complexType>
|
249
|
-
<xsd:complexType name="event">
|
250
|
-
<xsd:sequence>
|
251
|
-
<xsd:element name="id" type="xsd:int"/>
|
252
|
-
<xsd:element name="updated" type="xsd:string"/>
|
253
|
-
<xsd:element name="title" type="xsd:string"/>
|
254
|
-
<xsd:element name="description" type="xsd:string"/>
|
255
|
-
<xsd:element name="location" type="xsd:string"/>
|
256
|
-
<xsd:element name="url" type="xsd:string"/>
|
257
|
-
<xsd:element name="dateBegin" type="xsd:dateTime.iso8601"/>
|
258
|
-
<xsd:element name="dateEnd" type="xsd:dateTime.iso8601"/>
|
259
|
-
<xsd:element name="private" type="xsd:string"/>
|
260
|
-
<xsd:element name="guests" type="xsd:string"/>
|
261
|
-
<xsd:element name="alarmNbMinutesBeforeEvent" type="xsd:string"/>
|
262
|
-
<xsd:element name="alarmEmail" type="xsd:int"/>
|
263
|
-
<xsd:element name="alarmSms" type="xsd:int"/>
|
264
|
-
<xsd:element name="repeatRule" type="xsd:string"/>
|
265
|
-
<xsd:element name="repeatExceptions" type="xsd:string"/>
|
266
|
-
<xsd:element name="id_calendarCategory" type="xsd:int"/>
|
267
|
-
</xsd:sequence>
|
268
|
-
</xsd:complexType>
|
269
|
-
<xsd:complexType name="paramUpdateEvent">
|
270
|
-
<xsd:sequence>
|
271
|
-
<xsd:element name="login" type="xsd:string"/>
|
272
|
-
<xsd:element name="password" type="xsd:string"/>
|
273
|
-
<xsd:element name="event" type="tns:event" minOccurs="1" maxOccurs="10"/>
|
274
|
-
</xsd:sequence>
|
275
|
-
</xsd:complexType>
|
276
|
-
<xsd:complexType name="paramGetEvent">
|
277
|
-
<xsd:sequence>
|
278
|
-
<xsd:element name="login" type="xsd:string"/>
|
279
|
-
<xsd:element name="password" type="xsd:string"/>
|
280
|
-
<xsd:element name="id" type="xsd:int"/>
|
281
|
-
</xsd:sequence>
|
282
|
-
</xsd:complexType>
|
283
|
-
<xsd:complexType name="paramGetEventSync">
|
284
|
-
<xsd:sequence>
|
285
|
-
<xsd:element name="login" type="xsd:string"/>
|
286
|
-
<xsd:element name="password" type="xsd:string"/>
|
287
|
-
<xsd:element name="date" type="xsd:date"/>
|
288
|
-
</xsd:sequence>
|
289
|
-
</xsd:complexType>
|
290
|
-
<xsd:complexType name="eventResponse">
|
291
|
-
<xsd:sequence>
|
292
|
-
<xsd:element name="event" type="tns:event" minOccurs="0" maxOccurs="99999"/>
|
293
|
-
</xsd:sequence>
|
294
|
-
</xsd:complexType>
|
295
|
-
<xsd:complexType name="holiday">
|
296
|
-
<xsd:sequence>
|
297
|
-
<xsd:element name="id" type="xsd:int"/>
|
298
|
-
<xsd:element name="updated" type="xsd:string"/>
|
299
|
-
<xsd:element name="dateBegin" type="xsd:string"/>
|
300
|
-
<xsd:element name="dateEnd" type="xsd:string"/>
|
301
|
-
<xsd:element name="description" type="xsd:string"/>
|
302
|
-
<xsd:element name="repeatRule" type="xsd:string"/>
|
303
|
-
<xsd:element name="repeatExceptions" type="xsd:string"/>
|
304
|
-
</xsd:sequence>
|
305
|
-
</xsd:complexType>
|
306
|
-
<xsd:complexType name="paramUpdateHoliday">
|
307
|
-
<xsd:sequence>
|
308
|
-
<xsd:element name="login" type="xsd:string"/>
|
309
|
-
<xsd:element name="password" type="xsd:string"/>
|
310
|
-
<xsd:element name="holiday" type="tns:holiday" minOccurs="1" maxOccurs="10"/>
|
311
|
-
</xsd:sequence>
|
312
|
-
</xsd:complexType>
|
313
|
-
<xsd:complexType name="paramGetHoliday">
|
314
|
-
<xsd:sequence>
|
315
|
-
<xsd:element name="login" type="xsd:string"/>
|
316
|
-
<xsd:element name="password" type="xsd:string"/>
|
317
|
-
<xsd:element name="id" type="xsd:int"/>
|
318
|
-
</xsd:sequence>
|
319
|
-
</xsd:complexType>
|
320
|
-
<xsd:complexType name="paramGetHolidaySync">
|
321
|
-
<xsd:sequence>
|
322
|
-
<xsd:element name="login" type="xsd:string"/>
|
323
|
-
<xsd:element name="password" type="xsd:string"/>
|
324
|
-
<xsd:element name="date" type="xsd:date"/>
|
325
|
-
</xsd:sequence>
|
326
|
-
</xsd:complexType>
|
327
|
-
<xsd:complexType name="holidayResponse">
|
328
|
-
<xsd:sequence>
|
329
|
-
<xsd:element name="holiday" type="tns:holiday" minOccurs="0" maxOccurs="99999"/>
|
330
|
-
</xsd:sequence>
|
331
|
-
</xsd:complexType>
|
332
|
-
<xsd:complexType name="note">
|
333
|
-
<xsd:sequence>
|
334
|
-
<xsd:element name="id" type="xsd:int"/>
|
335
|
-
<xsd:element name="updated" type="xsd:string"/>
|
336
|
-
<xsd:element name="title" type="xsd:string"/>
|
337
|
-
<xsd:element name="description" type="xsd:string"/>
|
338
|
-
<xsd:element name="id_calendarCategory" type="xsd:int"/>
|
339
|
-
</xsd:sequence>
|
340
|
-
</xsd:complexType>
|
341
|
-
<xsd:complexType name="paramUpdateNote">
|
342
|
-
<xsd:sequence>
|
343
|
-
<xsd:element name="login" type="xsd:string"/>
|
344
|
-
<xsd:element name="password" type="xsd:string"/>
|
345
|
-
<xsd:element name="note" type="tns:note" minOccurs="1" maxOccurs="10"/>
|
346
|
-
</xsd:sequence>
|
347
|
-
</xsd:complexType>
|
348
|
-
<xsd:complexType name="paramGetNote">
|
349
|
-
<xsd:sequence>
|
350
|
-
<xsd:element name="login" type="xsd:string"/>
|
351
|
-
<xsd:element name="password" type="xsd:string"/>
|
352
|
-
<xsd:element name="id" type="xsd:int"/>
|
353
|
-
</xsd:sequence>
|
354
|
-
</xsd:complexType>
|
355
|
-
<xsd:complexType name="paramGetNoteSync">
|
356
|
-
<xsd:sequence>
|
357
|
-
<xsd:element name="login" type="xsd:string"/>
|
358
|
-
<xsd:element name="password" type="xsd:string"/>
|
359
|
-
<xsd:element name="date" type="xsd:date"/>
|
360
|
-
</xsd:sequence>
|
361
|
-
</xsd:complexType>
|
362
|
-
<xsd:complexType name="noteResponse">
|
363
|
-
<xsd:sequence>
|
364
|
-
<xsd:element name="note" type="tns:note" minOccurs="0" maxOccurs="99999"/>
|
365
|
-
</xsd:sequence>
|
366
|
-
</xsd:complexType>
|
367
|
-
<xsd:complexType name="task">
|
368
|
-
<xsd:sequence>
|
369
|
-
<xsd:element name="id" type="xsd:int"/>
|
370
|
-
<xsd:element name="updated" type="xsd:string"/>
|
371
|
-
<xsd:element name="title" type="xsd:string"/>
|
372
|
-
<xsd:element name="description" type="xsd:string"/>
|
373
|
-
<xsd:element name="priority" type="xsd:int"/>
|
374
|
-
<xsd:element name="status" type="xsd:string"/>
|
375
|
-
<xsd:element name="dateBegin" type="xsd:dateTime.iso8601"/>
|
376
|
-
<xsd:element name="dateDue" type="xsd:dateTime.iso8601"/>
|
377
|
-
<xsd:element name="dateCompleted" type="xsd:dateTime.iso8601"/>
|
378
|
-
<xsd:element name="percentComplete" type="xsd:int"/>
|
379
|
-
<xsd:element name="alarmNbMinutesBeforeEvent" type="xsd:string"/>
|
380
|
-
<xsd:element name="alarmEmail" type="xsd:int"/>
|
381
|
-
<xsd:element name="alarmSms" type="xsd:int"/>
|
382
|
-
<xsd:element name="repeatRule" type="xsd:string"/>
|
383
|
-
<xsd:element name="repeatExceptions" type="xsd:string"/>
|
384
|
-
<xsd:element name="id_calendarCategory" type="xsd:int"/>
|
385
|
-
</xsd:sequence>
|
386
|
-
</xsd:complexType>
|
387
|
-
<xsd:complexType name="paramUpdateTask">
|
388
|
-
<xsd:sequence>
|
389
|
-
<xsd:element name="login" type="xsd:string"/>
|
390
|
-
<xsd:element name="password" type="xsd:string"/>
|
391
|
-
<xsd:element name="task" type="tns:task" minOccurs="1" maxOccurs="10"/>
|
392
|
-
</xsd:sequence>
|
393
|
-
</xsd:complexType>
|
394
|
-
<xsd:complexType name="paramGetTask">
|
395
|
-
<xsd:sequence>
|
396
|
-
<xsd:element name="login" type="xsd:string"/>
|
397
|
-
<xsd:element name="password" type="xsd:string"/>
|
398
|
-
<xsd:element name="id" type="xsd:int"/>
|
399
|
-
</xsd:sequence>
|
400
|
-
</xsd:complexType>
|
401
|
-
<xsd:complexType name="paramGetTaskSync">
|
402
|
-
<xsd:sequence>
|
403
|
-
<xsd:element name="login" type="xsd:string"/>
|
404
|
-
<xsd:element name="password" type="xsd:string"/>
|
405
|
-
<xsd:element name="date" type="xsd:date"/>
|
406
|
-
</xsd:sequence>
|
407
|
-
</xsd:complexType>
|
408
|
-
<xsd:complexType name="taskResponse">
|
409
|
-
<xsd:sequence>
|
410
|
-
<xsd:element name="task" type="tns:task" minOccurs="0" maxOccurs="99999"/>
|
411
|
-
</xsd:sequence>
|
412
|
-
</xsd:complexType>
|
413
|
-
</xsd:schema>
|
414
|
-
</types>
|
415
|
-
<message name="addBookmarkRequest"><part name="param" type="tns:paramUpdateBookmark"/></message>
|
416
|
-
<message name="addBookmarkResponse"><part name="id" type="xsd:int"/></message>
|
417
|
-
<message name="deleteBookmarkRequest"><part name="param" type="tns:paramDelete"/></message>
|
418
|
-
<message name="deleteBookmarkResponse"><part name="ok" type="xsd:boolean"/></message>
|
419
|
-
<message name="getBookmarkRequest"><part name="param" type="tns:paramGetBookmark"/></message>
|
420
|
-
<message name="getBookmarkResponse"><part name="return" type="tns:bookmarkResponse"/></message>
|
421
|
-
<message name="getBookmarkSyncRequest"><part name="param" type="tns:paramGetBookmarkSync"/></message>
|
422
|
-
<message name="getBookmarkSyncResponse"><part name="return" type="tns:bookmarkResponse"/></message>
|
423
|
-
<message name="modifyBookmarkRequest"><part name="param" type="tns:paramUpdateBookmark"/></message>
|
424
|
-
<message name="modifyBookmarkResponse"><part name="ok" type="xsd:boolean"/></message>
|
425
|
-
<message name="searchBookmarkRequest"><part name="param" type="tns:paramSearch"/></message>
|
426
|
-
<message name="searchBookmarkResponse"><part name="return" type="tns:bookmarkResponse"/></message>
|
427
|
-
<message name="addBookmarkFolderRequest"><part name="param" type="tns:paramUpdateBookmarkFolder"/></message>
|
428
|
-
<message name="addBookmarkFolderResponse"><part name="id" type="xsd:int"/></message>
|
429
|
-
<message name="deleteBookmarkFolderRequest"><part name="param" type="tns:paramDelete"/></message>
|
430
|
-
<message name="deleteBookmarkFolderResponse"><part name="ok" type="xsd:boolean"/></message>
|
431
|
-
<message name="getBookmarkFolderRequest"><part name="param" type="tns:paramGetBookmarkFolder"/></message>
|
432
|
-
<message name="getBookmarkFolderResponse"><part name="return" type="tns:bookmarkFolderResponse"/></message>
|
433
|
-
<message name="getBookmarkFolderSyncRequest"><part name="param" type="tns:paramGetBookmarkFolderSync"/></message>
|
434
|
-
<message name="getBookmarkFolderSyncResponse"><part name="return" type="tns:bookmarkFolderResponse"/></message>
|
435
|
-
<message name="modifyBookmarkFolderRequest"><part name="param" type="tns:paramUpdateBookmarkFolder"/></message>
|
436
|
-
<message name="modifyBookmarkFolderResponse"><part name="ok" type="xsd:boolean"/></message>
|
437
|
-
<message name="searchBookmarkFolderRequest"><part name="param" type="tns:paramSearch"/></message>
|
438
|
-
<message name="searchBookmarkFolderResponse"><part name="return" type="tns:bookmarkFolderResponse"/></message>
|
439
|
-
<message name="addCalendarCategoryRequest"><part name="param" type="tns:paramUpdateCalendarCategory"/></message>
|
440
|
-
<message name="addCalendarCategoryResponse"><part name="id" type="xsd:int"/></message>
|
441
|
-
<message name="deleteCalendarCategoryRequest"><part name="param" type="tns:paramDelete"/></message>
|
442
|
-
<message name="deleteCalendarCategoryResponse"><part name="ok" type="xsd:boolean"/></message>
|
443
|
-
<message name="getCalendarCategoryRequest"><part name="param" type="tns:paramGetCalendarCategory"/></message>
|
444
|
-
<message name="getCalendarCategoryResponse"><part name="return" type="tns:calendarCategoryResponse"/></message>
|
445
|
-
<message name="getCalendarCategorySyncRequest"><part name="param" type="tns:paramGetCalendarCategorySync"/></message>
|
446
|
-
<message name="getCalendarCategorySyncResponse"><part name="return" type="tns:calendarCategoryResponse"/></message>
|
447
|
-
<message name="modifyCalendarCategoryRequest"><part name="param" type="tns:paramUpdateCalendarCategory"/></message>
|
448
|
-
<message name="modifyCalendarCategoryResponse"><part name="ok" type="xsd:boolean"/></message>
|
449
|
-
<message name="searchCalendarCategoryRequest"><part name="param" type="tns:paramSearch"/></message>
|
450
|
-
<message name="searchCalendarCategoryResponse"><part name="return" type="tns:calendarCategoryResponse"/></message>
|
451
|
-
<message name="addContactRequest"><part name="param" type="tns:paramUpdateContact"/></message>
|
452
|
-
<message name="addContactResponse"><part name="id" type="xsd:int"/></message>
|
453
|
-
<message name="deleteContactRequest"><part name="param" type="tns:paramDelete"/></message>
|
454
|
-
<message name="deleteContactResponse"><part name="ok" type="xsd:boolean"/></message>
|
455
|
-
<message name="getContactRequest"><part name="param" type="tns:paramGetContact"/></message>
|
456
|
-
<message name="getContactResponse"><part name="return" type="tns:contactResponse"/></message>
|
457
|
-
<message name="getContactSyncRequest"><part name="param" type="tns:paramGetContactSync"/></message>
|
458
|
-
<message name="getContactSyncResponse"><part name="return" type="tns:contactResponse"/></message>
|
459
|
-
<message name="modifyContactRequest"><part name="param" type="tns:paramUpdateContact"/></message>
|
460
|
-
<message name="modifyContactResponse"><part name="ok" type="xsd:boolean"/></message>
|
461
|
-
<message name="searchContactRequest"><part name="param" type="tns:paramSearch"/></message>
|
462
|
-
<message name="searchContactResponse"><part name="return" type="tns:contactResponse"/></message>
|
463
|
-
<message name="addContactGroupRequest"><part name="param" type="tns:paramUpdateContactGroup"/></message>
|
464
|
-
<message name="addContactGroupResponse"><part name="id" type="xsd:int"/></message>
|
465
|
-
<message name="deleteContactGroupRequest"><part name="param" type="tns:paramDelete"/></message>
|
466
|
-
<message name="deleteContactGroupResponse"><part name="ok" type="xsd:boolean"/></message>
|
467
|
-
<message name="getContactGroupRequest"><part name="param" type="tns:paramGetContactGroup"/></message>
|
468
|
-
<message name="getContactGroupResponse"><part name="return" type="tns:contactGroupResponse"/></message>
|
469
|
-
<message name="getContactGroupSyncRequest"><part name="param" type="tns:paramGetContactGroupSync"/></message>
|
470
|
-
<message name="getContactGroupSyncResponse"><part name="return" type="tns:contactGroupResponse"/></message>
|
471
|
-
<message name="modifyContactGroupRequest"><part name="param" type="tns:paramUpdateContactGroup"/></message>
|
472
|
-
<message name="modifyContactGroupResponse"><part name="ok" type="xsd:boolean"/></message>
|
473
|
-
<message name="searchContactGroupRequest"><part name="param" type="tns:paramSearch"/></message>
|
474
|
-
<message name="searchContactGroupResponse"><part name="return" type="tns:contactGroupResponse"/></message>
|
475
|
-
<message name="addEventRequest"><part name="param" type="tns:paramUpdateEvent"/></message>
|
476
|
-
<message name="addEventResponse"><part name="id" type="xsd:int"/></message>
|
477
|
-
<message name="deleteEventRequest"><part name="param" type="tns:paramDelete"/></message>
|
478
|
-
<message name="deleteEventResponse"><part name="ok" type="xsd:boolean"/></message>
|
479
|
-
<message name="getEventRequest"><part name="param" type="tns:paramGetEvent"/></message>
|
480
|
-
<message name="getEventResponse"><part name="return" type="tns:eventResponse"/></message>
|
481
|
-
<message name="getEventSyncRequest"><part name="param" type="tns:paramGetEventSync"/></message>
|
482
|
-
<message name="getEventSyncResponse"><part name="return" type="tns:eventResponse"/></message>
|
483
|
-
<message name="modifyEventRequest"><part name="param" type="tns:paramUpdateEvent"/></message>
|
484
|
-
<message name="modifyEventResponse"><part name="ok" type="xsd:boolean"/></message>
|
485
|
-
<message name="searchEventRequest"><part name="param" type="tns:paramSearch"/></message>
|
486
|
-
<message name="searchEventResponse"><part name="return" type="tns:eventResponse"/></message>
|
487
|
-
<message name="addHolidayRequest"><part name="param" type="tns:paramUpdateHoliday"/></message>
|
488
|
-
<message name="addHolidayResponse"><part name="id" type="xsd:int"/></message>
|
489
|
-
<message name="deleteHolidayRequest"><part name="param" type="tns:paramDelete"/></message>
|
490
|
-
<message name="deleteHolidayResponse"><part name="ok" type="xsd:boolean"/></message>
|
491
|
-
<message name="getHolidayRequest"><part name="param" type="tns:paramGetHoliday"/></message>
|
492
|
-
<message name="getHolidayResponse"><part name="return" type="tns:holidayResponse"/></message>
|
493
|
-
<message name="getHolidaySyncRequest"><part name="param" type="tns:paramGetHolidaySync"/></message>
|
494
|
-
<message name="getHolidaySyncResponse"><part name="return" type="tns:holidayResponse"/></message>
|
495
|
-
<message name="modifyHolidayRequest"><part name="param" type="tns:paramUpdateHoliday"/></message>
|
496
|
-
<message name="modifyHolidayResponse"><part name="ok" type="xsd:boolean"/></message>
|
497
|
-
<message name="searchHolidayRequest"><part name="param" type="tns:paramSearch"/></message>
|
498
|
-
<message name="searchHolidayResponse"><part name="return" type="tns:holidayResponse"/></message>
|
499
|
-
<message name="addNoteRequest"><part name="param" type="tns:paramUpdateNote"/></message>
|
500
|
-
<message name="addNoteResponse"><part name="id" type="xsd:int"/></message>
|
501
|
-
<message name="deleteNoteRequest"><part name="param" type="tns:paramDelete"/></message>
|
502
|
-
<message name="deleteNoteResponse"><part name="ok" type="xsd:boolean"/></message>
|
503
|
-
<message name="getNoteRequest"><part name="param" type="tns:paramGetNote"/></message>
|
504
|
-
<message name="getNoteResponse"><part name="return" type="tns:noteResponse"/></message>
|
505
|
-
<message name="getNoteSyncRequest"><part name="param" type="tns:paramGetNoteSync"/></message>
|
506
|
-
<message name="getNoteSyncResponse"><part name="return" type="tns:noteResponse"/></message>
|
507
|
-
<message name="modifyNoteRequest"><part name="param" type="tns:paramUpdateNote"/></message>
|
508
|
-
<message name="modifyNoteResponse"><part name="ok" type="xsd:boolean"/></message>
|
509
|
-
<message name="searchNoteRequest"><part name="param" type="tns:paramSearch"/></message>
|
510
|
-
<message name="searchNoteResponse"><part name="return" type="tns:noteResponse"/></message>
|
511
|
-
<message name="addTaskRequest"><part name="param" type="tns:paramUpdateTask"/></message>
|
512
|
-
<message name="addTaskResponse"><part name="id" type="xsd:int"/></message>
|
513
|
-
<message name="deleteTaskRequest"><part name="param" type="tns:paramDelete"/></message>
|
514
|
-
<message name="deleteTaskResponse"><part name="ok" type="xsd:boolean"/></message>
|
515
|
-
<message name="getTaskRequest"><part name="param" type="tns:paramGetTask"/></message>
|
516
|
-
<message name="getTaskResponse"><part name="return" type="tns:taskResponse"/></message>
|
517
|
-
<message name="getTaskSyncRequest"><part name="param" type="tns:paramGetTaskSync"/></message>
|
518
|
-
<message name="getTaskSyncResponse"><part name="return" type="tns:taskResponse"/></message>
|
519
|
-
<message name="modifyTaskRequest"><part name="param" type="tns:paramUpdateTask"/></message>
|
520
|
-
<message name="modifyTaskResponse"><part name="ok" type="xsd:boolean"/></message>
|
521
|
-
<message name="searchTaskRequest"><part name="param" type="tns:paramSearch"/></message>
|
522
|
-
<message name="searchTaskResponse"><part name="return" type="tns:taskResponse"/></message>
|
523
|
-
<portType name="MemotooSoapPortType"><operation name="addBookmark"><documentation>Add bookmark</documentation><input message="tns:addBookmarkRequest"/><output message="tns:addBookmarkResponse"/></operation><operation name="deleteBookmark"><documentation>Delete one bookmark</documentation><input message="tns:deleteBookmarkRequest"/><output message="tns:deleteBookmarkResponse"/></operation><operation name="getBookmark"><documentation>Select one of bookmark</documentation><input message="tns:getBookmarkRequest"/><output message="tns:getBookmarkResponse"/></operation><operation name="getBookmarkSync"><documentation>Get the bookmark modified since date</documentation><input message="tns:getBookmarkSyncRequest"/><output message="tns:getBookmarkSyncResponse"/></operation><operation name="modifyBookmark"><documentation>Modify bookmark</documentation><input message="tns:modifyBookmarkRequest"/><output message="tns:modifyBookmarkResponse"/></operation><operation name="searchBookmark"><documentation>Select a list of bookmark</documentation><input message="tns:searchBookmarkRequest"/><output message="tns:searchBookmarkResponse"/></operation><operation name="addBookmarkFolder"><documentation>Add bookmarkFolder</documentation><input message="tns:addBookmarkFolderRequest"/><output message="tns:addBookmarkFolderResponse"/></operation><operation name="deleteBookmarkFolder"><documentation>Delete one bookmarkFolder</documentation><input message="tns:deleteBookmarkFolderRequest"/><output message="tns:deleteBookmarkFolderResponse"/></operation><operation name="getBookmarkFolder"><documentation>Select one of bookmarkFolder</documentation><input message="tns:getBookmarkFolderRequest"/><output message="tns:getBookmarkFolderResponse"/></operation><operation name="getBookmarkFolderSync"><documentation>Get the bookmarkFolder modified since date</documentation><input message="tns:getBookmarkFolderSyncRequest"/><output message="tns:getBookmarkFolderSyncResponse"/></operation><operation name="modifyBookmarkFolder"><documentation>Modify bookmarkFolder</documentation><input message="tns:modifyBookmarkFolderRequest"/><output message="tns:modifyBookmarkFolderResponse"/></operation><operation name="searchBookmarkFolder"><documentation>Select a list of bookmarkFolder</documentation><input message="tns:searchBookmarkFolderRequest"/><output message="tns:searchBookmarkFolderResponse"/></operation><operation name="addCalendarCategory"><documentation>Add calendarCategory</documentation><input message="tns:addCalendarCategoryRequest"/><output message="tns:addCalendarCategoryResponse"/></operation><operation name="deleteCalendarCategory"><documentation>Delete one calendarCategory</documentation><input message="tns:deleteCalendarCategoryRequest"/><output message="tns:deleteCalendarCategoryResponse"/></operation><operation name="getCalendarCategory"><documentation>Select one of calendarCategory</documentation><input message="tns:getCalendarCategoryRequest"/><output message="tns:getCalendarCategoryResponse"/></operation><operation name="getCalendarCategorySync"><documentation>Get the calendarCategory modified since date</documentation><input message="tns:getCalendarCategorySyncRequest"/><output message="tns:getCalendarCategorySyncResponse"/></operation><operation name="modifyCalendarCategory"><documentation>Modify calendarCategory</documentation><input message="tns:modifyCalendarCategoryRequest"/><output message="tns:modifyCalendarCategoryResponse"/></operation><operation name="searchCalendarCategory"><documentation>Select a list of calendarCategory</documentation><input message="tns:searchCalendarCategoryRequest"/><output message="tns:searchCalendarCategoryResponse"/></operation><operation name="addContact"><documentation>Add contact</documentation><input message="tns:addContactRequest"/><output message="tns:addContactResponse"/></operation><operation name="deleteContact"><documentation>Delete one contact</documentation><input message="tns:deleteContactRequest"/><output message="tns:deleteContactResponse"/></operation><operation name="getContact"><documentation>Select one of contact</documentation><input message="tns:getContactRequest"/><output message="tns:getContactResponse"/></operation><operation name="getContactSync"><documentation>Get the contact modified since date</documentation><input message="tns:getContactSyncRequest"/><output message="tns:getContactSyncResponse"/></operation><operation name="modifyContact"><documentation>Modify contact</documentation><input message="tns:modifyContactRequest"/><output message="tns:modifyContactResponse"/></operation><operation name="searchContact"><documentation>Select a list of contact</documentation><input message="tns:searchContactRequest"/><output message="tns:searchContactResponse"/></operation><operation name="addContactGroup"><documentation>Add contactGroup</documentation><input message="tns:addContactGroupRequest"/><output message="tns:addContactGroupResponse"/></operation><operation name="deleteContactGroup"><documentation>Delete one contactGroup</documentation><input message="tns:deleteContactGroupRequest"/><output message="tns:deleteContactGroupResponse"/></operation><operation name="getContactGroup"><documentation>Select one of contactGroup</documentation><input message="tns:getContactGroupRequest"/><output message="tns:getContactGroupResponse"/></operation><operation name="getContactGroupSync"><documentation>Get the contactGroup modified since date</documentation><input message="tns:getContactGroupSyncRequest"/><output message="tns:getContactGroupSyncResponse"/></operation><operation name="modifyContactGroup"><documentation>Modify contactGroup</documentation><input message="tns:modifyContactGroupRequest"/><output message="tns:modifyContactGroupResponse"/></operation><operation name="searchContactGroup"><documentation>Select a list of contactGroup</documentation><input message="tns:searchContactGroupRequest"/><output message="tns:searchContactGroupResponse"/></operation><operation name="addEvent"><documentation>Add event</documentation><input message="tns:addEventRequest"/><output message="tns:addEventResponse"/></operation><operation name="deleteEvent"><documentation>Delete one event</documentation><input message="tns:deleteEventRequest"/><output message="tns:deleteEventResponse"/></operation><operation name="getEvent"><documentation>Select one of event</documentation><input message="tns:getEventRequest"/><output message="tns:getEventResponse"/></operation><operation name="getEventSync"><documentation>Get the event modified since date</documentation><input message="tns:getEventSyncRequest"/><output message="tns:getEventSyncResponse"/></operation><operation name="modifyEvent"><documentation>Modify event</documentation><input message="tns:modifyEventRequest"/><output message="tns:modifyEventResponse"/></operation><operation name="searchEvent"><documentation>Select a list of event</documentation><input message="tns:searchEventRequest"/><output message="tns:searchEventResponse"/></operation><operation name="addHoliday"><documentation>Add holiday</documentation><input message="tns:addHolidayRequest"/><output message="tns:addHolidayResponse"/></operation><operation name="deleteHoliday"><documentation>Delete one holiday</documentation><input message="tns:deleteHolidayRequest"/><output message="tns:deleteHolidayResponse"/></operation><operation name="getHoliday"><documentation>Select one of holiday</documentation><input message="tns:getHolidayRequest"/><output message="tns:getHolidayResponse"/></operation><operation name="getHolidaySync"><documentation>Get the holiday modified since date</documentation><input message="tns:getHolidaySyncRequest"/><output message="tns:getHolidaySyncResponse"/></operation><operation name="modifyHoliday"><documentation>Modify holiday</documentation><input message="tns:modifyHolidayRequest"/><output message="tns:modifyHolidayResponse"/></operation><operation name="searchHoliday"><documentation>Select a list of holiday</documentation><input message="tns:searchHolidayRequest"/><output message="tns:searchHolidayResponse"/></operation><operation name="addNote"><documentation>Add note</documentation><input message="tns:addNoteRequest"/><output message="tns:addNoteResponse"/></operation><operation name="deleteNote"><documentation>Delete one note</documentation><input message="tns:deleteNoteRequest"/><output message="tns:deleteNoteResponse"/></operation><operation name="getNote"><documentation>Select one of note</documentation><input message="tns:getNoteRequest"/><output message="tns:getNoteResponse"/></operation><operation name="getNoteSync"><documentation>Get the note modified since date</documentation><input message="tns:getNoteSyncRequest"/><output message="tns:getNoteSyncResponse"/></operation><operation name="modifyNote"><documentation>Modify note</documentation><input message="tns:modifyNoteRequest"/><output message="tns:modifyNoteResponse"/></operation><operation name="searchNote"><documentation>Select a list of note</documentation><input message="tns:searchNoteRequest"/><output message="tns:searchNoteResponse"/></operation><operation name="addTask"><documentation>Add task</documentation><input message="tns:addTaskRequest"/><output message="tns:addTaskResponse"/></operation><operation name="deleteTask"><documentation>Delete one task</documentation><input message="tns:deleteTaskRequest"/><output message="tns:deleteTaskResponse"/></operation><operation name="getTask"><documentation>Select one of task</documentation><input message="tns:getTaskRequest"/><output message="tns:getTaskResponse"/></operation><operation name="getTaskSync"><documentation>Get the task modified since date</documentation><input message="tns:getTaskSyncRequest"/><output message="tns:getTaskSyncResponse"/></operation><operation name="modifyTask"><documentation>Modify task</documentation><input message="tns:modifyTaskRequest"/><output message="tns:modifyTaskResponse"/></operation><operation name="searchTask"><documentation>Select a list of task</documentation><input message="tns:searchTaskRequest"/><output message="tns:searchTaskResponse"/></operation></portType>
|
524
|
-
<binding name="MemotooSoapBinding" type="tns:MemotooSoapPortType"><soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/><operation name="addBookmark"><soap:operation soapAction="urn:memotooSoap#addBookmark" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="deleteBookmark"><soap:operation soapAction="urn:memotooSoap#deleteBookmark" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getBookmark"><soap:operation soapAction="urn:memotooSoap#getBookmark" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getBookmarkSync"><soap:operation soapAction="urn:memotooSoap#getBookmarkSync" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="modifyBookmark"><soap:operation soapAction="urn:memotooSoap#modifyBookmark" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="searchBookmark"><soap:operation soapAction="urn:memotooSoap#searchBookmark" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="addBookmarkFolder"><soap:operation soapAction="urn:memotooSoap#addBookmarkFolder" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="deleteBookmarkFolder"><soap:operation soapAction="urn:memotooSoap#deleteBookmarkFolder" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getBookmarkFolder"><soap:operation soapAction="urn:memotooSoap#getBookmarkFolder" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getBookmarkFolderSync"><soap:operation soapAction="urn:memotooSoap#getBookmarkFolderSync" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="modifyBookmarkFolder"><soap:operation soapAction="urn:memotooSoap#modifyBookmarkFolder" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="searchBookmarkFolder"><soap:operation soapAction="urn:memotooSoap#searchBookmarkFolder" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="addCalendarCategory"><soap:operation soapAction="urn:memotooSoap#addCalendarCategory" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="deleteCalendarCategory"><soap:operation soapAction="urn:memotooSoap#deleteCalendarCategory" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getCalendarCategory"><soap:operation soapAction="urn:memotooSoap#getCalendarCategory" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getCalendarCategorySync"><soap:operation soapAction="urn:memotooSoap#getCalendarCategorySync" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="modifyCalendarCategory"><soap:operation soapAction="urn:memotooSoap#modifyCalendarCategory" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="searchCalendarCategory"><soap:operation soapAction="urn:memotooSoap#searchCalendarCategory" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="addContact"><soap:operation soapAction="urn:memotooSoap#addContact" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="deleteContact"><soap:operation soapAction="urn:memotooSoap#deleteContact" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getContact"><soap:operation soapAction="urn:memotooSoap#getContact" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getContactSync"><soap:operation soapAction="urn:memotooSoap#getContactSync" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="modifyContact"><soap:operation soapAction="urn:memotooSoap#modifyContact" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="searchContact"><soap:operation soapAction="urn:memotooSoap#searchContact" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="addContactGroup"><soap:operation soapAction="urn:memotooSoap#addContactGroup" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="deleteContactGroup"><soap:operation soapAction="urn:memotooSoap#deleteContactGroup" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getContactGroup"><soap:operation soapAction="urn:memotooSoap#getContactGroup" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getContactGroupSync"><soap:operation soapAction="urn:memotooSoap#getContactGroupSync" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="modifyContactGroup"><soap:operation soapAction="urn:memotooSoap#modifyContactGroup" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="searchContactGroup"><soap:operation soapAction="urn:memotooSoap#searchContactGroup" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="addEvent"><soap:operation soapAction="urn:memotooSoap#addEvent" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="deleteEvent"><soap:operation soapAction="urn:memotooSoap#deleteEvent" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getEvent"><soap:operation soapAction="urn:memotooSoap#getEvent" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getEventSync"><soap:operation soapAction="urn:memotooSoap#getEventSync" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="modifyEvent"><soap:operation soapAction="urn:memotooSoap#modifyEvent" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="searchEvent"><soap:operation soapAction="urn:memotooSoap#searchEvent" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="addHoliday"><soap:operation soapAction="urn:memotooSoap#addHoliday" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="deleteHoliday"><soap:operation soapAction="urn:memotooSoap#deleteHoliday" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getHoliday"><soap:operation soapAction="urn:memotooSoap#getHoliday" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getHolidaySync"><soap:operation soapAction="urn:memotooSoap#getHolidaySync" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="modifyHoliday"><soap:operation soapAction="urn:memotooSoap#modifyHoliday" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="searchHoliday"><soap:operation soapAction="urn:memotooSoap#searchHoliday" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="addNote"><soap:operation soapAction="urn:memotooSoap#addNote" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="deleteNote"><soap:operation soapAction="urn:memotooSoap#deleteNote" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getNote"><soap:operation soapAction="urn:memotooSoap#getNote" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getNoteSync"><soap:operation soapAction="urn:memotooSoap#getNoteSync" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="modifyNote"><soap:operation soapAction="urn:memotooSoap#modifyNote" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="searchNote"><soap:operation soapAction="urn:memotooSoap#searchNote" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="addTask"><soap:operation soapAction="urn:memotooSoap#addTask" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="deleteTask"><soap:operation soapAction="urn:memotooSoap#deleteTask" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getTask"><soap:operation soapAction="urn:memotooSoap#getTask" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="getTaskSync"><soap:operation soapAction="urn:memotooSoap#getTaskSync" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="modifyTask"><soap:operation soapAction="urn:memotooSoap#modifyTask" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation><operation name="searchTask"><soap:operation soapAction="urn:memotooSoap#searchTask" style="rpc"/><input><soap:body use="literal" namespace="urn:memotooSoap"/></input><output><soap:body use="literal" namespace="urn:memotooSoap"/></output></operation></binding>
|
525
|
-
<service name="MemotooSoap"><port name="MemotooSoapPort" binding="tns:MemotooSoapBinding"><soap:address location="http://www.memotoo.com/SOAP-server.php"/></port></service>
|
526
|
-
</definitions>
|