웹로직 보안 정책상 디폴트 상태는 Authorization 헤더 데이터를 어플리케이션으로 직접 전달 할 수 없도록 막아둔 상태인데 config.xml 파일을 열어 <security-configuration>항목에 다음을 추가하면 정상적으로 데이터가 전달 됨.. 좀더 베스트 케이스가 있는지는 아직 모르겠음;
1 2 3 4 5 6 7 | < security-configuration > ... < enforce-valid-basic-auth-credentials >false</ enforce-valid-basic-auth-credentials > </ security-configuration > |