serving file name in unicode

2005-08-10 Thread Arun Prasad R
hi there, im facing problem in tomcat serving a file with unicode name. pls help in this regard thanks in advance, arun

Re: Servlet Streaming file to client: Can't override file name

2005-03-14 Thread Jon Wingfield
to client: Can't override file name 123049 by: Mark Leone Its an HTTP header you are looking for, try this: response.setHeader(Content-Disposition, attachment; filename= + theFile.getName()); Chris - To unsubscribe, e-mail: [EMAIL

Re: Servlet Streaming file to client: Can't override file name

2005-03-13 Thread Chris Hyzer
Servlet Streaming file to client: Can't override file name 123049 by: Mark Leone Its an HTTP header you are looking for, try this: response.setHeader(Content-Disposition, attachment; filename= + theFile.getName()); Chris

Re: Servlet Streaming file to client: Can't override file name

2005-03-13 Thread Mark Leone
Thanks. That's exactly what I needed, and it did the trick. Firefox browser just grabs the first non-whitespace part of the name, but in IE the entire name shows up. Thanks again. -Mark Chris Hyzer wrote: Servlet Streaming file to client: Can't override file name 123049 by: Mark Leone

Servlet Streaming file to client: Can't override file name

2005-03-12 Thread Mark Leone
. The HttpServletResponse object that Tomcat passes to the servlet provides access to an OutputStream object, and I see no way to set the filename with an object of that class. If Tomcat passed a FileOutputStream object (child of OutputStream), I could call a constructor that sets the file name or file

setting download file name

2005-03-06 Thread Dr NoName
(); } ostr.close(); } % This works but when the user clicks the link, the save file dialog's default file name is audio_download.jsp. I want it to be a dynamically generated zip file name (something like 087_latest_audio.zip). How do I do that? Or is this the wrong approach

Re: setting download file name

2005-03-06 Thread Darren Govoni
); ostr.putNextEntry( new ZipEntry(file_name) ); CFunctions.copyStream(istr, ostr); istr.close(); } ostr.close(); } % This works but when the user clicks the link, the save file dialog's default file name is audio_download.jsp. I want

Re: setting download file name

2005-03-06 Thread Dr NoName
(); } % This works but when the user clicks the link, the save file dialog's default file name is audio_download.jsp. I want it to be a dynamically generated zip file name (something like 087_latest_audio.zip). How do I do that? Or is this the wrong approach? thanks in advance, Eugene

RE: Tomcat 5.5.4 - Using a Context.xml File With a Path Different Than The File Name

2005-01-12 Thread Matt Mejaski
List Cc: [EMAIL PROTECTED] Subject: RE: Tomcat 5.5.4 - Using a Context.xml File With a Path Different Than The File Name Try naming the second context file myapp#savedfiles.xml; that should result in startup deployment to the correct context path. Benjamin J. Armintor Operations Systems

Tomcat 5.5.4 - Using a Context.xml File With a Path Different Than The File Name

2005-01-11 Thread Matt Mejaski
Hi all, Using Tomcat 5.0.30, I had two Contexts for webapps set up as follows. Context 1, loaded from file: Tomcat Home/conf/Catalina/localhost/myapp.xml : Context path=/myapp docBase=myapp cookies=true debug=0 reloadable=false / Context 2, loaded from file: Tomcat

Re: Tomcat 5.5.4 - Using a Context.xml File With a Path Different Than The File Name

