| Designing presentation-tier for occasionally connected applications. |
|
 |
Index ‹ java-programmer
|
- Previous
- 3
- Tools To Tackle New Code Base?Hi,
I'm looking for advice on how to quickly come to grips with
a large ( ~5000 files), undocumented codebase that's mostly Java
( compiles with Sun's command line compiler under Windows XP ).
Here are some considerations.
1) I'm new to Java, coming from a C++ background
2) I need to get a handle on this quickly but also cheaply.
3) I have no access to the original programmer.
What tools are availble that might help me analyze and
visualize the relationship between various modules and classes
in this project? In the past, with large C++ codebases I've
looked at Doxygen but the learning curve seemed very steep
and I never did figure out the graphical tools.
Appreciate any advice, the more concrete the better.
If there's a different forum I should be posting this in please let
me know.
TIA,
Gerry Murphy
- 3
- Strange problem with Bluetooth and RFCOMMHi,
I have programmed an application that sends data from a PC to a mobile
phone. This application uses the Bluecove library and a RFCOMM
connection.
When I establish a connection between these two devices and send from
the server (PC) a float number (e.g. 3.12) to the client (mobile
phone), the number is displayed correctly and everything is fine. But
when I want to send 20 float values the following reaches the phone:
3.12
3.12
3.12
3.1199999,
-2.12422343E14
9.707659E-27
9.707659E-27
...
0.0
0.0
...
0.0
These values are changing when sending them multiple times. Sometimes
there are more correct numbers (3.12), sometimes less. And sometimes
the mobile application just crashes without an error.
Probably the reason for that is the data which is not transferred
properly. I tested different ways to transfer the data, e.g. partioning
the data into smaller packets or using DataOutputStream but nothing was
a success.
Snippets of one of my source codes:
/* SERVER */
OutputStream out = null;
ByteArrayOutputStream baos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(baos);
for (int i = 0; i < 20; i++) {
float f = 3.12f;
dos.writeFloat(f);
}
byte[] rawData = baos.toByteArray();
dos.close();
baos.close();
out = connection.openOutputStream();
out.write(rawData.length >> 8);
out.write(rawData.length & 0xff);
out.write(rawData);
out.flush();
out.close();
connection.close();
/*CLIENT*/
in = connection.openInputStream();
int length = in.read() << 8;
length |= in.read();
byte[] data = new byte[length];
length = 0;
while (length != data.length) {
int n = in.read(data, length, data.length - length);
if (n == -1) {
throw new IOException("Can't read data");
}
length += n;
}
ByteArrayInputStream bais = new ByteArrayInputStream(data);
DataInputStream dis = new DataInputStream(bais);
for (int i = 0; i < 20; i++) {
Log.out(dis.readFloat() + " ");
}
Has anyone an idea how to solve this problem?
Peter Vermeer
- 7
- [signed applet] certification authorityHi,
I have a signed applet (signed myself with jarsigner.exe).
It works fine but the users get a warning message before accepting the
applet to execute.
Next step, is to have my certificate trusted by Verisign or other
third party.
Do you know any link to a site that would explain the procedure to
follow in details ?
Which certification authority would you recommend ? the cheapest ?
thanks
- 7
- Switching GTK theme on Java 1.6 (i.e., mustang)I'm at a loss on how to change on-the-fly the theme (i.e., resource) for the
GTK look and feel on Java 1.6 (Mustang). On 1.5 it was a simple matter of
setting a system property (i.e., "swing.gtkthemefile") like this:
System.setProperty ("swing.gtkthemefile", fGTKThemeFile);
But on Mustang it has been completely changed.
It is probably just as easy but I'm missing something?
Thanks.
Karl
email***@***.com
- 8
- Add a computer language to NetbeansHello
This may be a simple question. I searched in Google but I think I am
using inapropiate words for the query and I don't get what I want.
How can I add a syntax highlight for a new language, in my case X3D,
to Netbeans?
Any general tutorial?
Thanks
Jordi
Note: Does someone already have done this with VRML or X3D?
- 8
- CLOB problem in JAVAHi :
I am getting a casting exception (java.lang.ClassCastException:
com.ibm.ws.rsadapter.jdbc.WSJdbcConnection) when invoking the
CLOB.createTemporary metehod. Extract of relevant lines shown below:
Any
ideas how I can resolve this?
Versions:
Oracle 9i
WebSphere Ver 5.1
Cheers
Lig
import java.io.Writer;
import java.sql.Clob;
import java.sql.Connection;
import java.sql.CallableStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Blob;
import javax.sql.DataSource;
import javax.naming.InitialContext;
import javax.naming.Context;
import javax.naming.NamingException;
import java.util.List;
import java.util.ArrayList;
import java.sql.Types;
import oracle.jdbc.OracleConnection;
import oracle.jdbc.driver.*;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import oracle.sql.CLOB;
.
.
.
Context jndiContext = new InitialContext();
DataSource ds = (DataSource)jndiContext.lookup("java:comp/env/"
+s_dataSource);
Connection conn = ds.getConnection();
tempClob = CLOB.createTemporary(conn, true, CLOB.DURATION_SESSION );
Error Encountered: -
java.lang.ClassCastException:
com.ibm.ws.rsadapter.jdbc.WSJdbcConnection
- 9
- considering a job as an ATG dynamo server adapter to j2ee enviormenthi...
i've been offered a job which involves getting a large content based
java application based on ATG dynamo server version 4.5.0, they
considering a move to a j2ee enviorment system (a rewrite of the
entire application is in order) and need a person who will study the
current application and who willl provide insight for writing the
existing one.
i have no actuall expirience in j2ee ejb etc.. and as such, would
like what is the learning curve for this server
- 12
- [ADV] Java GUI test tool qftestJUI version 1.4 released
Quality First Software (QFS) is pleased to announce the release of
version 1.4 of qftestJUI - The test tool for Java User Interfaces.
The is the second medium upgrade for qftestJUI since the release of
version 1.0 in October 2002. Along with a greatly improved and
extended tutorial, the highlights of this upgrade are support for Java
WebStart, extended support for distributed development through an
include mechanism and dependency tracking across multiple test-suites.
An evaluation version is freely available for download at
http://www.qfs.de/en/qftestJUI/download.html
where you'll also find a link to the latest release notes.
What is it?
===========
Based on capture/replay, but extending far beyond, qftestJUI manages
the creation and execution of automated tests for Java/Swing
applications with a graphical user interface. It runs on Windows and
all major Unix systems with JDKs from 1.1.8 to 1.4.2.
The key feature of qftestJUI is an exceptionally high test
reusability, minimizing the effort necessary for regression testing.
Intuitive graphical design of tests reduces the cost of introducing
qftestJUI into the QA process. Additionally, qftestJUI sports a set of
features for the advanced user such as variables, procedures and
scripting. Extensive documentation, including a tutorial, is available
for users approaching the product with different background and skill
levels.
For detailed product description and free evaluation please visit
http://www.qfs.de/en/qftestJUI/index.html
--
Gregor Schmid email***@***.com
Quality First Software GmbH http://www.qfs.de
- 13
- Networked version of Swing (X windows style)?Hello,
I was wondering if something like that exists or if someone has ever
thought about it:
Instead of Swing updating the local screen and obtaining events from
the local mouse & keyboard, it may be useful in some cases to have a
networked version of Swing, just like XWindows.
Imagine a workstation connecting to a remote JVM that starts a typical
swing application. But this JVM/Classpath/etc is configured so that all
Swing calls are serialized to the remote workstation, where all the
screen updates are made. And viceversa for the mouse and keyboard.
Probably Swing is not well designed for this kind of "pluggability"...
in any case it would be an interesting thing to have.
The key requirement here is that preexisting AWT/Swing applications can
be remotely executed without modification.
Is there any project or product that does this?
If not, any ideas on how to implement it?
Thanks,
Luis.
- 13
- Java Everywhere videoCool cool video, matrix-like, about Java Everywhere.
http://www.youtube.com/watch?v=NW2WKCai2Kg
The REALLY funny thing is it's in Flash version 8, which just goes to
show Java may be everywhere, but there are degrees of everywhere even
in this.
- 13
- XApool +multiple replicated nodesHi All,
I am creating a small research system for testing various fall over
algorithms in a distributed database situation and and have been looking at
using XApool as a possible JDBC XA proxying and load balancing solution. I
am just wondering if anyone else has had any luck getting the XApool system
to talk to different oracle hosts ? I plan to use the development/personal
edition of oracle and their thin jdbc driver, which is also XA compatible.
Anyway, if someone could point me in the right direction I would be much
appreciated :) I've had a look at the docs but cannot see where I add the
different nodes into the pool ???
- 14
- Bypassing Struts validator - why doesn't bCancel=true work?Hi there,
I'm trying to bypass the Struts validator sometimes on my page. I'm
using JSP and Struts 1.1.
Basically I have a submit button that submits a form. The Struts
validator component is working great for client-side validation of the
contents of this form.
However, now I've been asked to implement a drop down on the page that
repopulates another drop down box when it is changed. Because of the
size of the data, I'm doing this server side, not client side. That
is, I want the page to refresh and then repopulate these fields.
This means I have to bypass the validator to ignore anything the user
might have already entered in the fields. I've read all over the
newsgroups how putting "bCancel=true" in your onclick or onchange
method should do the trick, but it doesn't work for me. When I create
my select box like this
<html:select property="countyId" tabindex="1"
onchange="bCancel=true;document.forms[0].method.value='changeCounty';document.forms[0].target
= '_self';document.forms[0].onsubmit();document.forms[0].submit();">
and then change the drop down box, nothing happens. Control never
gets to my changeCounty action. I've checked that. But I also don't
get any validation messages from the validator, despite there being
validation errors on the page when I change the drop down box. So
it's like the validator function doesn't execute either. (The method
value is there because I'm using a DispatchAction class.)
Is the validation function running or not? How can I bypass the
validation and still submit the form?
Thanks for the help!
Marnie
- 14
- Log4j - dealing with multithreaded invocations?Hi,
I have a class with 4 methods. I want to use Log4j to log messages for
each of these methods to a common log file.
Ideally I would like the log messages for each method to be seperated
from the others. But if multiple users were to invoke the methods at
the same time, then the messages in my log file would be jumbled up
with the others.
I can probably try making the methods synchronized so i dont get into
this sort of trouble, but logging by itself doesn't seem to be a good
enough reason to be making methods synchronized.
What approach can I use to deal with this?
Thank you,
Rohit.
- 14
- Client Code for Axis - Newbie QuestionHi,
I'm a first time Axis 1.1 user and trying to figure out how to write
web services client code. I used WSDL2JAVA to create java source from
the wsdl. I ended up with the following files...
xxxx_Port.java
xxxx_Service.java
xxxx_ServiceLocator.java
xxxxBindingStub.java
xxxxRequest.java
xxxxResponse.java
Does anyone have some sample code they can share with me that shows
the basics of how to set up the request and response parameters and
then actually make the call to the web service. Not sure which
classes or methods to use.
Thanks
- 15
- -Xms setting makes IE exitFolks,
My company uses a Java based server application, and Internet Explorer
on our client machines. Recently our server application was upgraded,
and instead of needing Microsoft's JVM on the client machines we are
now using Sun Java version 1.4.2_08.
Performance around applet caching was poor, and the recommended cure
for that was to set "-Xms128m -Xmx256m" in the Java Runtime
Parameters from the Java control panel. On machines that have never had
the Microsoft JVM installed this fixed the problem.
However, on machines that have had the JVM installed, this causes the
browser to exit whenever an applet is started. From doing some research
it seems this problem is usually caused by a conflict between the Sun
and Microsoft Java components. So the JVM was uninstalled using the
process detailed here: -
http://www.java.com/en/download/help/uninstall_msvm.xml#cli
(That is identical to the steps found on Microsoft's knowledgebase)
After a lot of experimentation I have found that setting only the
starting memory setting "-Xms64m" does not cause any problems.
However this is clearly far from ideal and I am looking for a better
solution. Does anybody have any suggestions?
-----
Lewis
|
| Author |
Message |
vijay1

|
Posted: 2004-2-5 1:43:00 |
Top |
java-programmer, Designing presentation-tier for occasionally connected applications.
Folks
We are in the process of developing a web-based app that needs to be
functional when the user is on the road where the Internet connection
to the server is not available. There are 3 basic requirements:
1. Must be web-based, not a fat client app.
2. The UI for the offline mode and on-line should be identical.
3. In the off-line mode some basic functionality to enter data (fill
forms) should be available, that do not need to be reentered when the
connectivity is available.
Can some one think of a solution on how one would design this app. To
me disconnect from the network mean no web application, but some one
here insisted that we can put a web-server/appserver on each client
machine (about 200 of these).
Swing based solutions are ruled out because that is not a web-based
architecture.
Any ideas?
Thanks in advance.
Vijay
|
| |
|
| |
 |
vijay1

|
Posted: 2004-2-5 1:44:00 |
Top |
java-programmer >> Designing presentation-tier for occasionally connected applications.
Folks
We are in the process of developing a web-based app that needs to be
functional when the user is on the road where the Internet connection
to the server is not available. There are 3 basic requirements:
1. Must be web-based, not a fat client app.
2. The UI for the offline mode and on-line should be identical.
3. In the off-line mode some basic functionality to enter data (fill
forms) should be available, that do not need to be reentered when the
connectivity is available.
Can some one think of a solution on how one would design this app. To
me disconnect from the network mean no web application, but some one
here insisted that we can put a web-server/appserver on each client
machine (about 200 of these).
Swing based solutions are ruled out because that is not a web-based
architecture.
Any ideas?
Thanks in advance.
Vijay
|
| |
|
| |
 |
vijay1

|
Posted: 2004-2-5 1:45:00 |
Top |
java-programmer >> Designing presentation-tier for occasionally connected applications.
Architects,
We are in the process of developing a web-based app that needs to be
functional when the user is on the road where the Internet connection
to the server is not available. There are 3 basic requirements:
1. Must be web-based, not a fat client app.
2. The UI for the offline mode and on-line should be identical.
3. In the off-line mode some basic functionality to enter data (fill
forms) should be available, that do not need to be reentered when the
connectivity is available.
Can some one think of a solution on how one would design this app. To
me disconnect from the network mean no web application, but some one
here insisted that we can put a web-server/appserver on each client
machine (about 200 of these).
Swing based solutions are ruled out because that is not a web-based
architecture.
Any ideas?
Thanks in advance.
Vijay
|
| |
|
| |
 |
Andrew Thompson

|
Posted: 2004-2-5 1:54:00 |
Top |
java-programmer >> Designing presentation-tier for occasionally connected applications.
Vijay Kumar wrote:
> Folks
>
> We are in the process of developing a web-based app that needs to be
> functional when the user is on the road where the Internet connection
> to the server is not available. There are 3 basic requirements:
>
> 1. Must be web-based, not a fat client app.
> 2. The UI for the offline mode and on-line should be identical.
> 3. In the off-line mode some basic functionality to enter data (fill
> forms) should be available, that do not need to be reentered when the
> connectivity is available.
>
> Can some one think of a solution on how one would design this app. To
> me disconnect from the network mean no web application, but some one
> here insisted that we can put a web-server/appserver on each client
> machine (about 200 of these).
Putting an entire server on the client machine
would seem to lose almost the entire benefit
of doing it as a thin-client.
> Swing based solutions are ruled out because that is not a web-based
> architecture.
What do you mean? Of course a Swing
based GUI can be both web-based (hint -
JApplet) and self updating (Java Web Start)
which would, AFAIU, retain most of the
benefits of the thin-client concept.
Of course, if you are force to deal with
that horribly broken 'OS component'
made by MS, it complicates things slightly.
|
| |
|
| |
 |
Andrew Thompson

|
Posted: 2004-2-5 1:57:00 |
Top |
java-programmer >> Designing presentation-tier for occasionally connected applications.
Vijay Kumar wrote:
> Architects,
Oh I see, on c.l.j.gui it was 'folks' but
here it is 'architects' is it?
Please do not multi-post Vijay,
you are not _that_ important.
Take my word for it.
|
| |
|
| |
 |
Eric Sosman

|
Posted: 2004-2-5 2:13:00 |
Top |
java-programmer >> Designing presentation-tier for occasionally connected applications.
Vijay Kumar wrote:
>
> Architects,
>
> We are in the process of developing a web-based app that needs to be
> functional when the user is on the road where the Internet connection
> to the server is not available. There are 3 basic requirements:
>
> 1. Must be web-based, not a fat client app.
> 2. The UI for the offline mode and on-line should be identical.
> 3. In the off-line mode some basic functionality to enter data (fill
> forms) should be available, that do not need to be reentered when the
> connectivity is available.
>
> Can some one think of a solution on how one would design this app. To
> me disconnect from the network mean no web application, but some one
> here insisted that we can put a web-server/appserver on each client
> machine (about 200 of these).
>
> Swing based solutions are ruled out because that is not a web-based
> architecture.
1: If the application must be web-based and must operate
when the system is not connected to the web, the system
must include its own web server. That much seems clear.
2: If the on-line and off-line UIs are to be identical
(except for some missing functionality when off-line), the
most straightforward approach is to use the same browser
and the same client-side applets (or other gadgetry) in
both modes. The only difference would be in which web
server one connects to: the real on-line server, or the
substitute localhost server.
3: This requires a little more work. You don't say what
sort of work the application does, but it seems that the off-
line localhost web server must be able to store user input
somewhere (no problem) and then to transmit that input to the
on-line server when it becomes available. One way to do this
would be to write a web client that would "replay" the off-line
data to the on-line server, possibly after the user first goes
through a login sequence of some kind. Another way might be to
use a different channel altogether -- for example, you might
"store" the off-line work as a bunch of E-mail messages to an
address on the server machine, essentially letting the E-mail
client take care of the data synchronization task.
Finally, you're quite right that Swing is not a web-based
architecture. But Unicode is also not web-based, pixels on
the screen are not web-based, the local file system is not
web-based, and my grandmother's fruitcake is not web-based.
Swing is a set of classes to help you implement GUIs; it makes
no difference whether the GUIs have or do not have any web
association. Swing-ness and Web-ness are orthogonal, so
what's the objection?
--
email***@***.com
|
| |
|
| |
 |
zn魊t

|
Posted: 2004-2-5 7:48:00 |
Top |
java-programmer >> Designing presentation-tier for occasionally connected applications.
On 4 Feb 2004 09:44:56 -0800, email***@***.com (Vijay Kumar)
wrote:
>Architects,
>
>We are in the process of developing a web-based app that needs to be
>functional when the user is on the road where the Internet connection
>to the server is not available. There are 3 basic requirements:
>
>1. Must be web-based, not a fat client app.
>2. The UI for the offline mode and on-line should be identical.
>3. In the off-line mode some basic functionality to enter data (fill
>forms) should be available, that do not need to be reentered when the
>connectivity is available.
>Can some one think of a solution on how one would design this app. To
>me disconnect from the network mean no web application, but some one
>here insisted that we can put a web-server/appserver on each client
>machine (about 200 of these).
No wonder they insisted :-) If you are on the road, how do yo expect
to run a web-aplication without a web server?
It's really pretty simple:
Put a web server on every laptop. Have a single web application that
should :
1. handle UI (presentation layer)
2. be aware of connection status
5. support routing of online operations if connection is available
3. support offline operations
4. support data synchronization on connection
Then put any other business logic (i.e., "online" operations) and
legacy database on the main server on the network.
>Swing based solutions are ruled out because that is not a web-based
>architecture.
JApplet is pretty Swing based and pretty web-based ;-) But ... weren't
you asking about design?
You could implement this same "design" with anythig from JApplets,
satndalone Swing, JSP, on the laptop, to Servlets, EJB or RMI, both
on the laptop and on the main server, just to name a few. The only
limitations come, I'm afraid, from the requirement for the UI to be a
web app.
regards
zn魊t
|
| |
|
| |
 |
