From 4fe42821c4832342a5e7015267dfe60066522d1b Mon Sep 17 00:00:00 2001
From: tv <tv@xso>
Date: Mon, 22 Aug 2011 13:47:25 +0200
Subject: ovh soapi domainCapabilities: initial commit

---
 ovh/soapi/domainCapabilities | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100755 ovh/soapi/domainCapabilities

(limited to 'ovh')

diff --git a/ovh/soapi/domainCapabilities b/ovh/soapi/domainCapabilities
new file mode 100755
index 00000000..edce3f0d
--- /dev/null
+++ b/ovh/soapi/domainCapabilities
@@ -0,0 +1,24 @@
+#!/usr/bin/python
+
+from os import environ
+import pprint
+from SOAPpy import WSDL
+
+soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl')
+
+username = environ['KREBS_OVH_USER']
+password = environ['KREBS_OVH_PASS']
+
+#login
+session = soap.login(username, password, 'de', 0)
+print "login successfull"
+
+#domainCapabilities
+result = soap.domainCapabilities(session, 'krebsco.de')
+print "domainCapabilities successfull"
+pp = pprint.PrettyPrinter(indent=4)
+pp.pprint(result) # your code here ...
+
+#logout
+soap.logout(session)
+print "logout successfull"
-- 
cgit v1.2.3


From f2e027099e77a0f97287b96df0b95a2a3066d3e8 Mon Sep 17 00:00:00 2001
From: tv <tv@xso>
Date: Mon, 22 Aug 2011 13:52:46 +0200
Subject: ovh soapi domainList: initial commit

---
 ovh/soapi/domainList | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100755 ovh/soapi/domainList

(limited to 'ovh')

diff --git a/ovh/soapi/domainList b/ovh/soapi/domainList
new file mode 100755
index 00000000..3f829ebe
--- /dev/null
+++ b/ovh/soapi/domainList
@@ -0,0 +1,24 @@
+#!/usr/bin/python
+
+from os import environ
+import pprint
+from SOAPpy import WSDL
+
+soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl')
+
+username = environ['KREBS_OVH_USER']
+password = environ['KREBS_OVH_PASS']
+
+#login
+session = soap.login(username, password, 'de', 0)
+print "login successfull"
+
+#domainHostList
+result = soap.domainList(session)
+print "domainList successfull"
+pp = pprint.PrettyPrinter(indent=4)
+pp.pprint(result) # your code here ...
+
+#logout
+soap.logout(session)
+print "logout successfull"
-- 
cgit v1.2.3


From 846d579ca352014ba10f9b51ba66672cfcb90540 Mon Sep 17 00:00:00 2001
From: tv <tv@xso>
Date: Mon, 22 Aug 2011 14:58:14 +0200
Subject: ovh soapi zoneEntryList: initial commit

---
 ovh/soapi/zoneEntryList | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100755 ovh/soapi/zoneEntryList

(limited to 'ovh')

diff --git a/ovh/soapi/zoneEntryList b/ovh/soapi/zoneEntryList
new file mode 100755
index 00000000..7c032462
--- /dev/null
+++ b/ovh/soapi/zoneEntryList
@@ -0,0 +1,24 @@
+#!/usr/bin/python
+
+from os import environ
+import pprint
+from SOAPpy import WSDL
+
+soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl')
+
+username = environ['KREBS_OVH_USER']
+password = environ['KREBS_OVH_PASS']
+
+#login
+session = soap.login(username, password, 'de', 0)
+print "login successfull"
+
+#zoneEntryList
+result = soap.zoneEntryList(session, 'krebsco.de')
+print "zoneEntryList successfull"
+pp = pprint.PrettyPrinter(indent=4)
+pp.pprint(result) # your code here ...
+
+#logout
+soap.logout(session)
+print "logout successfull"
-- 
cgit v1.2.3


From 7c72e088904ee47d3b10e86770e11b41d5fe70e0 Mon Sep 17 00:00:00 2001
From: tv <tv@xso>
Date: Mon, 22 Aug 2011 14:58:33 +0200
Subject: ovh soapi Makefile: initial commit

Unfortunately the latest stable SOAPpy is broken, so we have to resort
to the latest stable SOAPpy from SVN^_^
---
 ovh/soapi/Makefile | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 ovh/soapi/Makefile

(limited to 'ovh')

diff --git a/ovh/soapi/Makefile b/ovh/soapi/Makefile
new file mode 100644
index 00000000..6a4a3a6b
--- /dev/null
+++ b/ovh/soapi/Makefile
@@ -0,0 +1,25 @@
+.PHONY: all install
+all: select-target
+
+exes := $(shell \
+	find . -mindepth 1 -maxdepth 1 -type f -executable -exec basename \{\} \;)
+
+target_exes := $(addprefix ../../bin/,$(exes))
+
+install: $(target_exes)
+
+../../bin/%: % SOAPpy
+		ln -vsnf ../ovh/soapi/$* $@
+
+src:
+	mkdir $@
+
+src/SOAPpy: src
+	cd $< && \
+		svn co https://pywebsvcs.svn.sourceforge.net/svnroot/pywebsvcs/trunk/SOAPpy
+
+src/SOAPpy/build/lib/SOAPpy: src/SOAPpy
+	cd $< && python setup.py build
+
+SOAPpy: src/SOAPpy/build/lib/SOAPpy
+	ln -snf $<
-- 
cgit v1.2.3


From c0788cf40e57f8ef0f12821239373914e243f879 Mon Sep 17 00:00:00 2001
From: tv <tv@xso>
Date: Mon, 22 Aug 2011 15:20:28 +0200
Subject: ovh soapi zoneEntryList: initial commit

---
 ovh/soapi/zoneEntryList | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

(limited to 'ovh')

diff --git a/ovh/soapi/zoneEntryList b/ovh/soapi/zoneEntryList
index 7c032462..eb9c9c09 100755
--- a/ovh/soapi/zoneEntryList
+++ b/ovh/soapi/zoneEntryList
@@ -1,8 +1,17 @@
 #!/usr/bin/python
 
 from os import environ
-import pprint
 from SOAPpy import WSDL
+from json import dumps, JSONEncoder
+
+def default(o):
+   try:
+       iterable = iter(o)
+   except TypeError:
+       pass
+   else:
+       return list(iterable)
+   return JSONEncoder.default(o)
 
 soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl')
 
@@ -16,8 +25,7 @@ print "login successfull"
 #zoneEntryList
 result = soap.zoneEntryList(session, 'krebsco.de')
 print "zoneEntryList successfull"
