| MI5 Persecution: Surveillance methods 5/8/95 (5827) |
|
 |
Index ‹ java-programmer
|
- Previous
- 1
- Struts and EJB mix upi surfed google a lot but nowhere i found a sample code about how to
integrate Struts and EJB.
all i got is advice of "session facade" , "business delegate" etc etc.
no sample code !!
it seems to me that truts and EJB's can not be mixed.
i opened EJB book and they did not talk about mixing with Struts !
i opened Struts book and they did not talk about mixing with EJB!
i found an article of DEVX article though which is not good and well
-explained.
and did not find in the net about how to mix Struts and EJB.
is there anybody can provide me some resoures/links/book/SAMPLE CODE
recommendation about this mixing ?
- 3
- tag-lib and JSTL expression libraryHallo, I have created a tag-lib. They ask me if it integrates
with the JSTL expression library.
In other words, I would like to be able to express this:
<tag attribute="<% = somevar %> "/>
as:
<tag attribute="${value}"/>
any articles/tutorials explaining how to achieve this?
thanks
l.
- 4
- 7
- Parallel GC in 1.4.2Just a quick question concerning ParallelGC. Since ParallelGC uses the
UseAdaptiveSizePolicy to figure out the parameters (it will bark if you
try to set the -ms parameter) is it necessary or even desired to set the
-mx parameter? Is there a limit in this mode? What happens if you have
2 JVMs running on the same box and neither specifies the -mx parameter?
Is the default used or does the JVM compute it or do the JVMs try to
get as much as they can starving each other out?
- 7
- does IntelliJ do any of these thingsI am taking IntelliJ out for its first spin. See
http://mindprod.com/jgloss/intellij.html
You can see my first program at:
http://mindprod.com/jgloss/arraylist.html#GROWINGARRAYLIST
Everything is going smoothly. I wondered if the following features
exist somewhere and I just can't find them.
1. Reorder methods and declarations in canonical order. I make heavy
use of this in Eclipse to save finding the right spot to insert. I put
methods and declarations I am working temporarily adjacent then
reorder.
2. tidy javadoc.
3. summarise syntax errors, like the Eclipse "problems" panel.
4. quickly ensure Javadoc are complete. I have found the lint which
requires opening a zillion tree elements to find nit picks rather than
true errors.
--
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
- 10
- jdk15 dopes not compile on i386When I try to compile jdk15 on FreeBSD 7.0 i386, I get this error, but
not on FreeBSD 7.0 amd64.
gmake[1]: Entering directory `/usr/ports/java/jdk15/work/install/make'
gmake[1]: Leaving directory `/usr/ports/java/jdk15/work/install/make'
Build Machine Information:
build machine =
Build Directory Structure:
CWD = /usr/ports/java/jdk15/work/control/make
TOPDIR = ./../..
CONTROL_TOPDIR = ./../../control
HOTSPOT_TOPDIR = ./../../hotspot
J2SE_TOPDIR = ./../../j2se
DEPLOY_TOPDIR = ./../../deploy
INSTALL_TOPDIR = ./../../install
SPONSORS_TOPDIR = ./../../sponsors
Build Directives:
BUILD_HOTSPOT = true
BUILD_MOTIF = false
BUILD_INSTALL = true
BUILD_SPONSORS = false
Hotspot Settings:
HOTSPOT_BUILD_JOBS =
Bootstrap Settings:
BOOTDIR = /usr/local/diablo-jdk1.5.0
BOOTSTRAP J2SDK VERSION: libc.so.6
OUTPUTDIR = /usr/ports/java/jdk15/work/control/build/bsd-i586
Build Tool Settings:
JDK_DEVTOOLS_DIR =
UNIXCOMMAND_PATH = /bin/
COMPILER_PATH = /usr/bin/
DEVTOOLS_PATH = /usr/local/bin/
USRBIN_PATH = /usr/bin/
MOTIF_DIR = /usr/local
CC_VER = 4.2.1
ZIP_VER = 2.32
PATH = /sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin:/usr/compat/linux/lib
TMPDIR = /usr/ports/java/jdk15/work/control/build/bsd-i586/tmp
Build Directives:
USE_ONLY_BOOTDIR_TOOLS =
USE_HOTSPOT_INTERPRETER_MODE =
PEDANTIC =
DEV_ONLY =
J2RE_ONLY =
NO_DOCS =
NO_IMAGES =
TOOLS_ONLY =
INSANE =
PARALLEL_COMPILES = false
PARALLEL_COMPILE_JOBS = 2
FASTDEBUG = false
INCREMENTAL_BUILD = false
Build Platform Settings:
PLATFORM = bsd
ARCH = i586
LIBARCH = i386
ARCH_FAMILY = i586
ARCH_DATA_MODEL = 32
TRUE_PLATFORM = FreeBSD
OS_VERSION = 7.0-CURRENT
FREE_SPACE = 573928896
GNU Make Settings:
MAKE = gmake
MAKE VERSION =
MAKECMDGOALS = sanity
MAKEFLAGS =
SHELL = /bin/sh
Target Build Versions:
JDK_VERSION = 1.5.0_12
MILESTONE = p6
BUILD_NUMBER = jack_04_sep_2007_19_05
External File/Binary Locations:
HOTSPOT_SERVER_PATH =
/usr/ports/java/jdk15/work/control/build/bsd-i586/hotspot-i586/server
HOTSPOT_CLIENT_PATH =
/usr/ports/java/jdk15/work/control/build/bsd-i586/hotspot-i586/client
HOTSPOT_IMPORT_PATH =
/usr/ports/java/jdk15/work/control/build/bsd-i586/hotspot-i586/import
MOTIF_DIR = /usr/local
CACERTS_FILE = ./../src/share/lib/security/cacerts
No setting required for Unix Systems
WARNING: Your are not building SPONSORS workspace from
the control build. This will result in a development-only
build of the J2SE workspace, lacking the installation bundles
ERROR: Your BOOTDIR environment variable does not point
to a valid Java 2 SDK for bootstrapping this build.
A Java 2 SDK 5.0_12 build must be bootstrapped using
J2SDK 1.4.2 fcs (or later).
Apparently, your bootstrap JDK is version libc.so.6
Please update your ALT_BOOTDIR setting and start your build again.
Exiting because of the above error(s).
gmake: *** [post-sanity] Error 1
*** Error code 2
Stop in /usr/ports/java/jdk15.
*** Error code 1
Stop in /usr/ports/java/jdk15.
enc#
_______________________________________________
email***@***.com mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-java
To unsubscribe, send any mail to "email***@***.com"
- 10
- pack() and BufferedImage in JPanelI want to draw a jpg image in a JFrame, so I used JPEGImageDecoder and read
it into a BufferedImage, which I draw to a JPanel.
But when I add the component (JPanel) to the JFrame, pack() doesn't work,
and I have to setSize() explicitly.
Why doesn't pack() work? I can't do imagePanel.getWidth() either, it's 0
until visible.
(Oh, I should mention, pack() still doesn't work after it's visible...do I
have to wait
until the image is rendered?)
Also, what's the best way to swap images dynamically in this case?
TIA
Jeff
////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////
public class MyImagePanel {
static String filename = "picture.jpg";
public static void main(String[] args) {
JFrame frame = new JFrame("MyImagePanel");
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
MyImagePanel panel = new MyImagePanel();
ImagePanel imagePanel = new ImagePanel(filename);
frame.getContentPane().add(imagePanel, BorderLayout.CENTER);
frame.setSize((int)imagePanel.image.getWidth()+8,(int)imagePanel.image.getHe
ight()+22);
frame.setLocation(100, 100);
frame.setVisible(true);
}
}
class ImagePanel extends JPanel {
BufferedImage image;
public ImagePanel(String filename) {
try {
InputStream in = getClass().getResourceAsStream(filename);
JPEGImageDecoder decoder = JPEGCodec.createJPEGDecoder(in);
image = decoder.decodeAsBufferedImage();
in.close();
// System.out.println((int)image.getWidth());
// System.out.println((int)image.getHeight());
} catch (Exception e) {
System.out.println(e);
System.exit(0);
}
}
public void paintComponent(Graphics g) {
g.drawImage(image, 0, 0, this);
}
}
- 10
- rxtx problem, please help!Hello!
So I am trying to access a virtual serial port using the rxtx
library. I enumerate the ports, and loop through them attempting to
open each one. Although the portId.isCurrentlyOwned() returns false,
portId.open() still throws a PortInUseException, and when I call
portId.getCurrentOwner(), it returns null.
Here is relevant code:
portList = CommPortIdentifier.getPortIdentifiers();
while (portList.hasMoreElements()) {
portId = (CommPortIdentifier)portList.nextElement();
/* only iterate through serial ports */
if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
/* attempt to open the port */
try {
if (portId.isCurrentlyOwned()) {
System.out.println(portId.getName() + " is owned");
} else {
System.out.println(portId.getName() + " is not
owned");
}
serialPort = (SerialPort)portId.open("Square2Plus",
2000);
} catch (PortInUseException e) {
//if the port is unavailable, move to the next one
System.out.println(portId.getName() + " is owned by " +
portId.getCurrentOwner());
continue;
}
}
}
if(portOpen) {
System.out.println(portId.getName() + "is open!");
serialPort.close();
} else {
System.out.println("port not found");
}
Running this code produces:
COM3 is not owned
COM3 is owned by null
COM5 is not owned
COM5 is owned by null
port not found
So if the ports aren't owned, why is it throwing this exception, and
what can I do about it?
Please and thank you all so much!
Joshua
- 12
- Java execute error in LinuxOn Sun, 23 Oct 2005 16:57:56 +0000, Peter Jones wrote:
> Hello all,
> I'm having a problem resolving an error that I keep getting when
> I try to execute a peice of java code. Im using Debian 3.1r0a.
>
> Here's the lo-down. The code is wrtten and complete, no syntax errors at
> all. In fact, it compiles fine. The problem is when I try to execute the
> code. The screenshot says it all. There is no code behind the terminal
> box (where the errors are being displayed). The code you see there is
> really as simple as it looks. Any ideas? I'm open to any suggestions.
> I'm running SableVM, but that hasn't helped.
Two things to remember:
1) Do not post binary articles to a non-binary group. Hint, this is a
non-binary group.
2) Post your questions into the appropriate newsgroup. For beginners
questions, this would be comp.lang.java.help
--
You can't run away forever,
But there's nothing wrong with getting a good head start.
--- Jim Steinman, "Rock and Roll Dreams Come Through"
- 12
- JCombobox custom PopupHow can i make a Combo box (JComboBox) display a custom control as
popup. I want to show a Jtable instead of a JList.
Thanks.
Paolo.
- 12
- Help - Any browser crashes with Java plug in when using parametersWhen ever I try to load java applet I, the plug in works fine unless I
specify any runtime parameters. Then as soon as I try to start up an
applet the browser will shut down right away with no warning or error
messages.
I've tried both 1.3.1_13 and 1.4.2_06 with both Internet Explorer 6 and
Firefox.
I thought maybe it was a Windows patch or something but can't find any
info on that. This happens both on a Windows 2000 and XP SP1 machine.
- 12
- open source requirements management tool v1.4 (Java Swing)Hi,
As an FYI OSRMT version 1.4 has been released (GPL). OSRMT is a Java
Swing based software development tool for requirements analysts,
product managers, developers and quality testers. It organizes
requirements, features, design, implementation and any other artifacts
you define into a hierarchy with full traceability, versioning, and
change control.
Version 1.4 provides many performance enhancements, user interface fine
grained control realized through scripting and a new reporting system
using XML generated from the business layer.
For more information see
http://www.osrmt.com
The full list of features are below:
System Requirements
Oracle (Express) database or
MySQL 4.1+ database or
SQLServer (Express) database or
MS Access database or
PostgreSQL 8.1+ new to 1.2
Java 1.5 client or
Java 1.5 client + JBoss server (included)
Web client + JBoss server new to 1.2
Functionalty
Artifact definition and data entry - features, requirements, source,
test cases etc.
Binary attachments.
File or hyperlinks.
Hierarchal organization of artifacts.
Sequence artifacts up/down within siblings new to 1.3.
User defined priority, status etc.
Source, author, description, and many more fields.
Track entire history of changes made.
Versioning of artifacts.
Uniquely identify artifacts.
Use arrow keys to navigate tree with description pane. new to 1.3.
------------------------------------
Requirement definition of Use case steps.
Test case definition of test case steps.
Data entry of multiple details per artifact.
------------------------------------
Dependencies between any artifacts (many to many).
Traceability - traced, not traced.
Traceability tree for auditing and tracing new to 1.3.
Traceability matrix.
Traceability spanning multiple products. new to 1.4.
Graph identifying all dependencies of a selected artifact to determine
impact of change.
------------------------------------
User login environment specifc.
User password unrecoverable - password reset only.
User positions with custom privileges. improved in 1.2
Customize controls on data entry forms. improved in 1.2
Javascript for fine grained access control on user interface. realized
in 1.4.
Duplicate all forms/controls from artifact to another. new to 1.3.
Customize system views.
System options. new to 1.3.
Duplicate security from one position to another. new to 1.2
User change password.
LDAP authentication. alpha code
------------------------------------
Sort artifact list.
Filter artifact list.
Search artifact list. improved in 1.4.
------------------------------------
Change control request entry new to 1.3.
Change control custom views new to 1.3.
User groups. new to 1.3.
------------------------------------
Reports generate PDF or HTML new to 1.2
Standard reports.
Custom reports. improved in 1.2
Report writer. new to 1.2
Report criteria from filtered artifact list. new to 1.2
Custom report writing capabilities using XML new to 1.4.
------------------------------------
Binary export of system to replicate reference environment.
Export artifacts to XML.
Import artifacts from XML improved in 1.2.
Command line import artifact tree to reflect filesystem files new to
1.3.
Command line export artifacts to HTML new to 1.3.
------------------------------------
System upgrade/database migration tools. new to 1.2. improved 1.3.
Dynamic just in time tree loading. new to 1.4.
------------------------------------
Language translation import/export. new to 1.3.
- 13
- MI5 Persecution: ?0,000 Reward (3097)
20,000 Reward Offered to Expose the Conspiracy
I am making a pledge for information directly leading to the exposing of the "BBC Newscaster
Conspiracy". The exposing would specifically need to lead to a legally binding admission from Martyn Lewis
or Michael Buerk of the BBC they they were watching me through the TV set.
I would be happy (delighted, in fact) to pay GBP 20,000 sterling in reward for the above admission.
--------------------------------------------------------------------------------
3097
--
Posted via a free Usenet account from http://www.teranews.com
- 13
- rmi activation and codebaseHello folks,
I have created three activatable rmi services. Now I want them to use three
different codebases for each service (like http://xyz/serivce1.jar http:/
xyz/service2.jar ...).
Each service is in its own activation group (this means it runs in it's own
jvm if I remember right). I tried to set the java.rmi.server.codebase
property for the activation group descriptor to the apropriate value. But
still all services seems to run with the same codebase.
What would be the preferred way to specify a different codebase for each
activatable object? I also tried to set the java.rmi.server.codebase
property during rmid startup to something like:
-J-Djava.rmi.server.codebase="http://xyz/service1.jar http://xyz
service2.jar" but this won't work either...
Greetings,
Marcus
- 15
- Jon Skeet (christmas miracle)Jon Skeet died in a car crash in Southhampton/UK 6 weeks ago.
He lost control over his white Bentley and crashed against a 200 years
old oak-tree. Jon was dead immediately.
R.I.P Jon Skeet
We will never forget you.
~*#~*#~*#~*#~*#~*#~*#~*#~*#~*#~*#
Christmas-miracle
~*#~*#~*#~*#~*#~*#~*#~*#~*#~*#~*#
Oh wait ... a miracle happened.
Bill Gates praied to godfather and Jon Skeet was reborn as Microsoft-MVP.
Jon-Skeet-posting-statistics / Timespan Dec-10-2003 to Dec-20-2003
Postings to microsoft.public.dotnet.csharp : around 150
Postings to comp.lang.java.programmer : exactly 0
~*#~*#~*#~*#~*#~*#~*#~*#~*#~*#~*#
|
| Author |
Message |
MI5Victim

