Applet - Javascipt Communication.

Jul 20, 2005

How can I inform a Javascipt, that must submit my Applet's data, that this same Applet has produced the data in question? Or in other words, is there any way to call a JavaScript junction within the Applet? Is it the best way? What do you suggest?

View 1 Replies


ADVERTISEMENT

Communication Between Java Applet And Javascript

Jul 20, 2005

let's me explains my long problem:

I'm doing an intranet with a media part. So im must be able to upload files on
a ftp server AND have a record of informations about this file and meta date in
a MySQL database, shown in a php page.

So the first thing i was doing was:

1/ * A HTML Form, with a <input type="file"> which was uploading the file to
the web server. And then, in the next action-php-page, using ftp functions from
php to upload to the ftp server. But this make upload the file 2 times, which
slow, and the user can't do anythig except waiting in front of a blanck loading
page.

=> no way

(BTW, the site admin refuse that the ftp server and the web server to be the
same computer)

So i tried something else:

2/ * A HTML form, the user enter meta data about the media, click next, and
then, a php page which loads a java applet an pass informations to it (by param
tags).
The applet have a browse button, and a go button, which start the transfert
(JDK 1.4.1) trough the URLConnection. The file is uploaded once, and there is a
progress bar, which is wonderful.

But now, i need the src_file information wich is the java applet. So i have two
options:

A/ I make a post to the webserver from the applet. But i'm using session
identification (needed for tracing users actions) and i'm gonna use SSL in less
than one month, so i think it would be complicated.

B/ I export the information from the java applet to javascript, and then to
HTML hidden field, so that the user can submit the full-hidden-filled form. But
i can't make LiveConnect works.

i'm under Mac OS X 10.2 (jaguar) so i need to make work LiveConnect on both
Safari 1.0 (v85.6), mozilla 1.5, and Mac OS IE (5.2).

View 2 Replies View Related

Display A Message That Applet Is Loading! While Applet Loads

Apr 8, 2006

How do I display a message applet is loading when a applet is getting
loaded. Without using Mediatracker.I want the message to be provided as
PARAM NAME.

View 1 Replies View Related

OOP Using Javascipt

Feb 1, 2006

So, what I am trying do to is to manage some classes with javascript.
It's working, but there are some things that I don't understand...
Next is my sample code, and I have indicated the questions in comment
Thanks for the help (I am working with IE 6)

View 8 Replies View Related

JavaScipt Mozilla

Nov 11, 2003

I'm currently experiencing a problem using ANY (!) JavaScript in Mozilla - nothing seems to be working. For example (from p2 of JavaScript 101 - Part 1):

javascriptpenWindow('/examples/js101/seefirst.html',400,200);

Causes the following error: openWindow is not defined.

I've also tried various other JavaScript examples and everything returns an error.

I'm tried two different PCs running Win2K and tried Mozilla 1.4 and 1.5. I've already checked that JavaScript is enabled for Navigator.

View 2 Replies View Related

Currency Javascipt Function

Oct 8, 2005

Is there a currency javascipt function that will automatically put the $ in and 2 decimals? Example:

7.99 becomes $7.99
8 becomes $8.00
2 * 8 becomes $16.00

View 3 Replies View Related

DHTML Javascipt-based Navigation Structure And Flash: How To Set The Layer?

Jul 20, 2005

I have developed a very nice javascript-based navigation structure. My
customer wants to have a flash film on his very first site which
already has to have this navigation.

And now the effect: Whenever the flash film is running, the navigation
submenus are not displayed ABOVE this flash film, but BEHIND it.
As far as I have tried, there is no way to influence this behaviour
with the "z-index" and different values.

Is there any other way to make the navigation submenu seen or - in
other words - is there a way to put the flash film "a layer back"?

View 2 Replies View Related

Fixing Communication Between JS And PHP?

Jul 28, 2011

