You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by de...@apache.org on 2006/07/12 07:42:40 UTC

svn commit: r421139 - /webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/util/Utils.java

Author: deepal
Date: Tue Jul 11 22:42:40 2006
New Revision: 421139

URL: http://svn.apache.org/viewvc?rev=421139&view=rev
Log:
- fixing http://issues.apache.org/jira/browse/AXIS2-709

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/util/Utils.java

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/util/Utils.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/util/Utils.java?rev=421139&r1=421138&r2=421139&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/util/Utils.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/util/Utils.java Tue Jul 11 22:42:40 2006
@@ -127,6 +127,7 @@
     public static File createTempFile(String suffix, InputStream in) throws IOException {
         byte data[] = new byte[2048];
         int count;
+        new File(System.getProperty("java.io.tmpdir")).mkdirs();
         File f = File.createTempFile("axis2", suffix);
         f.deleteOnExit();
         FileOutputStream out = new FileOutputStream(f);



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org