Forum Discussion

skillsoft's avatar
skillsoft
Frequent Contributor
15 years ago

Failed to connect HTTP Request - 3.6 Beta 2

Hi,

I'm running the 8/26/2010 nightly build for 3.6 Beta 2. Whenever I attempt to "Record HTTP Traffic" from an HTTP request and choose a radio button and click Submit or manually submit the form in Soapui I get

Failed to Connect
The connection was refused when attempting to contact localhost.

This form can be submitted in a web browser with no problem. I'm not sure where it is getting the localhost from as this form's action value is blank and page that displays after submit when I try this in a web browser does not have http:://localhost in the URL. If I look at the http request that is present after recording the traffic, I get http://localhost/ for the URL. If I do something similar in 3.5 (manually submit the form) it is successful

Will this be addressed before release of 3.6?

Thanks,

Mary
Source for Web page:

<html>
<head>
<meta content="HTML Tidy for Java (vers. 26 Sep 2004), see www.w3.org" name="generator"/>
<title>SkillPort Test Subscription Management</title>
<link type="text/css" rel="stylesheet" href="ssm.css"/>
</head>
<body>
<h2>SkillPort Test Subscription Management</h2>
<form id="firstform" target="" action="" method="get" name="firstform">
<table cellspacing="2" class="ssmtable">
<tr>
<td colspan="2">
<input value="create" name="task" id="task" type="radio"/>
Create a new Subscription
</td>
</tr>
<tr>
<td colspan="2">
<input value="query" name="task" id="task" type="radio"/>
Lookup a Subscription
</td>
</tr>
<tr>
<td colspan="2">
<input value="listsubs" name="task" id="task" type="radio"/>
List Subscriptions for a Company
</td>
</tr>
<tr>
<td>
<input value="listusers" name="task" id="task" type="radio"/>
List users for a Subscription
</td>
<td valign="bottom">(This may be slow and will timeout for large subscriptions)</td>
</tr>
<tr>
<td colspan="2"/>
</tr>
<tr>
<td colspan="2"/>
</tr>
<tr>
<td>Subscription ID</td>
<td>
<input value="" name="subid" id="subid" type="text"/>
</td>
</tr>
<tr>
<td>Company Name</td>
<td>
<input value="" name="companyname" id="companyname" type="text"/>
</td>
</tr>
<tr>
<td class="button" colspan="2">
<input value="Go" type="submit"/>
</td>
</tr>
</table>
</form>
</body>
</html>