Skip to content
Snippets Groups Projects
Commit e7c4f29e authored by Giovannoni Laurent's avatar Giovannoni Laurent
Browse files

fix: int replace integer in ws

parent 3b6134fe
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ $SOAP_dispatch_map['docserverGet'] = array( ...@@ -63,7 +63,7 @@ $SOAP_dispatch_map['docserverGet'] = array(
'method' => "core#docservers::getWs" 'method' => "core#docservers::getWs"
); );
$SOAP_dispatch_map['viewResource'] = array( $SOAP_dispatch_map['viewResource'] = array(
'in' => Array('gedId' => 'integer', 'tableName' => 'string', 'adrTableName' => 'string', 'calledByWS' => 'boolean'), 'in' => Array('gedId' => 'int', 'tableName' => 'string', 'adrTableName' => 'string', 'calledByWS' => 'boolean'),
'out' => Array('out' => '{urn:MySoapServer}returnViewResource'), 'out' => Array('out' => '{urn:MySoapServer}returnViewResource'),
'method' => "core#docservers::viewResource" 'method' => "core#docservers::viewResource"
); );
...@@ -106,7 +106,7 @@ $SOAP_dispatch_map['docserverLocationGet'] = array( ...@@ -106,7 +106,7 @@ $SOAP_dispatch_map['docserverLocationGet'] = array(
$SOAP_typedef['docserverTypes'] = array( 'docserver_type_id'=>'string', $SOAP_typedef['docserverTypes'] = array( 'docserver_type_id'=>'string',
'docserver_type_label'=>'string', 'docserver_type_label'=>'string',
'is_container'=>'string', 'is_container'=>'string',
'container_max_number'=>'integer', 'container_max_number'=>'int',
'is_compressed'=>'string', 'is_compressed'=>'string',
'compression_mode'=>'string', 'compression_mode'=>'string',
'is_meta'=>'string', 'is_meta'=>'string',
...@@ -205,7 +205,7 @@ $SOAP_dispatch_map['storeResource'] = array( ...@@ -205,7 +205,7 @@ $SOAP_dispatch_map['storeResource'] = array(
$SOAP_dispatch_map['storeAttachmentResource'] = array( $SOAP_dispatch_map['storeAttachmentResource'] = array(
'in' => array( 'in' => array(
'resId' => 'integer', 'resId' => 'int',
'collId' => 'string', 'collId' => 'string',
'encodedContent' => 'string', 'encodedContent' => 'string',
'fileFormat' => 'string', 'fileFormat' => 'string',
...@@ -224,7 +224,7 @@ $SOAP_typedef['listOfResources'] = array( ...@@ -224,7 +224,7 @@ $SOAP_typedef['listOfResources'] = array(
'resid' => 'long', 'resid' => 'long',
'identifier' => 'string', 'identifier' => 'string',
'contactName' => 'string', 'contactName' => 'string',
'country' => 'integer', 'country' => 'int',
'amount' => 'string', 'amount' => 'string',
'customer' => 'string', 'customer' => 'string',
'docDate' => 'string', 'docDate' => 'string',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment