Originally posted by Isomorphic
View Post
I am testing this with a dataSource that has the following operationBindings:
Code:
<operationBindings>
<operationBinding operationType="fetch" description="foo"/>
<operationBinding operationType="fetch" operationId="bar"/>
</operationBindings>
Code:
<!DOCTYPE html>
<html>
<head>
<title>API Docs</title>
<meta charset="utf-8"/>
<script src="https://cdn.jsdelivr.net/npm/redoc@latest/bundles/redoc.standalone.js"></script>
</head>
<body>
<script>
Redoc.init("https://localhost:8443/JcaAuth/isomorphic/RESTHandler/v1/AUTH_USERS.yaml", {}, document.body);
</script>
</body>
</html>
Code:
<servlet-mapping>
<servlet-name>RESTHandler</servlet-name>
<url-pattern>/isomorphic/RESTHandler/v1/*</url-pattern>
</servlet-mapping>
I have now realized that the AdvancedREST protocol is not documented at all.
Additionally, in Fetch AUTH_USERS by path I do not see the "foo" description. Aside from that, the Simplified REST API appears to be documented correctly.
I am also unsure whether it is correct that the context path is not shown here:
What puzzles me the most, however, is the complete absence of the AdvancedREST section, which does appear in your example here:
https://smartclient.com/smartclient-...s/openapi.html
Am I missing some configuration setting?
Leave a comment: