Unable to run Javascript on Web Server
Hello Programing gurus,
I am developing some web content and for that i make use of dreamweaver with the javascript when I run my program, it works fine in dreamweaver but unable to run on Web server, I only get the "Welcome to javascript" message, but not the prompt.
Why doesn't my code work on the server? Thanks for your help!
Re: Unable to run Javascript on Web Server
Unable to execute the JavaScript engine.for this kind of error Check if the MAYSCRIPT tag is missing from the applet tag or if scripting of Java applets is disabled in the Web Console.”
Cause
This occurs with:
• Java Client on Windows XP Service Pack 1 (Service Pack 2 also used) - 7.0.1518
• Proxy Server - ISA 2000
• Web Interface 2 /Secure Gateway in Windows 2003
This message only comes up when they go through a Proxy server. If this is taken away it works.
The latest ICA clients can detect the user's proxy settings. To enable this, in the template.ica file, add:
ProxyType=Auto
in the [WFClient] section.
When using the Java client, you need to add the following line to the Java APPLET:
<param name=ProxyType value="Auto">
Re: Unable to run Javascript on Web Server
If you get an "Unable to start debugging on the Web server" error, try checking the following things:
- Are you running a version of Windows that allows the Visual Studio debugger to automatically attach to a Web application? If not, you need to launch the application without debugging and manually attach to it. (For more information, see Manually Attaching and ASP.NET Debugging: System Requirements.)
- Does your Web application have a Web.config file?
- Does the Web.config file enable debug mode) by setting the debug attribute to true? For more information, see Debug Mode in ASP.NET Applications.
- Does the Web.config file contain any syntax errors? You can check for syntax errors by running the Web application without debugging. (From the Debug menu, choose Start Without Debugging.) If there are syntax errors in Web.config, detailed information will be displayed.
- You need to be a member of the Debugger Users group or an administrator if the ASP.NET worker process runs under your own user account.
- You need to be a member of the Administrators group if the ASP.NET worker process runs under any other user account besides your own.
for more information on Unable to Start Debugging on the Web Server