Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
applications:rest_extensions [2020/06/15 10:22] cduncan Edited for English grammar (capitalization, punctuation, correct verb conjugation) |
applications:rest_extensions [2020/07/08 12:55] (current) cduncan articles |
||
---|---|---|---|
Line 6: | Line 6: | ||
The [[jvx:common:util:rest|REST API of JVx]] offers a great solution for generic services accessible via REST. However, the standard access is protected by BASIC authentication, and sometimes it's important to offer public services without authentication. This isn't possible with standard JVx authentication implementations. Our application framework enables you to do really cool things with JVx' REST API. | The [[jvx:common:util:rest|REST API of JVx]] offers a great solution for generic services accessible via REST. However, the standard access is protected by BASIC authentication, and sometimes it's important to offer public services without authentication. This isn't possible with standard JVx authentication implementations. Our application framework enables you to do really cool things with JVx' REST API. | ||
- | To enable public REST services, first configure your REST zone to use the forwarding authentication mode. Simply add following to your deployment descriptor (web.xml): | + | To enable public REST services, first configure your REST zone to use the forwarding authentication mode. Simply add the following to your deployment descriptor (web.xml): |
<code xml> | <code xml> | ||
Line 65: | Line 65: | ||
</code> | </code> | ||
- | In above URL, the application is available in the context **webapp**. The application name is **myapp** and the **Session** LCO contains the method: | + | In the above URL, the application is available in the context **webapp**. The application name is **myapp** and the **Session** LCO contains the method: |
<code java> | <code java> |