Amit Manurkar

Greenhorn
+ Follow
since Apr 03, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Amit Manurkar

I found solution for this, pretty straight forward, map individual virtual directories to individual "iisproxy.ini" and "iisproxy.dll" for URL / directory based mapping (each "iisproxy.ini" and "iisproxy.dll" should reside in different directories - thus for 4 virtual directory mapping you need to have 4 different copies of "iisproxy.ini" and "iisproxy.dll" in four different directories)

Make sure you DO NOT include "iisforward.dll" as ISAPI filter and each and every virtual directory has "Application Protection" set to "HIGH".
18 years ago
Hi,

I've following scenario -

Multiple WebLogic servers running on different ports (7001, 7002, 7003).
Multiple Virtual Directories (NOT Virtual Web Sites) /webdir1, /webdir2, /webdir3

I can NOT have multiple Virtual Web Sites as I've only 1 NIC and all the requests needs to come on Port 80 only.

My question is how can I configure the WebLogic + IIS Plugin so that request for Virtual Dir "/webdir1" goes to WebLogic Server 7001, for "/webdir2" to WebLogic Server 7002 and "/webdir3" to WebLogic Server 7003.

I had earlier configured IIS to work with Tomcat in same way, but I couldn't find a way to make IIS work with WebLogic.

Can someone please let me know if it is possible? If yes, then how?
18 years ago
Hey Folks,
First of all thanks a lot for this post of yours, it helped me a lot.
I would like to know if you have any idea about this - I want to query the system tables directly e.g "MSysRelationships" how can I do that ? I tried to query the tables directly using the "executeQuery()" method of the "Statement" object, but it does not allow me to access System tables.
Hey did u find any solution for your problem ? If yes can you share it with me ?
I am trying to use "HttpSessionBindingListener" to keep track of the users who do not logout properly. For this in the "valueUnbound" event I want to check for a particular session variable (attribute).
But when I try to call the "getAttribute" method of session object (Session object I've retrieved from getSession() method of HttpSessionBindingEvent), it throws an exception that session is already invalidated.
Is it a normal behavior? or there is something wrong with my Tomcat (I m using Tomcat 4.1)
An early reply would be appreciated.
20 years ago
Hi,
You can also try the POI from Apache. A good API for reading / writing Excel / Word files.
http://jakarta.apache.org/poi/index.html
20 years ago
Is your Servlet/JSP expecting any file in the "bin" or startup directory of the Tomcat (R u reading/writing any file ?)
Because when you run Tomcat as service the startup directory of the tomcat changes.
20 years ago
You can find the version in "Manifest.mf" file. The file would have following entries;
20 years ago
Hey got the query solved. Model-1 is the JSP-Bean architecture and Model-2 is the MVC architecture.
While trying struts I also came across "Tapestry", found it easier and provides more facility.
For more information look at http://jakarta.apache.org/proposals/tapestry/
20 years ago
The JSP-Bean architecture is not supposed to be a good one. Instead you can use one of the standard frameworks available (Struts, Tapestry etc.)
You can find some good discussion abt same on the "Framework" forum.
20 years ago
JSP
I've just now started looking for a good application framework.
But before opting for any particular I just want to ask a basic question;
Is there something like MVC-2. If it is then how is it different from MVC. I think there are only Model-1 (JSP+Beans) and Model-2 (MVC). If someone can help me with the above !!!
20 years ago