RE: Putting value ot a variable

2003-10-09 Thread rajendra . x . yadav
Hi Martin, This did not work: select * from emp_leaves where leave_id= This is the scenario: String s1 = request.getParamter("name"); I want to pass s1 into a SQL query which is like this: select * from emp_leaves where leave_id=? thanks -raj

Re: retrieve image from dynamic source and

2003-10-09 Thread Serge Knystautas
John C Cartwright wrote: I'm trying to create a page using an HTML tag that has as it's src attribute a URL. my initial attempts were along the line of: http://mapserver/servlet/com.esri.wms.Esrimap"; var="url" > "> however, the src attribute has the value of empty string in the re

retrieve image from dynamic source and

2003-10-09 Thread John C Cartwright
Hello All, I'm trying to create a page using an HTML tag that has as it's src attribute a URL. my initial attempts were along the line of: http://mapserver/servlet/com.esri.wms.Esrimap"; var="url" > "> however, the src attribute has the value of empty string in the resulting page.

Re: Calling HTTPS URL with IO

2003-10-09 Thread Hassan Schroeder
Benedetto Dell'Ariccia wrote: I'm still trying to call a HTTPS URL with the IO TAGLIB, Sorry, missed this earlier. The IO taglib works, but you need to prep your environment first; here's a sample that should get you started... <%@ page import = "javax.servlet.http.*,

RE: Calling HTTPS URL with IO

2003-10-09 Thread Martin van Dijken
Weird, Anyway, thanks for trying your hunches. If the problem you had is still reproducable, it might be worth the time to investigate it further. Personally, I couldn't care less. If the problem is solved for you, it's fine by me:) Martin > -Original Message- > From: Benedetto Dell'Ar

Re: Calling HTTPS URL with IO

2003-10-09 Thread Benedetto Dell'Ariccia
Hi Martin, I don't know write the code you said if you have a short example I'll be grateful, anyway teh problem could be the kind of file that I'm calling, I'm calling a Servlet, I tried with other 3 dots URL and the taglib works correctly! Benny - Original Message - From: "Martin van

RE: Calling HTTPS URL with IO

2003-10-09 Thread Martin van Dijken
Benny, > Hi Martin, I think the problem is with URL with 3 dots like > https://www.xxx.yyy.zz > but I have not others URLs like this to try, do you know > others URLs like > this? Pfew no, try amazon and some other sites that have a login service which might go through https. > How can I know

Re: Calling HTTPS URL with IO

2003-10-09 Thread Benedetto Dell'Ariccia
Hi Martin, I think the problem is with URL with 3 dots like https://www.xxx.yyy.zz but I have not others URLs like this to try, do you know others URLs like this? How can I know if there is a bug in the taglib? Benny - Original Message - From: "Martin van Dijken" <[EMAIL PROTECTED]> T

Re: Calling HTTPS URL with IO

2003-10-09 Thread Benedetto Dell'Ariccia
I scored ...tnx the same but I solved the problem! Benny - Original Message - From: "Martin van Dijken" <[EMAIL PROTECTED]> To: "Tag Libraries Users List" <[EMAIL PROTECTED]> Sent: Thursday, October 09, 2003 12:22 PM Subject: RE: Calling HTTPS URL with IO Does it output anything a

Re: Calling HTTPS URL with IO

2003-10-09 Thread Benedetto Dell'Ariccia
Nothing!!! Can u try to use this code? <%@ taglib uri="http://jakarta.apache.org/taglibs/xtags-1.0"; prefix="xtags" %> <%@ taglib uri="http://jakarta.apache.org/taglibs/io-1.0"; prefix="io" %> https://www.payonline.it/ext/Benny.asp"; action="POST" input="true" output="true"/> The page you c

RE: Calling HTTPS URL with IO

