Apache Giving HTTP 505 Error While Contacting it through Oracle database

2015-10-08 Thread Ankur Gupta
This is my SMS sending procedure where mobile number and body of msg is passed. Then concatenating all these values a URL is formed . URL hit to apache server where .jsp page is made to send SMS via third vendor. This apache server is just a mediator between database and third vendor Problem is

Re: redirect to website not working

2015-06-18 Thread Ankur Gupta
Thank you for your help... xx.xxx.xx.81 server through which iam using ie is not accessed to public website.This might be the problem. I want to ask a noob question that is there any method , as 81 server is not accessed to public websites but Linux server has access , so any method,way so that re

Re: redirect to website not working

2015-06-17 Thread Ankur Gupta
*Fiddler Error:* # Result Protocol HostURL BodyCaching Content-Type Process CommentsCustom 2 302 HTTPxx.xxx.xx.81:81/abc/abc/a.asp 191 privatetext/html iexplore:6656 3 302 HTTPxx.xxx.xx.99:8080 /examples/sm

Re: redirect to website not working

2015-06-17 Thread Ankur Gupta
I had installed fiddler and deactivated ie stupid feature . how can I share the result of fiddler to you if the system dosent allow attachments?

Re: redirect to website not working

2015-06-17 Thread Ankur Gupta
Log says this: xx.xxx.xx.81 - - [17/Jun/2015:12:51:47 -0400] "GET /examples/smstrial.jsp?mobileNumber=0123456789 HTTP/1.1" 302 - xx.xxx.xx.81 - - [17/Jun/2015:12:52:16 -0400] "GET /examples/smstrial.jsp?mobileNumber=0123456789 HTTP/1.1" 302 - xx.xxx.xx.81 - - [17/Jun/2015:12:53:05 -0400] "GET /e

Re: redirect to website not working

2015-06-17 Thread Ankur Gupta
xx.xx.xx.81 has classic asp page sms.asp having code: <%@ language=vbscript%> <% mobileNumber="0123456789" Response.redirect(" http://xx.xxx.xx.99:8080/examples/smstrial.jsp?mobileNumber="&; mobileNumber) %> Linux server(xx.xxx.xx.99:8080) with apache tomcat an

Re: redirect to website not working

2015-06-17 Thread Ankur Gupta
Sorry if I was unable to make you understand . At my workplace we have one production server which have iis and classic asp pages are deployed. Now as per the requirement , we have to send SMS to the customers, so , a request from production server say A(having asp page) is sent to Linux server hav

redirect to website not working

2015-06-16 Thread Ankur Gupta
I have apache tomacat 7.0.61 and linux server 6.1 enterprise. There is a requirment of sending sms to the customers, but the request to send sms to the vendor is throught this sftp linux server. Now, when i redirect to the page it does not respond.But when i access the same website through command

Tomcat not reading jsp code

2015-06-15 Thread Ankur Gupta
I have apache tomcat 7.0 and Linux 6.1 server. I had written simple jsp code in a .jsp page which will redirect page and deployed in tomcat . When. Page is accessed then only html tags are shown and tomcat just skips jsp code written under <% %> tag. Plz help.

Re: Vb script not running

2015-06-08 Thread Ankur Gupta
Thank you for your reply, the vb script is normally running under windows server, i had checked it. When i deploy it into apache tomacat server and try to access vb script then it does nothing. Is there any alternative method? On Mon, Jun 8, 2015 at 4:17 PM, André Warnier wrote: > Ankur Gu

Vb script not running

2015-06-08 Thread Ankur Gupta
I have apache tomcat 7.0 linux 6.1 server I want to deploy a .asp page which contains vb script. The problem is that vb script is not executing. Even response.write() is not working. Is there any alternative to run vb script?