|
Posted: 2007-1-26 5:31:00 |
Top |
java-programmer, MI5 Persecution: Surveillance methods 5/8/95 (5827)
From: Pamela Willoughby <email***@***.com>
Newsgroups: uk.misc
Date: Sat, 05 Aug 1995 18:08:32 GMT
Organization: Myorganisation
Lines: 15
Message-ID: <email***@***.com>
>Hmmm, strange eh.
>I mentioned all this goings on to my boyfriend, who works for the
>British intelligence service, and he assures me this sort of thing
>never goes on.. not ever...honest.
>Though he said the name was familiar...
it does go on, although it's an open question who does it.
Some time ago there were press reports of an Army intelligence person
called Jones who claimed Diana and Hewitt had been photographed in a
compromising position... he said he'd been doing this as part of an
Army unit which had previously operated in Northern Ireland.
Then Hewitt said he'd been told the same thing by some Army people,
and that they were threatening to release the tapes unless they
curtailed their liaison... as per usual everyone denied everything,
painted Jones as the "Jones twins" - not very original in how
they deal with their perceived enemies, are they?
You have to wonder how they manage to achieve this sort of
surveillance though. Audio you can understand, it's possible to put
a microphone through the wall, and apparently there exist devices
which will retrieve sound from a laser beam bounced off a window -
sounds sci-fi, but there's a well known surveillance electronics
company in London which sells these things.
But how would you get video out of a room, unless you had actual
physical access in order to plant a device for pickup? We're not
talking about looking in from afar, but an actual device within
the room. You could either drill through the wall and shove a
pickup through; or you could supply a trojan device with a hidden
pickup inside; but most likely, you would have to physically break
into your target room to plant a camera. That's not an infeasible
option; all it means is having your target(s) watched to make sure
they're not in the vicinity, then you negotiate any locks on the
property and find a suitable receptacle for your device.
The next question is how they defeat the usual methods of counter-
surveillance. We had private detectives carry out a "sweep" of
every room and the telephone line. They found nothing. That
indicates at least four possibilities that I can think of;
(this is all guesswork BTW, and probably fanciful guesswork
at that!)
1) no bugs (pull the other one)
2) radio-transmitting devices which can be controlled from an
external source, ie you can instruct them to switch off
when you detect a counter-surveillance sweep taking place
3) hard-wired devices; probe microphones or whatever they're
called, things you poke through the wall
4) passive surveillance devices; so you bounce laser or
radio waves off a suitable reflecting surface (again,
sounds far-fetched but such things may apparently exist).
5) there is a fifth possibility, that the PI's didn't detect
an actual transmitting device; there are technologies
specifically designed to avoid detection, eg frequency hopping
and suchlike. But how much sophistication could you build in
to a device which would have to be small enough to be
physically concealable?
I guess the real question is to find out who is ultimately
behind these "goings on". And if the "great and good" (or
the better known, at any rate) can't protect themselves,
what hope is there for the rest of us?
5827
--
Posted via a free Usenet account from http://www.teranews.com
|
| |
|
| |
 |
