Monday, March 23, 2015

How to Enable the RESTful services using WLST

 

By default RESTful is disabled in Weblogic 12c, we can use the weblogic Admin console or WLST to enable the RESTful service.

 

connect(‘WebloogicAdminUser’,’WeblogicAdminPassword’,’WeblogicAdminUrl’)

edit()

startEdit()

cd(‘/RestfulManagementServices/DOMAIN_NAME’)

cmo.setEnabled(true)

save()

activate()

exit()

 

Restart the AdminServer and all servers of the domain

No comments:

Post a Comment