Reputation: 561
Regarding the 2.2.1 Wakanda Enterprise Server, I'm looking for basic guidance regarding some of the features that were more easily accessed with prior Studio versions (buttons):
Data Browser - using the simply CRUD example from Wakanda. Following address does not yield a Data Browser: http://127.0.0.1:8080/walib/dataBrowser/index.html. Tried port 8081 as well, the server is published on 8080.
Administration Console. Possibly due to a license key issue; but should I get the full administration console functionality as with prior versions? I am seeing only a small subset of features on the admin console.
Thanks
Upvotes: 0
Views: 214
Reputation: 11
I found an easy workaround for the databrowser. I copied the whole walib-Directory in an folder (eg. WebFolder) in the backend folder. In the app.waProject in the backend i have
<type name="backend" />
<folder path="./WebFolder/">
<tag name="webFolder"/>
</folder>
Now I can call it with 127.0.0.1:8081/walib/dataBrowser/index.html I don't know if this is a good solution, but as long as it works and just for debugging ...
Upvotes: 1
Reputation: 393
Data Browser is made with WAF of Wakanda V1 and is removed since V2 no longer supports WAF. The V2 CRUD example using Angular is available in latest Wakanda doc.
The Administration Console, aka Admin Dashboard in v2, has received an update in v2 with more features include:
You will need an enterprise license to access admin dashboard at http://127.0.0.1:8080/admin/.
Upvotes: 0