473,385 Members | 1,838 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

java app in webbrowser control

I recognize that this question has a substantial Java component and I have
cross posted it on Sun’s website. But it is a problem of interface with
VS.NET and I suspect they will angrily redirect me to a .NET forum.

I have a device that serves a picture by way of a Java app. I can render the
picture in IE by navigating to the device: http://192.168.0.57/tvJVIEW.HTM
I can also fill a webbrowser control with the image:

private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("http://192.168.0.57/tvJVIEW.HTM");
}

On a second machine, running XP 64, I can also render the image in IE.
The C# webbrowser navigates to the device – as evidenced by a logon dialog.
Then a vshost security warning pops up:

“The publisher could not be verified. Are you sure you want to install this
software?
Name 192.168.0.57...publisher unknown”

I click the “Install” button. The dialog disappears. The webbrowser control
remains blank except it has a small box in the upper left with an x in it.

The Java Platform Standard Edition icon is in the system tray.

Can anyone help me configure this machine to show the image.
Jul 22 '08 #1
3 5694
Is this an eolas issue?

how is the java applet added to the page? with an applet tag? or an object
tag?
"Mark_B" <Ma***@discussions.microsoft.comwrote in message
news:C6**********************************@microsof t.com...
>I recognize that this question has a substantial Java component and I have
cross posted it on Sun’s website. But it is a problem of interface with
VS.NET and I suspect they will angrily redirect me to a .NET forum.

I have a device that serves a picture by way of a Java app. I can render
the
picture in IE by navigating to the device: http://192.168.0.57/tvJVIEW.HTM
I can also fill a webbrowser control with the image:

private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("http://192.168.0.57/tvJVIEW.HTM");
}

On a second machine, running XP 64, I can also render the image in IE.
The C# webbrowser navigates to the device – as evidenced by a logon
dialog.
Then a vshost security warning pops up:

“The publisher could not be verified. Are you sure you want to install
this
software?
Name 192.168.0.57...publisher unknown”

I click the “Install” button. The dialog disappears. The webbrowser
control
remains blank except it has a small box in the upper left with an x in it.

The Java Platform Standard Edition icon is in the system tray.

Can anyone help me configure this machine to show the image.

Jul 22 '08 #2
Hi Leon

The source from the IE page:

<form action="/TVJVIEW.htm" method="POST">
<APPLET name="wxyz" CODEBASE="http://192.168.0.57/" CODE="xplug.class">
</APPLET>
</form>

Again, the image does render in IE and there is no activex installation
dialog.


"Leon Jollans" wrote:
Is this an eolas issue?

how is the java applet added to the page? with an applet tag? or an object
tag?
"Mark_B" <Ma***@discussions.microsoft.comwrote in message
news:C6**********************************@microsof t.com...
I recognize that this question has a substantial Java component and I have
cross posted it on Sun’s website. But it is a problem of interface with
VS.NET and I suspect they will angrily redirect me to a .NET forum.

I have a device that serves a picture by way of a Java app. I can render
the
picture in IE by navigating to the device: http://192.168.0.57/tvJVIEW.HTM
I can also fill a webbrowser control with the image:

private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("http://192.168.0.57/tvJVIEW.HTM");
}

On a second machine, running XP 64, I can also render the image in IE.
The C# webbrowser navigates to the device – as evidenced by a logon
dialog.
Then a vshost security warning pops up:

“The publisher could not be verified. Are you sure you want to install
this
software?
Name 192.168.0.57...publisher unknown”

I click the “Install” button. The dialog disappears. The webbrowser
control
remains blank except it has a small box in the upper left with an x in it.

The Java Platform Standard Edition icon is in the system tray.

Can anyone help me configure this machine to show the image.
Jul 23 '08 #3
Hi Mark.

try converting the HTML to use the <objecttag instead. I bet this solves
your problem.

see here for more info:
http://depth-first.com/articles/2008...the-object-tag

Leon

"Mark_B" <Ma***@discussions.microsoft.comwrote in message
news:2A**********************************@microsof t.com...
Hi Leon

The source from the IE page:

<form action="/TVJVIEW.htm" method="POST">
<APPLET name="wxyz" CODEBASE="http://192.168.0.57/" CODE="xplug.class">
</APPLET>
</form>

Again, the image does render in IE and there is no activex installation
dialog.


"Leon Jollans" wrote:
>Is this an eolas issue?

how is the java applet added to the page? with an applet tag? or an
object
tag?
"Mark_B" <Ma***@discussions.microsoft.comwrote in message
news:C6**********************************@microso ft.com...
>I recognize that this question has a substantial Java component and I
have
cross posted it on Sun’s website. But it is a problem of interface with
VS.NET and I suspect they will angrily redirect me to a .NET forum.

I have a device that serves a picture by way of a Java app. I can
render
the
picture in IE by navigating to the device:
http://192.168.0.57/tvJVIEW.HTM
I can also fill a webbrowser control with the image:

private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("http://192.168.0.57/tvJVIEW.HTM");
}

On a second machine, running XP 64, I can also render the image in IE.
The C# webbrowser navigates to the device – as evidenced by a logon
dialog.
Then a vshost security warning pops up:

“The publisher could not be verified. Are you sure you want to install
this
software?
Name 192.168.0.57...publisher unknown”

I click the “Install” button. The dialog disappears. The webbrowser
control
remains blank except it has a small box in the upper left with an x in
it.

The Java Platform Standard Edition icon is in the system tray.

Can anyone help me configure this machine to show the image.

Jul 24 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Noozer | last post by:
I've got a WebBrowser control (AxBrowse - VCMAXB.DLL) and I'm having a few difficulties with it. Just looking for a few pointers, not whole solutions here. I've tried looking at the MSDN help files...
4
by: Randy | last post by:
Hi, ok, I found a way to connect to a running instance of an (external) Internet Explorer and access - for example - the html source. That works fine! But now I have running application with...
9
by: ASP .NET Newbie | last post by:
How can I run a WebBrowser control using ASP.NET/VB.NET? I know I can use the WebClient to get the page data, but I need to be able to use the WebBrowser (AxWebBrowser)? Thanks, Chad
12
by: Alex Clark | last post by:
Greetings, (.NET 2.0, WinXP Pro/Server 2003, IE6 with latest service packs). I've decided to take advantage of the layout characteristics of HTML documents to simplify my printing tasks, but...
8
by: Prosperz | last post by:
Hi, I would like to make thumbnails of web page by capture content of a WebBrowser. By example, capture http://www.google.com. I used WebBrowser control with Framework 2.0. I try this : ...
1
by: L. Chernov | last post by:
Hello, I am trying to work with .Net 2005 WebBrowser object, and put it on a "Windows control library" (embedded in a user control class) and then I am executing it from an ASP.Net webform(with...
11
by: Anil Gupte | last post by:
....and how do I insert one into my form? I used in VB 6.0 last, but cannot figure out where it is in .Net Thanx, -- Anil Gupte www.keeninc.net www.icinema.com
5
by: kimiraikkonen | last post by:
Hi, I couldn't find a necessary class which shows when mouse hovers on a link in Webbrowser control. Think of there's a status bar(text), when mouse comes on a link, the URL must be shown in...
0
by: =?Utf-8?B?TWFya19C?= | last post by:
I have a webbrowser that loads a page and displays a java control. It works great on this machine but when I run the application on another machine it fails to load. I am able to open the page and...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.