-pp = pprint.PrettyPrinter(indent=4)
-pp.pprint(result) # your code here ...
+print dumps(result, sort_keys=True, indent=2, default=default)
 
 #logout
 soap.logout(session)
-- 
cgit v1.2.3


From a002b665583bad738e47bef6f93f87d6ab74bfda Mon Sep 17 00:00:00 2001
From: tv <tv@xso>
Date: Mon, 22 Aug 2011 15:21:13 +0200
Subject: ovh soapi zoneEntry{Add,Del}: initial commit

---
 ovh/soapi/zoneEntryAdd | 25 +++++++++++++++++++++++++
 ovh/soapi/zoneEntryDel | 25 +++++++++++++++++++++++++
 2 files changed, 50 insertions(+)
 create mode 100755 ovh/soapi/zoneEntryAdd
 create mode 100755 ovh/soapi/zoneEntryDel

(limited to 'ovh')

diff --git a/ovh/soapi/zoneEntryAdd b/ovh/soapi/zoneEntryAdd
new file mode 100755
index 00000000..68a0b8e3
--- /dev/null
+++ b/ovh/soapi/zoneEntryAdd
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+
+from os import environ
+from SOAPpy import WSDL
+
+soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl')
+
+username = environ['KREBS_OVH_USER']
+password = environ['KREBS_OVH_PASS']
+domain = argv[2]
+subdomain = argv[3]
+fieldtype = argv[4]
+target = argv[5]
+
+#login
+session = soap.login(username, password, 'de', 0)
+print "login successfull"
+
+#zoneEntryAdd
+soap.zoneEntryAdd(session, domain, subdomain, fieldtype, target)
+print "zoneEntryAdd successfull"
+
+#logout
+soap.logout(session)
+print "logout successfull"
diff --git a/ovh/soapi/zoneEntryDel b/ovh/soapi/zoneEntryDel
new file mode 100755
index 00000000..d6f19932
--- /dev/null
+++ b/ovh/soapi/zoneEntryDel
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+
+from os import environ
+from SOAPpy import WSDL
+
+soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl')
+
+username = environ['KREBS_OVH_USER']
+password = environ['KREBS_OVH_PASS']
+domain = argv[2]
+subdomain = argv[3]
+fieldtype = argv[4]
+target = argv[5]
+
+#login
+session = soap.login(username, password, 'de', 0)
+print "login successfull"
+
+#zoneEntryDel
+soap.zoneEntryDel(session, domain, subdomain, fieldtype, target)
+print "zoneEntryDel successfull"
+
+#logout
+soap.logout(session)
+print "logout successfull"
-- 
cgit v1.2.3


From 4186e40734ae9cf8ab20437b70d09eeae23399c4 Mon Sep 17 00:00:00 2001
From: tv <tv@xso>
Date: Mon, 22 Aug 2011 15:28:34 +0200
Subject: ovh soapi *List: unify [JSON-] output

---
 ovh/soapi/domainList    | 20 +++++++++++---------
 ovh/soapi/zoneEntryList |  6 ------
 2 files changed, 11 insertions(+), 15 deletions(-)

(limited to 'ovh')

diff --git a/ovh/soapi/domainList b/ovh/soapi/domainList
index 3f829ebe..b089f6a4 100755
--- a/ovh/soapi/domainList
+++ b/ovh/soapi/domainList
@@ -1,24 +1,26 @@
 #!/usr/bin/python
 
 from os import environ
-import pprint
 from SOAPpy import WSDL
+from json import dumps, JSONEncoder
+
+def default(o):
+   try:
+       iterable = iter(o)
+   except TypeError:
+       pass
+   else:
+       return list(iterable)
+   return JSONEncoder.default(o)
 
 soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl')
 
 username = environ['KREBS_OVH_USER']
 password = environ['KREBS_OVH_PASS']
 
-#login
 session = soap.login(username, password, 'de', 0)
-print "login successfull"
 
-#domainHostList
 result = soap.domainList(session)
-print "domainList successfull"
-pp = pprint.PrettyPrinter(indent=4)
-pp.pprint(result) # your code here ...
+print dumps(result, sort_keys=True, indent=2, default=default)
 
-#logout
 soap.logout(session)
-print "logout successfull"
diff --git a/ovh/soapi/zoneEntryList b/ovh/soapi/zoneEntryList
index eb9c9c09..00f56958 100755
--- a/ovh/soapi/zoneEntryList
+++ b/ovh/soapi/zoneEntryList
@@ -18,15 +18,9 @@ soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl')
 username = environ['KREBS_OVH_USER']
 password = environ['KREBS_OVH_PASS']
 
-#login
 session = soap.login(username, password, 'de', 0)
-print "login successfull"
 
-#zoneEntryList
 result = soap.zoneEntryList(session, 'krebsco.de')
-print "zoneEntryList successfull"
 print dumps(result, sort_keys=True, indent=2, default=default)
 
-#logout
 soap.logout(session)
-print "logout successfull"
-- 
cgit v1.2.3


From ee2d8ddd94e097106e8ebabd906afc82e4e7c63c Mon Sep 17 00:00:00 2001
From: tv <tv@xso>
Date: Mon, 22 Aug 2011 16:06:13 +0200
Subject: ovh soapi *: use local wsdl copy

---
 ovh/soapi/domainCapabilities |    24 +-
 ovh/soapi/domainList         |     4 +-
 ovh/soapi/soapi-re-1.24.wsdl | 20105 +++++++++++++++++++++++++++++++++++++++++
 ovh/soapi/zoneEntryAdd       |    24 +-
 ovh/soapi/zoneEntryDel       |    24 +-
 ovh/soapi/zoneEntryList      |     4 +-
 6 files changed, 20157 insertions(+), 28 deletions(-)
 create mode 100644 ovh/soapi/soapi-re-1.24.wsdl

(limited to 'ovh')

diff --git a/ovh/soapi/domainCapabilities b/ovh/soapi/domainCapabilities
index edce3f0d..dad8311d 100755
--- a/ovh/soapi/domainCapabilities
+++ b/ovh/soapi/domainCapabilities
@@ -1,24 +1,28 @@
 #!/usr/bin/python
 
 from os import environ
-import pprint
+from os.path import dirname, realpath
 from SOAPpy import WSDL
+from json import dumps, JSONEncoder
 
-soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl')
+def default(o):
+   try:
+       iterable = iter(o)
+   except TypeError:
+       pass
+   else:
+       return list(iterable)
+   return JSONEncoder.default(o)
+
+wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl'
+soap = WSDL.Proxy(wsdl)
 
 username = environ['KREBS_OVH_USER']
 password = environ['KREBS_OVH_PASS']
 
