blob: 9fbc99517da681a3b6a20f597c9a0ec3bc3ce5be [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.axis2.transport.testkit.http;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;
import javax.mail.internet.ContentType;
import org.apache.axis2.transport.testkit.client.AsyncTestClient;
import org.apache.axis2.transport.testkit.client.ClientOptions;
import org.apache.axis2.transport.testkit.message.RESTMessage;
import org.apache.axis2.transport.testkit.name.Name;
import org.apache.axis2.transport.testkit.tests.Setup;
import org.apache.axis2.transport.testkit.tests.Transient;
import org.apache.commons.io.IOUtils;
@Name("java.net")
public class JavaNetRESTClient implements AsyncTestClient<RESTMessage> {
private @Transient HttpChannel channel;
@Setup @SuppressWarnings("unused")
private void setUp(HttpChannel channel) {
this.channel = channel;
}
public ContentType getContentType(ClientOptions options, ContentType contentType) {
return contentType;
}
public void sendMessage(ClientOptions options, ContentType contentType, RESTMessage message) throws Exception {
StringBuilder url = new StringBuilder();
url.append(channel.getEndpointReference().getAddress());
url.append("/default");
String queryString = message.getQueryString();
if (queryString.length() > 0) {
url.append('?');
url.append(queryString);
}
URLConnection connection = new URL(url.toString()).openConnection();
connection.setDoInput(true);
InputStream in = connection.getInputStream();
IOUtils.copy(in, System.out);
in.close();
}
}