This is my Code:
public class JavaSoapUi {
public static void main(String[] args) throws Exception {
String requestUrl = "myurl";
URLConnection connection =new URL(requestUrl).openConnection();
System.out.println( "orignal url: " + connection.getURL() );
connection.connect();
System.out.println( "connected url: " + connection.getURL() );
HttpPost httpPost = new HttpPost(requestUrl);
String username = "user";
String password = "pass";
String encoded = DatatypeConverter.printBase64Binary((username + ":" + password).getBytes("UTF-8"));
httpPost.addHeader("AUTHORIZATION", "Basic " + encoded);
HttpClient httpClient = HttpClientBuilder.create().build();
HttpResponse response = httpClient.execute(httpPost);
System.out.println("Response" + response.getStatusLine().toString());
HttpEntity entity = response.getEntity();
String responseString = EntityUtils.toString(entity, "UTF-8");
System.out.println("ResponseString" + responseString);
EntityUtils.consume(entity);
}
And I am getting output Error :HTTP/1.1 301 Moved Permanently
If I used the username and password in the SOAP UI By using the Basic Authentication I can then get the output. But when I am using the same username and password in the Java code I am getting the error.
Any one help me.
Your
Authoritzation
http-header looks good to me due you added the header like is defined in RFC. Furthermore if the problem was with yourAuthoritzation
then your call must receive anError HTTP 401 Unauthorized
instead you're receivingError HTTP 301 - Moved permanently
so probably the error is with yoururl
. Check thelocation
http-header
of your301
error response to see the correcturl
for your service.EDIT BASED ON OP COMMENT
As I said you check the
location
header from301
error response, and seems thaturl
is anhttps://
, if you change theurl
, now you're receivingError: unable to find valid certification path to requested target
this is due your client has to trust in a server certificate, to do so, download the server certificate from yoururl
and load it in the trust store of the JRE where you're executing your client with the follow command (the correct way is to add thecertificate authority
of your server certificate, however to perform a test load directly server certificate it's enough).keytool -import -alias somealias -file serverCertificate.cer -keystore JRE_HOME/lib/security/cacerts
Note that
keytool
is inside java distribution inJAVA_HOME/bin/keytool
, and default password forJRE_HOME/lib/security/cacerts
trust store ischangeit
.Hope this helps,