-#login
 session = soap.login(username, password, 'de', 0)
-print "login successfull"
 
-#domainCapabilities
 result = soap.domainCapabilities(session, 'krebsco.de')
-print "domainCapabilities successfull"
-pp = pprint.PrettyPrinter(indent=4)
-pp.pprint(result) # your code here ...
+print dumps(result, sort_keys=True, indent=2, default=default)
 
-#logout
 soap.logout(session)
-print "logout successfull"
diff --git a/ovh/soapi/domainList b/ovh/soapi/domainList
index b089f6a4..342eec72 100755
--- a/ovh/soapi/domainList
+++ b/ovh/soapi/domainList
@@ -1,6 +1,7 @@
 #!/usr/bin/python
 
 from os import environ
+from os.path import dirname, realpath
 from SOAPpy import WSDL
 from json import dumps, JSONEncoder
 
@@ -13,7 +14,8 @@ def default(o):
        return list(iterable)
    return JSONEncoder.default(o)
 
-soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl')
+wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl'
+soap = WSDL.Proxy(wsdl)
 
 username = environ['KREBS_OVH_USER']
 password = environ['KREBS_OVH_PASS']
diff --git a/ovh/soapi/soapi-re-1.24.wsdl b/ovh/soapi/soapi-re-1.24.wsdl
new file mode 100644
index 00000000..c628c564
--- /dev/null
+++ b/ovh/soapi/soapi-re-1.24.wsdl
@@ -0,0 +1,20105 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+    
+    SOAPI WSDL, RPC/Encoded style, version 1.24
+
+    The SOAPI technical specifications are available at this url : http://www.ovh.com/soapi .
+
+    copyright 1999-2011 OVH
+
+-->
+
+<wsdl:definitions name="manager" 
+    targetNamespace="http://soapi.ovh.com/manager"
+    xmlns="http://schemas.xmlsoap.org/wsdl/"
+    xmlns:wsdlns="http://soapi.ovh.com/manager"
+    xmlns:typens="http://soapi.ovh.com/manager"
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
+>
+    
+  <wsdl:types>
+    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://soapi.ovh.com/manager">
+
+      <xsd:complexType name="supportThreadDetailStruct">
+        <xsd:all>
+          <xsd:element name="id" type="xsd:int"/>
+          <xsd:element name="date" type="xsd:string"/>
+          <xsd:element name="subject" type="xsd:string"/>
+          <xsd:element name="domain" type="xsd:string"/>
+          <xsd:element name="status" type="xsd:string"/>
+          <xsd:element name="unread" type="xsd:int"/>
+          <xsd:element name="closed" type="xsd:int"/>
+          <xsd:element name="answered" type="xsd:int"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="supportThreadMessageDetailStruct">
+        <xsd:all>
+          <xsd:element name="id" type="xsd:int"/>
+          <xsd:element name="date" type="xsd:string"/>
+          <xsd:element name="unread" type="xsd:int"/>
+          <xsd:element name="type" type="xsd:string"/>
+          <xsd:element name="reportReason" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="supportThreadTreeReturn">
+        <xsd:all>
+          <xsd:element name="id" type="xsd:int"/>
+          <xsd:element name="subject" type="xsd:string"/>
+          <xsd:element name="domain" type="xsd:string"/>
+          <xsd:element name="closed" type="xsd:int"/>
+          <xsd:element name="reportReason" type="xsd:string"/>
+          <xsd:element name="messages" type="typens:MyArrayOfSupportThreadMessageDetailStructType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="supportMessageDetailReturn">
+        <xsd:all>
+          <xsd:element name="id" type="xsd:int"/>
+          <xsd:element name="thread" type="xsd:int"/>
+          <xsd:element name="unreadThread" type="xsd:boolean"/>
+          <xsd:element name="fromEmail" type="xsd:string"/>
+          <xsd:element name="dateSent" type="xsd:string"/>
+          <xsd:element name="subject" type="xsd:string"/>
+          <xsd:element name="body" type="xsd:string"/>
+          <xsd:element name="reportReason" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="supportCategoryStruct">
+        <xsd:all>
+          <xsd:element name="name" type="xsd:string"/>
+          <xsd:element name="id" type="xsd:int"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="supportDomainStruct">
+        <xsd:all>
+          <xsd:element name="domain" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="supportSendMessageReturn">
+        <xsd:all>
+          <xsd:element name="threadId" type="xsd:int"/>
+          <xsd:element name="messageId" type="xsd:int"/>
+          <xsd:element name="dateTime" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfSupportThreadDetailStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:supportThreadDetailStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfSupportCategoryStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:supportCategoryStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfSupportDomainStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:supportDomainStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfSupportThreadMessageDetailStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:supportThreadMessageDetailStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyBillingAccountStruct">
+        <xsd:all>
+          <xsd:element name="description" type="xsd:string"/>
+          <xsd:element name="mobile" type="xsd:string"/>
+          <xsd:element name="mobileDestination" type="xsd:string"/>
+          <xsd:element name="expirationDate" type="xsd:string"/>
+          <xsd:element name="version" type="xsd:string"/>
+          <xsd:element name="trusted" type="xsd:boolean"/>
+          <xsd:element name="pendingAction" type="typens:telephonyPendingActionStruct"/>
+          <xsd:element name="descriptionUser" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyNumberDecodeStruct">
+        <xsd:all>
+          <xsd:element name="numberDisplay" type="xsd:string"/>
+          <xsd:element name="numberInternal" type="xsd:string"/>
+          <xsd:element name="numberInternational" type="xsd:string"/>
+          <xsd:element name="numberNational" type="xsd:string"/>
+          <xsd:element name="countryCode" type="xsd:string"/>
+          <xsd:element name="language" type="xsd:string"/>
+          <xsd:element name="cirpackNature" type="xsd:string"/>
+          <xsd:element name="cirpackNumber" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyPendingActionStruct">
+        <xsd:all>
+          <xsd:element name="dateTodo" type="xsd:string"/>
+          <xsd:element name="offer" type="xsd:string"/>
+          <xsd:element name="action" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyBillingAccountInfoChildrenStruct">
+        <xsd:all>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="offer" type="xsd:string"/>
+          <xsd:element name="type" type="xsd:string"/>
+          <xsd:element name="expirationDate" type="xsd:string"/>
+          <xsd:element name="description" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyBillingAccountInfoReturn">
+        <xsd:all>
+          <xsd:element name="offer" type="xsd:string"/>
+          <xsd:element name="consumtionTime" type="xsd:string"/>
+          <xsd:element name="outPlan" type="xsd:string"/>
+          <xsd:element name="facturationDate" type="xsd:string"/>
+          <xsd:element name="children" type="typens:MyArrayOfTelephonyBillingAccountInfoChildrenStructType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyLineAliasPoolStruct">
+        <xsd:all>
+          <xsd:element name="poolNumber" type="xsd:int"/>
+          <xsd:element name="service" type="xsd:string"/>
+          <xsd:element name="display" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyLineStruct">
+        <xsd:all>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="billingAccount" type="xsd:string"/>
+          <xsd:element name="offer" type="xsd:string"/>
+          <xsd:element name="type" type="xsd:string"/>
+          <xsd:element name="service" type="xsd:string"/>
+          <xsd:element name="expirationDate" type="xsd:string"/>
+          <xsd:element name="description" type="xsd:string"/>
+          <xsd:element name="betaGamaOffer" type="xsd:boolean"/>
+          <xsd:element name="setOn" type="xsd:string"/>
+          <xsd:element name="aliasPool" type="typens:telephonyLineAliasPoolStruct"/>
+          <xsd:element name="pendingAction" type="typens:telephonyPendingActionStruct"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyLineListReturn">
+        <xsd:all>
+          <xsd:element name="link" type="typens:MyArrayOfTelephonyLineStructType"/>
+          <xsd:element name="alias" type="typens:MyArrayOfTelephonyLineStructType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyLineOptionsListReturn">
+        <xsd:all>
+          <xsd:element name="identificationRestriction" type="xsd:boolean"/>
+          <xsd:element name="anonymousCallRejection" type="xsd:boolean"/>
+          <xsd:element name="doNotDisturb" type="xsd:boolean"/>
+          <xsd:element name="absentSuscriber" type="xsd:boolean"/>
+          <xsd:element name="lockOutCall" type="xsd:boolean"/>
+          <xsd:element name="lockOutCallPassword" type="xsd:string"/>
+          <xsd:element name="forwardUnconditional" type="xsd:boolean"/>
+          <xsd:element name="forwardUnconditionalNumber" type="xsd:string"/>
+          <xsd:element name="forwardNoReply" type="xsd:boolean"/>
+          <xsd:element name="forwardNoReplyDelay" type="xsd:int"/>
+          <xsd:element name="forwardNoReplyNumber" type="xsd:string"/>
+          <xsd:element name="forwardBusy" type="xsd:boolean"/>
+          <xsd:element name="forwardBusyNumber" type="xsd:string"/>
+          <xsd:element name="forwardBackup" type="xsd:boolean"/>
+          <xsd:element name="forwardBackupNumber" type="xsd:string"/>
+          <xsd:element name="callWaiting" type="xsd:boolean"/>
+          <xsd:element name="displayCallNumber" type="xsd:string"/>
+          <xsd:element name="forwardUnconditionalNature" type="xsd:string"/>
+          <xsd:element name="forwardNoReplyNature" type="xsd:string"/>
+          <xsd:element name="forwardBusyNature" type="xsd:string"/>
+          <xsd:element name="forwardBackupNature" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyLineSwitchOldOfferStruct">
+        <xsd:all>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="offers" type="typens:MyArrayOfTelephonyLineSwitchPossibilityPriceStructType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyLineSwitchPossibilityPriceStruct">
+        <xsd:all>
+          <xsd:element name="offer" type="xsd:string"/>
+          <xsd:element name="price" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="orderFollowingUpStruct">
+        <xsd:all>
+          <xsd:element name="id" type="xsd:string"/>
+          <xsd:element name="urlId" type="xsd:string"/>
+          <xsd:element name="procedure" type="xsd:string"/>
+          <xsd:element name="install" type="xsd:string"/>
+          <xsd:element name="shipping" type="xsd:string"/>
+          <xsd:element name="cloture" type="xsd:string"/>
+          <xsd:element name="avancement" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyOfferInfoReturn">
+        <xsd:all>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="description" type="xsd:string"/>
+          <xsd:element name="offer" type="xsd:string"/>
+          <xsd:element name="countryCode" type="xsd:string"/>
+          <xsd:element name="nextBillingDate" type="xsd:string"/>
+          <xsd:element name="simultaneousLines" type="xsd:int"/>
+          <xsd:element name="hardware" type="typens:telephonyOfferInfoHardwareStruct"/>
+          <xsd:element name="sipAccount" type="typens:telephonyOfferInfoSipAccountStruct"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyOfferInfoSipAccountStruct">
+        <xsd:all>
+          <xsd:element name="username" type="xsd:string"/>
+          <xsd:element name="extension" type="xsd:string"/>
+          <xsd:element name="domain" type="xsd:string"/>
+          <xsd:element name="lastLogin" type="xsd:string"/>
+          <xsd:element name="localAdress" type="xsd:string"/>
+          <xsd:element name="publicAdress" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyOfferInfoHardwareStruct">
+        <xsd:all>
+          <xsd:element name="brand" type="xsd:string"/>
+          <xsd:element name="model" type="xsd:string"/>
+          <xsd:element name="protocol" type="xsd:string"/>
+          <xsd:element name="mac" type="xsd:string"/>
+          <xsd:element name="ip" type="xsd:string"/>
+          <xsd:element name="engage" type="xsd:boolean"/>
+          <xsd:element name="status" type="xsd:string"/>
+          <xsd:element name="port" type="xsd:int"/>
+          <xsd:element name="outOfService" type="xsd:boolean"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyDisplayNumberTestingGetNextNumberReturn">
+        <xsd:all>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="id" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonySpecialNumberCustomListReturn">
+        <xsd:all>
+          <xsd:element name="easyNumbers" type="typens:MyArrayOfStringType"/>
+          <xsd:element name="staticAttributionRange" type="typens:MyArrayOfStringType"/>
+          <xsd:element name="proposedNumbers" type="typens:MyArrayOfStringType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyReversmentsDetailsStructReturn">
+        <xsd:all>
+          <xsd:element name="totalRecords" type="xsd:float"/>
+          <xsd:element name="reversementsDetailsStruct" type="typens:MyArrayOfTelephonyReversmentsDetailsStructType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyReversmentsDetailsStruct">
+        <xsd:all>
+          <xsd:element name="date" type="xsd:string"/>
+          <xsd:element name="connectionDuration" type="xsd:string"/>
+          <xsd:element name="callingNumber" type="xsd:string"/>
+          <xsd:element name="priceReversed" type="xsd:string"/>
+          <xsd:element name="operatorCode" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyReversmentsSummationStructReturn">
+        <xsd:all>
+          <xsd:element name="totalRecords" type="xsd:float"/>
+          <xsd:element name="reversementsSummationStruct" type="typens:MyArrayOfTelephonyReversmentsSummationStructType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyReversmentsSummationStruct">
+        <xsd:all>
+          <xsd:element name="type" type="xsd:string"/>
+          <xsd:element name="name" type="xsd:string"/>
+          <xsd:element name="seconds" type="xsd:string"/>
+          <xsd:element name="priceReversed" type="xsd:string"/>
+          <xsd:element name="calls" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyReversmentsSummationNumbersStruct">
+        <xsd:all>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="reversementsSummationStruct" type="typens:MyArrayOfTelephonyReversmentsSummationStructType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyCallStruct">
+        <xsd:all>
+          <xsd:element name="idkey" type="xsd:string"/>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="date" type="xsd:string"/>
+          <xsd:element name="duration" type="xsd:string"/>
+          <xsd:element name="destination" type="xsd:string"/>
+          <xsd:element name="priceWithoutVAT" type="xsd:float"/>
+          <xsd:element name="nature" type="xsd:string"/>
+          <xsd:element name="overLimit" type="xsd:boolean"/>
+          <xsd:element name="type" type="xsd:string"/>
+          <xsd:element name="callingNumber" type="xsd:string"/>
+          <xsd:element name="presentation" type="xsd:string"/>
+          <xsd:element name="designation" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyCallsSummaryDetailsStruct">
+        <xsd:all>
+          <xsd:element name="count" type="xsd:int"/>
+          <xsd:element name="duration" type="xsd:string"/>
+          <xsd:element name="priceWithoutVAT" type="xsd:float"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyFaxSummaryDetailsStruct">
+        <xsd:all>
+          <xsd:element name="count" type="xsd:int"/>
+          <xsd:element name="pages" type="xsd:int"/>
+          <xsd:element name="priceWithoutVAT" type="xsd:float"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyCallsSummaryStruct">
+        <xsd:all>
+          <xsd:element name="pricePlan" type="typens:telephonyCallsSummaryDetailsStruct"/>
+          <xsd:element name="outPlan" type="typens:telephonyCallsSummaryDetailsStruct"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyFaxSummaryStruct">
+        <xsd:all>
+          <xsd:element name="low" type="typens:telephonyFaxSummaryDetailsStruct"/>
+          <xsd:element name="high" type="typens:telephonyFaxSummaryDetailsStruct"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyBillingAccountSummaryLineStruct">
+        <xsd:all>
+          <xsd:element name="line" type="xsd:string"/>
+          <xsd:element name="phoneNumber" type="xsd:string"/>
+          <xsd:element name="fixe" type="typens:telephonyCallsSummaryStruct"/>
+          <xsd:element name="special" type="typens:telephonyCallsSummaryStruct"/>
+          <xsd:element name="mobile" type="typens:telephonyCallsSummaryStruct"/>
+          <xsd:element name="fax" type="typens:telephonyFaxSummaryStruct"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyBillingAccountSummaryBillingAccountStruct">
+        <xsd:all>
+          <xsd:element name="name" type="xsd:string"/>
+          <xsd:element name="betaGammaOffer" type="xsd:boolean"/>
+          <xsd:element name="mobile" type="typens:telephonyCallsSummaryStruct"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyBillingAccountSummaryReturn">
+        <xsd:all>
+          <xsd:element name="billingAccount" type="typens:telephonyBillingAccountSummaryBillingAccountStruct"/>
+          <xsd:element name="lines" type="typens:MyArrayOfTelephonyBillingAccountSummaryLineStructType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyCallListReturn">
+        <xsd:all>
+          <xsd:element name="fromDate" type="xsd:string"/>
+          <xsd:element name="toDate" type="xsd:string"/>
+          <xsd:element name="list" type="typens:MyArrayOfTelephonyCallStructType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyBillStruct">
+        <xsd:all>
+          <xsd:element name="date" type="xsd:string"/>
+          <xsd:element name="price" type="xsd:float"/>
+          <xsd:element name="orderId" type="xsd:int"/>
+          <xsd:element name="orderPaid" type="xsd:boolean"/>
+          <xsd:element name="orderUrl" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyBillDetailsReturn">
+        <xsd:all>
+          <xsd:element name="fromDate" type="xsd:string"/>
+          <xsd:element name="toDate" type="xsd:string"/>
+          <xsd:element name="list" type="typens:MyArrayOfTelephonyCallStructType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyVoicemailOptionsListReturn">
+        <xsd:all>
+          <xsd:element name="redirection1" type="xsd:string"/>
+          <xsd:element name="redirection1Email" type="xsd:string"/>
+          <xsd:element name="redirection2" type="xsd:string"/>
+          <xsd:element name="redirection2Email" type="xsd:string"/>
+          <xsd:element name="redirection3" type="xsd:string"/>
+          <xsd:element name="redirection3Email" type="xsd:string"/>
+          <xsd:element name="redirection4" type="xsd:string"/>
+          <xsd:element name="redirection4Email" type="xsd:string"/>
+          <xsd:element name="redirection5" type="xsd:string"/>
+          <xsd:element name="redirection5Email" type="xsd:string"/>
+          <xsd:element name="annouceMessage" type="xsd:string"/>
+          <xsd:element name="keepMessage" type="xsd:boolean"/>
+          <xsd:element name="audioformat" type="xsd:string"/>
+          <xsd:element name="fromEmail" type="xsd:string"/>
+          <xsd:element name="fromName" type="xsd:string"/>
+          <xsd:element name="forcePassword" type="xsd:boolean"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyVoicemailMessagesStatusReturn">
+        <xsd:all>
+          <xsd:element name="unavailable" type="xsd:boolean"/>
+          <xsd:element name="busy" type="xsd:boolean"/>
+          <xsd:element name="temp" type="xsd:boolean"/>
+          <xsd:element name="greet" type="xsd:boolean"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyVoicemailMailboxStruct">
+        <xsd:all>
+          <xsd:element name="id" type="xsd:int"/>
+          <xsd:element name="callerid" type="xsd:string"/>
+          <xsd:element name="origdate" type="xsd:string"/>
+          <xsd:element name="origtime" type="xsd:string"/>
+          <xsd:element name="origmailbox" type="xsd:string"/>
+          <xsd:element name="duration" type="xsd:int"/>
+          <xsd:element name="folder" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyVoicemailMailboxDownloadReturn">
+        <xsd:all>
+          <xsd:element name="fileName" type="xsd:string"/>
+          <xsd:element name="fileData" type="xsd:string"/>
+          <xsd:element name="md5sum" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyPhonebookStruct">
+        <xsd:all>
+          <xsd:element name="id" type="xsd:int"/>
+          <xsd:element name="name" type="xsd:string"/>
+          <xsd:element name="mode" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyPhonebookGroupStruct">
+        <xsd:all>
+          <xsd:element name="name" type="xsd:string"/>
+          <xsd:element name="count" type="xsd:int"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyPhonebookContactStruct">
+        <xsd:all>
+          <xsd:element name="id" type="xsd:int"/>
+          <xsd:element name="name" type="xsd:string"/>
+          <xsd:element name="surname" type="xsd:string"/>
+          <xsd:element name="workPhone" type="xsd:string"/>
+          <xsd:element name="workMobile" type="xsd:string"/>
+          <xsd:element name="homePhone" type="xsd:string"/>
+          <xsd:element name="homeMobile" type="xsd:string"/>
+          <xsd:element name="group" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyPhonebookSharePeerStruct">
+        <xsd:all>
+          <xsd:element name="id" type="xsd:int"/>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="name" type="xsd:string"/>
+          <xsd:element name="mode" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonySecurityDepositCreditReturn">
+        <xsd:all>
+          <xsd:element name="orderId" type="xsd:int"/>
+          <xsd:element name="orderPassword" type="xsd:string"/>
+          <xsd:element name="orderUrl" type="xsd:string"/>
+          <xsd:element name="totalPrice" type="xsd:float"/>
+          <xsd:element name="vat" type="xsd:float"/>
+          <xsd:element name="totalPriceWithVat" type="xsd:float"/>
+          <xsd:element name="ribBankCode" type="xsd:string"/>
+          <xsd:element name="ribAgencyCode" type="xsd:string"/>
+          <xsd:element name="ribAccountNumber" type="xsd:string"/>
+          <xsd:element name="ribKey" type="xsd:string"/>
+          <xsd:element name="iban" type="xsd:string"/>
+          <xsd:element name="bic" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyConferenceStruct">
+        <xsd:all>
+          <xsd:element name="room" type="xsd:string"/>
+          <xsd:element name="countryCode" type="xsd:string"/>
+          <xsd:element name="callNumber" type="xsd:string"/>
+          <xsd:element name="language" type="xsd:string"/>
+          <xsd:element name="customAnnounce" type="xsd:boolean"/>
+          <xsd:element name="recordAnnounce" type="xsd:boolean"/>
+          <xsd:element name="mailReport" type="xsd:boolean"/>
+          <xsd:element name="customMailReportAddress" type="xsd:string"/>
+          <xsd:element name="askName" type="xsd:boolean"/>
+          <xsd:element name="tellMemberCount" type="xsd:boolean"/>
+          <xsd:element name="moderatorCountryCode" type="xsd:string"/>
+          <xsd:element name="moderatorCallNumber" type="xsd:string"/>
+          <xsd:element name="status" type="xsd:string"/>
+          <xsd:element name="dtmfmenu" type="xsd:boolean"/>
+          <xsd:element name="announce_rcv" type="xsd:boolean"/>
+          <xsd:element name="announce_snd" type="xsd:boolean"/>
+          <xsd:element name="recordConf" type="xsd:boolean"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyConferenceAnnouncesStatusReturn">
+        <xsd:all>
+          <xsd:element name="custom" type="xsd:boolean"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonySmsUserQuotaStruct">
+        <xsd:all>
+          <xsd:element name="quotaLeft" type="xsd:string"/>
+          <xsd:element name="quotaStatus" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyNotificationSmsUserStruct">
+        <xsd:all>
+          <xsd:element name="support" type="xsd:string"/>
+          <xsd:element name="alertThreshold" type="xsd:string"/>
+          <xsd:element name="alertNumber" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonySmsUserStruct">
+        <xsd:all>
+          <xsd:element name="login" type="xsd:string"/>
+          <xsd:element name="quota" type="xsd:string"/>
+          <xsd:element name="quotaStatus" type="xsd:string"/>
+          <xsd:element name="alertThreshold" type="xsd:string"/>
+          <xsd:element name="support" type="xsd:string"/>
+          <xsd:element name="alertNumber" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonySmsCreditInfoReturn">
+        <xsd:all>
+          <xsd:element name="waiting" type="xsd:int"/>
+          <xsd:element name="left" type="xsd:int"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonySmsHistoryStruct">
+        <xsd:all>
+          <xsd:element name="smsId" type="xsd:int"/>
+          <xsd:element name="numberFrom" type="xsd:string"/>
+          <xsd:element name="numberTo" type="xsd:string"/>
+          <xsd:element name="status" type="xsd:string"/>
+          <xsd:element name="date" type="xsd:string"/>
+          <xsd:element name="message" type="xsd:string"/>
+          <xsd:element name="text" type="xsd:string"/>
+          <xsd:element name="user" type="xsd:string"/>
+          <xsd:element name="tag" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonySmsSenderStruct">
+        <xsd:all>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="status" type="xsd:string"/>
+          <xsd:element name="description" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyAbbreviatedNumberStruct">
+        <xsd:all>
+          <xsd:element name="abbreviatedNumber" type="xsd:string"/>
+          <xsd:element name="relatedNumber" type="xsd:string"/>
+          <xsd:element name="name" type="xsd:string"/>
+          <xsd:element name="surname" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyDirectoryPJHeadingStruct">
+        <xsd:all>
+          <xsd:element name="codePJ" type="xsd:string"/>
+          <xsd:element name="labelPJ" type="xsd:string"/>
+          <xsd:element name="isAssociatedWithAPE" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyDirectoryWayTypeStruct">
+        <xsd:all>
+          <xsd:element name="abbreviatedName" type="xsd:string"/>
+          <xsd:element name="wayName" type="xsd:string"/>
+          <xsd:element name="tag" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyDirectoryInfoReturn">
+        <xsd:all>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="name" type="xsd:string"/>
+          <xsd:element name="firstName" type="xsd:string"/>
+          <xsd:element name="wayNumber" type="xsd:string"/>
+          <xsd:element name="wayType" type="xsd:string"/>
+          <xsd:element name="wayTypeDescription" type="xsd:string"/>
+          <xsd:element name="wayNumberExtra" type="xsd:string"/>
+          <xsd:element name="wayName" type="xsd:string"/>
+          <xsd:element name="addressExtra" type="xsd:string"/>
+          <xsd:element name="urbanDistrict" type="xsd:string"/>
+          <xsd:element name="postBox" type="xsd:string"/>
+          <xsd:element name="cedex" type="xsd:string"/>
+          <xsd:element name="postCode" type="xsd:string"/>
+          <xsd:element name="city" type="xsd:string"/>
+          <xsd:element name="country" type="xsd:string"/>
+          <xsd:element name="email" type="xsd:string"/>
+          <xsd:element name="legalForm" type="xsd:string"/>
+          <xsd:element name="occupation" type="xsd:string"/>
+          <xsd:element name="socialNomination" type="xsd:string"/>
+          <xsd:element name="PJSocialNomination" type="xsd:string"/>
+          <xsd:element name="socialNominationExtra" type="xsd:string"/>
+          <xsd:element name="lineDescription" type="xsd:string"/>
+          <xsd:element name="siret" type="xsd:string"/>
+          <xsd:element name="ape" type="xsd:string"/>
+          <xsd:element name="displayFirstName" type="xsd:string"/>
+          <xsd:element name="displayOnlyCity" type="xsd:string"/>
+          <xsd:element name="displayUniversalDirectory" type="xsd:string"/>
+          <xsd:element name="displayMarketingDirectory" type="xsd:string"/>
+          <xsd:element name="displaySearchReverse" type="xsd:string"/>
+          <xsd:element name="receivePJDirectory" type="xsd:string"/>
+          <xsd:element name="inseeCode" type="xsd:string"/>
+          <xsd:element name="codePJ" type="xsd:string"/>
+          <xsd:element name="labelPJ" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyFunctionKeyStruct">
+        <xsd:all>
+          <xsd:element name="keyNum" type="xsd:int"/>
+          <xsd:element name="function" type="xsd:string"/>
+          <xsd:element name="relatedNumber" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyFaxOptionsListReturn">
+        <xsd:all>
+          <xsd:element name="callNumber" type="xsd:string"/>
+          <xsd:element name="countryCode" type="xsd:string"/>
+          <xsd:element name="fromName" type="xsd:string"/>
+          <xsd:element name="fromEmail" type="xsd:string"/>
+          <xsd:element name="faxQuality" type="xsd:string"/>
+          <xsd:element name="faxTagLine" type="xsd:string"/>
+          <xsd:element name="faxMaxCall" type="xsd:int"/>
+          <xsd:element name="receivId" type="xsd:string"/>
+          <xsd:element name="senderId" type="xsd:string"/>
+          <xsd:element name="redirection1Email" type="xsd:string"/>
+          <xsd:element name="redirection2Email" type="xsd:string"/>
+          <xsd:element name="redirection3Email" type="xsd:string"/>
+          <xsd:element name="redirection4Email" type="xsd:string"/>
+          <xsd:element name="redirection5Email" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyFaxHistoryStruct">
+        <xsd:all>
+          <xsd:element name="id" type="xsd:int"/>
+          <xsd:element name="relatedNumber" type="xsd:string"/>
+          <xsd:element name="jobid" type="xsd:int"/>
+          <xsd:element name="jobtag" type="xsd:string"/>
+          <xsd:element name="sender" type="xsd:string"/>
+          <xsd:element name="pages" type="xsd:int"/>
+          <xsd:element name="quality" type="xsd:string"/>
+          <xsd:element name="callTime" type="xsd:string"/>
+          <xsd:element name="date" type="xsd:string"/>
+          <xsd:element name="state" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyFaxCampaignDetailsStruct">
+        <xsd:all>
+          <xsd:element name="campaignName" type="xsd:string"/>
+          <xsd:element name="campaignStatus" type="xsd:string"/>
+          <xsd:element name="dateStart" type="xsd:string"/>
+          <xsd:element name="dateEnd" type="xsd:string"/>
+          <xsd:element name="total" type="xsd:int"/>
+          <xsd:element name="todo" type="xsd:int"/>
+          <xsd:element name="success" type="xsd:int"/>
+          <xsd:element name="failed" type="xsd:int"/>
+          <xsd:element name="reference" type="xsd:string"/>
+          <xsd:element name="recipients" type="typens:MyArrayOfTelephonyRecipientStructType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyRecipientStruct">
+        <xsd:all>
+          <xsd:element name="recipient" type="xsd:string"/>
+          <xsd:element name="status" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyFaxCampaignStructReturn">
+        <xsd:all>
+          <xsd:element name="totalRecords" type="xsd:float"/>
+          <xsd:element name="telephonyfaxCampaignStruct" type="typens:MyArrayOfTelephonyFaxCampaignStructType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyFaxCampaignStruct">
+        <xsd:all>
+          <xsd:element name="campaignName" type="xsd:string"/>
+          <xsd:element name="campaignStatus" type="xsd:string"/>
+          <xsd:element name="dateStart" type="xsd:string"/>
+          <xsd:element name="dateEnd" type="xsd:string"/>
+          <xsd:element name="total" type="xsd:int"/>
+          <xsd:element name="success" type="xsd:int"/>
+          <xsd:element name="failed" type="xsd:int"/>
+          <xsd:element name="reference" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyPortabilityStruct">
+        <xsd:all>
+          <xsd:element name="id" type="xsd:int"/>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="name" type="xsd:string"/>
+          <xsd:element name="planDate" type="xsd:string"/>
+          <xsd:element name="billingAccount" type="xsd:string"/>
+          <xsd:element name="type" type="xsd:string"/>
+          <xsd:element name="operator" type="xsd:string"/>
+          <xsd:element name="status" type="xsd:string"/>
+          <xsd:element name="reason" type="xsd:string"/>
+          <xsd:element name="askingCustomer" type="typens:MyArrayOfStringType"/>
+          <xsd:element name="extraNumbers" type="typens:MyArrayOfStringType"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyNumberOrderReturn">
+        <xsd:all>
+          <xsd:element name="orderId" type="xsd:int"/>
+          <xsd:element name="orderPassword" type="xsd:string"/>
+          <xsd:element name="orderUrl" type="xsd:string"/>
+          <xsd:element name="totalPrice" type="xsd:float"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyNumberZoneAndPrefixStruct">
+        <xsd:all>
+          <xsd:element name="zone" type="xsd:string"/>
+          <xsd:element name="prefix" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyNumberCityForZoneStruct">
+        <xsd:all>
+          <xsd:element name="city" type="xsd:string"/>
+          <xsd:element name="postalCode" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyTonesOptionsListReturn">
+        <xsd:all>
+          <xsd:element name="toneRingback" type="xsd:boolean"/>
+          <xsd:element name="toneOnHold" type="xsd:boolean"/>
+          <xsd:element name="toneOnClosure" type="xsd:boolean"/>
+          <xsd:element name="toneOnCallWaiting" type="xsd:boolean"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyToneStatusReturn">
+        <xsd:all>
+          <xsd:element name="ringback" type="xsd:boolean"/>
+          <xsd:element name="onhold" type="xsd:boolean"/>
+          <xsd:element name="onclosure" type="xsd:boolean"/>
+          <xsd:element name="callwaiting" type="xsd:boolean"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyDdiInfoReturn">
+        <xsd:all>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="country" type="xsd:string"/>
+          <xsd:element name="noReplyTimer" type="xsd:int"/>
+          <xsd:element name="logged" type="xsd:boolean"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyRedirectInfoReturn">
+        <xsd:all>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="country" type="xsd:string"/>
+          <xsd:element name="noReplyTimer" type="xsd:int"/>
+          <xsd:element name="logged" type="xsd:boolean"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyHuntingInfoReturn">
+        <xsd:all>
+          <xsd:element name="members" type="typens:MyArrayOfTelephonyHuntingInfoMemberStructType"/>
+          <xsd:element name="strategy" type="xsd:string"/>
+          <xsd:element name="pattern" type="xsd:string"/>
+          <xsd:element name="onHoldTimer" type="xsd:int"/>
+          <xsd:element name="queueSize" type="xsd:int"/>
+          <xsd:element name="numberOfCalls" type="xsd:int"/>
+          <xsd:element name="noReplyTimer" type="xsd:int"/>
+          <xsd:element name="mainVoicemail" type="xsd:string"/>
+          <xsd:element name="toneOnHold" type="xsd:boolean"/>
+          <xsd:element name="toneRingback" type="xsd:boolean"/>
+          <xsd:element name="toneOnClosure" type="xsd:boolean"/>
+          <xsd:element name="anonymousCallRejection" type="xsd:boolean"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyHuntingInfoMemberStruct">
+        <xsd:all>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="status" type="xsd:string"/>
+          <xsd:element name="logged" type="xsd:boolean"/>
+          <xsd:element name="noReplyTimer" type="xsd:int"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyScreenStruct">
+        <xsd:all>
+          <xsd:element name="status" type="xsd:string"/>
+          <xsd:element name="numberScreen" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyScreenBlackWhiteChoiceReturn">
+        <xsd:all>
+          <xsd:element name="incomingScreenlist" type="xsd:string"/>
+          <xsd:element name="outgoingScreenlist" type="xsd:string"/>
+          <xsd:element name="outgoingCodeUnlock" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyHuntingGenericScreenStruct">
+        <xsd:all>
+          <xsd:element name="status" type="xsd:string"/>
+          <xsd:element name="timeEnd" type="xsd:string"/>
+          <xsd:element name="timeStart" type="xsd:string"/>
+          <xsd:element name="dayType" type="xsd:string"/>
+          <xsd:element name="forwardPolicyIndex" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyHuntingGenericScreenOptionsStruct">
+        <xsd:all>
+          <xsd:element name="callForward" type="xsd:string"/>
+          <xsd:element name="voicemail" type="xsd:string"/>
+          <xsd:element name="index" type="xsd:string"/>
+          <xsd:element name="timeout" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyPlugAndPhoneInfoReturn">
+        <xsd:all>
+          <xsd:element name="brand" type="xsd:string"/>
+          <xsd:element name="protocol" type="xsd:string"/>
+          <xsd:element name="mac" type="xsd:string"/>
+          <xsd:element name="gfKeyCount" type="xsd:int"/>
+          <xsd:element name="pbLevel" type="xsd:int"/>
+          <xsd:element name="skin" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyAliasToLinePossibilityPriceStruct">
+        <xsd:all>
+          <xsd:element name="offer" type="xsd:string"/>
+          <xsd:element name="price" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyLineLogsListStruct">
+        <xsd:all>
+          <xsd:element name="date" type="xsd:string"/>
+          <xsd:element name="type" type="xsd:string"/>
+          <xsd:element name="msg" type="xsd:string"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="telephonyLineLogsStruct">
+        <xsd:all>
+          <xsd:element name="number" type="xsd:string"/>
+          <xsd:element name="list" type="typens:MyArrayOfTelephonyLineLogsListStructType"/>
+          <xsd:element name="totalRecords" type="xsd:int"/>
+        </xsd:all>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyBillingAccountStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyBillingAccountStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfStringType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyLineSwitchPossibilityPriceStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyLineSwitchPossibilityPriceStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyLineSwitchOldOfferStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyLineSwitchOldOfferStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfOrderFollowingUpStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:orderFollowingUpStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyReversmentsSummationStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyReversmentsSummationStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyReversmentsSummationNumbersStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyReversmentsSummationNumbersStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyBillStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyBillStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyVoicemailMailboxStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyVoicemailMailboxStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyPhonebookStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyPhonebookStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyPhonebookGroupStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyPhonebookGroupStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyPhonebookContactStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyPhonebookContactStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyPhonebookSharePeerStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyPhonebookSharePeerStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyConferenceStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyConferenceStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfIntType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:int[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonySmsHistoryStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonySmsHistoryStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonySmsSenderStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonySmsSenderStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyAbbreviatedNumberStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyAbbreviatedNumberStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyDirectoryPJHeadingStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyDirectoryPJHeadingStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyDirectoryWayTypeStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyDirectoryWayTypeStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyFunctionKeyStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyFunctionKeyStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyFaxHistoryStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyFaxHistoryStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyPortabilityStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyPortabilityStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyScreenStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyScreenStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyHuntingGenericScreenStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyHuntingGenericScreenStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyHuntingGenericScreenOptionsStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyHuntingGenericScreenOptionsStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfBooleanType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:boolean[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyNumberZoneAndPrefixStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyNumberZoneAndPrefixStruct[]"/>
+          </xsd:restriction>
+       </xsd:complexContent>
+      </xsd:complexType>
+
+      <xsd:complexType name="MyArrayOfTelephonyNumberCityForZoneStructType">
+        <xsd:complexContent>
+          <xsd:restriction base="soapenc:Array">
+            <x