JumpLoader
Java File Upload Applet
error ISS

 
Post new topic   Reply to topic    JumpLoader Forum Index -> General questions
View previous topic :: View next topic  
Author Message
manukmer



Joined: 23 Jul 2010
Posts: 4

PostPosted: Tue Jul 27, 2010 6:02 pm    Post subject: error ISS Reply with quote

hi everyone,

When I use the applet "Jumploader" with the development server of Visual Studio everything works perfectly. But when I use it with IIS6, when I upload, i have a "405 error":

----------------------------------------------------
27.07.2010 13:10:16 - DEBUG - AWT-EventQueue-5 - listSelectionChanged, indices=[I@bb1ee
27.07.2010 13:10:17 - DEBUG - jmaster.jumploader.controller.Controller.uploadViewStartAction() - uploader status change: uploader, status:1
27.07.2010 13:10:17 - DEBUG - jmaster.jumploader.controller.Controller.uploadViewStartAction() - Creating thread: uploaderUpdater
27.07.2010 13:10:17 - DEBUG - jmaster.jumploader.controller.Controller.uploadViewStartAction() - startThread() of uploadThread uploadThread_0, current file: null
27.07.2010 13:10:17 - DEBUG - jmaster.jumploader.controller.Controller.uploadViewStartAction() - Creating thread: uploadThread_0
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - file status change: Upload File [status:0, path:C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images\Collines.jpg]
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - uploadThread uploadThread_0, current file: Upload File [status:1, path:C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images\Collines.jpg] uploading Upload File [status:1, path:C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images\Collines.jpg]
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - [---------------- New request ----------------]
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - url=http://localhost/Edip.Client.Dev/(S(0mp12b55musgyl45mgxffsre))/Temp/.numa?SessionID=0mp12b55musgyl45mgxffsre
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - Form data:
------------ppaQjJqYcSvQKG3cfPjbI2
Content-Disposition: form-data; name="partitionIndex"

0
------------ppaQjJqYcSvQKG3cfPjbI2
Content-Disposition: form-data; name="fileId"

699659
------------ppaQjJqYcSvQKG3cfPjbI2
Content-Disposition: form-data; name="lastModified"

2004-08-05T14:00:00.000+0200
------------ppaQjJqYcSvQKG3cfPjbI2
Content-Disposition: form-data; name="fileLength"

28521
------------ppaQjJqYcSvQKG3cfPjbI2
Content-Disposition: form-data; name="fileName"

Collines.jpg
------------ppaQjJqYcSvQKG3cfPjbI2
Content-Disposition: form-data; name="partitionCount"

1

27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - Response headers for Upload File [status:1, path:C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images\Collines.jpg]:

27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - null=HTTP/1.1 405 Method not allowed
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - Date=Tue, 27 Jul 2010 11:10:17 GMT
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - Content-Length=4068
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - Allow=OPTIONS, TRACE, GET, HEAD
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - Connection=close
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - Content-Type=text/html
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - Server=Microsoft-IIS/5.1
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - Response content for Upload File [status:1, path:C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images\Collines.jpg]:

27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">

<html dir=ltr>



<head>

<style>

a:link {font:8pt/11pt verdana; color:FF0000}

a:visited {font:8pt/11pt verdana; color:#4e4e4e}

</style>



<META NAME="ROBOTS" CONTENT="NOINDEX">



<title>Impossible d'afficher la page</title>



<META HTTP-EQUIV="Content-Type" Content="text-html; charset=Windows-1252">

</head>



<script>

function Homepage(){

<!--

// in real bits, urls get returned to our script like this:

// res://shdocvw.dll/http_404.htm#http://www.DocURL.com/bar.htm



//For testing use DocURL = "res://shdocvw.dll/http_404.htm#https://www.microsoft.com/bar.htm"

DocURL=document.URL;



//this is where the http or https will be, as found by searching for :// but skipping the res://

protocolIndex=DocURL.indexOf("://",4);



//this finds the ending slash for the domain server

serverIndex=DocURL.indexOf("/",protocolIndex + 3);



//for the href, we need a valid URL to the domain. We search for the # symbol to find the begining

//of the true URL, and add 1 to skip it - this is the BeginURL value. We use serverIndex as the end marker.

//urlresult=DocURL.substring(protocolIndex - 4,serverIndex);

BeginURL=DocURL.indexOf("#",1) + 1;

urlresult=DocURL.substring(BeginURL,serverIndex);



//for display, we need to skip after http://, and go to the next slash

displayresult=DocURL.substring(protocolIndex + 3 ,serverIndex);

InsertElementAnchor(urlresult, displayresult);

}


function HtmlEncode(text)
{
return text.replace(/&/g, '&amp').replace(/'/g, '&quot;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
}

function TagAttrib(name, value)
{
return ' '+name+'="'+HtmlEncode(value)+'"';
}

function PrintTag(tagName, needCloseTag, attrib, inner){
document.write( '<' + tagName + attrib + '>' + HtmlEncode(inner) );
if (needCloseTag) document.write( '</' + tagName +'>' );
}

function URI(href)
{
IEVer = window.navigator.appVersion;
IEVer = IEVer.substr( IEVer.indexOf('MSIE') + 5, 3 );

return (IEVer.charAt(1)=='.' && IEVer >= '5.5') ?
encodeURI(href) :
escape(href).replace(/%3A/g, ':').replace(/%3B/g, ';');
}

function InsertElementAnchor(href, text)
{
PrintTag('A', true, TagAttrib('HREF', URI(href)), text);
}

//-->

</script>



<body bgcolor="FFFFFF">



<table width="410" cellpadding="3" cellspacing="5">



<tr>

<td align="left" valign="middle" width="360">

<h1 style="COLOR:000000; FONT: 13pt/15pt verdana"><!--Problem-->Impossible d'afficher la page</h1>

</td>

</tr>



<tr>

<td width="400" colspan="2">

<font style="COLOR:000000; FONT: 8pt/11pt verdana">La page que vous recherchez ne peut pas ?tre affich?e car l'adresse est incorrecte.</font></td>

</tr>



<tr>

<td width="400" colspan="2">

<font style="COLOR:000000; FONT: 8pt/11pt verdana">



<hr color="#C0C0C0" noshade>



<p>Essayez les op?rations suivantes?:</p>



<ul>

<li>Si vous avez tap? l'adresse de la page dans la barre d'adresses, assurez-vous que vous l'avez tap?e correctement.<br></li>



<li>Ouvrez la page d'accueil <script>

<!--

if (!((window.navigator.userAgent.indexOf("MSIE") > 0) && (window.navigator.appVersion.charAt(0) == "2")))

{

Homepage();

}

//-->

</script>, puis recherchez les liens vers les informations souhait?es.</li>

</ul>



<h2 style="COLOR:000000; FONT: 8pt/11pt verdana">HTTP 405 - Ressource non autoris?e<br> Services Internet (IIS)</h2>



<hr color="#C0C0C0" noshade>



<p>Informations techniques (destin?es au personnel du Support technique)</p>



<ul>

<li>Plus d'information&nbsp;:<br><a href="http://www.microsoft.com/ContentRedirect.asp?prd=iis&sbp=&pver=5.0&pid=&ID=405&cat=web&os=&over=&hrd=&Opt1=&Opt2=&Opt3=" target="_blank">Support technique Microsoft</a>

</li>

</ul>



</font></td>

</tr>



</table>

</body>

</html>

27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - uploadThread uploadThread_0, current file: Upload File [status:1, path:C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images\Collines.jpg] finished upload of Upload File [status:1, path:C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images\Collines.jpg]
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - jmaster.util.http.C: HTTP response code: 405
27.07.2010 13:10:17 - ERROR - jl_29330645_uploadThread_0 - uploadFile( Upload File [status:1, path:C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images\Collines.jpg] ) failed for uploadThread_0
27.07.2010 13:10:17 - ERROR - jl_29330645_uploadThread_0 - jmaster.util.http.C: HTTP response code: 405
at jmaster.util.http.F.upload(Unknown Source)
at jmaster.jumploader.model.impl.upload.B.A(Unknown Source)
at jmaster.jumploader.model.impl.upload.B.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - file status change: Upload File [status:1, path:C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images\Collines.jpg]
27.07.2010 13:10:17 - DEBUG - jl_29330645_uploadThread_0 - uploader status change: uploader, status:0



Someone knows where he can come?
thanks in advance
Back to top
View user's profile Send private message
jmaster
Site Admin


Joined: 01 Jan 1970
Posts: 1175

PostPosted: Wed Jul 28, 2010 6:27 am    Post subject: Reply with quote

probably here is help: http://www.somacon.com/p126.php
Back to top
View user's profile Send private message Send e-mail
manukmer



Joined: 23 Jul 2010
Posts: 4

PostPosted: Wed Jul 28, 2010 3:24 pm    Post subject: Reply with quote

thx but it does not work :(
little more information I use a handler ashx files
I always error 405 or error "failed to destroy output"
Back to top
View user's profile Send private message
manukmer



Joined: 23 Jul 2010
Posts: 4

PostPosted: Thu Jul 29, 2010 3:41 pm    Post subject: Reply with quote

I added a script map for all the extension I need, but i always error 405 ...
what can I do more?
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    JumpLoader Forum Index -> General questions All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
advertising WebFM — easy and efficient web file manager.