fix: [barobill] 전체 바로빌 컨트롤러 WSDL 캐싱 활성화
- EcardController, HometaxController, EtaxController - WSDL_CACHE_NONE → WSDL_CACHE_BOTH (불필요한 WSDL 재다운로드 방지)
This commit is contained in:
@@ -91,7 +91,7 @@ private function initSoapClient(): void
|
||||
'exceptions' => true,
|
||||
'connection_timeout' => 30,
|
||||
'stream_context' => $context,
|
||||
'cache_wsdl' => WSDL_CACHE_NONE,
|
||||
'cache_wsdl' => WSDL_CACHE_BOTH,
|
||||
]);
|
||||
} catch (\Throwable $e) {
|
||||
Log::error('바로빌 카드 SOAP 클라이언트 생성 실패: '.$e->getMessage());
|
||||
|
||||
@@ -77,7 +77,7 @@ private function initSoapClient(): void
|
||||
'exceptions' => true,
|
||||
'connection_timeout' => 30,
|
||||
'stream_context' => $context,
|
||||
'cache_wsdl' => WSDL_CACHE_NONE,
|
||||
'cache_wsdl' => WSDL_CACHE_BOTH,
|
||||
]);
|
||||
} catch (\Throwable $e) {
|
||||
Log::error('바로빌 SOAP 클라이언트 생성 실패: '.$e->getMessage());
|
||||
|
||||
@@ -91,7 +91,7 @@ private function initSoapClient(): void
|
||||
'exceptions' => true,
|
||||
'connection_timeout' => 30,
|
||||
'stream_context' => $context,
|
||||
'cache_wsdl' => WSDL_CACHE_NONE,
|
||||
'cache_wsdl' => WSDL_CACHE_BOTH,
|
||||
]);
|
||||
} catch (\Throwable $e) {
|
||||
Log::error('바로빌 홈택스 SOAP 클라이언트 생성 실패: '.$e->getMessage());
|
||||
|
||||
Reference in New Issue
Block a user