I need to fix the communication between the JS located in this page and the PHP form script. When the form is submitted I want the page to automatically update which is already present in the script, thanking the user for the submission. Since the PHP script was changed that communication is broken and I hope to get it communicating once again.

View 2 Replies View Related

PHP & JavaScript Communication

Feb 24, 2006

Let's say I want Javascript to call PhpScript.php?Somevar=Somevalue and display the info. How do I get the php returned data in a Javascript var.

View 4 Replies View Related

Building An App For Online Communication?

Jul 8, 2009

I am very new to web development. I would like my website to have an application which allows a user to draw images which can be displayed on other users screens in real time.

An example of this is isketch.net Also on this site i would like users to be able to create accounts and join 'rooms' where they can communicate in real time (as opposed a forum message board). I am looking for something similar to isketch.net

Could somebody please tell me the type of development and programming needed. I have been quoted 1000 a month to build these capabilities but have no idea what is involved. (also may require facebook style real-time updating)

View 4 Replies View Related

How To Do Serial Port Communication

Aug 31, 2010

How to do serial port communication using Javascript?

View 2 Replies View Related

Window Communication With A Popup?

Apr 13, 2010

I am new to Javascript and am trying out window communication with a popup.In the main window it opens up a popup window with a button click. The popup window is trying to grab text from the main window and put it in it's (the popup's) window. I guess it needs a test to see if the window is ready??Here's the code:

<html>
<head>
<title>Main</title>[code].....

View 2 Replies View Related

Server Communication Without Page Reload?

Jul 23, 2005

I'm trying to find a way to have a script communicate with a server
without having to load a new page. The idea is to have the server act
as a simple wrapper for a database, letting the client do that icky UI
stuff.

I tried the obvious, putting a frame somewhere it doesn't insult the
eye, changing its location, then accessing the new content via DOM.
What I get from IE (6) for my pains is just a rude "permission
denied". This even though I entered "localhost" as a trusted site in
IE's security setting. What's amiss?

View 3 Replies View Related

AJAX :: Intermittent Communication Failures

Jan 29, 2011

I have a web app with a game and chat updating with ajax very frequently sending thousands of XHR requests to the server during a user's session. The problem is that most clients experience intermittent connection failures or timeouts. On the server it appears to be fine, all requests are logged to have completed successfully and on time but the client gets either a communication failure or a timeout. This makes the user feel like the game or chat just got stuck.

I use YUI for making the XHR calls but I replaced that with jQuery with exact same results. I make sure that only one query is active at a time, so I am sure that I am not hitting the max 2 connections problem. The failure rate may be 1 in 200 hundred requests or something but it seems that when a client has a failure then it fails at a higher rate, say 1 in 10 until the problem goes away. I have clients send back an error request when such errors happen in order to track the problem. I have tried various things to try to figure out what is wrong but I have not found anything. I don't think that it's the client's connection as it happens to a sizable portion of my users, it doesn't look like it's the server either.

So what I am wondering is whether this failure rate is common or expected when doing heavy ajax staff and I need to find a way to work around it or this must be a problem in my system that I need to figure out. If the latter any pointers where to look at?

View 3 Replies View Related

Cross Frame Javascript Communication

Oct 28, 2003

I have set of frames... one contains a menu and the other a status frame. I am calling a function from the menu which sets the variables however I need some help passing those variables to the status frame. How would I go about doing such a thing?

This is called from the menu in frame 1 but doesn't work:

Code:
function jumpsec(cat, prod) {
parent.statusbar.category=cat;
parent.statusbar.product=prod;
}

// then my status frame bar has:
document.write(parent.statusbar.category);
document.write(parent.statusbar.product);

The 2 variables are blank on statusbar onload but get populated with each click.

View 4 Replies View Related

ClearInterval() : Iframe And Window Communication ?

May 14, 2010

I have given snippet of code in that it is cgi file in which i am using iframe , source of iframe is calling another cgi file. JavaScript / DHTML / AJAX Syntax (Toggle Plain Text)

