sampath ramanujan

Greenhorn
+ Follow
since Jul 15, 2001
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 sampath ramanujan

Hi,
sendDirect does not allow me to redirect to the servlet which is running in another Server. It allows only the servlet running in the current root Context. Same thing happening in forward also.
I want to redirect to another servlet which is running in anoterh server [ for eg http://mysite.com:8100/servlet/AdminServlet ]

Originally posted by Kyle Brown:
(Bosun, that was mean )
You can redirect to any URL if you use the HttpResponse.sendRedirect("some_url") method.
Kyle


22 years ago
Hi all,
I have one Request in the Servlet, Is it possible to redirect that request to the different servlet which is not running in my server/context.
Please advise me.
Urgent
Regards
Sampath Ramanujan
22 years ago
Hi all,
I want to implement Chat application in Servlet-Applet Manner. I am facing the Problem that Whenever Message is available to one of client , from the Servlet i am unable to send that message to client since i have to wait till the Applet Request.
this is my constraints
1. i should not use Applet Polling Concept [ such that every second applet will request to servlet ]
Is there any way to implement this .
Please help me , URGENT
Sampath Ramanujan

22 years ago
Hi, I am using Applet and I want to Send an Information [ string] to an Servlet , As I did , using showDocumentURL , i have send info as query parameter with URL to the Servlet , But It does not work for large amount of String [ it is working for string having less length ]
And I do not want the Stream Opening and sending information to Servlet.
Is it Possible to send the Information to Servlet via POST implementation , If so how ??
or Is there anyone who faced the same problem ???
URGEnt
Thanks
Sampath Ramanujan
22 years ago
Hi , thanks for your immediate reply.,
I have seen the log , there is nothng there and i could see the HTML with only half of the content. And i think the JSP has been converted and compiled to servlet and while flushing out , it is flushing out only half of the content.
urgent
regards
sampath ramanujan

Originally posted by japper:
When viewing the page in your browser, view the HTML source that was returned from the web server.
Sometimes you will see exception messages in the HTML source.
If you do not see them, check the JRun logs for anything.


22 years ago
HI all,
I have JRun 3.1 , IIS 5.0 both connected and I am using Sessions and putting some vectors on session , While displaying some pages only half page is getting loaded in client browser.
And It is running windows 2000 OS.
And IIS is running on TCP HTTP Port 8100
and JRUn in running in difference port number, both gets connected using connector wizard.
[ I can't keep tcp http port 80, which is restricted .]
Please Help me , URGENT.....
Regards
Sampath Ramanujam.
22 years ago
Hi,
Will that Java mail api work Under Proxy, Because, I am not able to use Java Main when my server is under Proxy connection..
Regards
Sampath Ramanujan

Originally posted by Dmitriy Pavlyuk:
If I right understand you question, you want to click the html button and send email.
If you have all information to send on client side you may simply submit form (action="mailto:sss@server" method = post).
If you need send message with information after servlet proccessing, you may use JavaMail library or Jakarta taglib (for jsp).


22 years ago
I have installed JRun 3.1 and I have done the connector wizard for IIs 5.0 [ I have selected c:\inetpub\scripts directory ] and host 127.0.0.1 and port 9002.
But My web applicaiton , i can not able to get it. It is saying "The Page can not be displayed". IIS could not find this or IIS itself not running [ but i could find inetinfo.exe in process area]
I am running on Windows 2000 server.
Please advise me if anyone faced this problem.
URGENT.
Thanks in advance
sampath
22 years ago
I have installed JRun 3.1 and I have done the connector wizard for IIs 5.0 [ I have selected c:\inetpub\scripts directory ] and host 127.0.0.1 and port 9002.
But My web applicaiton , i can not able to get it. It is saying "The Page can not be displayed". IIS could not find this or IIS itself not running [ but i could find inetinfo.exe in process area]
I am running on Windows 2000 server.
Please advise me if anyone faced this problem.
URGENT.
Thanks in advance
sampath
22 years ago
Hi,
I am running JRun 3.0 in Windows 2000 server and we felt it is very much slow after some period of time,
Please give me some suggestion about "FINE TUNING JRun and Windows 2000 server ", please urgent.
Thanks in advance ,
sampath ramanujan
22 years ago
hi i am frequently getting this error message wheneve i submit but the servlet operation has been done successfully while showing the page, it is showing "No data is availalbe for the requested data http://....."
exact error msg is :
Internet Explorer can not open the Internet site http://192.168.0.5:8101/projtest/jsp/Requirements/RequirementAdminServlet
No data is available for the requested resource

urgent
thanks in advance
22 years ago
Now i got the clue,but any one ple give me the soln
I changed the Jrun server in windows 2000 professional then i could able to get the page but the same thing not working in windows 2000 server with ie 5.5sp1.

regards
sampath ramnujan

Originally posted by Trevor Dunn:
It is hard to say what the problem could be, but based on the little iformation that you have given I would say you have a configuration problem . Basically if the servlet works fine on another Machine . Then there must be some difference. COuld it be that you are trying to retrieve some external resource and the servlet can not find it, WHich in some cases would make the servlet hang.

Trevor


22 years ago
, I have put some check points[system.out] in the Jsp, which supposed to be shown on the browser and , i have seen the default.out log file , all the check points crossed till the last </html> and after that i could not identify for what it is requesting and waiting , since servlet finished that process , am i correct !!!
And any external resource are required to this jsp .
We are following Model2 architecture where, the command will decide which next jsp and build accordingly and we are keeping vectors in the sessions , so that in jsp, it will get and printed.
thanks

Originally posted by Trevor Dunn:
It is hard to say what the problem could be, but based on the little iformation that you have given I would say you have a configuration problem . Basically if the servlet works fine on another Machine . Then there must be some difference. COuld it be that you are trying to retrieve some external resource and the servlet can not find it, WHich in some cases would make the servlet hang.

Trevor


22 years ago
Web.xml has the mapping and another thing, other jsp and servlets are working and this is the one i am getting the progress going on continuesly , the status remain opening...
. The same operation is working in another machine, there the same IE5.5 sp1 and windows 2000.
'Thanks in advane
Regards
Sampath Ramanujan

Originally posted by Trevor Dunn:
Hi
I am not sure how you have your JRun setup. But if you are not using any mappings in your web.xml file then the default path for a servlet is ..../servlet/SomeServlet.
Just a thought
Trevor


22 years ago
The page requested is not opening and i could see the progress bar keeps on going and saying http://43.4.140...../AdminServlet?cmd=query Opening..
the Same is working in other machine which is having same kind of platform and wirelss card, proxy.
Configuration : Windows 2000 Professional.
IE 5.50.4522.1800
SP1

Proxy enabled.
helpURGENTLY REquired
Regards
Sampath Ramanujan
22 years ago