2005-01-11 Thread Parsons Technical Services
%20Deployment Someone slap me if I am wrong here. Doug - Original Message - From: Matt Mejaski [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Sent: Tuesday, January 11, 2005 10:30 AM Subject: Tomcat 5.5.4 - Using a Context.xml File With a Path Different Than The File Name Hi all, Using

RE: Tomcat 5.5.4 - Using a Context.xml File With a Path Different Than The File Name

2005-01-11 Thread Matt Mejaski
needed? By using the Tomcat manager? Matt -Original Message- From: Parsons Technical Services [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 11, 2005 11:37 AM To: Tomcat Users List Subject: Re: Tomcat 5.5.4 - Using a Context.xml File With a Path Different Than The File Name If you

Re: Tomcat 5.5.4 - Using a Context.xml File With a Path Different Than The File Name

2005-01-11 Thread Parsons Technical Services
Users List' tomcat-user@jakarta.apache.org Sent: Tuesday, January 11, 2005 3:00 PM Subject: RE: Tomcat 5.5.4 - Using a Context.xml File With a Path Different Than The File Name I still need some type of auto-deployment, though. The app won't be deployed twice because Tomcat only knows about

RE: Tomcat 5.5.4 - Using a Context.xml File With a Path Different Than The File Name

2005-01-11 Thread Benjamin Armintor
] -Original Message- From: Matt Mejaski [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 11, 2005 9:31 AM To: tomcat-user@jakarta.apache.org Subject: Tomcat 5.5.4 - Using a Context.xml File With a Path Different Than The File Name Hi all, Using Tomcat 5.0.30, I had two Contexts for webapps set up

Why JNDI ResourceLink not resolved, if .war file name doesn't match context path in Tomcat 5.0.28 ?

2004-11-10 Thread Michael Echerer
only if the .war name resp. the webapps dir name match the deployment descriptor's path. Can anyone confirm this or explain this behaviour to me? --- Moreover wouldn't it be a good idea to have the context's path attribute optional when using META-INF/context.xml and use the war file name

RE: Why JNDI ResourceLink not resolved, if .war file name doesn't match context path in Tomcat 5.0.28 ?

2004-11-10 Thread Shapira, Yoav
is, and this is not a significant use-case. Yoav Shapira http://www.yoavshapira.com -Original Message- From: Michael Echerer [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 10, 2004 8:43 AM To: Tomcat Users List Subject: Why JNDI ResourceLink not resolved, if .war file name doesn't match

Tomcat 4.1.29 - Special chars in a file name

2004-08-31 Thread Surendra Kumar
Hi I am using Tomcat 4.1.29 + Apache 1.3.31. In one of my webapp i have a file named test+.gif When i try to access this gif file, tomcat throws resource not available message. All other gif files in the same dir are accessible. Even the directory listing shows the file is available.

Re: Tomcat 4.1.29 - Special chars in a file name

2004-08-31 Thread Greg Ward
On 31 August 2004, Surendra Kumar said: Hi I am using Tomcat 4.1.29 + Apache 1.3.31. In one of my webapp i have a file named test+.gif Probably a URL encoding problem -- if a web page includes a href=test+.gif then the browser will ask for test .gif, because test+.gif is one of the

Re: Tomcat 4.1.29 - Special chars in a file name

2004-08-31 Thread Surendra Kumar
] Sent: Tuesday, August 31, 2004 8:02 PM Subject: Re: Tomcat 4.1.29 - Special chars in a file name On 31 August 2004, Surendra Kumar said: Hi I am using Tomcat 4.1.29 + Apache 1.3.31. In one of my webapp i have a file named test+.gif Probably a URL encoding problem -- if a web page includes

RE: Reading war file name from servlet?

2004-02-19 Thread Shapira, Yoav
Howdy, You can't. Yoav Shapira Millennium ChemInformatics -Original Message- From: Erlandsson Martin [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 1:58 AM To: Tomcat Users List Subject: Reading war file name from servlet? Hi list. I have a bunch of similar servlets

Reading war file name from servlet?

2004-02-18 Thread Erlandsson Martin
Hi list. I have a bunch of similar servlets for which I would like to set up configuration directories. These paths should ideally be based on the names of the different war files. How can I retreive the war file name or the context path (or docBase) of a servlet from _within_ that servlet

apache 2.0.43 does not redirect requests to tomcat when the file name is not .jsp

2003-03-27 Thread Jonas Eriksson
Hi We are useing jk2 with tomcat 4.1 and it works fine when we use filenames with ext. .jsp But it does not work with servlers or a directories. Apache servs the request and not tomcat. We have looked at the manuals but we can only find how to set it up to work with mod_jk and not jk2. So how

Tomcat4 - Not use date in Logger Element File Name?

2003-03-12 Thread Montz, James C. (James Tower)
in the logfile get a timestamp, not the file name itself. Thank you in advance! James C. MontzRHCE Hosting Services Engineer James Tower Phone: (507)-344-5435 E-Mail: mailto:[EMAIL PROTECTED] http://www.jamestower.com Hosting Services: [EMAIL PROTECTED] -Original

Re: Tomcat4 - Not use date in Logger Element File Name?

2003-03-12 Thread Tim Funk
such as logrotate useless. Note: Timestamp=true defines whether messages in the logfile get a timestamp, not the file name itself. Thank you in advance! James C. MontzRHCE Hosting Services Engineer James Tower Phone: (507)-344-5435 E-Mail: mailto:[EMAIL PROTECTED] http

file name

2003-01-14 Thread Felipe Schnack
I have a servlet that generates pdf files on the fly but when the browser opens the save as... dialog, the suggested default filename is my servlet's URL... I would like it to suggest another file name, how can i do that? -- Felipe Schnack Analista de Sistemas [EMAIL PROTECTED] Cel.: (51

AW: file name

2003-01-14 Thread Holger Klein-Altstedde
); String origfile = DLBean.getColumn(origfilename); String mimetype = DLBean.getColumn(mimetype); //read the file name. savepath+=file; File f = new File (savepath); //set the content type(can be excel/word/powerpoint etc..) response.setContentType