Carsten Zerbst

|
Posted: 2004-2-5 16:46:00 |
Top |
java-programmer >> Designing presentation-tier for occasionally connected applications.
Am Wed, 04 Feb 2004 09:43:42 -0800 schrieb Vijay Kumar:
> Folks
>
> We are in the process of developing a web-based app that needs to be
> functional when the user is on the road where the Internet connection
> to the server is not available. There are 3 basic requirements:
>
> 1. Must be web-based, not a fat client app.
> 2. The UI for the offline mode and on-line should be identical.
> 3. In the off-line mode some basic functionality to enter data (fill
> forms) should be available, that do not need to be reentered when the
> connectivity is available.
>
I just started something like this for timereporting. The solution for us
is a webstart application which will synchronize project description and
entered time data if the server is available. But this is of course more
or less a fat client app. Installing a simple http server will give you
IHMO the same, only with additional headache of a splitted client app
(server + browser).
Bye, Carsten
|
| |
|
| |
 |
Thomas Weidenfeller

|
Posted: 2004-2-5 17:29:00 |
Top |
java-programmer >> Designing presentation-tier for occasionally connected applications.
Vijay Kumar wrote:
> We are in the process of developing a web-based app that needs to be
> functional when the user is on the road where the Internet connection
> to the server is not available.
Well, this is a contradiction. Without a web server anything beyond
simple file viewing will become difficult or impossible when just using
a browser. In fact, since the web server is responsible for delivering
the web-based application to the thin-client, there is nothing left that
can deliver the application.
> 1. Must be web-based, not a fat client app.
> 2. The UI for the offline mode and on-line should be identical.
> 3. In the off-line mode some basic functionality to enter data (fill
> forms) should be available, that do not need to be reentered when the
> connectivity is available.
No server, no form processing. You either throw in some local web
server, you give them a real application or a local applet, hack tons of
JavaScrip (this is a Java, not a JavaScript group :-)) or you just give
them a text editor :-). In any case, you will not have a thin client. Or
at least not a thin client without some additional fat pieces of
software on the same machine.
> Can some one think of a solution on how one would design this app.
In a totally different way. Instead of first selecting the technology
(web-based thin-cilent), and then trying to work around the limitations,
I would start with some real requirements, and then select a matching
technology.
[Note: What you call requirements are not requirements, but technically
constraints. A requirement defines what should happen, a constraint
defines how it should happen (e.g. choice of technology). A constraint
reduces a developer's ability to find a solution for the problem at
hand, while at the same time it takes the responsibility out of the
hands of the developer. The one insiting on the constraint (the choice
of technology) is responsible now. There is nothing wrong with
constraints in a software project. You usually have a lot of them. But
when they reduce your alternatives to close to zero, you should get rid
of them, and do a fresh start.]
> To
> me disconnect from the network mean no web application, but some one
> here insisted that we can put a web-server/appserver on each client
> machine (about 200 of these).
Sure you can. I would hesitate to call that a thin client, but hey it is
your software. If you do so, your problem will be deployment. Exactly
the problem people try to avoid when going for a web-based thin-client
solution. Since this is a Java group, you could think about using Java
web start for software distribution and updates.
> Swing based solutions are ruled out because that is not a web-based
> architecture.
"Web-based architecture" is a buzzword and meaningless here. Swing is a
GUI toolkit. If you have a decent Java version in your browser (usually
using a plug-in), you can of course have Java Applets who use Swing. If
that qualifies as "web-based architecture" or not is up to you.
/Thomas
|
| |
|
| |
 |
