Hi Glen,

It works with both Unix and Windows . These codes are similar with codes in old wsdl2java .

Regards

Jim

Glen Mazza wrote:
Will the below all work with both Unix/Linux and Windows?  If not, I
think there is a System.getProperty(file.separator) or similar that can
be used.

Regards,
Glen


Am Mittwoch, den 29.08.2007, 09:13 +0000 schrieb [EMAIL PROTECTED]:
Author: ema
Date: Wed Aug 29 02:13:32 2007
New Revision: 570718

URL: http://svn.apache.org/viewvc?rev=570718&view=rev
Log:
[CXF-894]Initial commit for generating simple frontend server ,client
and wsdl


Added: 
incubator/cxf/trunk/tools/javato/ws/src/main/java/org/apache/cxf/tools/java2wsdl/processor/internal/simple/generator/SimpleClientGenerator.java
URL: 
http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/ws/src/main/java/org/apache/cxf/tools/java2wsdl/processor/internal/simple/generator/SimpleClientGenerator.java?rev=570718&view=auto
==============================================================================
+public class SimpleClientGenerator extends AbstractSimpleGenerator {
+
+    private static final String CLIENT_TEMPLATE = TEMPLATE_BASE + "/client.vm";
+

Added: 
incubator/cxf/trunk/tools/javato/ws/src/main/java/org/apache/cxf/tools/java2wsdl/processor/internal/simple/generator/SimpleImplGenerator.java
URL: 
http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/ws/src/main/java/org/apache/cxf/tools/java2wsdl/processor/internal/simple/generator/SimpleImplGenerator.java?rev=570718&view=auto
==============================================================================
+public class SimpleImplGenerator extends AbstractSimpleGenerator {
+
+    private static final String IMPL_TEMPLATE = TEMPLATE_BASE + "/impl.vm";
+

Added: 
incubator/cxf/trunk/tools/javato/ws/src/main/java/org/apache/cxf/tools/java2wsdl/processor/internal/simple/generator/SimpleSEIGenerator.java
URL: 
http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/ws/src/main/java/org/apache/cxf/tools/java2wsdl/processor/internal/simple/generator/SimpleSEIGenerator.java?rev=570718&view=auto
==============================================================================
+public class SimpleSEIGenerator extends AbstractSimpleGenerator {
+
+    private static final String SEI_TEMPLATE = TEMPLATE_BASE + "/sei.vm";
+

Added: 
incubator/cxf/trunk/tools/javato/ws/src/main/java/org/apache/cxf/tools/java2wsdl/processor/internal/simple/generator/SimpleServerGenerator.java
URL: 
http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/ws/src/main/java/org/apache/cxf/tools/java2wsdl/processor/internal/simple/generator/SimpleServerGenerator.java?rev=570718&view=auto
==============================================================================
+ */
+public class SimpleServerGenerator extends AbstractSimpleGenerator {
+
+    private static final String SERVER_TEMPLATE = TEMPLATE_BASE + "/server.vm";
+

Modified: 
incubator/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/java2ws/JavaToWSTest.java
URL: 
http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/java2ws/JavaToWSTest.java?rev=570718&r1=570717&r2=570718&view=diff
==============================================================================
--- 
incubator/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/java2ws/JavaToWSTest.java
 (original)
+++ 
incubator/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/java2ws/JavaToWSTest.java
 Wed Aug 29 02:13:32 2007
@@ -69,6 +69,18 @@
+        File wsdlFile = new File(output.getPath() + "/tmp.wsdl");




Reply via email to