RE: HttpListener based app loading Java Applet into html page
- From: Peter Bromberg [C# MVP] <pbromberg@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 4 Sep 2007 17:28:02 -0700
If the Html file contains tags to load the jar file, that's not what your
code is doing.
Your code:
int pos = context.Request.Url.AbsoluteUri.LastIndexOf("/");
string file = context.Request.Url.AbsoluteUri.Substring(++pos);
-- assumes that the request is directly for the jar file alone. What you
really need to be doing is serving the Html file that the request is asking
for, then you would get a subrequest from the browser reading the jar file
and you would need to serve that.
-- Peter
Recursion: see Recursion
site: http://www.eggheadcafe.com
unBlog: http://petesbloggerama.blogspot.com
BlogMetaFinder: http://www.blogmetafinder.com
"Reg" wrote:
I have a following code in HttpRequestListener's ProcessRequest method which.
is a Windows
Console Application. I'm trying to read html page with browser (Opera) and
html file contains tags to include
Java Applet jar too,
for (int i = 0; i < numRequestsToBeHandled; i++)
{
HttpListenerResponse response = null;
try
{
// GetContext blocks while waiting for a request.
HttpListenerContext context = listener.GetContext();
// Create the response.
response = context.Response;
int pos = context.Request.Url.AbsoluteUri.LastIndexOf("/");
string file = context.Request.Url.AbsoluteUri.Substring(++pos);
byte[] buffer = new byte[32768];
// Reading html and Java Applet Jar file from file system
FileStream stream = new FileStream(file, FileMode.Open, FileAccess.Read);
int read = stream.Read(buffer, 0, buffer.Length);
stream.Close();
response.ContentLength64 = buffer.Length;
System.IO.Stream output = response.OutputStream;
output.Write(buffer, 0, buffer.Length);
output.Close();
Problem is that I get "Invalid Bytecode" error in Opera and IE shows
nothing.
Something missing, can anyone tell me what?
Cheers,
- References:
- Prev by Date: Re: Hosting Ethereal inside my .NET app
- Next by Date: Re: Exception SmtpClient
- Previous by thread: HttpListener based app loading Java Applet into html page
- Next by thread: Re: Math Library
- Index(es):
Relevant Pages
|