| |
 |
Index ‹ java-programmer |
- Next
- 1
- the iPhone Widget List!wow, already many apps / widgets for the iPhone and the thing doesn't
ship for 55ish hours! expect 1000's of these in a few months... they
really make apps on any other mobile phone obsolete!
http://www.iphonewidgetlist.com/
Those guys are sooooo screwed!
Learn how to make them fast, here:
http://webkit.org/blog/?p=87
Check the left side for the tools...
-
- 2
- delete all jvm'sI think I have a corrupt JVM on my machine. I would like to delete all
JVM's and just install the sun JVM. Could anyone tell me how to delete
all JVM's.
Aidy
- 3
- JSP and response object sizeIs there any way to know the size of a JSP (amount of bytes sent in the
response object)?
We need to know the size of the generated JSP when they are sent to the
client. I can only ask for the buffer size... but no the real amount of
bytes sent in the response object.
Any idea???
Thanks in advance
- 4
- Tomcat - Invalid Direct Reference To Login Page ( Workaround help )Hi,
I'm really happy that the "Invalid Direct Reference To Login Page" has
finally been fixed. However I am stuck using Tomcat 4.0.x ( and I
cannot recompile the app-server as it is a managed resource ) , and
the requirement to have a login box included in each page via a panel
is still there.
I've been looking for a workaround. According to the FormAuthenicator
Tomcat code, if the requestURI in the request is NULL, then the
"Invalid Direct Reference To Login Page" error is thrown.
I've written a proxy servlet called LoginProxy. Its job was to alter
the requestURI in the request object before posting to the
j_security_check target.
My login form would post to something like:
LoginProxy?j_username=my&j_password=test&j_forward_uri=/index.jsp
Great, apart from one small problem - HttpServletRequest is READ ONLY.
Damn. I had a look at the actual class heirarchy, and found that
HttpServletRequestFacade was the class that implemented
HttpServletRequest for Tomcat ( I am prepared write Tomcat specific
code, as long as it doesn't involve changing Tomcat itself. ).
HttpServletRequestFacade extends HttpServletRequestImpl, which
implements HttpRequest. HttpRequest does have write access, however
the code:
( ( HttpRequest ) a_Request ).setRequestURI( sForward )
gives a ClassCastException.
My other thought, was - if I just do a sendRedirect ( I was using
forward before ), won't the requestURI be the url of the LoginConfig
servlet.... I could cope with tomcat forwarding me back to the
servlet, I'd just have to add some extra logic. Alas, the request
still retains the null indicating to requestURI.
Can someone tell me how I can modify the request object, or even
create a new one?
Thanks
Ben
- 5
- Parallel PortHello,
I want to drive a device using the parallel port data output.
I want to use preferably an applet to do that. Is that possible?
I heard that javax.comm is not very reliable, does anyone have experience
with it?
thanks,
anwar
- 6
- Jar: protocol questionI've been using the Jar: protocol a bit in the last few days and I'd like to
know if this is a valid use of that protocol:
jar:file:!/Images/foo.gif
Basically, I'm trying to describe the location of a GIF that a program
should be able to find in one of the various jars that are on the classpath
used by the program.
Since 'this.getClass().getResource()' will search EVERY jar in the classpath
for the desired file, it shouldn't be necessary to specify the jar name.
Therefore, it seems to me that this should be valid notation for indicating
that the jar name isn't necessary in this case: the bang ('!') in the name
following the 'file:' suggests to me that the default jar(s), namely all of
the jars found in the classpath, will be searched for an Images directory
and a file named foo.gif within that directory.
Does that seem reasonable? If not, can anyone suggest a better notation to
use for my situation?
I can't find any discussion of this "special case" in the articles I've seen
about the Jar: protocol.
--
Rhino
---
rhino1 AT sympatico DOT ca
"There are two ways of constructing a software design. One way is to make it
so simple that there are obviously no deficiencies. And the other way is to
make it so complicated that there are no obvious deficiencies." - C.A.R.
Hoare
- 7
- cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com )cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
cheap jeans,jersey ( paypal accept ) ( www.world-wholesaler.com
)
- 8
- Switching Locale intermittent geometry position bugHi,
I'm working on a 3D visualization of the Mars Exploration Rover
Mission.
Please refer to my webpage:
http://home.comcast.net/~meralizer/
Everything appears to be working well, except I'm still haunted with
what appears to be a Locale/HiResCoord bug.
What makes it more difficult to debug is that it's intermittent!
Sometimes when I switch to a Locale, geometry in the scene/heirarchy
jumps to the wrong position and orientation. However, when I switch to
another Locale and back again, this "fixes" the problem.
So it appears that some information in the transformation heirarchy is
temporarily corrupted. Then when I toggle the Locales, it's is
restored/updated/recalculated to the correct values.
I'm trying to finish this project, but this one remaining bug is
driving me nuts.I'm getting the same bug on two different platforms,
so it's not a platform/grapics card-specific bug.
Any ideas?
thanks
- 9
- java long in an Access databaseHi,
Perhaps this is more of an Access question. I'm discovering that
Access' "Long Integer" cannot store a java Long. So I'm resorting to
string the numbers as strings. I'm I doing the right thing (other than
using Access :) ) or missing someting?
Many thanks in advance!
Aaron Fude
- 10
- Can you write to a file from a vector??How do I write to a file (using a FileWriter) from a filled vector??
I.E. Why can't I do this??
for (i = 0; i < myVector.size(); i++){
myWriter.write(myVector.elementAt(i));
myWriter.flush();
myWriter.close();
}
Thanks,
Steve
- 11
- 12
- Thread.sleep(10000)Is that true Thread.sleep(10000) will make current thread to sleep for
10 seconds?
I cannot use Thread.currentThread().sleep(10000) since sleep is a
static method of Thread. Right? Thread.currentThread() will return a
reference to the currently executing thread object.
- 13
- How to build a class w/ return value?I apologize for a newbie question, but I'm just starting with Java.
I'm trying to write a program which includes a class for checking if a
given text field has a value.
My basic logic would run something like:
A button is pressed
On that event, check if a text field has a value
if it does, return true, else return false.
So, I want to say in the action listener event for that button something
like:
if ( checkValue( txtFieldName ) == true)
do something
else
do something else
I'd then have a public funciton for checking the value
public checkValue( String txtFieldName )
{
if ( txtFieldName == "" )
return false;
else
return true;
}
This keeps giving me an error that a return code is needed for a public
class. If i put void in the class, I can run it but then nothing gets
returned.
Now, a bit of background - I've been doing VB for 12 years, so maybe my
thinking is flawed. If so, is there another way of going about this? I've
googled for the past hour and am very frustrated.
--
kai - email***@***.com - www.perfectreign.com
kai:/> format a:
Error: The DOS concept of formatting disk media is screwed.
To format a floppy, use "fdformat /dev/fd0"
and then "mkfs.minix /dev/fd0".
- 14
- Sound/Midi questionHi,
I need to extract the outgoing pcm audio data while playing midi.
With the getData() method of a SoundbankResource object,
I can only catch sampled audio data stored in a soundbank.
Is there any way I could catch (well, in real time more or less)
the actual sampled data produced by the synth (channels mixed
or unmixed) ?
Any indications or links welcome. Tx !
Ben
- 15
- subclass DeflaterOutputStream just to get bytes written?I am using a deflater output stream, GZIPOutputStream specifically. I
need to know the number of bytes written out by the stream. Obviously
this is not the same number as the number of bytes I have given the
stream. It looks like the only way to get this information is through
the 'def' field, calling getBytesWritten(), or getTotalOut(), depending
on whether I want a long or an int. The problem is that the 'def' field
is protected. So to get this information, I have to subclass
GZIPOutputstream.
Surely, it is fairly common to need this information. Is this a design
flaw, or am I just too stupid to see an easier way to get this information?
Thanks,
~Shea M.
|
|
|