Package org.apache.airavata.schemas.gfac

Examples of org.apache.airavata.schemas.gfac.ServiceType


    }

    public String getWSDL(ServiceDescription service) throws Exception{
        try {
           
            ServiceType type = service.getType().addNewService();
            ServiceName name = type.addNewServiceName();
            name.setStringValue(service.getType().getName());
            name.setTargetNamespace("http://schemas.airavata.apache.org/gfac/type");
            if(service.getType().getPortType() == null){
                PortTypeType portType = service.getType().addNewPortType();
                MethodType methodType = portType.addNewMethod();
View Full Code Here


    }

    public String getWSDL(ServiceDescription service) {
        try {
           
            ServiceType type = service.getType().addNewService();
            ServiceName name = type.addNewServiceName();
            name.setStringValue(service.getType().getName());
            name.setTargetNamespace("http://schemas.airavata.apache.org/gfac/type");
           
            PortTypeType portType = service.getType().addNewPortType();
            MethodType methodType = portType.addNewMethod();
View Full Code Here

    }

    public String getWSDL(ServiceDescription service) throws Exception{
        try {
           
            ServiceType type = service.getType().addNewService();
            ServiceName name = type.addNewServiceName();
            name.setStringValue(service.getType().getName());
            name.setTargetNamespace("http://schemas.airavata.apache.org/gfac/type");
            if(service.getType().getPortType() == null){
                PortTypeType portType = service.getType().addNewPortType();
                MethodType methodType = portType.addNewMethod();
View Full Code Here

TOP

Related Classes of org.apache.airavata.schemas.gfac.ServiceType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.