In my previous post. , I have explained out the way to build out your wsdl for default configurations. To verify other applications or wsdl or to check logs, you can actually look into the admin-console of the Jboss. Although in dev and/or test environments, you might have to reason with the build masters to get an username/password, there is no reason why you cannot monitor it in your computers.
In Jboss AS, you can just hit http://localhost:8080/admin-console and it will take you there. Instead, you can hit http://localhost:8080 and click on Administration Console.
In Jboss EAP, there are security features which will not let you inside the console without permissions. A little on this. There are actually two types of users,
- Management User(mgmt-users.properties): Management Level User ( an admin user)
- Application User(application-users.properties): This is an App level user. When you add such a user, their scope will be limited to the application level only. However using the add-user utility, the user role can be mentioned.
Add-user utility
For Windows:
- Open cmd and navigate to the folder of jboss.
- Type
add-user.bat - To add a Management user, Enter “a”
- Hit enter for default management user (or type in Application User)
- Enter username and password(One number and special char compulsory)
For *ix:
- Open terminal and navigate to the folder of jboss.
- Type
./add-user.sh - To add a Management user, Enter “a”
- Hit enter for default management user (or type in Application User)
- Enter username and password(One number and special char compulsory)
