DO NOT REPLY [Bug 47760] New: Ant deploy task's config attribute not working
https://issues.apache.org/bugzilla/show_bug.cgi?id=47760 Summary: Ant deploy task's config attribute not working Product: Tomcat 6 Version: 6.0.20 Platform: PC OS/Version: Windows XP Status: NEW Severity: normal Priority: P2 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: cmohan...@1sync.org --- Comment #0 from Chitharanjan Mohandas 2009-08-28 07:46:37 PDT --- I am trying to deploy a war into a remote tomcat instance. I am using the ant task DeployTask. The undeploy woks just fine. It deletes the exploaded war directory under the webapps and also the context descriptor under $CATALINA_BASE/conf/Catalina/localhost/pr.xml When the deploy task executes, it tries to deploy the webapp, however the context xml descriptor pr.xml does not get copied over. If I have the context xml fragment in server.xml, then I cannot use Undeploy or Deploy tasks. We need this feature to deploy the webapps to all our environments. present:${present} regds, Chiths -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 47760] Ant deploy task's config attribute not working
https://issues.apache.org/bugzilla/show_bug.cgi?id=47760 --- Comment #1 from Chitharanjan Mohandas 2009-08-28 08:16:54 PDT --- Created an attachment (id=24186) Context xml fragment of webapp This xml contains the xml fragment for the webapp -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 47760] Ant deploy task's config attribute not working
https://issues.apache.org/bugzilla/show_bug.cgi?id=47760 Chitharanjan Mohandas changed: What|Removed |Added CC||cmohan...@1sync.org -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r808985 - /tomcat/native/trunk/native/src/ssl.c
Author: mturk Date: Fri Aug 28 18:54:27 2009 New Revision: 808985 URL: http://svn.apache.org/viewvc?rev=808985&view=rev Log: Fix #42728 by not using the apr_os_thread_current. WIN32 implementation calls DuplicateHandle and OpenSSL uses this callback in DLL_THREAD_DETACH, meaning that the handles will leak for each created thread Modified: tomcat/native/trunk/native/src/ssl.c Modified: tomcat/native/trunk/native/src/ssl.c URL: http://svn.apache.org/viewvc/tomcat/native/trunk/native/src/ssl.c?rev=808985&r1=808984&r2=808985&view=diff == --- tomcat/native/trunk/native/src/ssl.c (original) +++ tomcat/native/trunk/native/src/ssl.c Fri Aug 28 18:54:27 2009 @@ -203,6 +203,8 @@ } *psaptr = 0; return psaptr->PSATOLD; +#elif defined(WIN32) +return (unsigned long)GetCurrentThreadId(); #else return (unsigned long)(apr_os_thread_current()); #endif - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 47700] Javadocs (html doc for Java files) should be part of the build.xml
https://issues.apache.org/bugzilla/show_bug.cgi?id=47700 --- Comment #2 from Konstantin Kolinko 2009-08-28 19:38:57 PDT --- Please note, that "dist-javadoc" target in dist.xml is already used to generate the javadocs. I think that is where it should stay. I do not like the idea of having it in build.xml. If you want to change formatting that it produces, or anything else, in javadoc or deliveries, patches are welcome. http://www.apache.org/dev/contributors.html#patches Some comments on the proposed text > TitleGoesHere > Copyright © 2009 Tomcat cats. Hm.. > http://developer.java.sun.com/developer/products/xml/docs/api/ Wrong address -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org