Tomcat with IIS

2023-12-17 Thread Mohammed Ramadan Ghallab
Hello

I’m using tomcat and I want to create a virtual directory but I can’t do that
if it isn’t possible can you please tell me how to integrate tomcat with IIS

thank you


***DISCLAIMER*
This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom
they are addressed to.If you are not the intended recipient, please notify the 
sender immediately by e-mail and delete this
e-mail from your system. You are notified that disclosing, copying, 
distributing or taking any action in reliance on the contents
of this information is strictly prohibited. Statement and opinions expressed in 
this email are those of the sender, and do not
necessarily reflect those of Al Ain City Municipality. The recipient should 
check this email and any attachments for the presence
of viruses. Al Ain City Municipality and the sender accept no liability for any 
damage caused by any virus transmitted by this email.


Re: JSP EL - How to

2023-12-17 Thread Chuck Caldarale

> On Dec 16, 2023, at 23:05, Arbol One  wrote:
> 
> Hello.
> 
> In my NetBeans IDE, I have a ANT web project, to which I have added under 
> Libraries the JSTL 1.2.7 - jstl-impl.jar and the JSTL 1.2.7 - jstl-api.jar 
> libraries. However, when adding this code :
> 
> *
> Hello JSP EL!
> *


Tags are not allowed inside  elements. The following should work:




Hello JSP EL!




  - Chuck