Re: file name

2003-01-14 Thread Andoni
response.setHeader(Content-Disposition, attachment; filename=SuggestedFileName.pdf); - Original Message - From: Felipe Schnack [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, January 14, 2003 10:37 AM Subject: file name I have a servlet that generates pdf

Re: file name

2003-01-14 Thread Cédric Viaud
Users List [EMAIL PROTECTED] Sent: Tuesday, January 14, 2003 11:37 AM Subject: file name I have a servlet that generates pdf files on the fly but when the browser opens the save as... dialog, the suggested default filename is my servlet's URL... I would like it to suggest another file name

Re: file name

2003-01-14 Thread Felipe Schnack
ago on this list. Regards, Cédric - Original Message - From: Felipe Schnack [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, January 14, 2003 11:37 AM Subject: file name I have a servlet that generates pdf files on the fly but when

Re: file name

2003-01-14 Thread Neginder Singh
From: Andoni [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: file name Date: Tue, 14 Jan 2003 10:56:54 - response.setHeader(Content-Disposition, attachment; filename=SuggestedFileName.pdf); - Original Message

RE: Changed file name now webapp not working right [RBS2003010600002295]

2003-01-06 Thread Turner, John
they are using is well-behaved enough to understand that it should only reply to each new thread with one message instead of one message for the thread itself and every reply in that thread. John -Original Message- From: Raj To: Tomcat Users List Sent: 1/6/03 12:38 AM Subject: Re: Changed file name

Re: Changed file name now webapp not working right [RBS2003010600002295]

2003-01-06 Thread Erik Price
Turner, John wrote: We're just lucky the tech support app they are using is well-behaved enough to understand that it should only reply to each new thread with one message instead of one message for the thread itself and every reply in that thread. Is there not someone with some kind of

Changed file name now webapp not working right

2003-01-05 Thread Denise Mangano
info on form is correct it is still calling Retry.jsp and I get stuck in a never ending loop in Retry.jsp - even though there are no error messages... Could changing the file name be the cause of this? Its as thought the if (formBean.validate) always fails... but I don't think the problem is my bean

RE: Changed file name now webapp not working right

2003-01-05 Thread Noel J. Bergman
Denise, The front end is/was FormValidate.jsp/CCProcess.jsp, which forwards to Verify.jsp or Retry.jsp? You renamed it, and now when you submit the form you never get to Verify.jsp? You are saying that when Retry.jsp submits the form, the form action is CCProcess.jsp? Have you put any log code

RE: Changed file name now webapp not working right [RBS2003010500005512]

2003-01-05 Thread techassistance
Ahoy there! This is an automated response, to let you know that we have received your query and will answer your email as soon as possible. We know you'd like to get back to playing our state-of-the-art online games. We'd therefore like to assure you that we are determined to keep our service at

RE: Changed file name now webapp not working right

2003-01-05 Thread Denise Mangano
after the rename I never get to Verify.jsp. The action of Retry.jsp is CCProcess.jsp. What is completely boggling my mind is that it was working perfectly before I changed the file name :( Well I guess its true what they say, if its not broke... And I feel pretty dumb saying this, but I do not know

RE: Changed file name now webapp not working right

2003-01-05 Thread Noel J. Bergman
Mangano [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 05, 2003 21:31 To: 'Noel J. Bergman '; 'Tomcat Users List ' Subject: RE: Changed file name now webapp not working right Noel, I even tried changing everything back to FormValidate.jsp and it still doesn't work... Yes, your scenario

RE: Changed file name now webapp not working right

2003-01-05 Thread Denise Mangano
-Original Message- From: Denise Mangano [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 05, 2003 21:31 To: 'Noel J. Bergman '; 'Tomcat Users List ' Subject: RE: Changed file name now webapp not working right Noel, I even tried changing everything back to FormValidate.jsp and it still doesn't

RE: Changed file name now webapp not working right

2003-01-05 Thread Denise Mangano
Thanks. Denise -Original Message- From: Denise Mangano [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 05, 2003 11:51 PM To: 'Tomcat Users List' Subject: RE: Changed file name now webapp not working right Noel, I did as you suggested, and the strangest things are happening

RE: Changed file name now webapp not working right

2003-01-05 Thread Noel J. Bergman
will be in transit all day tomorrow, but if I get them before I leave, I can run on my laptop. --- Noel -Original Message- From: Denise Mangano [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 0:05 To: 'Tomcat Users List' Subject: RE: Changed file name now webapp not working

RE: Changed file name now webapp not working right [RBS2003010600002295]

2003-01-05 Thread techassistance
Ahoy there! This is an automated response, to let you know that we have received your query and will answer your email as soon as possible. We know you'd like to get back to playing our state-of-the-art online games. We'd therefore like to assure you that we are determined to keep our service at

Re: Changed file name now webapp not working right [RBS2003010600002295]

2003-01-05 Thread Raj
Is this some kind of spam? Do we ever get any responses from these people? - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, January 06, 2003 11:07 AM Subject: RE: Changed file name now webapp not working right [RBS200301062295] Ahoy

RE: Changed file name now webapp not working right

2003-01-05 Thread Noel J. Bergman
- From: Denise Mangano [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 05, 2003 23:51 To: 'Tomcat Users List' Subject: RE: Changed file name now webapp not working right Noel, I did as you suggested, and the strangest things are happening!! This is my CCProcess.jsp: %@ page import=java.util

RE: Changed file name now webapp not working right

2003-01-05 Thread Denise Mangano
Subject: RE: Changed file name now webapp not working right Denise, That almost looks like either Verify is forwarding to Retry or both forward actions are being invoked. Neither should be the case. For kicks, I tried my own version (didn't write a fake bean or form): CCProcess.jsp: %@ page

RE: Changed file name now webapp not working right

2003-01-05 Thread Noel J. Bergman
Denise, As long as it works. :-) No worries. --- Noel -Original Message- From: Denise Mangano [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 1:40 To: 'Noel J. Bergman '; 'Tomcat Users List ' Subject: RE: Changed file name now webapp not working right Wow I think I

Special character in file name

2002-12-29 Thread Arcadius A.
tell the people not to use special characters in their file name. Thanks Arcadius. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Problem with File name in Japanese.

2002-10-18 Thread Himansu P. -CTD ,Chennai.
Hi, (BI am using Tomcat 4.0.1 .I am getting problem while trying to open a (Bdocument with Japanese characters in the file name. The server is showing (B"404-Resource not found exception". (BDo I need to change any server configuration so as to support URL with (BJapanese character

RE: Way to remove index page file name from URL?

2002-06-19 Thread Dennis van den Berg
:19 To: Tomcat Mailing List Subject: Way to remove index page file name from URL? I have a web app with a few servlets. One of these servlets I'd like to be the default servlet - basically it should handle any request that the other servlets don't handle, or that isn't for an image file or other

Way to remove index page file name from URL?

2002-06-18 Thread Chris Bailey
I have a web app with a few servlets. One of these servlets I'd like to be the default servlet - basically it should handle any request that the other servlets don't handle, or that isn't for an image file or other resource. So far, I've set this up by mapping a special index/welcome page name

How to change file name.

2001-06-30 Thread Tuukk4 |[:)-| p4s4n3n
Hi, Explanation (make understanding easier): User X want to servlet greated image. Servlet name is GreateImage. Prorammer wants picture name to be created.png but browser supposes it to be GreatImage ( not more not less ) because servlet name is it. So how to make it to created.png?? It

RE: *** Generated Tomcat Temporary Class File Name Seem Too Long... Yes ***

2001-02-15 Thread Xavier
, the generated file names are very short !!! But thanks anyway, cheers, Xav -Original Message- From: Samson, Lyndon [IT] [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 6:26 PM To: [EMAIL PROTECTED] Subject: RE: *** Generated Tomcat Temporary Class File Name Seem Too Long... Yes

RE: WinNT file name too long - JSP File naming algorithm

2001-02-13 Thread Marc Saegesser
PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 12:54 PM To: [EMAIL PROTECTED] Subject: WinNT file name too long - JSP File naming algorithm I am trying to bypass the problem Tomcat 3.2.1 has when it attempts to create file names under the 'work' directory that contain too

RE: *** Generated Tomcat Temporary Class File Name Seem Too Long... Yes ***

2001-02-12 Thread Xavier
Thanks for your answer but anyway it does not work When I try to copy the .java file to the place in which I expect the .class file Windows NT refuses to copy the file because the file name is too long. That is really bad... I know that it is a problem of NT but that is really crap that we

RE: *** Generated Tomcat Temporary Class File Name Seem TooLong. .. Yes ***

2001-02-12 Thread John Golubenko
Tomcat Temporary Class File Name Seem Too Long... Yes *** Thanks for your answer but anyway it does not work When I try to copy the .java file to the place in which I expect the .class file Windows NT refuses to copy the file because the file name is too long. That is really bad... I know

Re: *** Generated Tomcat Temporary Class File Name Seem TooLong. .. Yes ***

2001-02-12 Thread Alex Fernández
the source code, modify it, and compile your own copy of Tomcat! What's the deal? -Original Message- From: Xavier [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 1:45 AM To: [EMAIL PROTECTED] Subject: RE: *** Generated Tomcat Temporary Class File Name Seem Too Long... Yes

RE: *** Generated Tomcat Temporary Class File Name SeemTooLong. .. Yes ***

2001-02-12 Thread John Golubenko
Don't worry, I've read it. Here is the copy for you, if you didn't. There is clearly written that you can modify the source code, and redistribute or use it. Just like I said in previus email, that it's legal to modify the source code, (file name generation) and compile it back. While it's

Re: *** Generated Tomcat Temporary Class File Name SeemTooLong. .. Yes ***

2001-02-12 Thread Alex Fernández
read it. Here is the copy for you, if you didn't. There is clearly written that you can modify the source code, and redistribute or use it. Just like I said in previus email, that it's legal to modify the source code, (file name generation) and compile it back. While it's still true, i don't know

RE: *** Generated Tomcat Temporary Class File Name Seem Too Long... Yes ***

2001-02-12 Thread Samson, Lyndon [IT]
: *** Generated Tomcat Temporary Class File Name Seem Too Long... Yes *** Hi Everybody, Please Help Help Help... Yes, the class file names generated by Tomcat seem to be too long to be written on the disk. In fact I have got this error message: Context log: path="" Error in jsp service(

RE: *** Generated Tomcat Temporary Class File Name SeemTooLong.. . Yes ***

2001-02-12 Thread John Golubenko
9:10 AM To: [EMAIL PROTECTED] Subject: Re: *** Generated Tomcat Temporary Class File Name SeemTooLong. .. Yes *** John, don't get jumpy. This is not one of your flame wars. GNU's Not Unix. Apache's not GNU. The Apache Group is not GNU. And the GPL (Gnu Public License) is not the Apache License

Re: *** Generated Tomcat Temporary Class File Name SeemTooLong.. . Yes ***

2001-02-12 Thread Alex Fernández
Message- From: Alex Fernndez [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 9:10 AM To: [EMAIL PROTECTED] Subject: Re: *** Generated Tomcat Temporary Class File Name SeemTooLong. .. Yes *** John, don't get jumpy. This is not one of your flame wars. GNU's Not Unix. Apache's

*** Generated Tomcat Temporary Class File Name Seem Too Long... Yes ***

2001-02-08 Thread Xavier
f behavior ? How can I change the way Tomcat generate the file name ? Any idea are welcome !!! Thanks a lot. Xavier - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: *** Generated Tomcat Temporary Class File Name Seem Too Long... Yes ***

2001-02-08 Thread Vikramjit Singh
Class File Name Seem Too Long... Yes *** Hi Everybody, Please Help Help Help... Yes, the class file names generated by Tomcat seem to be too long to be written on the disk. In fact I have got this error message: Context log: path="" Error in jsp service() : Unable to com

Re : extracting jsp file name

2001-02-01 Thread Kief Morris
Shahed Ali typed the following on 04:41 PM 1/31/2001 -0600 I have a MVC framework in which all jsp pages post data to a controller servlet. In this servlet, I need to findout which jsp page invoked it. Currently I am passing a hidden variable with value="/callingpage.jsp" ... I want to replace

Re : extracting jsp file name

2001-02-01 Thread Shahed Ali
Sorry for the confusion. I have a MVC framework in which all jsp pages post data to a controller servlet. In this servlet, I need to findout which jsp page invoked it. Currently I am passing a hidden variable with value="/callingpage.jsp" i.e in calling.jsp I have the code fragment

default file name in download

2001-01-17 Thread cga
Hi there, I am doing a servlet that presents the output in two flawors. The first one is a html page, I use a jsp. The second one is a downloable file which I generate throught a jsp. Changing the content-type is easy. But I would like to give the file a download name. I mean, when the

Re: default file name in download

2001-01-17 Thread Nagappan A
Hello, Contact this 2 mailto:[EMAIL PROTECTED] He, has done this. - Original Message - From: cga [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 18, 2001 10:13 AM Subject: default file name in download Hi there, I am doing a servlet that presents the output

RE: default file name in download

2001-01-17 Thread Tõnu Põld
uot;, "filename=MyFilename.rtf"); ... } } Regards, Tnu -Original Message- From: cga [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 18, 2001 6:44 AM To: [EMAIL PROTECTED] Subject: default file name in download Hi there, I am doing a servlet that presents the

File-Name-Spaces

2000-11-14 Thread Craig May
Hi, I can't seem to get a file of the server if it's name contains spaces. Is there a work-around for this? Regards, Craig May Enth Dimension http://www.enthdimension.com.au

Re: File-Name-Spaces

2000-11-14 Thread dynacomconsulting
Hi, U must encode the filenames.EncodeUrl etc functions will support.Pl check Bye, Ravi Dynacom --- Craig May [EMAIL PROTECTED] wrote: Hi, I can't seem to get a file of the server if it's name contains spaces. Is there a work-around for this? Regards, Craig May Enth Dimension