parsing SOAP with taglibs

2004-05-20 Thread Benedetto Dell'Ariccia
Hi, I have the a variable containg the response of a SOAP call, how can I parse it? I tried with XTAGS but it doesn't seem to work. Bye Benny - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: tomcat exception caused by x-tags

2004-05-20 Thread Klimenko, Mariya
Already got it fixed, thanks. Also, Tomcat made its own copy ([EMAIL PROTECTED]) so had to fix that as well. Thanks for all your help. -Original Message- From: David Goodenough [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 19, 2004 2:01 PM To: [EMAIL PROTECTED] Subject: Re: tomcat

Re: [JSTL] How do I enter a null value with sql:param?

2004-05-20 Thread Justyna Horwat
Derek, I forwarded your comments to the JDBC specification lead. He said that now is a good time to bring up all of these annoyances in the specification. He will look into clarifying this area in the upcoming version of the spec. Thanks, Justyna Derek Mahar wrote: After reading Section 17.7

RE: [JSTL] How do I enter a null value with sql:param?

2004-05-20 Thread Derek Mahar
I need to clarify the first statement that I made in my previous post (see below). I claim that parameter sqlType in method PreparedStatement.setNull(int parameterIndex, int sqlType) is redundant because a NULL SQL parameter has no intrinsic type. A NULL SQL value applies to any column type,

c:choose question

2004-05-20 Thread Jack Lauman
I am trying to format a table so that it displays the date in the first column on the first row and not display it again until the date changes to the next day. I have tried the following code to get this to work. Any suggestion on how to solve this problem would be appreciated. I've tried

RE: choose question

2004-05-20 Thread Morrow, Steve D.
c:set var=checkDate value= / c:forEach var=row items=${result.rows} fmt:parseDate value=${row.date} var=parsedDate pattern=-MM-dd/ tr td align=left c:if test=${checkDate != parseDate} fmt:formatDate value=${parsedDate} pattern=E'., 'MMM d/

RE: [JSTL] How do I enter a null value with sql:param?

2004-05-20 Thread Kris Schneider
On a slightly different topic, how about trying a different driver: http://jtds.sourceforge.net/ Quoting Derek Mahar [EMAIL PROTECTED]: I need to clarify the first statement that I made in my previous post (see below). I claim that parameter sqlType in method PreparedStatement.setNull(int

RE: choose question

2004-05-20 Thread Morrow, Steve D.
CORRECTED TYPO: c:set var=checkDate value= / c:forEach var=row items=${result.rows} fmt:parseDate value=${row.date} var=parsedDate pattern=-MM-dd/ tr td align=left c:if test=${checkDate != parsedDate} fmt:formatDate value=${parsedDate} pattern=E'., 'MMM

RE: choose question

2004-05-20 Thread Derek Mahar
I see several problems with this code. First, it doesn't compile. You didn't close your c:when clause and c:otherwise follows c:when. Your code should read: c:choose c:when test=${parsedDate == parsedDate} td align=left / /td /c:when c:otherwise td align=left

RE: [JSTL] How do I enter a null value with sql:param?

2004-05-20 Thread Kris Schneider
I'm merely aware of its existence. I've never used jTDS (or SQL Server) but just wanted to let you know about a potential alternative... Quoting Derek Mahar [EMAIL PROTECTED]: Thank you for the referral! Does the jTDS driver correctly implement PreparedStatement.setObject(index, null) (i.e.

RE: [JSTL] How do I enter a null value with sql:param?

2004-05-20 Thread Derek Mahar
Wow! I just installed the jTDS JDBC driver for Microsoft SQL Server, and it does *not* produce the NULL parameter problem that I encountered using Microsoft's SQL Server JDBC driver. I can now pass sql:param a JSTL null value and it will update the corresponding column with an SQL NULL value.

RE: [JSTL] How do I enter a null value with sql:param?

2004-05-20 Thread Keith
One of these days (when I have the time) I'll be contacting Oracle to see if they can fix their driver. There's no other alternative JDBC drivers like this for Oracle are there? Keith -- Original Message --- From: Derek Mahar [EMAIL PROTECTED] To: Tag Libraries Users List

RE: sql tag

2004-05-20 Thread Derek Mahar
I'd use sql:query in the JSP page, but Model-View-Controller (MVC) purists strongly discourage using the sql tags at all because they more tightly couple the View (JSP page) with the Model (database) which violates the MVC principle of Model-View separation. An MVC designer prefers that a JSP

RE: passing JSTL to custom tag attribute

2004-05-20 Thread Derek Mahar
What do you mean when you say that Tomcat 5 implements JSTL natively? From my experience, Tomcat 5 does not ship with JSTL. You must download and install JSTL separately. Derek -Original Message- From: Karr, David [mailto:[EMAIL PROTECTED] Sent: May 13, 2004 9:14 AM To: Tag Libraries

RE: passing JSTL to custom tag attribute

2004-05-20 Thread Felipe Leme
Derek, I think he meant Tomcat 5 implements EL (and not JSTL) natively. Felipe On Thu, 2004-05-20 at 19:04, Derek Mahar wrote: What do you mean when you say that Tomcat 5 implements JSTL natively? From my experience, Tomcat 5 does not ship with JSTL. You must download and install JSTL

Re: passing JSTL to custom tag attribute

2004-05-20 Thread Derek
No, actually you don't have to in Tomcat 5. It does ship with JSTL built in. You just have to use the appropriate declarations in the web.xml and so on. Derek (H) On May 20, 2004, at 5:04 PM, Derek Mahar wrote: What do you mean when you say that Tomcat 5 implements JSTL natively? From my

Re: passing JSTL to custom tag attribute

2004-05-20 Thread Derek
That's what I was replying to as well. Sorry for the confusion. Derek (H) On May 20, 2004, at 5:42 PM, Felipe Leme wrote: Derek, I think he meant Tomcat 5 implements EL (and not JSTL) natively. Felipe On Thu, 2004-05-20 at 19:04, Derek Mahar wrote: What do you mean when you say that Tomcat 5