Package org.mule.transport.soap.axis

Source Code of org.mule.transport.soap.axis.AxisConnectorHttpsTestCase

/*
* $Id: AxisConnectorHttpsTestCase.java 20321 2010-11-24 15:21:24Z dfeist $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/

package org.mule.transport.soap.axis;

import org.mule.DefaultMuleMessage;
import org.mule.RequestContext;
import org.mule.api.MuleEvent;
import org.mule.api.MuleMessage;
import org.mule.api.endpoint.InboundEndpoint;
import org.mule.module.client.MuleClient;
import org.mule.tck.DynamicPortTestCase;
import org.mule.transport.http.HttpsConnector;

public class AxisConnectorHttpsTestCase extends DynamicPortTestCase
{
    public void testHttpsConnection() throws Exception{
        MuleClient client = new MuleClient(muleContext);
        MuleMessage m = client.send(((InboundEndpoint) client.getMuleContext().getRegistry().lookupObject("inTestUMO")).getAddress() + "?method=echo",new DefaultMuleMessage("hello", muleContext));
        assertNotNull(m);
       
        // check that our https connector is being used
        MuleEvent event = RequestContext.getEvent();
        assertTrue (event.getEndpoint().getConnector() instanceof HttpsConnector);
        assertTrue(event.getEndpoint().getConnector().getName().equals("myHttpsConnector"));
    }
   
    protected String getConfigResources()
    {
        return "axis-https-connector-config.xml";
    }

    @Override
    protected int getNumPortsToFind()
    {
        return 1;
    }
}

TOP

Related Classes of org.mule.transport.soap.axis.AxisConnectorHttpsTestCase

TOP
Copyright © 2018 www.massapi.com. 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.