Re: Are vulnerability patches available for Tomcat 5.5.23

2007-06-22 Thread Hassan Schroeder
On 6/22/07, Cherie Barnes <[EMAIL PROTECTED]> wrote: > I really don't want to have to re-install everytime... I do not have a Solaris 10 build environment yet so I can't rebuild the server either. ? If installing a new (minor) release seems like a big deal, I'd suggest you're doing something

Re: Are vulnerability patches available for Tomcat 5.5.23

2007-06-22 Thread Cherie Barnes
Thanks, that is what I was afraid of..Maybe it's time I put a build environment together. [EMAIL PROTECTED] wrote: Cherie Barnes wrote: Are there any patches available for the Apache Tomcat Application Server (downloaded from tomcat.apache.org)? In 99.9% of cases we do not provide

Re: Are vulnerability patches available for Tomcat 5.5.23

2007-06-22 Thread Mark Thomas
Cherie Barnes wrote: > Are there any patches available for the Apache Tomcat Application Server > (downloaded from tomcat.apache.org)? In 99.9% of cases we do not provide a patch, we provide a new release. Mark - To start a new

RE: Multiple Contexts from single WAR

2007-06-22 Thread Caldarale, Charles R
> From: Chris Hall [mailto:[EMAIL PROTECTED] > Subject: RE: Multiple Contexts from single WAR > > How to have a servlet mapping the same as the context name? I want > http://localhost/ to invoke my servlet by default. Pick one of the names and map that to your servlet. For example:

RE: Multiple Contexts from single WAR

2007-06-22 Thread Chris Hall
Guys, as the original poster of this thread I'd like to thank all concerned for the valuable contributions. I've learned that a single WAR can be used by creating conf/catalina/localhost/.xml files with the docBase pointing to a fully qualified path outside of the webapps location... and that I ca

RE: Configuring TOMCAT to use different ROOT context

2007-06-22 Thread Caldarale, Charles R
> From: Tent Pig [mailto:[EMAIL PROTECTED] > Subject: RE: Configuring TOMCAT to use different ROOT context > > The problem I'm encountering is a request to: > http://path/to/sectionx/test.jsp > will yield an error 400, bad request. Are you sure it's even getting to Tomcat? What happens if you t

Re: How to write this elegantly in JSP/EL

2007-06-22 Thread ben short
Well you learn something new everyday, I wasn't aware that ${X} worked like Which doesn't seem that bad to me. With your spring setup you could also create an HandlerInterceptor [1] and add it to your url mapping, that adds the PHOTO object to the model after the controller has process the requ

Re: How to write this elegantly in JSP/EL

2007-06-22 Thread Hassan Schroeder
On 6/22/07, Nikola Milutinovic <[EMAIL PROTECTED]> wrote: > " width=" value="${DATA_PHOTO_WIDTH}"/>" /> (sigh) I feared as much. It is just that I hate JSTL tags inside another tag's attributes. Why would you use `src="${imageUrl}"` and then use the clumsy 'c:out' form? What's wrong with `he

Re: Multiple Contexts from single WAR

2007-06-22 Thread David Smith
Sorry, but I don't use ant. I've switched to maven for building webapps. I find it's ability to handle dependencies via standard http download oh so nice to work with. What I posted allows for multiple configs from one war build -- great for when the logic is all the same, just need to tweak

RES: Tomcat hanging - two instance configuration

2007-06-22 Thread Paulo Alvim
Hi Isac, We have similar problem. Tomcat 5.5.9 is freezing probably in the socket level... Do you have any news? Thanks Paulo Alvim Brazil -Mensagem original- De: Isac Fernandes [mailto:[EMAIL PROTECTED] Enviada em: terca-feira, 19 de junho de 2007 00:56 Para: users@tomcat.apache.org A

Re: How to write this elegantly in JSP/EL

2007-06-22 Thread Nikola Milutinovic
Thank you all who responded. > I think the following should do you > > " width=" value="${DATA_PHOTO_WIDTH}"/>" /> (sigh) I feared as much. It is just that I hate JSTL tags inside another tag's attributes. > On 6/22/07, Johnny Kewl <[EMAIL PROTECTED]> wrote: > > > > Hi Nikola, never done it, bu

RE: Tomcat not close file when webapps is stopped

2007-06-22 Thread Caldarale, Charles R
> From: Christopher Schultz [mailto:[EMAIL PROTECTED] > Subject: Re: Tomcat not close file when webapps is stopped > > I'm guessing that Giovanni isn't explicitly opening > struts.jar from his own WEB-INF/lib directory Good point - I was thinking more of the .log and .properties files. > Is th

Re: Tomcat clustering without multicasting

2007-06-22 Thread Filip Hanik - Dev Lists
Tomcat 6 supports this using the StaticMembershipInterceptor Filip Vinu Varghese wrote: Hi all, I am trying clustering with tomcat, but I have machines with multicast disabled. So is there any way to do clustering without multicasting, like use tcp for notifying member addition and removal ?

RE: Configuring TOMCAT to use different ROOT context

2007-06-22 Thread Tent Pig
--- "Caldarale, Charles R" <[EMAIL PROTECTED]> wrote: > I hope you're more careful with proper casing than > the above would lead us to believe. If the above is > really what you put in, it would have no > effect, since both the element and attributes are > incorrect. My casing is AFAIK correct

Re: Multiple Contexts from single WAR

2007-06-22 Thread Johnny Kewl
Talking to David he's doing it yet another way. Tomcat is certainly flexible ;) - Original Message - From: "Caldarale, Charles R" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Friday, June 22, 2007 5:07 PM Subject: RE: Multiple Contexts from single WAR From: Johnny Kewl [mail

RE: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path:

2007-06-22 Thread Propes, Barry L
somehow, somewhere your classpath is not correct, but I don't know what you're naming your tomcat directory so I couldn't tell from that. -Original Message- From: Søren Blidorf [mailto:[EMAIL PROTECTED] Sent: Thursday, June 21, 2007 3:58 PM To: users@tomcat.apache.org Subject: The Apache

RE: Null

2007-06-22 Thread Propes, Barry L
that doesn't sound rightare you sure you're pulling back a value from a column that's a string? -Original Message- From: Mohammed Zabin [mailto:[EMAIL PROTECTED] Sent: Thursday, June 21, 2007 6:02 AM To: Tomcat Users List Subject: Re: Null I tried it the other way, if( rs.getString(

RE: Null

2007-06-22 Thread Propes, Barry L
just set a value to null or ""; if it's null, return (maybe this " ") some value for a space, if you want to paint the border on a table (the HTML part) this is likely the best way to do it. You could populate it with a dash ("-") or some other. -Original Message- From: Mohammed Zabin

Re: Realm works; db connection does not?

2007-06-22 Thread Søren Blidorf
Thanks. I will look at that. This is my connection: package um.persistence; import java.sql.Connection; import java.sql.SQLException; import javax.servlet.http.HttpServlet; import java.sql.DriverManager; public class PersistenceFacade { //--- fields -// public static final

RE: Save sessions across restarts

2007-06-22 Thread Propes, Barry L
that's not allowed, is it? -Original Message- From: lightbulb432 [mailto:[EMAIL PROTECTED] Sent: Sunday, June 17, 2007 3:28 PM To: users@tomcat.apache.org Subject: Save sessions across restarts During development, I'd like my sessions to stick around while I reload the context or resta

Re: Tomcat not close file when webapps is stopped

2007-06-22 Thread Giovanni
--- Christopher Schultz <[EMAIL PROTECTED]> wrote: > Caldarale, Charles R wrote: > >> From: Giovanni [mailto:[EMAIL PROTECTED] > >> Subject: Tomcat not close file when webapps is stopped > > > >> Can I force the close of the file on Tomcat when the webapps > >> is stopped? > > > > It's not Tom

Re: Multiple Contexts from single WAR

2007-06-22 Thread Johnny Kewl
Ok thanks Charles - Original Message - From: "Caldarale, Charles R" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Friday, June 22, 2007 4:02 PM Subject: RE: Multiple Contexts from single WAR From: Johnny Kewl [mailto:[EMAIL PROTECTED] Subject: Re: Multiple Contexts from single W

Re: Multiple Contexts from single WAR

2007-06-22 Thread Johnny Kewl
Hey David Try this. Little bit of ant script to deploy your WAR as many times as you want I like! Now if the original user had to say put 3 contexts on 5 different machines... very cool! Just read the ant script. http://localhost:808

Re: Tomcat not close file when webapps is stopped

2007-06-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chuck, Caldarale, Charles R wrote: >> From: Giovanni [mailto:[EMAIL PROTECTED] >> Subject: Tomcat not close file when webapps is stopped > >> Can I force the close of the file on Tomcat when the webapps >> is stopped? > > It's not Tomcat's respons

Re: Comet example Tomcat 6 not working.

2007-06-22 Thread Ritesh Kumar
You need not click on the hyperlink to do anything. This hyperlink can open another window very similar to post.jsp. I think this post.jsp is sufficient for sending messages. If you really are interested in making the hyperlink working you need to copy the javascript function openWindow in post.js

RE: Tomcat not close file when webapps is stopped

2007-06-22 Thread Caldarale, Charles R
> From: Giovanni [mailto:[EMAIL PROTECTED] > Subject: Tomcat not close file when webapps is stopped > Can I force the close of the file on Tomcat when the webapps > is stopped? It's not Tomcat's responsibility to clean up resources that it has no knowledge of - that's up to the webapp. You sho

Tomcat not close file when webapps is stopped

2007-06-22 Thread Giovanni
Hi, I have tomcat 5.5.23 with jdk 1.5.0_12 on Linux Centos 4.5. When stop a webapps from Tomcat Manager some files of webapp remaining open. For example I have webapps named cms when is started there is this situation: [root ~]# lsof -p 3499 | grep webapps java3499 22158 588164 /var/lib/

Re: Session Replication in Tomcat5.5.17

2007-06-22 Thread shiva sha
Hi I had made some changes in httpd.conf,mod_jk.conf,mod_jk_cluster.conf also.. I forgot to send that file. Pls check all the entries are correct. mod_jk.conf LoadModule jk_module modules/mod_jk.dll JkWorkersFile "D:/Apache Group/Apache2/conf/workers.properties" JkLogFile logs/jk.log JkLogLevel

RE: Configuring TOMCAT to use different ROOT context

2007-06-22 Thread Caldarale, Charles R
> From: Tent Pig [mailto:[EMAIL PROTECTED] > Subject: RE: Configuring TOMCAT to use different ROOT context > > I put in tomcat's server.xml: > > /> I hope you're more careful with proper casing than the above would lead us to believe. If the above is really what you put in, it would have no e

RE: Configuring TOMCAT to use different ROOT context

2007-06-22 Thread Tent Pig
--- "Caldarale, Charles R" <[EMAIL PROTECTED]> wrote: > Can you use Tomcat's multiple capability to > accomplish this segregation? Each element > has its own appBase, which could point to the > appropriate DocumentRoot directory for the > corresponding httpd virtual host. Well, I tried this.

RE: Multiple Contexts from single WAR

2007-06-22 Thread Caldarale, Charles R
> From: Johnny Kewl [mailto:[EMAIL PROTECTED] > Subject: Re: Multiple Contexts from single WAR > > Even though that works, personally I would go for making > 3 copies, rename them to whatever is wanted, then just > drop them in. The procedure I outlined requires only replication of the [appname

RE: Multiple Contexts from single WAR

2007-06-22 Thread Caldarale, Charles R
> From: David Smith [mailto:[EMAIL PROTECTED] > Subject: Re: Multiple Contexts from single WAR > > I don't know of any way to make one war deploy as three separate > contexts. I already described the required procedure; here it is again: 1) The .war file must NOT go into the appBase directory

Re: Multiple Contexts from single WAR

2007-06-22 Thread David Smith
I don't know of any way to make one war deploy as three separate contexts. I do know you could have a ServletContextListener look at the context name and then read some config files dependant on the context name. That's how Magnolia CMS allows for one source war to be deployed in separate rol

Re: Multiple Contexts from single WAR

2007-06-22 Thread Johnny Kewl
Nice to know that works After pulling my hair out, trying to find an easier way, I have to say that I think Christopher Schultz really knows his Tomcat. Even though that works, personally I would go for making 3 copies, rename them to whatever is wanted, then just drop them in. Having som

RE: Configuring TOMCAT to use different ROOT context

2007-06-22 Thread Caldarale, Charles R
> From: Tent Pig [mailto:[EMAIL PROTECTED] > Subject: Configuring TOMCAT to use different ROOT context > > Plus, she has different JSP pages for each virtual > host and doesn't want to 'mix and match' them. In > other words, if 'myfile.jsp' is only available on > virtualhost1, she doesn't want so

Re: Are vulnerability patches available for Tomcat 5.5.23

2007-06-22 Thread Rainer Jung
Tomcat 5.5.24 is expected to be released in a few days. The vulnerability you cited should be rated low impact for most people. There is a similar open issue, both are shortly described on the page http://tomcat.apache.org/security-5.html Both issues only affect the example webapps (which you

RE: Allowing users to deploy their own webapps within their homedirectories

2007-06-22 Thread Caldarale, Charles R
> From: Tim Booth [mailto:[EMAIL PROTECTED] > Subject: Allowing users to deploy their own webapps within > their homedirectories > > Is there any way that tomcat can be setup such that > ~/tomcat is the appBase dir, so a user can have: > ~/tomcat/webapp1 ~/tomcat/webapp2 etc without explicitly

Are vulnerability patches available for Tomcat 5.5.23

2007-06-22 Thread Cherie Barnes
Are there any patches available for the Apache Tomcat Application Server (downloaded from tomcat.apache.org)? I recently upgraded to 5.5.23 and find that there is a security flaw ( CVE-2007-2450 ) that needs to be fixed. I really do

RE: Multiple Contexts from single WAR

2007-06-22 Thread Caldarale, Charles R
> From: Johnny Kewl [mailto:[EMAIL PROTECTED] > Subject: Re: Multiple Contexts from single WAR > > > > Compile it and drop that WAR into Tomcats webapp (auto deploy) > > The context will be changed to TEST will it not? > Yes it does describe the thing in conf/Catalina/[host] > but its not

RE: Multiple Contexts from single WAR

2007-06-22 Thread Caldarale, Charles R
> From: Johnny Kewl [mailto:[EMAIL PROTECTED] > Subject: Re: Multiple Contexts from single WAR > > How does the user deploy it to get it like that, thanks, > we now know what cant be done, but given one WAR, how > would you deploy it to 3 contexts, as 3 web apps? Either do it manually (as I did

Configuring TOMCAT to use different ROOT context

2007-06-22 Thread Tent Pig
Hi everyone. I'm sorry if this seems like a newbie question, unfortunately I'm a complete neophyte when it comes to tomcat setup and configuration. I have a user who manages website content, setup and administration of the linux server falls upon me. On this web server my user has several website

Allowing users to deploy their own webapps within their home directories

2007-06-22 Thread Tim Booth
Hi, I don't know if this is possible, but I hope the list can give me an answer. I want to setup tomcat such that users can have webapps in their home directories. Now, I've managed to figure out how to get tomcat to do this for something like ~/public_html (in fact I've set it up for ~/tomcat a

naming trouble

2007-06-22 Thread Lorenzo Cerini
Hi all, i am experiencing a strange trouble in tomcat 5.5.23. I have two very similar webapps let's say app1 and app2. They lay in $TOMCAT/webapps/appX in both of them ther is a java class managing the connesction to dbserver, say: $TOMCAT/webapps/app1/WEB-INF/classes/servizio/Connessione_dyn

Re: Comet example Tomcat 6 not working.

2007-06-22 Thread Tony Winslow
Thank you! Things are moving now, but I still cannot see any actual effect yet! When I click the hyper-link Click to open chat windowhttp://127.0.0.1:8080/examples/jsp/chat/chat', 640, 480 ,0 ,0 ,0 ,0 ,0 ,1 ,10 ,10 )>, the browser says there is error! 2007/6/22, Ritesh Kumar <[EMAIL PROTECTED]>:

Re: Realm works; db connection does not?

2007-06-22 Thread Johnny Kewl
- Original Message - From: "Søren Blidorf" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Friday, June 22, 2007 1:32 PM Subject: Re: Realm works; db connection does not? Hi again. I do mean realm and the reason why I mention it is that I can validate users via my users and user

Re: Realm works; db connection does not?

2007-06-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Søren, Søren Blidorf wrote: > I do mean realm and the reason why I mention it is that I can validate users > via my users and user_roles in my db, so the connection should work I guess? That depends upon your connection settings. > >

Re: Multiple Contexts from single WAR

2007-06-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Johnny, Johnny Kewl wrote: > > > Compile it and drop that WAR into Tomcats webapp (auto deploy) They're not talking about auto-deploy. I think this part is confusing you. You're right: auto-deploy uses the name of the WAR file for the context path

Re: Multiple Contexts from single WAR

2007-06-22 Thread David kerber
I don't know if this is how it *should* be done, but I have gotten it to work by putting the context definitions in server.xml, and specifying both their context base and doc base. I never got it to work using any other technique, and I tried a bunch of iterations. Dave Johnny Kewl wrote:

Re: Internal Tomcat4/jk2/apache2 timeout after lengthy servlet processing?

2007-06-22 Thread Jess Holle
jk2 is unsupported and its usage is highly discouraged. All the good stuff from jk2 was ported to later mod_jk and mod_proxy_ajp releases. Thus grab and use the latest mod_jk if you're on Apache 2 or use mod_proxy_ajp on Apache 2.2. mod_jk's timeout is infinite by default, but for mod_proxy_

RE: Session Replication in Tomcat5.5.17

2007-06-22 Thread ShivKumar
Hi Thanks for ur reply. I did what u said but no luck. If possible send the tested code and all other relevent files to me? Any help regard this highly appreciated.. My Id is [EMAIL PROTECTED] Thanks Fiona Sariedine wrote: > > what this done with my problem > > -Oorspronkelijk bericht---

Internal Tomcat4/jk2/apache2 timeout after lengthy servlet processing?

2007-06-22 Thread Pablo Barrón
Hi!!! I've run into a configuration problem in a Tomcat4/jk2/Apache2 server (Debian Sarge 3.1), in which Java servlets are running to generate the webpages. There are some operations that need quite a lot of time of processing without user interaction (like, sending a newsletter to thousands of a

Re: Realm works; db connection does not?

2007-06-22 Thread Søren Blidorf
Hi again. I do mean realm and the reason why I mention it is that I can validate users via my users and user_roles in my db, so the connection should work I guess? Get the connection with: DriverManager.getConnection(connectionUrl, connectionUser,con

Re: Comet example Tomcat 6 not working.

2007-06-22 Thread Ritesh Kumar
To Tony: You need to use NIO Connectors. In your conf/server.xml file you need to replace the old Connector with NIO Connector. Replace with this: Hope this helps. Tony Winslow wrote: > > I visited http://localhost:8080/examples/jsp/chat/login.jsp and type > whatever Nickname it requires,

Re: m-earn makes your pocket jingle

2007-06-22 Thread Pid
Can an admin unsubscribe this user from the list please? I get enough spam already. p kranthi ghanta wrote: Hi, How do you like the idea of getting paid to receive SMS? m-earn promises you just that ! These messages would only contain offer and discounts based on your own interests. You als

Re: Realm works; db connection does not?

2007-06-22 Thread Johnny Kewl
Hi Søren, Not sure what you saying but arnt you confusing Realm and JNDI. ie the Realm is for your user and password dB and JNDI/DBCP is for you to do other stuff with your dB Think you almost there just check out http://localhost:8080/tomcat-docs/jndi-resources-howto.html on your system I

Re: Comet example Tomcat 6 not working.

2007-06-22 Thread Tony Winslow
I visited http://localhost:8080/examples/jsp/chat/login.jsp and type whatever Nickname it requires, but what I get is a page saying "Chat example only supports Comet processing". Then I checked the ChatServlet class and I know why I get that response which is written in service(). So what I want t

Re: How to write this elegantly in JSP/EL

2007-06-22 Thread ben short
I think the following should do you " width="" /> On 6/22/07, Johnny Kewl <[EMAIL PROTECTED]> wrote: Hi Nikola, never done it, but I think you have to override the resolver. ie instead of the standard resolver, which looks for standard properties or custom classes declared thru XML yours

Re: How to write this elegantly in JSP/EL

2007-06-22 Thread Johnny Kewl
Hi Nikola, never done it, but I think you have to override the resolver. ie instead of the standard resolver, which looks for standard properties or custom classes declared thru XML yours will tie to a class in your app. Managed to find an ok article maybe its enuf for you to find the

Re: Comet example Tomcat 6 not working.

2007-06-22 Thread Ritesh Kumar
To Tony: For running this e.g start Tomcat. Type URL: http://localhost:8080/examples/jsp/chat/login.jsp Running this example on Tomcat 6.0.13 has not proved of any assistance to me. It would be very nice if more explanation of this e.g is available. I have made one change in this e.g. It seems

Re: How to write this elegantly in JSP/EL

2007-06-22 Thread Rashmi Rubdi
On 6/22/07, Nikola Milutinovic <[EMAIL PROTECTED]> wrote: Hi all. This is not really TC related, but more JSP and EL question, but I thought I'd ask. I ask JSP, EL and JSTL questions here http://jakarta.apache.org/taglibs/ or http://forum.java.sun.com/forum.jspa?forumID=45 ---

m-earn makes your pocket jingle

2007-06-22 Thread kranthi ghanta
Hi, How do you like the idea of getting paid to receive SMS? m-earn promises you just that ! These messages would only contain offer and discounts based on your own interests. You also get to decide the number of ads you receive and their delivery times! Check out. http://www.m-earn.com/Beta/

How to write this elegantly in JSP/EL

2007-06-22 Thread Nikola Milutinovic
Hi all. This is not really TC related, but more JSP and EL question, but I thought I'd ask. I would like to have an elegant way of using constants from Java classes in EL. This is a relatively good illustration of what I am talking about. Take, for instance, a Spring controller. It has a metho

Realm works; db connection does not?

2007-06-22 Thread Søren Blidorf
Hi. My realm is working and is able to login to my app. When I try to do anything in the application that need connection to db, I get a white screen. Can anybody tell me the differance between the realm connection to the db and my applications connection to the db. I use: com.microsoft.sqlser

Re: FULLY OT: Re: Re[2]: Exchange Language

2007-06-22 Thread Tony Winslow
Where can I find more detailed materails covering Comet features added in Tomcat 6? 2007/6/22, Gregor Schneider <[EMAIL PROTECTED]>: Guys, this is FULLY OFF-TOPIC - would you mind using private mail rather than posting to this list? TIA Gregor -- what's puzzlin' you, is the nature of my game

Re: Multiple Contexts from single WAR

2007-06-22 Thread Johnny Kewl
Charles... How does the user deploy it to get it like that, thanks, we now know what cant be done, but given one WAR, how would you deploy it to 3 contexts, as 3 web apps? I believe the user can share it in a ROOT... if the reason for the context is merely url mapping. I believe the user can

RE: Is it possible to run multiple instances of Jboss Server on a single Windows 2k box

2007-06-22 Thread Raghupathy, Gurumoorthy
Yes it is which version of jboss ? If it is version 3.2.7 then you need to change 4 files ( xml ) for the port numbers and you will be fine :) If it is version 4.0.x then there is an example of how to configure multiple instances RTFM Regards, Guru -Original Message- From: s

Re: using mod_jk: how to set content-type

2007-06-22 Thread Richard Kaye
Yes, I understood Johnny's point about other uses for a filter even though it was somewhat off-topic. He is quite right about what I am trying to do. I've looked at it and can write a filter and get this going to solve my particular problem. I can't yet see how to write a reasonably powerful g

Re: Multiple Contexts from single WAR

2007-06-22 Thread Johnny Kewl
Ok, maybe I'm missing something, please show us how this works Make a Web App with the name TEST make the context path Compile it and drop that WAR into Tomcats webapp (auto deploy) The context will be changed to TEST will it not? Yes it does describe the thing in conf/Catalina/[host]

Tomcat clustering without multicasting

2007-06-22 Thread Vinu Varghese
Hi all, I am trying clustering with tomcat, but I have machines with multicast disabled. So is there any way to do clustering without multicasting, like use tcp for notifying member addition and removal ? Thanks in advance - regards Vinu -- Vinu Va

FULLY OT: Re: Re[2]: Exchange Language

2007-06-22 Thread Gregor Schneider
Guys, this is FULLY OFF-TOPIC - would you mind using private mail rather than posting to this list? TIA Gregor -- what's puzzlin' you, is the nature of my game gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B2 gpgp-key available @ http://pgpkeys.pca.dfn.de:11371