JAVA WAR and jsp file not working
16 posts
• Page 1 of 1
- modulesoft
- Posts: 27
- Joined: 15 Jul 2013, 03:23
- Location: India
JAVA WAR and jsp file not working
Hello,
I am facing this error duing accessing my website wihich was workign previously!
now new war does not get deploy nor jsp working!!!
I am facing this error duing accessing my website wihich was workign previously!
now new war does not get deploy nor jsp working!!!
- Attachments
-
- Screen Shot 2014-05-24 at 8.15.05 pm.png (47.8 KiB) Viewed 13483 times
Re: JAVA WAR and jsp file not working
Hello,
please check access permissions for c:\inetpub\vhosts\orissaexam.com\httpdocs,
IIS_IUSRS group must have write permissions for this folder.
Also please show web.config and file list of site root.
Thanks.
please check access permissions for c:\inetpub\vhosts\orissaexam.com\httpdocs,
IIS_IUSRS group must have write permissions for this folder.
Also please show web.config and file list of site root.
Thanks.
- modulesoft
- Posts: 27
- Joined: 15 Jul 2013, 03:23
- Location: India
Re: JAVA WAR and jsp file not working
Yes i did.
the permission is already there! but still getting the same error !!
the permission is already there! but still getting the same error !!
- modulesoft
- Posts: 27
- Joined: 15 Jul 2013, 03:23
- Location: India
Re: JAVA WAR and jsp file not working
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<heliconZoo>
<application name="jetty.jsp.testjsp">
<environmentVariables>
<add name="CONTEXT_PATH" value="%APPL_VIRTUAL_PATH%" />
</environmentVariables>
</application>
</heliconZoo>
<handlers>
<!-- <remove name="jetty.jsp.rootApp#x86" /> -->
<!-- <remove name="jetty.jsp.rootApp#x64" /> -->
<add name="jetty.jsp.testjsp#x86" scriptProcessor="java.appdir.8" path="*" verb="*" modules="HeliconZoo_x86" preCondition="bitness32" resourceType="Unspecified" requireAccess="Script" />
<add name="jetty.jsp.testjsp#x64" scriptProcessor="java.appdir.8" path="*" verb="*" modules="HeliconZoo_x64" preCondition="bitness64" resourceType="Unspecified" requireAccess="Script" />
</handlers>
<defaultDocument>
<files>
<add value="testjsp.jsp" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
<configuration>
<system.webServer>
<heliconZoo>
<application name="jetty.jsp.testjsp">
<environmentVariables>
<add name="CONTEXT_PATH" value="%APPL_VIRTUAL_PATH%" />
</environmentVariables>
</application>
</heliconZoo>
<handlers>
<!-- <remove name="jetty.jsp.rootApp#x86" /> -->
<!-- <remove name="jetty.jsp.rootApp#x64" /> -->
<add name="jetty.jsp.testjsp#x86" scriptProcessor="java.appdir.8" path="*" verb="*" modules="HeliconZoo_x86" preCondition="bitness32" resourceType="Unspecified" requireAccess="Script" />
<add name="jetty.jsp.testjsp#x64" scriptProcessor="java.appdir.8" path="*" verb="*" modules="HeliconZoo_x64" preCondition="bitness64" resourceType="Unspecified" requireAccess="Script" />
</handlers>
<defaultDocument>
<files>
<add value="testjsp.jsp" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
- modulesoft
- Posts: 27
- Joined: 15 Jul 2013, 03:23
- Location: India
Re: JAVA WAR and jsp file not working
And this config is for war file deploy
<?xml version="1.0" encoding="UTF-8"?>
<!-- READ ME CAREFULLY -->
<!-- PLease OPen a Support Ticket in case you are facing problem deploying your web Apps -->
<!-- Support Ticket : http://securebizserver.net/support -->
<configuration>
<system.webServer>
<heliconZoo>
<application name="jetty.pulipadu">
<environmentVariables>
<add name="DEPLOY_LOG" value="zoo-deploy.log" />
<add name="WAR_FILE" value="pulipadu.war" />
<!-- Uncomment line below if you want to set contexts directory -->
<!-- <add name="CONTEXTS_DIR" value="%APPL_VIRTUAL_PATH%" /> -->
<!-- Optional variables: -->
<!-- <add name="CONTEXT_PATH" value="%APPL_VIRTUAL_PATH%" /> -->
<!-- <add name="WAR_EXTRACT_PATH" value="%APPL_PHYSICAL_PATH%" /> -->
<!-- A WAR file or start directory to run -->
</environmentVariables>
</application>
</heliconZoo>
<handlers>
<!-- Removing handler which used in upper folders -->
<!-- This setting need to be Enable if you are deploying multiple war files in different folder. -->
<!-- If Any Application WAR/JSP Running on root. you need to remove that handler here -->
<!-- Ignore if you are not running any Roor APP or this is the root App. -->
<!-- <remove name="jetty.webrootwar#x86" /> -->
<!-- <remove name="jetty.webrootwar#x64" /> -->
<!-- Remove Handler Section END -->
<add name="jetty.pulipadu#x86" path="*" verb="*" modules="HeliconZoo_x86" scriptProcessor="java.jetty.8" resourceType="Unspecified" requireAccess="Script" preCondition="bitness32" />
<add name="jetty.pulipadu#x64" path="*" verb="*" modules="HeliconZoo_x64" scriptProcessor="java.jetty.8" resourceType="Unspecified" requireAccess="Script" preCondition="bitness64" />
</handlers>
</system.webServer>
</configuration>
<?xml version="1.0" encoding="UTF-8"?>
<!-- READ ME CAREFULLY -->
<!-- PLease OPen a Support Ticket in case you are facing problem deploying your web Apps -->
<!-- Support Ticket : http://securebizserver.net/support -->
<configuration>
<system.webServer>
<heliconZoo>
<application name="jetty.pulipadu">
<environmentVariables>
<add name="DEPLOY_LOG" value="zoo-deploy.log" />
<add name="WAR_FILE" value="pulipadu.war" />
<!-- Uncomment line below if you want to set contexts directory -->
<!-- <add name="CONTEXTS_DIR" value="%APPL_VIRTUAL_PATH%" /> -->
<!-- Optional variables: -->
<!-- <add name="CONTEXT_PATH" value="%APPL_VIRTUAL_PATH%" /> -->
<!-- <add name="WAR_EXTRACT_PATH" value="%APPL_PHYSICAL_PATH%" /> -->
<!-- A WAR file or start directory to run -->
</environmentVariables>
</application>
</heliconZoo>
<handlers>
<!-- Removing handler which used in upper folders -->
<!-- This setting need to be Enable if you are deploying multiple war files in different folder. -->
<!-- If Any Application WAR/JSP Running on root. you need to remove that handler here -->
<!-- Ignore if you are not running any Roor APP or this is the root App. -->
<!-- <remove name="jetty.webrootwar#x86" /> -->
<!-- <remove name="jetty.webrootwar#x64" /> -->
<!-- Remove Handler Section END -->
<add name="jetty.pulipadu#x86" path="*" verb="*" modules="HeliconZoo_x86" scriptProcessor="java.jetty.8" resourceType="Unspecified" requireAccess="Script" preCondition="bitness32" />
<add name="jetty.pulipadu#x64" path="*" verb="*" modules="HeliconZoo_x64" scriptProcessor="java.jetty.8" resourceType="Unspecified" requireAccess="Script" preCondition="bitness64" />
</handlers>
</system.webServer>
</configuration>
- modulesoft
- Posts: 27
- Joined: 15 Jul 2013, 03:23
- Location: India
Re: JAVA WAR and jsp file not working
Now i have this screen!
- Attachments
-
- Screen Shot 2014-05-28 at 12.25.13 pm.png (63.34 KiB) Viewed 13463 times
Re: JAVA WAR and jsp file not working
Hello,
it is looks like error with some Plesk module.
We recommend temporary disable this module and make sure that Helicon Zoo module runs Java app.
Thanks.
it is looks like error with some Plesk module.
We recommend temporary disable this module and make sure that Helicon Zoo module runs Java app.
Thanks.
- modulesoft
- Posts: 27
- Joined: 15 Jul 2013, 03:23
- Location: India
Re: JAVA WAR and jsp file not working
if you want i can share my server info so you can check ?
let me know.
let me know.
- modulesoft
- Posts: 27
- Joined: 15 Jul 2013, 03:23
- Location: India
Re: JAVA WAR and jsp file not working
whats is the access is denied error ? Error code :5
Re: JAVA WAR and jsp file not working
modulesoft wrote:if you want i can share my server info so you can check ?
let me know.
Yep. Please send remote desktop credentials to [email protected].
- modulesoft
- Posts: 27
- Joined: 15 Jul 2013, 03:23
- Location: India
Re: JAVA WAR and jsp file not working
Hello,
i sent the info to that e-mail.
in subject i mentioned your name.
i sent the info to that e-mail.
in subject i mentioned your name.
- modulesoft
- Posts: 27
- Joined: 15 Jul 2013, 03:23
- Location: India
Re: JAVA WAR and jsp file not working
I also send the same info to your PM>
please check it.
please check it.
- modulesoft
- Posts: 27
- Joined: 15 Jul 2013, 03:23
- Location: India
Re: JAVA WAR and jsp file not working
Hello,
Zoo is not working anymore. i have followed all instruction and tried everything but its not working.
can you let me know what permission to be given to which users or whats the exact process ?
i am having a difficult time working with zoo!
Zoo is not working anymore. i have followed all instruction and tried everything but its not working.
can you let me know what permission to be given to which users or whats the exact process ?
i am having a difficult time working with zoo!
- brogancraig
- Posts: 1
- Joined: 14 Apr 2015, 05:03
Re: JAVA WAR and jsp file not working
I haved the same problem.
Thank for the solutions
Thank for the solutions
16 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 0 guests