I confirm (that for me) the problem is proxy.pac related.
Up to now, I denied the access to www.mysite.com/proxy.pac for when
users are outside, with their netbooks.
My Apache .htaccess looked like:
<Files proxy.pac>
Order Deny,Allow
Deny from All
Allow from 192.168.0.0/16
</Files>
This worked for Chromium+IcedTea but not for Firefox+IcedTea.
Finally I had to use a new .htaccess like:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REMOTE_ADDR} !^192\.168\.
RewriteRule proxy\.pac$ http://www.mysite.com/direct.pac [R=301,L]
where direct.pac is:
function FindProxyForURL(url, host) {
return "DIRECT";
}
Finally, Chromium+IcedTea don't understand the possibility to return
more than a proxy (or proxy fail).
I had a proxy.pac ending by:
return "PROXY 192.168.0.3:8080; DIRECT";
and I had to put:
return "PROXY 192.168.0.3:8080";
--
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1091926
Title:
firefox java applet fails when the firefox is launched by a java
program
Status in The Mozilla Firefox Browser:
New
Status in “firefox” package in Ubuntu:
Confirmed
Bug description:
Hi Support Team,
I run a simple Java program (a runnable jar file). The Java program
code is as following
import java.io.IOException;
public class Main {
public static void main(String args[]) throws IOException {
//this website has a small Java applet inside
Runtime.getRuntime.exec("firefox
http://javatester.org/version.html");
System.out.println("hello world");
}
}
My JRE (yes, JRE, not JDK) is Oracle JRE 1.6.0_38.
What the program does is essentially opening
http://javatester.org/version.html in Firefox. This website has a
small Java applet, so performance won't be a problem. What happens
then is that, Firefox is opened, http://javatester.org/version.html is
opened, BUT the applet inside the website FAILS to play. The same
thing happens if my Java program opens any other website which has
applet.
However, if I run "firefox http://javatester.org/version.html" from
command line, everything works perfectly. Similarly, if I open
Firefox, then I type http://javatester.org/version.html at the URL
field, everything also works perfectly.
This problem happens in Firefox, but NOT in Chromium (which I
installed from your standard repository).
This problem doesn't happen in Oracle Linux distro. I haven't tried in
other Linux distros, though.
Thank you
Fajrian Yunus
ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: firefox 17.0.1+build1-0ubuntu0.12.10.1
ProcVersionSignature: Ubuntu 3.5.0-17.28-generic 3.5.5
Uname: Linux 3.5.0-17-generic x86_64
AddonCompatCheckDisabled: False
ApportVersion: 2.6.1-0ubuntu3
Architecture: amd64
AudioDevicesInUse:
USER PID ACCESS COMMAND
/dev/snd/controlC0: anakin 1700 F.... pulseaudio
BuildID: 20121129151842
CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211
not found.
Channel: Unavailable
Date: Wed Dec 19 09:46:27 2012
ForcedLayersAccel: False
IfupdownConfig:
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64
(20121017.1)
IpRoute:
default via 10.0.2.2 dev eth0 proto static
10.0.2.0/24 dev eth0 proto kernel scope link src 10.0.2.15 metric 1
169.254.0.0/16 dev eth0 scope link metric 1000
IwConfig:
eth0 no wireless extensions.
lo no wireless extensions.
Plugins: Java(TM) Plug-in 1.6.0_38 -
/usr/lib/jvm/jre1.6.0_38/lib/amd64/libnpjp2.so
PrefSources: prefs.js
ProcEnviron:
LANGUAGE=en_SG:en
PATH=(custom, no user)
XDG_RUNTIME_DIR=<set>
LANG=en_SG.UTF-8
SHELL=/bin/bash
Profiles: Profile0 (Default) - LastVersion=17.0.1/20121129151842 (In use)
RfKill:
RunningIncompatibleAddons: False
SourcePackage: firefox
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/01/2006
dmi.bios.vendor: innotek GmbH
dmi.bios.version: VirtualBox
dmi.board.name: VirtualBox
dmi.board.vendor: Oracle Corporation
dmi.board.version: 1.2
dmi.chassis.type: 1
dmi.chassis.vendor: Oracle Corporation
dmi.modalias:
dmi:bvninnotekGmbH:bvrVirtualBox:bd12/01/2006:svninnotekGmbH:pnVirtualBox:pvr1.2:rvnOracleCorporation:rnVirtualBox:rvr1.2:cvnOracleCorporation:ct1:cvr:
dmi.product.name: VirtualBox
dmi.product.version: 1.2
dmi.sys.vendor: innotek GmbH
To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/1091926/+subscriptions
--
Mailing list: https://launchpad.net/~desktop-packages
Post to : [email protected]
Unsubscribe : https://launchpad.net/~desktop-packages
More help : https://help.launchpad.net/ListHelp