Code:

View 2 Replies View Related

Communication Between 2 Windows Without Having A Link Parent To Child

Jul 23, 2005

Is-it possible to modify a window from an another window without having a
link Parent To Child?

View 2 Replies View Related

Cross-domain Iframe Communication In Opera?

Feb 11, 2010

I have need to communicate between two iframes of the same domain, which live inside a parent page on a different domain that I have no control over. This is a Facebook app and the basic layout is this

apps.facebook.com/myapp
L iframe1 (src='mysite.com/foo')
L iframe2 (src='mysite.com/bar')

I need frame1 to talk to frame2, but in Opera I can't access window.parent. frames['frame2'] to do the usual cross-domain methods (updating location.hash for example) Is there an alternate way to accomplish this in Opera?

View 5 Replies View Related

Establish Serial Port Communication Using Script For Webpage?

Apr 6, 2009

I am working on a robot project, that is required to create a website to control the robot via serial port.. The website is plainly html, no linking to database is needed...

I have no idea how and what language to use and can JavaScript communicate with serial port? and how?

View 2 Replies View Related

HTA Vs. APPLET

Jan 25, 2005

Anybody who knows how to embed a Java-applet in a HTA document ?

View 2 Replies View Related

Tag <Object> And Applet...

Jul 23, 2005

Why doesn't the following code load my applet under WinXP with Internet Explorer 6?

<SCRIPT language="javascript" type="text/javascript">...

View 1 Replies View Related

Display DIV Over APPLET

Jul 23, 2005

We have an app that uses a page to either load a full page applet, or some
html based on some params.

There are events trapped for rigth click actions that show a DIV with some
menu options. Works fine with the HTML...

But, of course, by default the Applet seems to take precedence over any DIV
etc on top.

I already feed the events back from the applet back through to the HTML via
javascript, what I need to do is display the div over the applet so that
thet user knows no different...

Can this be done?

View 2 Replies View Related

How To Use Applet In IE Or Netscape

Jul 20, 2005

I just installed the LoveSan security patch from MSFT and turned on
Auto-Update. Now applets do not load. I tried getting Netscape 7.1 but
it directs me to the Sun page to install JRE. I do this but still
neither IE or NS will load applets. Tried downloading some from
various websites with free applets but these do not work either. Any
ideas?

View 1 Replies View Related

Javascript -> Applet

Jul 20, 2005

I have on a html page an applet. A javascript function call one function of
this applet. It works with IE but not with Mozilla or Netscape. I obtain
the following error on the java-plugin consol:

sun.plugin.liveconnect.OriginNotAllowedException: Javascript is not form the
same origin as je java code ...

This is my html code:

<script language="Javascript">
<!--
function askServerCmd()
{
return document.AppReaderLink.askServerCmd();

}
//-->
</script>
<applet CODE =" AppReaderLink.class"
codebase="."
ARCHIVE ="appredl.jar"
WIDTH =" 130"
HEIGHT =" 70"
NAME =" AppReaderLink"[color=blue]
>[/color]
</applet>

I tri with jre 1.4.1_05 and jre 1.4.2_02 and I obtain the same thing.

What I have to do?

View 1 Replies View Related

Send Image To Applet

Jul 23, 2005

I wish to get the pixels os an image to transform it. There is any posibility to do this with javascript ? I have done with java, but I can't load web images from other http servers, can I send the data of the image to the applet ?

View 3 Replies View Related

Change Applet Parameters

Jul 23, 2005

I have an applet and want to change it's parameters with multiple links in
my page.

this is my code:

<applet code="GIS.class">
<param id="moneyID" name="money" value="100">
<param id="vicimsID" name="vicims" value="2">
<param id="countryID" name="country" value="UK">
</applet>

How to create a function that will be called from some links and change the
values according to the user's values (from a textbox or anything else).

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved