1
22
23 package com.liferay.portal.tools;
24
25 import com.liferay.portal.kernel.xml.Document;
26 import com.liferay.portal.kernel.xml.Element;
27 import com.liferay.portal.kernel.xml.SAXReaderUtil;
28 import com.liferay.portal.util.InitUtil;
29 import com.liferay.util.ant.Wsdl2JavaTask;
30
31 import java.io.File;
32
33 import java.util.Iterator;
34
35
40 public class PortalClientBuilder {
41
42 public static void main(String[] args) {
43 InitUtil.initWithSpring();
44
45 if (args.length == 4) {
46 new PortalClientBuilder(args[0], args[1], args[2], args[3]);
47 }
48 else {
49 throw new IllegalArgumentException();
50 }
51 }
52
53 public PortalClientBuilder(
54 String fileName, String outputDir, String mappingFile, String url) {
55
56 try {
57 Document doc = SAXReaderUtil.read(new File(fileName));
58
59 Element root = doc.getRootElement();
60
61 Iterator<Element> itr = root.elements("service").iterator();
62
63 while (itr.hasNext()) {
64 Element service = itr.next();
65
66 String name = service.attributeValue("name");
67
68 if (name.startsWith("Portal_") || name.startsWith("Portlet_")) {
69 Wsdl2JavaTask.generateJava(
70 url + "/" + name + "?wsdl", outputDir, mappingFile);
71 }
72 }
73 }
74 catch (Exception e) {
75 e.printStackTrace();
76 }
77
78 File testNamespace = new File(outputDir + "/com/liferay/portal");
79
80 if (testNamespace.exists()) {
81 throw new RuntimeException(
82 "Please update " + mappingFile + " to namespace " +
83 "com.liferay.portal to com.liferay.client.soap.portal");
84 }
85 }
86
87 }