001: /*
002: * ====================================================================
003: *
004: * XFLOW - Process Management System
005: * Copyright (C) 2003 Rob Tan
006: * All rights reserved.
007: *
008: * Redistribution and use in source and binary forms, with or without
009: * modification, are permitted provided that the following conditions
010: * are met:
011: *
012: * 1. Redistributions of source code must retain the above copyright
013: * notice, this list of conditions, and the following disclaimer.
014: *
015: * 2. Redistributions in binary form must reproduce the above copyright
016: * notice, this list of conditions, and the disclaimer that follows
017: * these conditions in the documentation and/or other materials
018: * provided with the distribution.
019: *
020: * 3. The name "XFlow" must not be used to endorse or promote products
021: * derived from this software without prior written permission. For
022: * written permission, please contact rcktan@yahoo.com
023: *
024: * 4. Products derived from this software may not be called "XFlow", nor
025: * may "XFlow" appear in their name, without prior written permission
026: * from the XFlow Project Management (rcktan@yahoo.com)
027: *
028: * In addition, we request (but do not require) that you include in the
029: * end-user documentation provided with the redistribution and/or in the
030: * software itself an acknowledgement equivalent to the following:
031: * "This product includes software developed by the
032: * XFlow Project (http://xflow.sourceforge.net/)."
033: * Alternatively, the acknowledgment may be graphical using the logos
034: * available at http://xflow.sourceforge.net/
035: *
036: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
037: * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
038: * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
039: * DISCLAIMED. IN NO EVENT SHALL THE XFLOW AUTHORS OR THE PROJECT
040: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
041: * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
042: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
043: * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
044: * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
045: * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
046: * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
047: * SUCH DAMAGE.
048: *
049: * ====================================================================
050: * This software consists of voluntary contributions made by many
051: * individuals on behalf of the XFlow Project and was originally
052: * created by Rob Tan (rcktan@yahoo.com)
053: * For more information on the XFlow Project, please see:
054: * <http://xflow.sourceforge.net/>.
055: * ====================================================================
056: */
057:
058: package xflow.test;
059:
060: import org.apache.axis.client.Call;
061: import org.apache.axis.client.Service;
062: import org.apache.axis.encoding.XMLType;
063: import org.apache.axis.encoding.ser.BeanSerializerFactory;
064: import org.apache.axis.encoding.ser.BeanDeserializerFactory;
065: import org.apache.axis.utils.Options;
066: import javax.xml.namespace.QName;
067: import javax.xml.rpc.ParameterMode;
068:
069: import xflow.common.*;
070: import xflow.security.*;
071:
072: public class StartWorkflowWS {
073: public static void main(String[] args) throws Exception {
074:
075: String endpoint = "http://localhost:8080/axis/services/XflowService";
076: String method = "startWorkflow";
077: Service service = new Service();
078: Call call = (Call) service.createCall();
079:
080: QName qn = new QName("urn:XflowService", "WorkItemId");
081:
082: call.registerTypeMapping(WorkItemId.class, qn,
083: new BeanSerializerFactory(WorkItemId.class, qn),
084: new BeanDeserializerFactory(WorkItemId.class, qn));
085:
086: qn = new QName("urn:XflowService", "WorkflowId");
087: call.registerTypeMapping(WorkItemId.class, qn,
088: new BeanSerializerFactory(WorkflowId.class, qn),
089: new BeanDeserializerFactory(WorkflowId.class, qn));
090:
091: QName qn1 = new QName("urn:XflowService", "WorkItem");
092: call.registerTypeMapping(WorkItem.class, qn1,
093: new BeanSerializerFactory(WorkItem.class, qn1),
094: new BeanDeserializerFactory(WorkItem.class, qn1));
095:
096: QName qn2 = new QName("urn:XflowService", "User");
097: call.registerTypeMapping(User.class, qn2,
098: new BeanSerializerFactory(User.class, qn2),
099: new BeanDeserializerFactory(User.class, qn2));
100:
101: call.setTargetEndpointAddress(new java.net.URL(endpoint));
102: call.setOperationName(method);
103: call.addParameter("op1", XMLType.XSD_STRING, ParameterMode.IN);
104: call.addParameter("op2", XMLType.XSD_INT, ParameterMode.IN);
105: call.addParameter("op3", qn1, ParameterMode.IN);
106: call.addParameter("op4", qn2, ParameterMode.IN);
107:
108: String workflowName = args[0];
109: Integer version = new Integer(-1);
110: WorkItem witem = new WorkItem();
111: witem.setPayload(new Integer(1));
112: witem.setPayloadType(WorkItem.JAVA_OBJECT);
113: User user = new User("foo", "foo");
114: call
115: .invoke(new Object[] { workflowName, version, witem,
116: user });
117:
118: System.out.println("Workflow started.");
119: }
120: }
|