Hi,
i am trying to update direct query analysis in Oracle Analytical server using SOAP. in excel file i have analysis name, old sql, new sql, old connection and new connection. But when i try to write back the analysis or create the backup of it, it is failing. getting below error Probing writeObjects endpoint …
❌ writeObjects is broken on this OAS build:
SOAP fault: Assertion failure: false at line 1076 of project/websoap/soaphelpers.cpp
OAS build: 23.0.0.0.4 (BIPS-20260117031809.30) any clue or help please.
major code details:
WSDL_URL = "http://localhost:9502/analytics-ws/saw.dll/wsdl/v7"
SOAP_ENDPOINT = "http://localhost:9502/analytics-ws/saw.dll"
print("🔬 Probing writeObjects endpoint …")
probe_ok, probe_msg = soap_write_objects(
"/shared/probe_test",
"unsafe:saw:report/",
sid,
)
if "Assertion failure" in probe_msg:
print(f"❌ writeObjects is broken on this OAS build:")
print(f" {probe_msg}")
print(f"\n Cannot proceed. Raise Oracle SR against:")
print(f" writeObjects assertion crash in soaphelpers.cpp:1076")
print(f" OAS build: 23.0.0.0.4 (BIPS-20260117031809.30)")
sess_svc.logoff(sessionID=sid)
return