Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error 405 ?

Status
Not open for further replies.

iceb

Technical User
Jan 13, 2002
64
DK
I have downloaded a component called aspTear which gets the

source code from a url and I chose this one...


Here is the code that retrieves it

<%
Const Request_POST = 1
Const Request_GET = 2

Set xobj = CreateObject(&quot;SOFTWING.ASPtear&quot;)
Response.ContentType = &quot;text/html&quot;

On Error Resume Next
' URL, action, payload, username, password
strRetval = xobj.Retrieve(&quot; Request_POST, &quot;test=wille&quot;, &quot;&quot;, &quot;&quot;)

If Err.Number <> 0 Then
Response.Write &quot;<b>&quot;
If Err.Number >= 400 Then
Response.Write &quot;Server returned error: &quot; & Err.Number
Else
Response.Write &quot;Component/WinInet error: &quot; & Err.Description
End If
Response.Write &quot;</b>&quot;
Response.End
End If

Response.Write strRetval
%>

Here is some info on the component



and here is some on the newest version but that version

is only in shareware and therefor not free.....



The problem is that I cannot be allowed to retrieve most pages

which I have tried. Lycos.dk work though.

How can I get allowed to do this ?

NOTE it IS the client side source code this is supposed

to retrieve and that is why I think it is strange that

the servers do not allow me to do this.

I even tried my own server and still got error 405.

I get the error 405 a lot and here is the specification for it


Hope to hear from you soon.

iceyboo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top