Sagewire Logo

Download Graphing Utility (Complimentry Copy)

15 Message(s) by 3 Author(s) originally posted in java programmer


From: Dexter Date:   Tuesday, October 23, 2007
GraphEasyRect was previously available as an applet. Now we've
converted it to a desktop standalone application that run s on
multiple
platforms Windows, Mac, and Linux

This tool allows graph ing function s in cartesian plane, points of
discontinuity having limits are encircled on graph line. You may view
and copy the values of the function between a range of x valuesDownload link is http://www.britishcomputercolleges.com/vu/GraphEasyRect.jar Its a JAVA executable file which will require you to have JAVA
Runtime
Environment on the system to run.Its a complimentry tool so don't hesitate to utilize its featuresOur online gallery of tools include Graphing Polar curves, finding
area under curve and graphing in Cartesian planeVisit http://www.britishcomputercolleges.com


From: Lew Date:   Tuesday, October 23, 2007
wrote in message :
Its



"It's"

a complimentry



"complimentary"

tool so don't hesitate to utilize its features



I'll give it a pass, thanks. I'm afraid it might be buggy, based on your
presentation of it.

--
Lew


From: Andrew Thompson Date:   Tuesday, October 23, 2007
wrote in message:
..
Download link is http://www.britishcomputercolleges.com/vu/GraphEasyRect.jar



How about offering a web-start launch?

[e.g. grapheasy.jnlp]
<?xml version ='1.0' encoding='UTF-8' ?>
<jnlp spec='1.0'
code base='http://www.britishcomputercolleges.com/vu'>

<information>
<title>Graph Easy</title>
<vendor>British Computer Colleges</vendor>
<homepage
href='http://www.britishcomputercolleges.com/' />

<description kind='tooltip'>
Graphing Tool
</description>
<description kind='one-line'>
Graphing Tool - Freeware
</description>
</information>
<resources>
<JAVA version='1.4+' />
<jar href='GraphEasyRect.jar' size='28802' />
</resources>
<application-desc />
</jnlp>
[/e.g. grapheasy.jnlp]

Put that file in the same directory as the jar file,
and it should be 'set to go' barring configuring the
serve r to serve the correct content type for JNLP
files (many do, nowadays).

It can also include things like splash screens,
desktop integration, icons,..

I had to make a few guesses - adjust as needed.

BTW - there seems to be a slight 'paint' issue
when the help dialogs are cleared from over the
graph area - the graph is redrawn, but the
background isn't (is replaced by 'white shadow'
where the dialog was).

--
Andrew Thompson
http://www.athompson.info/andrew/

Message posted via http://www.JAVAkb.com


From: Andrew Thompson Date:   Tuesday, October 23, 2007
wrote in message:
...
Download link is http://www.britishcomputercolleges.com/vu/GraphEasyRect.jar
How about offering a web-start launch?
[e.g. grapheasy.jnlp]
.
Put that file in the same directory as the jar file,
and it should be 'set to go' ...



To test it from the command line, if in the same
directory as the jar and jnlp, use this command
(Win e.g.)..

D:\grapheasy>JAVAws -codebase file:. file:grapheasy.jnlp

(But web start is much nicer - off a server.)

--
Andrew Thompson
http://www.athompson.info/andrew/

Message posted via JAVAKB.com
http://www.JAVAkb.com/Uwe/Forums.aspx/JAVA-general/200710/1


From: Dexter Date:   Tuesday, October 23, 2007
wrote in message:
wrote in message:
>...
Download link ishttp://www.britishcomputercolleges.com/vu/GraphEasyRect.jar
>How about offering a web-start launch?
>[e.g. grapheasy.jnlp]
.
>Put that file in the same directory as the jar file,
>and it should be 'set to go' ...
Andrew



I had a D in college English, I'll consult dictionary and a grammar
book next time I post.

I am new to JAVA, I copied your jnlp code in a file grapheasy.jnlp and
stored it in the same folder where my jar file resides on server

When I pointed my browser to the jar file, it popped open the dialog
box which asked whether I wanted to save or open the file

