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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to