View Javadoc

1   /*
2    *  soapUI, copyright (C) 2004-2010 eviware.com 
3    *
4    *  soapUI is free software; you can redistribute it and/or modify it under the 
5    *  terms of version 2.1 of the GNU Lesser General Public License as published by 
6    *  the Free Software Foundation.
7    *
8    *  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
9    *  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
10   *  See the GNU Lesser General Public License for more details at gnu.org.
11   */
12  
13  package com.eviware.soapui.impl.wsdl.support.soap;
14  
15  import java.util.Collections;
16  import java.util.Iterator;
17  import java.util.List;
18  
19  import javax.wsdl.Binding;
20  import javax.wsdl.BindingOperation;
21  import javax.wsdl.extensions.soap.SOAPBinding;
22  
23  import org.apache.log4j.Logger;
24  
25  import com.eviware.soapui.impl.WsdlInterfaceFactory;
26  import com.eviware.soapui.impl.wsdl.WsdlInterface;
27  import com.eviware.soapui.impl.wsdl.WsdlProject;
28  import com.eviware.soapui.impl.wsdl.support.Constants;
29  import com.eviware.soapui.impl.wsdl.support.wsdl.WsdlContext;
30  import com.eviware.soapui.impl.wsdl.support.wsdl.WsdlUtils;
31  import com.eviware.soapui.settings.WsdlSettings;
32  
33  /***
34   * BindingImporter that can import a WsdlInterface from an SOAP 1.1/HTTP binding
35   * 
36   * @author Ole.Matzura
37   */
38  
39  public class Soap11HttpBindingImporter extends AbstractSoapBindingImporter
40  {
41  	private final static Logger log = Logger.getLogger( Soap11HttpBindingImporter.class );
42  
43  	public boolean canImport( Binding binding )
44  	{
45  		List<?> list = binding.getExtensibilityElements();
46  		SOAPBinding soapBinding = WsdlUtils.getExtensiblityElement( list, SOAPBinding.class );
47  		return soapBinding == null ? false : soapBinding.getTransportURI().startsWith( Constants.SOAP_HTTP_TRANSPORT );
48  	}
49  
50  	@SuppressWarnings( "unchecked" )
51  	public WsdlInterface importBinding( WsdlProject project, WsdlContext wsdlContext, Binding binding ) throws Exception
52  	{
53  		String name = project.getSettings().getBoolean( WsdlSettings.NAME_WITH_BINDING ) ? binding.getQName()
54  				.getLocalPart() : binding.getPortType().getQName().getLocalPart();
55  
56  		WsdlInterface iface = ( WsdlInterface )project.addNewInterface( name, WsdlInterfaceFactory.WSDL_TYPE );
57  		iface.setBindingName( binding.getQName() );
58  		iface.setSoapVersion( SoapVersion.Soap11 );
59  
60  		String[] endpoints = WsdlUtils.getEndpointsForBinding( wsdlContext.getDefinition(), binding );
61  		for( int i = 0; i < endpoints.length; i++ )
62  		{
63  			log.info( "importing endpoint " + endpoints[i] );
64  			iface.addEndpoint( endpoints[i] );
65  		}
66  
67  		List<BindingOperation> list = binding.getBindingOperations();
68  		Collections.sort( list, new BindingOperationComparator() );
69  
70  		for( Iterator<BindingOperation> iter = list.iterator(); iter.hasNext(); )
71  		{
72  			BindingOperation operation = iter.next();
73  
74  			// sanity check
75  			if( operation.getOperation() == null || operation.getOperation().isUndefined() )
76  			{
77  				log
78  						.error( "BindingOperation [" + operation.getName()
79  								+ "] is missing or referring to an invalid operation" );
80  			}
81  			else
82  			{
83  				log.info( "importing operation " + operation.getName() );
84  				iface.addNewOperation( operation );
85  			}
86  		}
87  		// PolicyUtils.getPolicies(wsdlContext);
88  		initWsAddressing( binding, iface, wsdlContext.getDefinition() );
89  
90  		return iface;
91  	}
92  }