summaryrefslogtreecommitdiff
path: root/framework/Web/Services
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Web/Services')
-rw-r--r--framework/Web/Services/TSoapServer.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/Services/TSoapServer.php b/framework/Web/Services/TSoapServer.php
index 7bfa7d86..f737ae20 100644
--- a/framework/Web/Services/TSoapServer.php
+++ b/framework/Web/Services/TSoapServer.php
@@ -195,14 +195,14 @@ class TSoapServer extends \Prado\TApplicationComponent
$wsdl=$cache->get(self::WSDL_CACHE_PREFIX.$providerClass);
if(is_string($wsdl))
return $wsdl;
- Prado::using('System.3rdParty.WsdlGen.WsdlGenerator');
+ Prado::using('System.Vendor.WsdlGen.WsdlGenerator');
$wsdl=WsdlGenerator::generate($providerClass, $this->getUri(), $this->getEncoding());
$cache->set(self::WSDL_CACHE_PREFIX.$providerClass,$wsdl);
return $wsdl;
}
else
{
- Prado::using('System.3rdParty.WsdlGen.WsdlGenerator');
+ Prado::using('System.Vendor.WsdlGen.WsdlGenerator');
return WsdlGenerator::generate($providerClass, $this->getUri(), $this->getEncoding());
}
}