2003-10-09 Thread Martin van Dijken
Does it output anything at all if you don't put it between xtags? > -Original Message- > From: Benedetto Dell'Ariccia [mailto:[EMAIL PROTECTED] > Sent: donderdag 9 oktober 2003 12:12 > To: Tag Libraries Users List > Subject: Re: Calling HTTPS URL with IO > > > I'm tring this way but it d

Re: Calling HTTPS URL with IO

2003-10-09 Thread Benedetto Dell'Ariccia
I'm tring this way but it doesn't seems to work, anyway I've just used this script with HTTP (NO HTTPS) URL and it works correctly! https://www.fineco.it/fineco/PortaleLogin"; action="POST" input="true" output="true"/> Tnx a lot. - Original Message - From: "Martin van Dijken" <[EMAIL PR

RE: Calling HTTPS URL with IO

2003-10-09 Thread Martin van Dijken
Well, when reading the tags documentation I notice the output="" attribute for the http tag. If that is not set to true, the output is ignored. Cheers, Martin > -Original Message- > From: Benedetto Dell'Ariccia [mailto:[EMAIL PROTECTED] > Sent: donderdag 9 oktober 2003 11:49 > To: Tag L

Re: Calling HTTPS URL with IO

2003-10-09 Thread Benedetto Dell'Ariccia
I'm trying somethnig like this, i have to call https servlet that should response with an xml that i have to parse! I'm sorry but this is just my third post in this ML! :) Tnx! <%@ taglib uri="http://jakarta.apache.org/taglibs/xtags-1.0"; prefix="xtags" %> <%@ taglib uri="http://jakarta.apache.or

RE: Putting value ot a variable

2003-10-09 Thread Martin van Dijken
Better. Prepared statements take care of some escaping which is not done in my solution. Martin > -Original Message- > From: Dima Gutzeit [mailto:[EMAIL PROTECTED] > Sent: donderdag 9 oktober 2003 11:39 > To: Tag Libraries Users List > Subject: Re: Putting value ot a variable > > > or

RE: Calling HTTPS URL with IO

2003-10-09 Thread Martin van Dijken
Hey Benedetto, If you don't get an answer then nobody on the list has a clear concise answer for you. I'll try to help you though, could you post the code that is causing trouble? What you can try is put a portlistener on the https port to see if the request actually gets there. Martin > ---

Re: Putting value ot a variable

2003-10-09 Thread Dima Gutzeit
or ... select * from emp_leaves where leave_id=? - Original Message - From: "Martin van Dijken" <[EMAIL PROTECTED]> To: "Tag Libraries Users List" <[EMAIL PROTECTED]> Sent: Thursday, October 09, 2003 11:38 AM Subject: RE: Putting value ot a variable Hey Rajendra, Try: select

Calling HTTPS URL with IO

2003-10-09 Thread Benedetto Dell'Ariccia
I'm still trying to call a HTTPS URL with the IO TAGLIB, no logs errors, the browser still waiting untill. Can someone help me? Benny

RE: Putting value ot a variable

2003-10-09 Thread Martin van Dijken
Hey Rajendra, Try: select * from emp_leaves where leave_id= Martin > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent: donderdag 9 oktober 2003 11:36 > To: Tag Libraries Users List > Subject: Re: Putting value ot a variable > > > > Thanks Dima. > I a

Re: Putting value ot a variable

2003-10-09 Thread rajendra . x . yadav
Thanks Dima. I am stuck with another problem now. I have a variable in Java which i get from request. String s1 = request.getParamter("name"); I want to pass s1 into a SQL query which is like this: select * from emp_leaves where leave_id=? How do i put s1 into the tags? thanks -raj -

Re: Putting value ot a variable

2003-10-09 Thread Dima Gutzeit
sql:query var="result"> select * from leaves_types Using the variable later on : - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 09, 2003 9:02 AM Subject: Putting value ot a variable > Hi, > I hav

Putting value ot a variable

2003-10-09 Thread rajendra . x . yadav
Hi, I have something like this: select * from leaves_types How do I put the values into a variable and use it in the JSP page? thanks -raj - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional