Closed GoogleCodeExporter closed 9 years ago
Oh, it probably was that I had to specify the complete URL in
jnlp_href-parameter, e.g.:
function deployQZ() {
var attributes = {
id: "jZebra", code: 'qz.PrintApplet.class',
archive:'qz-print.jar', width:1, height:1};
var parameters = {jnlp_href: 'https://myhost/jZebra/qz-print_jnlp.jnlp',
cache_option:'plugin', disable_logging:'false',
initial_focus:'false'};
if (deployJava.versionCheck("1.7+") == true) {}
else if (deployJava.versionCheck("1.6+") == true) {
attributes['archive'] = 'jre6/qz-print.jar';
parameters['jnlp_href'] = 'jre6/qz-print_jnlp.jnlp';
}
deployJava.runApplet(attributes, parameters, '1.5');
}
Original comment by per.thor...@gmail.com
on 17 Jan 2014 at 10:41
@Per,
Since you are a premium subscriber, we can offer remote assistance with this
issue. Let me know if you've been able to resolve this or not.
-Tres
Original comment by tres.fin...@gmail.com
on 17 Jan 2014 at 2:21
No problem with jZebra, it was my own lack of understanding of jnlp as you
can see from my comment on your site. You may close the issue and delete
the entry (unless it's any help to someone else).
Thanks for contacting me.
Original comment by per.thor...@gmail.com
on 17 Jan 2014 at 8:50
Original comment by tres.fin...@gmail.com
on 17 Jan 2014 at 9:27
i have the same problem....
Original comment by ivangome...@gmail.com
on 28 Apr 2014 at 6:43
By default IIS blocks the JNLP file extension and you can enable it manually
via mimetypes. If you are a premium subscriber, please open a support request
via the standard channel.
Original comment by tres.fin...@gmail.com
on 28 Apr 2014 at 7:33
In the below isLoaded() frunction, qz does not have isActive and append methods,
I have added my aspx page in the exception list in Java security
Kindly suggest your valuable comments on the same
function isLoaded() {
if (!qz) {
alert('Error:\n\n\tPrint plugin is NOT loaded!');
return false;
} else {
try {
if (!qz.isActive()) {
alert('Error:\n\n\tPrint plugin is loaded but NOT active!');
return false;
}
} catch (err) {
alert('Error:\n\n\tPrint plugin is NOT loaded properly!');
return false;
}
}
return true;
}
Original comment by asi...@rufutech.com
on 31 Oct 2014 at 5:52
I'm not sure exactly what you are asking, but commenting on a closed bug report
for help with your issue probably is the wrong place to ask this type of
question.
Feel free to start a new discussion with all of the relevant details here:
http://qzindustries.com/support
Original comment by tres.fin...@gmail.com
on 1 Nov 2014 at 1:47
Original issue reported on code.google.com by
per.thor...@gmail.com
on 16 Jan 2014 at 2:57