| |
 |
Index ‹ java-programmer |
- Next
- 1
- Java databaseLew schrieb:
> email***@***.com wrote:
>> Thanks for the replies. After looking at the different options I think
>> I'll go with Derby. i was very tempted by the good speed reports of
>> HSQL but I have not necessarily got loads of memory to play with so
>> Derby seems to suit my needs best
>
> And it has the advantage of not requiring a separate download.
>
Why not?
Derby seems to be not included in most Java installations.
When I installed Java the last time there was an option for derby.
Default for derby is to be not installed.. So I assume thats what most
users will have.
Also I think I read on Ubuntu/Linux derby is a seperate package, so also
not mandatory.
Derby seems to be a good choice for testing stuff but it seems not to be
software that you can rely on being on the users machine.
Christian
- 2
- Easy Java Quiz: Are you interested?Hi; to all you gurus out there,
I did this quiz two semester ago, I got 70%, but however I tend to
differ with the result. I have cross-checked this a hundred times, I
still come with the same answers. So I wanted to see, if all you guys
will come up with the same answer. Do you think, you are up to it.
well here, it is, with my answers, and I stick by them, if anyone
differs put yours up, or email answers with reasons, for I am really
interested.
My Answers
1. A
2. A
3. B
4. C
5. D
6. A
7. C
8. D
9. B
10. C
Quiz:
1. Which of the following is not a specific GUI component (control or
widgit)?
a)String. b)Label. c)Menu. d) List.
2. Which of the following is not a valid constructor for a JLabel?
a)JLabel( int, horizontalAlignment, Icon image ); b)JLabel(
Icon image );
c)JLabel( String text, Icon image, int horizontalAlignment );
d)JLabel( String text, int horizontalAlignment );
3. Which of the following is not necessary to use the event
delegation model?
a) An event listener must be registered. b)An event handler must be
implemented.
c) The appropriate interface must be implemented. d)The appropriate
interface must be registered.
4. Which of the following is a MouseMotionListener method?
a) mousePressed. b) mouseExited. c)mouseDragged.
d)mouseClicked.
5. The layout manager that allows alignment to be controlled is:
a) FlowLayout. b) BorderLayout. c)GridLayout. d)None of the above.
6. Which of the following GridBagConstraints specifies the number of
columns a component will occupy?
a) gridwidth. b)gridheight. c) weightx. d)weighty.
7. A JFrame supports three operations when the user closes the
window. Which of the choices below is not one of the three:
a) DISPOSE_ON_CLOSE. b)DO_NOTHING_ON_CLOSE. c)LOWER_ON_CLOSE.
d)HIDE_ON_CLOSE.
8. To create a fixed space between all components using BoxLayout,
use the method:
a) createVerticalStrut(). b)createHorizontalStrut(). c)createGlue().
d)createRigidArea().
9. Which layout manager is the default for JFrame?
a) FlowLayout. b)BorderLayout. c)GridLayout. d)None of the above.
10. When a JComboBox is clicked on:
a)An ItemEvent is generated. b)A scrollbar is always generated. c)An
ActionEvent is generated. d)The JComboBox expands to a list.
- 3
- Building jdk13 failsHello,
I have diablo-jdk13 installed on current. When I try to build jdk13. I
get this error.
===> Building for jdk-1.3.1p8_2
# Start of jdk build
i386 Build started: 1.3.1-p8-johannes-031020-21:18
ERROR: Your BOOTDIR environment variable does not point
to a valid Java 2 SDK for bootstrapping this build.
A Java 2 SDK 1.3.1 build must be bootstrapped against any
1.3 build. Please update your ALT_BOOTDIR setting, or
just unset it, and start your build again.
Exiting because of the above error(s).
gmake: *** [sanity] Error 1
*** Error code 2
Stop in /usr/ports/java/jdk13.
Why this error, it should not with diablo-jdk13 installed?
_______________________________________________
email***@***.com mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-java
To unsubscribe, send any mail to "email***@***.com"
- 4
- 5
- tomcat: SEVERE: Begin event threw exceptionhi,
i have a problem with tomcat. i really don't know what is going on.
yesterday i used it and there was everything ok.
today, when i started my computer the only functionality of tomcat i
could notice is such message in logs/catalina.out.
i tried to do a lot of things to localize the problem.
finally i've given up and installed tomcat one more time from binary tar
archive. it's amazing for me, that fresh installation (without any
changes in server.xml, webapps etc) fails to startup.
please, help.
greetings,
michal
-----------------------------------------------------------------------
Nov 18, 2003 8:19:22 PM org.apache.commons.digester.Digester startElement
SEVERE: Begin event threw exception
java.lang.ClassNotFoundException: org.apache.catalina.core.StandardServer
at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at
org.apache.commons.digester.ObjectCreateRule.begin(ObjectCreateRule.java:252)
at org.apache.commons.digester.Rule.begin(Rule.java:200)
at org.apache.commons.digester.Digester.startElement(Digester.java:1273)
at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentScannerImpl$ContentDispatcher.scanRootElementHook(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown
Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at org.apache.commons.digester.Digester.parse(Digester.java:1548)
at org.apache.catalina.startup.Catalina.start(Catalina.java:449)
at org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
Catalina.start: java.lang.ClassNotFoundException:
org.apache.catalina.core.StandardServer
java.lang.ClassNotFoundException: org.apache.catalina.core.StandardServer
at
org.apache.commons.digester.Digester.createSAXException(Digester.java:2540)
at
org.apache.commons.digester.Digester.createSAXException(Digester.java:2566)
at org.apache.commons.digester.Digester.startElement(Digester.java:1276)
at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentScannerImpl$ContentDispatcher.scanRootElementHook(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown
Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown
Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at org.apache.commons.digester.Digester.parse(Digester.java:1548)
at org.apache.catalina.startup.Catalina.start(Catalina.java:449)
at org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
- 6
- Make GUI in Netbeans or EclipseHi!
This is not a question about the best, becurse it always depend on
what you like.
But i have used netbeans for a long time when a write javaprogram
basicly becurse
the handling of GUI part i s?good.
But on a numbers of company in my area who are looking for developer,
they are useing
Eclipse.
So i have download it, and i cant find out how to design GUI in it,
noting on the menu etc
as i is in netbeans.
So my question is are YOU using Eclipse
1. Way
2. How du YOU develop the GUI part.
// Anders
- 7
- I am selling many of my c++, java, Oracle and Game Programming booksPlease take a look at the list of books I am selling for cheap. These prices
are below what the used dealers are selling them for. If you really want a
book and the price is close we may beable to make a deal. I want to get rid
of all these books in the next week. Please look at the link below. It is on
ebay and you will have to page thru the list of all my items to see the
books as they are listed with everything else.
http://cgi6.ebay.com/ws/eBayISAPI.dll?ViewSellersOtherItems&userid=abstractryan&include=0&since=-1&sort=3&rows=50
THANKS!
Ryan
- 8
- scrape taglibs problemWhy is the result always empty in the following code?
<scrp:page url="http://partner.dw-world.de/syndication/feeds/
newsletter_de_test.1736.rdf" charset="utf-8">
<scrp:scrape id="dw_nl_rss" begin="<rdf:RDF" end="</rdf:RDF>"
anchors="true" />
</scrp:page>
<scrp:result scrape="dw_nl_rss"/>
- 9
- JBOSS vs SUN AS 8Hi!
I'm going to begin to deploy a great project. So I'm gonna use an
application server, but I'm not sure about the best option. What're
your advices for this question?
Thanks...
Frank
- 10
- Replications ideaHello.
I have pice of work to do : replication four tables between
two databases (on demand). One databases is located in main departament
anothers are on mobile-workers computers whose can work offline.
I would like using hibernate for replication:
first session read data (objects list) from "local" database,
second session save this data in main database or vice versa.
What do you think about using hibernate for this solutions ?
Thanks in advance
gini
- 11
- Another compile-error for java (jdk14) on FreeBSD-5.3Hallo @all!
Yesterday I tried to install Java (jdk14) on my FreeBSD-5.3 RELEASE
system according to the following steps:
* update the portstree
* install linux-sun-jdk14 and fix the dependency using pkgdb -F because
I am using linux-base-8
* download all the necessary files from SUN as well as the patchset and
put them into /usr/ports/distfiles
* kldload linprocfs and mounting the linprocfs
* go to /usr/ports/java/jdk14 and type make
After a while I get the following error messages which appear to be
"new". I couldn't find hints in the java mailing-list archives and even
google did not return useful results. As the message is quite long, I
have cut the (probably) less important part. Maybe one of you has
encountered the same problem and knows how to solve it.
Thank you very much!
Sincerely, Andreas Tuecks
FreeBSD-5# make
===> Building for jdk-1.4.2p6_7
# Start of jdk build
bsd i586 1.4.2-p6 build started: 04-12-12 20:04
if [ -r ./../../deploy/make/Makefile ]; then \
( cd ./../../deploy/make; gmake sanity EXTERNALSANITYCONTROL=true
CONTROL_TOPDIR=/usr/ports/java/jdk14/work/control
CONTROL_TOPDIR_NAME=control
ALT_OUTPUTDIR=/usr/ports/java/jdk14/work/control/build/bsd-i586ARCH_DATA_MODEL=32
MILESTONE=p6 BUILD_NUMBER=atuecks_12_dec_2004_20_04 ; ); \
fi
Syntax error: "(" unexpected
gmake[1]: Entering directory `/usr/ports/java/jdk14/work/deploy/make'
[: -ne: unexpected operator
gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/deploy/make'
Syntax error: "(" unexpected
gmake[1]: Entering directory `/usr/ports/java/jdk14/work/j2se/make'
[: -ne: unexpected operator
gmake[1]: Leaving directory `/usr/ports/java/jdk14/work/j2se/make'
[...]
Bootstrap Settings:
JAVAWS_BOOTDIR = /usr/local/linux-sun-jdk1.4.2
BOOTSTRAP J2SDK VERSION: Segmentation fault (core dumped)
OUTPUTDIR = /usr/ports/java/jdk14/work/control/build/bsd-i586
Build Tool Settings:
UNIXCOMMAND_PATH = /bin/
COMPILER_PATH = /usr/bin/
DEVTOOLS_PATH = /usr/local/bin/
USRBIN_PATH = /usr/bin/
GCC32_COMPILER_PATH = /java/devtools/bsd/gcc3.2/
MOZILLA_PATH =
MOZILLA_HEADERS_PATH =
MOZILLA_LIBS_PATH =
CC_VER = 3.4.2
PATH =
/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:/root/bin
[...]
Target Build Versions:
JAVAWS_VERSION = 1.4.2
MILESTONE = p6
BUILD_NUMBER = atuecks_12_dec_2004_20_04
Bootstrap Settings:
BOOTDIR = /usr/local/linux-sun-jdk1.4.2
BOOTSTRAP J2SDK VERSION: Segmentation fault (core dumped)
OUTPUTDIR = /usr/ports/java/jdk14/work/control/build/bsd-i586
[...]
Sanity check passed.
(cd ./../build/bsd-i586/hotspot-i586/tmp; \
gmake -f /usr/ports/java/jdk14/work/hotspot/build/bsd/Makefile product \
HOTSPOT_BUILD_VERSION=1.4.2-p6-atuecks_12_dec_2004_20_04
GAMMADIR=/usr/ports/java/jdk14/work/hotspot ; )
gmake[1]: Entering directory
`/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp'
(cd bsd_i486_compiler2/product; gmake)
gmake[2]: Entering directory
`/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product'
gmake[2]: *** [../generated/MakeDeps.class] Segmentation fault (core dumped)
gmake[2]: Leaving directory
`/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product'
gmake[1]: *** [product] Error 2
gmake[1]: Leaving directory
`/usr/ports/java/jdk14/work/control/build/bsd-i586/hotspot-i586/tmp'
gmake: *** [product] Error 2
*** Error code 2
_______________________________________________
email***@***.com mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-java
To unsubscribe, send any mail to "email***@***.com"
- 12
- getting around html encoding in outputText tag (JSF)Hi,
I'm getting a value to my JSP page (using JSF) with outputText from a
bean that has html encoding in it.
How could I temper with the HTML encoding so that I could preserve
certain tags? I need to have a few <BR> inside the text and want'em
displayed in HTML code, not <BR> etc...
What I'm doing is having a properties file for end users to modify. And
since there are some longer texts, they want to add paragraphs and line
breaks every now and then. So I've written a method that searches the
string for example \n and replaces'em with <br> just before this string
is sent to JSP. But now the encoding happens...
Or what would be the smartest way?
Regards,
Niko
- 13
- textHighlight on os x turns grayI have an application that needs to change the default textHighlight
color.
The following line works wonderfully on windows and I could swear it
used to work wonderfully on os x until a java software update or 3
ago:
UIManager.put("textHighlight", new ColorUIResource(m_selectionColor));
At first, it works fine, even on the mac. The problem on the mac is
that when you select another window, the highlight goes from the above
specified "textHighlight" color to gray. I know this is how all aqua
apps seem to work, but it sucks for this app. Is there any way to
either override this behavior or replace the gray with some other
color like the above?
UIManager.put("annoyingOSXInactiveTextHighlight", new
ColorUIResource(m_selectionColor));
No lectures on usability please; in this case, for this app, it makes
sense.
http://www.broad.mit.edu/annotation/argo/
Thanks in advance.
Reinhard
- 14
- Need help with VE of eclipseVE have the possibility of create user interface for swt WYSIWYG?
I find in palete only swing or awt component.
A stupid question: SWT use SWING or reimplement a own version of UI?
Thanks
- 15
- XQuery middlewareHi all!
I need to build a middleware for XQuery: I mean a software receiving a
std xquery and outputting the xquery result on "database.xml".
This middleware must use 7 or 8 different choosable XQuery
implementations... The XQuery received must be std for all
implementations. The middleware will parse the std XQuery in the
specific XQuery for the specific implementation, returning an error if
requested features isn't avaiable for the implementation choosed.
I've already built the editor and the DOM interface. My editor can read
DTD and load/view in a tree structure an XML database. Now I need to
integrate the first XQuery implementation and use it for execute my
XQuery on xml file.
I need first of all one simple implementation and and sample of use
about this implementation.
Thanks
Ale
|
|
|