When I click ed on open it simple ran it

But where is this jar file stored on user's system and how does the
user run the application next time she want to

Asad
To test it from the command line, if in the same
directory as the jar and jnlp, use this command
(Win e.g.)..
D:\grapheasy>JAVAws -codebase file:. file:grapheasy.jnlp
(But web start is much nicer - off a server.)
--
Andrew Thompsonhttp://www.athompson.info/andrew/


> Message posted via JAVAKB.comhttp://www.JAVAkb.com/Uwe/Forums.aspx/JAVA-general/200710/1


From: Andrew Thompson Date:   Tuesday, October 23, 2007
wrote in message:
>...
Download link ishttp://www.britishcomputercolleges.com/vu/GraphEasyRect.jar
(re. web start launch)



Andrew
I had a D in college English, I'll consult dictionary and a grammar
book next time I post.



Sure, but note it was actually Lew that provided those tips.

I am new to JAVA, I copied your jnlp code in a file grapheasy.jnlp and
stored it in the same folder where my jar file resides on server



Here?
<http://www.britishcomputercolleges.com/vu/grapheasy.jnlp>
I just tried, and got a message..
"Sorry Our site is experiencing technical difficulties,
kindly come back in a day or two "

(Wow. Tell those Server-Admin. people this is the third
millennium, and if a site is experiencing difficulties, I might
give it '10 minutes' before I try it again - if it's lucky..)

When I pointed my browser to the jar file, it popped open the dialog
box which asked whether I wanted to save or open the file



No. You need to link directly to the *JNLP* file.
Clicking that link will download the jar, cache
it locally*, and launch it on-screen for the user.

When I clicked on open it simple ran it
But where is this jar file stored on user's system and how does the
user run the application next time she want to



* When we deploy things using web start, neither the
developer nor end user needs to specifically know
*where* the file is cached, though the user or their
sys. admin. can find out if motivated/savvy enough.

To allow the user to relaunch the application, we (the
deployer) can 'suggest' desktop icon and launch menu
items (in the JNLP file) - to launch the app. in future.

Most of the JNLP (web start API) examples shown here
suggest a dektop icon. <http://www.physci.org/jws/>

And.. (hunts around) this one ..
<http://www.physci.org/xml/xmltools.html#xmlwfc>
.suggests a menu item. The direct link is..
<http://www.physci.org/xml/xmlwfc.jnlp>

One thing, in closing, is that I find the habit of putting
replies above earlier text (top-posting) to be very confusing.
It is generally better to put replies directly after whatever
you are reply ing to, and trim any text no longer immediately
relevant - like I have done in my reply.

--
Andrew Thompson
http://www.athompson.info/andrew/

Message posted via JAVAKB.com
http://www.JAVAkb.com/Uwe/Forums.aspx/JAVA-general/200710/1


From: Andrew Thompson Date:   Tuesday, October 23, 2007
wrote in message:
..
One thing, in closing, is that I find the habit of putting
replies above earlier text (top-posting) to be very confusing.



Since your reply was *not* 'top-posted', that statement was
mostly nonsense. Better placement of the replies (immediately
after the quoted material)'d be appreciated, though.

--
Andrew Thompson
http://www.athompson.info/andrew/

Message posted via JAVAKB.com
http://www.JAVAkb.com/Uwe/Forums.aspx/JAVA-general/200710/1


From: Dexter Date:   Tuesday, October 23, 2007
<http://www.britishcomputercolleges.com/vu/grapheasy.jnlp>
I just tried, and got a message..
"Sorry Our site is experiencing technical difficulties,
kindly come back in a day or two "
(Wow. Tell those Server-Admin. people this is the third
millennium, and if a site is experiencing difficulties, I might
give it '10 minutes' before I try it again - if it's lucky..)



You got this message I have put up for pages that were removed from
site last month, it was intended for those who use those pages. After
storing and trying the jnlp file, I had removed it before you had a
chance to try it

I have since uploaded it again and its link is

http://www.britishcomputercolleges.com/vu/GraphEasy.jnlp

I have added a link to this on opening page http://www.britishcomputercolleges.com

See the link under DESKTOP VERSION titled "Graph Rectangular"

When I click this, it shows the xml contents


From: Andrew Thompson Date:   Tuesday, October 23, 2007
wrote in message:
<http://www.britishcomputercolleges.com/vu/grapheasy.jnlp>
..
http://www.britishcomputercolleges.com/vu/GraphEasy.jnlp



Try to avoid upper case in URLs.

That returns a 404 for me (as does the lowser case variant)

I have added a link to this on opening page http://www.britishcomputercolleges.com



I do not see it.

See the link under DESKTOP VERSION titled "Graph Rectangular"



The only link I see there, is to the jar.

When I click this, it shows the xml contents



The server is probably not providing the correct content-type
for JNLP files. That will be easy for me to check once you
have any JNLP File available on the BC server.

BTW - another tip is that the word 'I' should always be upper case.

--
Andrew Thompson
http://www.athompson.info/andrew/

Message posted via JAVAKB.com
http://www.JAVAkb.com/Uwe/Forums.aspx/JAVA-general/200710/1


From: Dexter Date:   Wednesday, October 24, 2007
>I have added a link to this on opening pagehttp://www.britishcomputercolleges.com

I do not see it.
Sorry Andrew



Try this link http://www.britishcomputercolleges.com/vu/grapheasy.jnlp
The testpage is http://britishcomputercolleges.com/vu/testjnlp.html

This simply return the xml nothing else, so it must be what you said
of the server not returning MIME format


From: Dexter Date:   Wednesday, October 24, 2007
wrote in message:
>I have added a link to this on opening pagehttp://www.britishcomputercolleges.com
I do not see it.



Try this link http://britishcomputercolleges.com/vu/testjnlp.html to
test the jnlp file

The jnlp file resides at http://www.britishcomputercolleges.com/vu/grapheasy.jnlp

Asad


From: Andrew Thompson Date:   Wednesday, October 24, 2007
wrote in message:
>I have added a link to this on opening pagehttp://www.britishcomputercolleges.com
..
Try this link http://www.britishcomputercolleges.com/vu/grapheasy.jnlp



Yes. I see it now.

The testpage is http://britishcomputercolleges.com/vu/testjnlp.html
This simply return the xml nothing else, so it must be what you said
of the server not returning MIME format



OK - strong suspicions are good, but facts are better.

In cases like this, I surf on over to Roedy's site to the
neat little mime-type checker applet.
<http://mindprod.com/jgloss/mime.html>

If we click 'OK' for the trusted code, paste the JNLP
URL into the top text field then click to 'Test' the
server, we can see.. yep.

server MIME type: text/plain
proper MIME type: application/x-JAVA-jnlp-file

That server is definitely returning the wrong
content-type for JNLP files.

Ask your server people (very nicely) to add
'application/x-JAVA-jnlp-file' for file type 'jnlp',
and we should be able to see it launched,
rather than rendered as XML in the browser.

--
Andrew Thompson
http://www.athompson.info/andrew/

Message posted via JAVAKB.com
http://www.JAVAkb.com/Uwe/Forums.aspx/JAVA-general/200710/1


From: Dexter Date:   Thursday, October 25, 2007
wrote in message:
wrote in message:
>I have added a link to this on opening pagehttp://www.britishcomputercolleges.com
Ask your server people (very nicely) to add
'application/x-JAVA-jnlp-file' for file type 'jnlp',
and we should be able to see it launched,
rather than rendered as XML in the browser.
--
Andrew Thompsonhttp://www.athompson.info/andrew/



I will do so later today.

I have made a little amendment to GraphEasyRect, the recent version
shows coordiante points as one moves the cursor along the canvas. This
should come in handy to see the points on the graph line.

On another note, I was trying to edit and save a data file which is
part of the GraphEasyRect.jar

I used the ZipOutputStream, DataOutputStream, and ZipEntry class es to
manipulate this datafile.

When I ran the program it recreated the Jar file with just this
datafile and all other class file contained in GraphEasyRect.jar
disappeared. I suppose this happened because the only file I told the
program to write was the datafile.

What I am trying to do is to read from a file contained in
GraphEasyRect.jar and update it. What should I do to make other files
remain put in Jar file and for the program to update this datafile
only

I don't need code just the logical steps required for this

Asad S. Yousaf


From: Andrew Thompson Date:   Thursday, October 25, 2007
wrote in message:
>I have added a link to this on opening pagehttp://www.britishcomputercolleges.com
Ask your server people (very nicely) to add



.correct content-type for JNLP..

I will do so later today.



Cool. Let us know when it's done, and you have checked it.
It'd be nice to see this new launch working off the
home site.

..
On another note, I was trying to edit and save a data file which is
part of the GraphEasyRect.jar



This is a very different subject, and probably best discussed
in a separate thread, but my basic advice is "do not do that".

It'll be virtually impossible to achieve that in a sandboxed
app., and even for a 'full-trust' app. it is a very fragile and
non-optimal strategy.

..
What I am trying to do is to read from a file contained in
GraphEasyRect.jar and update it.



What file? Why? What does it contain?

Perhaps you can best answer those questions (and the
ten more I won't ask yet) by describing this to me in
terms of "I want to offer X to the end user", where X is
the thing you are thinking of doing using Zip files and such.

Note that Zip files themselves mean nothing to the end user,
so there should be no mention of '..zip file..' in the 'X'.

..
I don't need code just the logical steps required for this



I generally avoid giving out the logical steps to achieving
'poor strategies' - If I can find out what the end goal is, I
should be able to help better.

--
Andrew Thompson
http://www.athompson.info/andrew/

Message posted via JAVAKB.com
http://www.JAVAkb.com/Uwe/Forums.aspx/JAVA-general/200710/1


From: Dexter Date:   Saturday, October 27, 2007
wrote in message:
GraphEasyRectwas previously available as an applet. Now we've
converted it to a desktop standalone application that runs on
multiple
platforms Windows, Mac, and Linux
This tool allows graphing functions in cartesian plane, points of
discontinuity having limits are encircled on graph line. You may view
and copy the values of the function between a range of x values
Download link is http://www.britishcomputercolleges.com/vu/GraphEasyRect.jar


A newer version of GraphEasyRect.jar has been uploaded which fixes a
few quirks that existed in the original version. Anyone who downloaded
GraphEasyRect.jar on 26th October should download this new version as
the version available on 10/26/2007 had a bug.

Asad



Next Message: Application error occurred during request processing


Blogs related to Download Graphing Utility (Complimentry Copy)

Antique, vintage, muscle and exotic collectors.
godfather for pc denis r. phillips lori strauss va federal heavyweight shotshells enabling task manager. droits au recours des demandeurs dasile protogoras complimentary color wheel. happy melodies game spell margurita. htomail.com john ...

Dwi
... black stratfordwifiredepartment best philly steak sandwiches in philadelphia saigon sandwich recipes smokey bones chicken flatbread sandwich copy cat recipe alec baldwin cell phone message to daughter worldwidedepartmentstore.com ...

Solar do Cicero foto 09
... 2007 bosch vp44 pinout download arrogant worms i am cow titan quest 1.08 patch amy blaine diagnostico de sindrome saethre chotzen fluores bosna punk rock sargent john s assault rifles of the future free download java jre torrents ...

LHOOQ
granite granola grant granted grants graph graphic graphical graphics graphing grasp grasped grasping grasps grass grateful gratefully gratified gratifying gratitude gratuitous graves graveyard gravitated ...

[netwrite-publish-announce] Digest Number 10632
Note that there will not be too much paste as coriander roots are small but enough to provide the complimentary taste required for this dish. Make sure you wash the roots thoroughly otherwise you will end up having grit in your paste. ...

click here python untrusted interpreter delicate sound of thunder ...
... subversion pamela stephenson born topografia suelo colombia windows xp home edition serial number bip piaski implementacion de un grafo en java hammerfall bootlegs download dictionary methods python sort registry mechanics keygen ...


Programming | Sports | Autos

copyright 2006
Valid XHTML 1.0 Transitional