Charset in Content-Type of SOAP Response
Hello,
I have database with NLS_CHARACTERSET set to EE8ISO8859P2 and made a function available as a webservice. I am using this function from external system that works on UTF-8, but i have a problem with response encoding. I have seen in some examples that Response Header Content-Type usually contains charset but in my case it doesn't work that way.
I am posting request with header
I have database with NLS_CHARACTERSET set to EE8ISO8859P2 and made a function available as a webservice. I am using this function from external system that works on UTF-8, but i have a problem with response encoding. I have seen in some examples that Response Header Content-Type usually contains charset but in my case it doesn't work that way.
I am posting request with header
POST /orawsv/TEST/API HTTP/1.1
Content-Type: text/xml; charset=UTF-8
SOAPAction: "TEST_ACTION"
Authorization: Basic Y2FzYTpjYXNhNTEw
Accept: */*
Accept-Encoding: UTF-8
Accept-Charset: UTF-8
User-Agent: Apache CXF 2.2.10
Cache-Control: no-cache
Pragma: no-cache
Host: xxxxxxxxxxxxx
Connection: keep-alive
Content-Type: text/xml; charset=UTF-8
SOAPAction: "TEST_ACTION"
Authorization: Basic Y2FzYTpjYXNhNTEw
Accept: */*
Accept-Encoding: UTF-8
Accept-Charset: UTF-8
User-Agent: Apache CXF 2.2.10
Cache-Control: no-cache
Pragma: no-cache
Host: xxxxxxxxxxxxx
Connection: keep-alive
0