Reputation: 763
Our Java application is going through migration from a WAS 7 server to a WAS 8.5 server - and for some reason, even though our application shows as Deployed in our Admin Console, the application itself isn't coming up on our assigned URL.
I've ruled out the possibility of a code-related problem by testing the application in my local server, so I know the problem is with some server settings - but, almost all of my experience in CS is in coding, and I don't know how to figure out where those settings have gone awry.
What options do I have to debug my application's server-side issues?
Upvotes: 1
Views: 507
Reputation: 21
Check Server Logs: in WAS Console you can find the logs of your server.
Debug in local server. By deploying an ear in your local server, you can then start the server in loggin mode. Then you shuld stop and restart your websphere aplication and it will be stoped in selected breakpoints.
Upvotes: 2
Reputation: 1229
You don't specify what you mean by "coming up," so I'll start with the broad suggestions.
A couple things to sanity check:
logs
directory, especially the SystemOut.log and the ffdc folder. It may be that an error is occuring when you go to access it, or when it is starting up. Those should appear there.If all of that fails, you may way to break out the debugger (if that's allowed in your environment) and see if your code is even being reached.
Upvotes: 4