Re: Difficulty embedding mozilla using java

2006-10-07 Thread Andy Scott
Yes, that is true. But I have read that it is possible to implement the window classes so that there is no rendered GUI. How do to do this I don't know. Ben Hutchings wrote: > <[EMAIL PROTECTED]> wrote: > > Is there any way to do that without having a GUI? > > The browser is inherently a GUI co

Re: Difficulty embedding mozilla using java

2006-10-07 Thread Ben Hutchings
<[EMAIL PROTECTED]> wrote: > Is there any way to do that without having a GUI? The browser is inherently a GUI component. However, if the underlying GUI supports some kind of off-screen or hidden window, then the browser can probably be made to use that. Under Linux I'm using Xvfb (X virtual fra

Re: Difficulty embedding mozilla using java

2006-10-04 Thread scott . andy
Is there any way to do that without having a GUI? Micael Gallego Carrillo wrote: > This is about the minimum to get the mozilla dom: > Thanks to Miroslav Penkov and cancandan > > import org.eclipse.swt.SWT; > import org.eclipse.swt.browser.MozillaBrowser; > import org.eclipse.swt.browser.Progress

Re: Difficulty embedding mozilla using java

2006-10-02 Thread Micael Gallego Carrillo
This is about the minimum to get the mozilla dom: Thanks to Miroslav Penkov and cancandan import org.eclipse.swt.SWT; import org.eclipse.swt.browser.MozillaBrowser; import org.eclipse.swt.browser.ProgressEvent; import org.eclipse.swt.browser.ProgressListener; import org.eclipse.swt.widgets.Displa

Re: Difficulty embedding mozilla using java

2006-10-02 Thread scott . andy
Marcus wrote: > [EMAIL PROTECTED] wrote: > > [EMAIL PROTECTED] wrote: > >> Hey guys. I'm trying to embed mozilla with java for a data gathering > >> tool. I don't actually need any visual elements--I just need to access > >> the DOM and load URLs with the browser. Regardless... I just can't > >

Re: Difficulty embedding mozilla using java

2006-10-01 Thread Marcus
[EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Hey guys. I'm trying to embed mozilla with java for a data gathering tool. I don't actually need any visual elements--I just need to access the DOM and load URLs with the browser. Regardless... I just can't figure out how to embed mozilla. I

Re: Difficulty embedding mozilla using java

2006-10-01 Thread scott . andy
[EMAIL PROTECTED] wrote: > Hey guys. I'm trying to embed mozilla with java for a data gathering > tool. I don't actually need any visual elements--I just need to access > the DOM and load URLs with the browser. Regardless... I just can't > figure out how to embed mozilla. I am currently having