How do I make my picture an avatar?
Java Programming
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What is interesting here?
• Duels
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Register!

QAIX > Java ProgrammingGo to page: « previous | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | next »

  Top users: 
  Recent blog posts: 
  They have birthday today: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Модератор:
Sunday, 16 December 2007
HashMap vs. TreeMap Avinash Lakshman 20:07:28
 Hi All

I need to store about a million key/value pairs. Which is more memory efficient HashMap or TreeMap? With the HashMap it looks like the resizing happens to be exponential but that is not the case with TreeMap i.e sometimes I may have 64,000 keys but the internal table allocated with the HashMap is at nearly double the value. I do not care about access times i.e I need a sparse HashMap. How can I acheive this? Can I think of the TreeMap as a poor man's sparse HashMap? Are there any other implementations I could look at? Please advice.

Thanks
Avinash

___________________­____________________­____________________­______
Get the power of Windows + Web with the new Windows Live.
http://www.windowsl­ive.com?ocid=TXT_TAG­HM_Wave2_powerofwind­ows_122007
===================­================
This list is hosted by DevelopMentor® http://www.develop.­com

View archives and manage your subscription(s) at http://discuss.deve­lop.com

comment 4 answer | Add comment
Friday, 14 December 2007
Question about memory size and performance Carfield Yim 21:40:57
 According to this paper -
http://www.cs.umass­.edu/~emery/pubs/gcv­smalloc.pdf , it claim that :

"If their applications will be deployed on systems with at least three
times as much RAM as needed, then garbage collection should provide
reasonable performance. However, if the deployed systems will have
less RAM, or if their applications will have to compete with other
processes for memory, then practitioners should expect garbage
collection to exact a substantial performance cost."

Just wonder if anybody have comment about this claim? Say my
applicatioon typical requirement 1024m heap size to run. My computer
need to have 3072m to have reasonable performance???

===================­================
This list is hosted by DevelopMentor http://www.develop.­com

View archives and manage your subscription(s) at http://discuss.deve­lop.com

comment 14 answers | Add comment
Wednesday, 12 December 2007
Writing Japanese in PDF file Sumeet Palkar 13:07:27
 Stuck with a wierd problem.....
Actually all Japanese problems are wierd as u know...

I am able to display the Japanese charatcers in the PDF file when using
Japanese Regional Settings on Windows OS. But this Japanese text appears
only when the Text is selected on the PDF file.

When Changed to English Regional Settings, the Japanese text is not
written correctly in the PDF file.

I am using iText along with itextAsian.jar. JDK version is 1.4.2

Does anyone have a clue how to write into the PDF using Japanese in
English Locale?

Regards
Sumeet Palkar

comment 2 answer | Add comment
Sunday, 9 December 2007
Function call overhead Avinash Lakshman 01:57:19
 I am seeing this wierd problem. When I do the following I see the time taken is around 170 ms.

public static void main(String[] args) throws Throwable
{
Random random = new Random();
byte[] bytes = new byte[64*1024*1024];
random.nextBytes(by­tes);

int pos = 0;
int count = bytes.length;
long start2 = System.currentTimeM­illis();
while ( true )
{
int value = (pos < count) ? (bytes[pos] & 0xff) : -1;
++pos;
if ( value == -1 )
break;
}
System.out.println(­"TIME TAKEN : " + (System.currentTime­Millis() - start2));
}

Now I do the following I see the time taken is 516 ms:

class MyClass
{
private byte[] buf = new byte[0];
private int pos;
private int count;

public final int read()
{
if (pos < count)
{
return ( buf[pos++] & 0xFF );
}
else
return -1;
}
}

public void main(String[] args)
{
MyClass myClass = new MyClass(bytes);
int read = 0;
long start = System.currentTimeM­illis();
while ( true )
{
read = myClass.read();
if ( read == -1 )
break;
}
System.out.println(­"TIME TAKEN : " + (System.currentTime­Millis() - start));
}

What is going on?

Thanks
A

___________________­____________________­____________________­______
Your smile counts. The more smiles you share, the more we donate. Join in.
www.windowslive.com­/smile?ocid=TXT_TAGL­M_Wave2_oprsmilewlhm­tagline
===================­================
This list is hosted by DevelopMentor® http://www.develop.­com

View archives and manage your subscription(s) at http://discuss.deve­lop.com

comment 4 answer | Add comment
Saturday, 8 December 2007
Include Files Jeff Wilhelm 18:40:27
 I made the mistake of using the extension .inc as opposed to .php for my
include files, which means that the they can be viewed as text. If I'd named
them PHP they would never be sent without being executed, which means that
nobody would be able to see my code and passwords and all that. So, I simply
want to add .inc to the list of extensions that PHP will execute... how
would I go about doing this... I'm guessing I'd add a line to my httpd.conf
file or something... but what is the correct syntax?

-Jeff
comment 21 answer | Add comment
Friday, 7 December 2007
PHP cross referencer DL Neil 11:51:26
 Is anyone aware if such a debugging/documenta­tion tool exists?

What is/do I mean by a "cross referencer"?
A tool which will list all of the variables (and function names ?and include files) used within a
program/script, together with the line number(s) where they are mentioned - hopefully differentiating where the
value is referenced from where it is updated, etc. Such is handy for debugging, picking up upper/lower case
naming inconsistencies, etc.

Please advise,
=dn


Add comment
Wednesday, 5 December 2007
Class<T> question Mitchell Gart 20:56:07
 I am trying to get rid of some compiler warnings in our code. We have a
method:

public static Logger getLogger(Class c) {
return new Log4jLogger(c.getNa­me());
}

and the compiler produces this warning:

Class is a raw type. References to generic type Class<T> should be
parameterized

It is because Class is a generic type but I don't quite understand how I
would change the declaration of the method, and the calls to the method,
to make it parameterized and get rid of the warning. Can somebody
explain this a little bit? Thanks.

- Mitch Gart


===================­================
This list is hosted by DevelopMentor http://www.develop.­com

View archives and manage your subscription(s) at http://discuss.deve­lop.com

comment 10 answers | Add comment
checkdnsrr problems... Papagelis Athanasios 14:22:37
 Hi to all,

I'm using the checkdnsrr function to check for dns entries of specific hosts. But no matter how hard I try I cannot get it work. Should I have a local DNS server on my machine in order for this function to operate???

I'm using windows 2000 with IIS/5

S.

comment 1 answer | Add comment
Tuesday, 4 December 2007
Dreamtime at phptemplates.org Frank Joerdens 20:35:26
 Does anyone know what's become of Tim Zickus' Dreamtime project at
http://www.phptempl­ates.org? According to his white papers, it looks
like something that would fit a site that I'll be building soon like a
glove. I February he announced a closed alpha relly soon, to be followed
by a public beta. The last update on his site is from May. Has this
great idea lost its momentum and disappeared altogether?

/Frank

--
frank joerdens

joerdens new media
urbanstr. 116
10967 berlin
germany

e: frank@joerdens.de
m: +49 (0)179 5174091
f: +49 (0)30 7864046
h: http://www.joerdens­.de

pgp public key: http://www.joerdens­.de/pgp/frank_joerde­ns.asc
Add comment
Wednesday, 28 November 2007
Re: xdoclet-user digest, Vol 1 #2089 - 4 msgs Shantanu Sen 12:36:24
 I am trying to test a session bean to be deployed on
WebSphere 6.0 AS. I tried using the WebSphereDoclet
tag and it generated two websphere specific deployment
artifacts:ibm-ejb-j­ar-bnd.xmi and ibm-ejb-jar-ext.xmi­.


The ejbJar elemenet in the *ext.xmi file is as
follows:

<ejbJar href="META-INF/ejb-­jar.xml#ejb-jar_1"/>­

When I tried deploying this, the WAS6.0 deployer
emitted a warning in the log file:


4/8/05 12:33:04:328 PDT] 00000029 ArchiveDeploy W
ADMA0091E: The resource META-INF/ibm-ejb-ja­r-ext.xmi
that is defined in URI META-INF/ibm-ejb-ja­r-ext.xmi
for module testejb.jar is not valid. The resource has
a cross reference META-INF/ejb-jar.xm­l#ejb-jar_1 that
cannot be resolved.

Any idea what may be the issue here?

Thanks,
Shantanu Sen




-------------------­--------------------­----------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com­/?ad_id=6595&alloc_i­d=14396&op=click
comment 1 answer | Add comment
Tuesday, 27 November 2007
PHP & MySQL problems, updating database.. Hawk 15:44:32
 Having a problem with this, I have a working login that supports multiple
users, and I'm trying to make it possible for the users to change their own
settings etc, but I get killed when trying to send the data to the MySQL
database.
To connect I use mysql_connect($host­,$user,$pswd) and mysql_select_db($db­)

the retrieving data from the form works since I belive, since it showed up
when I added a print "$the vars " but I don't know how to save it to the
database..

I might be missing some line or maybe it's just because I'm a newbie or
something.. ;D
anyway.. I use something similiar to this
$query = "UPDATE users SET email='$email'"; // and so on..
$result = mysql_query($query)­ or die ("blabla");

I don't get any error lines or anything, the only thing that shows is the
"blabla" thing.

I also tried INSERT INTO in the query but that didn't make any difference :p­

if anyone could tell me what I'm doing wrong I would be happy.. :p­
"the best way to learn is to ask people that know" :p­

Hawk


comment 4 answer | Add comment
PdfPTable' row height Guest 12:27:17
 I am trying to get PdfPTable's row height, so I used getRowHeight(index)­ method. But if the cell has a big chunk of content like 800 characters, it returns huge number and it should not. Let's say the content is displayed in 12 lines so height should be about 100 but it returns 319. How can I use the method correctly?



-------------------­--------------------­----------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.co­m/sf
comment 5 answers | Add comment
[JBoss Portal] - Re: JBoss Forums - Categories and Forums by Role? Unibrew 09:42:22
 Hello Vince

http://wiki.jboss.o­rg/wiki/Wiki.jsp?pag­e=ForumsPortletInPor­tal22DevelopementSta­tus
It is not possible to limit specific categories and/or forums by role yet. There are however plans to add this feature :-)­.

Cheers
-------------------­---------
Ryszard Kozmik
JBoss Forums Lead



View the original post : http://www.jboss.co­m/index.html?module=­bb&op=viewtopic&p=39­29082#3929082

Reply to the post : http://www.jboss.co­m/index.html?module=­bb&op=posting&mode=r­eply&p=3929082


-------------------­--------------------­----------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.fa­lkag.net/sel?cmd=lnk­&kid=110944&bid=2417­20&dat=121642
comment 2 answer | Add comment
Monday, 26 November 2007
[JBoss jBPM] - JBPM Designer giving NullPointer­Exception Javajosh 06:26:54
 Hello,

I am attempting to evaluate jBPM 3.1 and running into an issue installing the Designer into Eclipse.

The first problem was that the starter kit installation instructions assume that I will be installing Elclipse for the first time. This assumption was false in my case (and I suspect in most cases). To work around this, I read:

jbpm-starters-kit-3­.1.1/jbpm-designer/j­bpm-gpd-feature/read­me.html

and copied the 'features' and 'plugins' directories into my eclipse installation. Upon starting Eclipse, I was able to create a new Process Project, as expected. However when I right-click on a process definition and select "Open With->jBPM Graphical Process Designer" I recieve an "Unsupported Content Type" dialog, and a message "Unable to create this part due to an internal error. Reason for the failure: An unexpected error was thrown." The editor allows me to see the NullPointerExceptio­n. Here is the file I tried this on:

${myproject}/proces­ses/simple/processde­finition.xml

Obviously my workaround is not sufficient. Can someone please provide instructions on installing Designer into an already-installed Eclipse?

Thank you.

Stack trace and Eclipse configuration follows.

Here is the full stack trace:

java.lang.NullPoint­erException
at org.jbpm.ui.editor.­DesignerContentProvi­der.addProcessDiagra­mDimension(Unknown Source)
at org.jbpm.ui.editor.­DesignerContentProvi­der.addGraphicalInfo­(Unknown Source)
at org.jbpm.ui.editor.­DesignerContentProvi­der.addGraphicalInfo­(Unknown Source)
at org.jbpm.ui.editor.­DesignerContentProvi­der.addGraphicalInfo­(Unknown Source)
at org.jbpm.ui.editor.­DesignerGraphicalEdi­torPage.initInput(Un­known Source)
at org.jbpm.ui.editor.­DesignerGraphicalEdi­torPage.init(Unknown­ Source)
at org.eclipse.ui.part­.MultiPageEditorPart­.addPage(MultiPageEd­itorPart.java:152)
at org.jbpm.ui.editor.­DesignerEditor.addGr­aphPage(Unknown Source)
at org.jbpm.ui.editor.­DesignerEditor.creat­ePages(Unknown Source)
at org.eclipse.ui.part­.MultiPageEditorPart­.createPartControl(M­ultiPageEditorPart.j­ava:241)
at org.eclipse.ui.inte­rnal.EditorReference­.createPartHelper(Ed­itorReference.java:6­09)
at org.eclipse.ui.inte­rnal.EditorReference­.createPart(EditorRe­ference.java:384)
at org.eclipse.ui.inte­rnal.WorkbenchPartRe­ference.getPart(Work­benchPartReference.j­ava:552)
at org.eclipse.ui.inte­rnal.PartPane.setVis­ible(PartPane.java:2­83)
at org.eclipse.ui.inte­rnal.presentations.P­resentablePart.setVi­sible(PresentablePar­t.java:126)
at org.eclipse.ui.inte­rnal.presentations.u­til.PresentablePartF­older.select(Present­ablePartFolder.java:­269)
at org.eclipse.ui.inte­rnal.presentations.u­til.LeftToRightTabOr­der.select(LeftToRig­htTabOrder.java:65)
at org.eclipse.ui.inte­rnal.presentations.u­til.TabbedStackPrese­ntation.selectPart(T­abbedStackPresentati­on.java:391)
at org.eclipse.ui.inte­rnal.PartStack.refre­shPresentationSelect­ion(PartStack.java:1­102)
at org.eclipse.ui.inte­rnal.PartStack.setSe­lection(PartStack.ja­va:1051)
at org.eclipse.ui.inte­rnal.PartStack.showP­art(PartStack.java:1­256)
at org.eclipse.ui.inte­rnal.PartStack.add(P­artStack.java:442)
at org.eclipse.ui.inte­rnal.EditorStack.add­(EditorStack.java:10­9)
at org.eclipse.ui.inte­rnal.EditorSashConta­iner.addEditor(Edito­rSashContainer.java:­60)
at org.eclipse.ui.inte­rnal.EditorAreaHelpe­r.addToLayout(Editor­AreaHelper.java:212)­
at org.eclipse.ui.inte­rnal.EditorAreaHelpe­r.addEditor(EditorAr­eaHelper.java:202)
at org.eclipse.ui.inte­rnal.EditorManager.c­reateEditorTab(Edito­rManager.java:758)
at org.eclipse.ui.inte­rnal.EditorManager.o­penEditorFromDescrip­tor(EditorManager.ja­va:665)
at org.eclipse.ui.inte­rnal.EditorManager.o­penEditor(EditorMana­ger.java:628)
at org.eclipse.ui.inte­rnal.WorkbenchPage.b­usyOpenEditorBatched­(WorkbenchPage.java:­2360)
at org.eclipse.ui.inte­rnal.WorkbenchPage.b­usyOpenEditor(Workbe­nchPage.java:2295)
at org.eclipse.ui.inte­rnal.WorkbenchPage.a­ccess$9(WorkbenchPag­e.java:2287)
at org.eclipse.ui.inte­rnal.WorkbenchPage$9­.run(WorkbenchPage.j­ava:2273)
at org.eclipse.swt.cus­tom.BusyIndicator.sh­owWhile(BusyIndicato­r.java:69)
at org.eclipse.ui.inte­rnal.WorkbenchPage.o­penEditor(WorkbenchP­age.java:2268)
at org.eclipse.ui.acti­ons.OpenWithMenu.ope­nEditor(OpenWithMenu­.java:279)
at org.eclipse.ui.acti­ons.OpenWithMenu.acc­ess$0(OpenWithMenu.j­ava:271)
at org.eclipse.ui.acti­ons.OpenWithMenu$2.h­andleEvent(OpenWithM­enu.java:178)
at org.eclipse.swt.wid­gets.EventTable.send­Event(EventTable.jav­a:66)
at org.eclipse.swt.wid­gets.Widget.sendEven­t(Widget.java:843)
at org.eclipse.swt.wid­gets.Display.runDefe­rredEvents(Display.j­ava:3125)
at org.eclipse.swt.wid­gets.Display.readAnd­Dispatch(Display.jav­a:2758)
at org.eclipse.ui.inte­rnal.Workbench.runEv­entLoop(Workbench.ja­va:1699)
at org.eclipse.ui.inte­rnal.Workbench.runUI­(Workbench.java:1663­)
at org.eclipse.ui.inte­rnal.Workbench.creat­eAndRunWorkbench(Wor­kbench.java:367)
at org.eclipse.ui.Plat­formUI.createAndRunW­orkbench(PlatformUI.­java:143)
at org.eclipse.ui.inte­rnal.ide.IDEApplicat­ion.run(IDEApplicati­on.java:103)
at org.eclipse.core.in­ternal.runtime.Platf­ormActivator$1.run(P­latformActivator.jav­a:226)
at org.eclipse.core.ru­ntime.adaptor.Eclips­eStarter.run(Eclipse­Starter.java:376)
at org.eclipse.core.ru­ntime.adaptor.Eclips­eStarter.run(Eclipse­Starter.java:163)
at sun.reflect.NativeM­ethodAccessorImpl.in­voke0(Native Method)
at sun.reflect.NativeM­ethodAccessorImpl.in­voke(Unknown Source)
at sun.reflect.Delegat­ingMethodAccessorImp­l.invoke(Unknown Source)
at java.lang.reflect.M­ethod.invoke(Unknown­ Source)
at org.eclipse.core.la­uncher.Main.invokeFr­amework(Main.java:33­4)
at org.eclipse.core.la­uncher.Main.basicRun­(Main.java:278)
at org.eclipse.core.la­uncher.Main.run(Main­.java:973)
at org.eclipse.core.la­uncher.Main.main(Mai­n.java:948)


Here is my Eclipse configuration:

*** Date: Thu Jun 01 21:09:13 PDT 2006

*** Platform Details:

*** System properties:
awt.toolkit=sun.awt­.windows.WToolkit
eclipse.application­=org.eclipse.ui.ide.­workbench
eclipse.buildId=M20­060118-1600
eclipse.commands=-o­s
win32
-ws
win32
-arch
x86
-launcher
C:\bin\eclipse\ecli­pse.exe
-name
Eclipse
-showsplash
600
-exitdata
930_68
-vm
C:\WINDOWS\system32­\javaw.exe
eclipse.product=org­.eclipse.sdk.ide
eclipse.startTime=1­149217878125
eclipse.vm=C:\WINDO­WS\system32\javaw.ex­e
eclipse.vmargs=-Xms­40m
-Xmx256m
-jar
C:\bin\eclipse\star­tup.jar
eof=eof
file.encoding=Cp125­2
file.encoding.pkg=un.io
file.separator=\
java.awt.graphicsen­v=sun.awt.Win32Graph­icsEnvironment
java.awt.printerjob­=sun.awt.windows.WPr­interJob
java.class.path=C:\­bin\eclipse\startup.­jar
java.class.version=­49.0
java.endorsed.dirs=­C:\Program Files\Java\jre1.5.0­_06\lib\endorsed
java.ext.dirs=C:\Pr­ogram Files\Java\jre1.5.0­_06\lib\ext
java.home=C:\Progra­m Files\Java\jre1.5.0­_06
java.io.tmpdir=C:\D­OCUME~1\Josh\LOCALS~­1\Temp\
java.library.path=C­:\WINDOWS\system32;.­;C:\WINDOWS\system32­;C:\WINDOWS;C:\Progr­am Files\ThinkPad\Util­ities;C:\WINDOWS\sys­tem32;C:\WINDOWS;C:\­WINDOWS\System32\Wbe­m;C:\Program Files\Intel\Wireles­s\Bin\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\WINDOWS\Do­wnloaded Program Files;C:\IBMTOOLS\P­ython22;C:\Program Files\PC-Doctor for Windows\services;C:­\Program Files\QuickTime\QTS­ystem\;C:\bin\Sun\Ap­pServer\bin;C:\Progr­am Files\CVSNT\
java.runtime.name=J­ava(TM) 2 Runtime Environment, Standard Edition
java.runtime.versio­n=1.5.0_06-b05
java.specification.­name=Java Platform API Specification
java.specification.­vendor=Sun Microsystems Inc.
java.specification.­version=1.5
java.vendor=Sun Microsystems Inc.
java.vendor.url=htt­p://java.sun.com/
java.vendor.url.bug­=http://java.sun.com­/cgi-bin/bugreport.c­gi
java.version=1.5.0_­06
java.vm.info=mixed mode, sharing
java.vm.name=Java HotSpot(TM) Client VM
java.vm.specificati­on.name=Java Virtual Machine Specification
java.vm.specificati­on.vendor=Sun Microsystems Inc.
java.vm.specificati­on.version=1.0
java.vm.vendor=Sun Microsystems Inc.
java.vm.version=1.5­.0_06-b05
line.separator=

org.osgi.framework.­bootdelegation=*
org.osgi.framework.­executionenvironment­=J2SE-1.5
org.osgi.framework.­language=en
org.osgi.framework.­os.name=WindowsXP
org.osgi.framework.­os.version=5.1
org.osgi.framework.­processor=x86
org.osgi.framework.­system.packages=java­x.accessibility,java­x.activity,javax.cry­pto,javax.crypto.int­erfaces,javax.crypto­.spec,javax.imageio,­javax.imageio.event,­javax.imageio.metada­ta,javax.imageio.plu­gins.bmp,javax.image­io.plugins.jpeg,java­x.imageio.spi,javax.­imageio.stream,javax­.management,javax.ma­nagement.loading,jav­ax.management.modelm­bean,javax.managemen­t.monitor,javax.mana­gement.openmbean,jav­ax.management.relati­on,javax.management.­remote,javax.managem­ent.remote.rmi,javax­.management.timer,ja­vax.naming,javax.nam­ing.directory,javax.­naming.event,javax.n­aming.ldap,javax.nam­ing.spi,javax.net,ja­vax.net.ssl,javax.pr­int,javax.print.attr­ibute,javax.print.at­tribute.standard,jav­ax.print.event,javax­.rmi,javax.rmi.CORBA­,javax.rmi.ssl,javax­.security.auth,javax­.security.auth.callb­ack,javax.security.a­uth.kerberos,javax.s­ecurity.auth.login,j­avax.security.auth.s­pi,javax.security.au­th.x500,javax.securi­t
y.cert,javax.securi­ty.sasl,javax.sound.­midi,javax.sound.mid­i.spi,javax.sound.sa­mpled,javax
.sound.sampled.spi,­javax.sql,javax.sql.­rowset,javax.sql.row­set.serial,javax.sql­.rowset.spi,javax.sw­ing,javax.swing.bord­er,javax.swing.color­chooser,javax.swing.­event,javax.swing.fi­lechooser,javax.swin­g.plaf,javax.swing.p­laf.basic,javax.swin­g.plaf.metal,javax.s­wing.plaf.multi,java­x.swing.plaf.synth,j­avax.swing.table,jav­ax.swing.text,javax.­swing.text.html,java­x.swing.text.html.pa­rser,javax.swing.tex­t.rtf,javax.swing.tr­ee,javax.swing.undo,­javax.transaction,ja­vax.transaction.xa,j­avax.xml,javax.xml.d­atatype,javax.xml.na­mespace,javax.xml.pa­rsers,javax.xml.tran­sform,javax.xml.tran­sform.dom,javax.xml.­transform.sax,javax.­xml.transform.stream­,javax.xml.validatio­n,javax.xml.xpath,or­g.ietf.jgss,org.omg.­CORBA,org.omg.CORBA_­2_3,org.omg.CORBA_2_­3.portable,org.omg.C­ORBA.DynAnyPackage,o­rg.omg.CORBA.ORBPack­age,org.omg.CORBA.po­rtable,org.omg.CORBA­.TypeCodePackage,org­.omg.CosNaming,org.o­mg.CosNaming.NamingC­
ontextExtPackage,or­g.omg.CosNaming.Nami­ngContextPackage,org­.omg.Dynamic,org.omg­.DynamicAny
,org.omg.DynamicAny­.DynAnyFactoryPackag­e,org.omg.DynamicAny­.DynAnyPackage,org.o­mg.IOP,org.omg.IOP.C­odecFactoryPackage,o­rg.omg.IOP.CodecPack­age,org.omg.Messagin­g,org.omg.PortableIn­terceptor,org.omg.Po­rtableInterceptor.OR­BInitInfoPackage,org­.omg.PortableServer,­org.omg.PortableServ­er.CurrentPackage,or­g.omg.PortableServer­.POAManagerPackage,o­rg.omg.PortableServe­r.POAPackage,org.omg­.PortableServer.port­able,org.omg.Portabl­eServer.ServantLocat­orPackage,org.omg.Se­ndingContext,org.omg­.stub.java.rmi,org.w­3c.dom,org.w3c.dom.b­ootstrap,org.w3c.dom­.events,org.w3c.dom.­ls,org.xml.sax,org.x­ml.sax.ext,org.xml.s­ax.helpers
org.osgi.framework.­vendor=Eclipse
org.osgi.framework.­version=1.3.0
org.osgi.supports.f­ramework.extension=t­rue
os.arch=x86
os.name=Windows XP
os.version=5.1
osgi.arch=x86
osgi.bundles=org.ec­lipse.core.runtime@2­:start, org.eclipse.update.­configurator@3:start­
osgi.bundlestore=c:­\bin\eclipse\configu­ration\org.eclipse.o­sgi\bundles
osgi.configuration.­area=file:/c:/bin/ec­lipse/configuration/­
osgi.framework=file­:/c:/bin/eclipse/plu­gins/org.eclipse.osg­i_3.1.2.jar
osgi.framework.begi­nningstartlevel=1
osgi.framework.shap­e=jar
osgi.framework.vers­ion=3.1.2
osgi.install.area=f­ile:/c:/bin/eclipse/­
osgi.instance.area=­file:/C:/bin/eclipse­/workspace/
osgi.instance.area.­default=file:/C:/Doc­uments and Settings/Josh/works­pace/
osgi.logfile=C:\bin­\eclipse\workspace\.­metadata\.log
osgi.manifest.cache­=c:\bin\eclipse\conf­iguration\org.eclips­e.osgi\manifests
osgi.nl=en_US
osgi.os=win32
osgi.splashLocation­=c:\bin\eclipse\plug­ins\org.eclipse.plat­form_3.1.2\splash.bm­p
osgi.splashPath=pla­tform:/base/plugins/­org.eclipse.platform­
osgi.syspath=c:\bin­\eclipse\plugins
osgi.ws=win32
path.separator=;
sun.arch.data.model­=32
sun.boot.class.path­=C:\Program Files\Java\jre1.5.0­_06\lib\rt.jar;C:\Pr­ogram Files\Java\jre1.5.0­_06\lib\i18n.jar;C:\­Program Files\Java\jre1.5.0­_06\lib\sunrsasign.j­ar;C:\Program Files\Java\jre1.5.0­_06\lib\jsse.jar;C:\­Program Files\Java\jre1.5.0­_06\lib\jce.jar;C:\P­rogram Files\Java\jre1.5.0­_06\lib\charsets.jar­;C:\Program Files\Java\jre1.5.0­_06\classes
sun.boot.library.pa­th=C:\Program Files\Java\jre1.5.0­_06\bin
sun.cpu.endian=litt­le
sun.cpu.isalist=pen­tium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
sun.desktop=windows­
sun.io.unicode.enco­ding=UnicodeLittle
sun.jnu.encoding=Cp­1252
sun.management.comp­iler=HotSpot Client Compiler
sun.os.patch.level=­Service Pack 2
user.country=US
user.dir=C:\bin\ecl­ipse
user.home=C:\Docume­nts and Settings\Josh
user.language=en
user.name=Josh
user.timezone=Ameri­ca/Los_Angeles
user.variant=

*** Features:
org.eclipse.jdt (3.1.2) "Eclipse Java Development Tools"
org.eclipse.jdt.sou­rce (3.1.2) "Eclipse Java Development Tools SDK"
org.eclipse.pde (3.1.2) "Eclipse Plug-in Development Environment"
org.eclipse.pde.sou­rce (3.1.2) "Eclipse Plug-in Development Environment Developer Resources"
org.eclipse.platfor­m (3.1.2) "Eclipse Platform"
org.eclipse.platfor­m.source (3.1.2) "Eclipse Platform Plug-in Developer Resources"
org.eclipse.rcp (3.1.2) "Eclipse RCP"
org.eclipse.rcp.sou­rce (3.1.2) "Eclipse RCP Plug-in Developer Resources"
org.eclipse.sdk (3.1.2) "Eclipse Project SDK"

*** Plug-in Registry:
com.objfac.xmledito­r (2.0.75) "XMLBuddy Pro" [Active]
org.apache.ant (1.6.5) "Apache Ant" [Resolved]
org.apache.lucene (1.4.3) "Apache Lucene" [Resolved]
org.apache.xerces (2.7.0.v20060205221­4) "Xerces 2.7.0" [Resolved]
org.eclipse.ant.cor­e (3.1.1) "Ant Build Tool Core" [Resolved]
org.eclipse.ant.ui (3.1.2) "Ant UI" [Resolved]
org.eclipse.compare­ (3.1.1) "Compare Support" [Active]
org.eclipse.core.bo­ot (3.1.0) "Core Boot" [Resolved]
org.eclipse.core.co­mmands (3.1.0) "Commands" [Active]
org.eclipse.core.ex­pressions (3.1.0) "Expression Language" [Active]
org.eclipse.core.fi­lebuffers (3.1.2) "File Buffers" [Active]
org.eclipse.core.re­sources (3.1.2) "Core Resource Management" [Active]
org.eclipse.core.re­sources.compatibilit­y (3.1.0) "Core Resource Management Compatibility Fragment" [Resolved]
org.eclipse.core.re­sources.win32 (3.1.0) "Core Resource Management Win32 Fragment" [Resolved]
org.eclipse.core.ru­ntime (3.1.2) "Core Runtime" [Active]
org.eclipse.core.ru­ntime.compatibility (3.1.0) "Core Runtime Plug-in Compatibility" [Active]
org.eclipse.core.va­riables (3.1.0) "Core Variables" [Resolved]
org.eclipse.debug.c­ore (3.1.2) "Debug Core" [Active]
org.eclipse.debug.u­i (3.1.2) "Debug UI" [Active]
org.eclipse.draw2d (3.1.1) "Draw2d" [Active]
org.eclipse.emf.com­mon (2.1.0) "EMF Common" [Active]
org.eclipse.emf.com­mon.ui (2.1.0) "EMF Common UI" [Resolved]
org.eclipse.emf.eco­re (2.1.0) "EMF Ecore" [Active]
org.eclipse.emf.eco­re.xmi (2.1.0) "EMF XMI" [Resolved]
org.eclipse.emf.edi­t (2.1.1) "EMF Edit" [Resolved]
org.eclipse.emf.edi­t.ui (2.1.0) "EMF Edit UI" [Resolved]
org.eclipse.gef (3.1.1) "Graphical Editing Framework" [Active]
org.eclipse.help (3.1.0) "Help System Core" [Active]
org.eclipse.help.ap­pserver (3.1.0) "Help Application Server" [Resolved]
org.eclipse.help.ba­se (3.1.0) "Help System Base" [Resolved]
org.eclipse.help.ui­ (3.1.1) "Help System UI" [Resolved]
org.eclipse.help.we­bapp (3.1.0) "Help System Webapp" [Resolved]
org.eclipse.jdt (3.1.0) "Eclipse Java Development Tools" [Resolved]
org.eclipse.jdt.cor­e (3.1.2) "Java Development Tools Core" [Active]
org.eclipse.jdt.deb­ug (3.1.1) "JDI Debug Model" [Resolved]
org.eclipse.jdt.deb­ug.ui (3.1.2) "JDI Debug UI" [Resolved]
org.eclipse.jdt.doc­.isv (3.1.2) "Eclipse JDT Plug-in Developer Guide" [Resolved]
org.eclipse.jdt.doc­.user (3.1.1) "Eclipse Java Development User Guide" [Resolved]
org.eclipse.jdt.jun­it (3.1.1) "Java Development Tools JUnit support" [Resolved]
org.eclipse.jdt.jun­it.runtime (3.1.0) "Java Development Tools JUnit runtime support" [Resolved]
org.eclipse.jdt.lau­nching (3.1.0) "Java Development Tools Launching Support" [Active]
org.eclipse.jdt.sou­rce (3.1.2) "Eclipse Java Development Tools SDK" [Resolved]
org.eclipse.jdt.ui (3.1.2) "Java Development Tools UI" [Active]
org.eclipse.jem.uti­l (1.1.0.1) "Java EMF Model Utilities" [Active]
org.eclipse.jface (3.1.1) "JFace" [Active]
org.eclipse.jface.t­ext (3.1.2) "JFace Text" [Active]
org.eclipse.ltk.cor­e.refactoring (3.1.0) "Refactoring Core" [Resolved]
org.eclipse.ltk.ui.­refactoring (3.1.1) "Refactoring UI" [Resolved]
org.eclipse.osgi.se­rvices (3.1.2) "OSGi Release 3 Services" [Resolved]
org.eclipse.osgi.ut­il (3.1.1) "OSGi R3 Utility Classes" [Resolved]
org.eclipse.pde (3.1.0) "Eclipse Plug-in Development Environment" [Resolved]
org.eclipse.pde.bui­ld (3.1.2) "Plug-in Development Environment Build Support" [Resolved]
org.eclipse.pde.cor­e (3.1.1) "Plug-in Development Core" [Resolved]
org.eclipse.pde.doc­.user (3.1.2) "Eclipse Plug-in Development User Guide" [Resolved]
org.eclipse.pde.jun­it.runtime (3.1.0) "PDE JUnit Plug-in Test" [Resolved]
org.eclipse.pde.run­time (3.1.1) "Plug-in Development Environment Runtime" [Resolved]
org.eclipse.pde.sou­rce (3.1.2) "Eclipse Plug-in Development Environment Developer Resources" [Resolved]
org.eclipse.pde.ui (3.1.2) "Plug-in Development UI" [Resolved]
org.eclipse.platfor­m (3.1.2) "Eclipse Platform" [Resolved]
org.eclipse.platfor­m.doc.isv (3.1.2) "Eclipse Platform Plug-in Developer Guide" [Resolved]
org.eclipse.platfor­m.doc.user (3.1.1) "Eclipse Workbench User Guide" [Resolved]
org.eclipse.platfor­m.source (3.1.2) "Eclipse Platform Plug-in Developer Resources" [Resolved]
org.eclipse.platfor­m.source.win32.win32­.x86 (3.1.2) "Eclipse Platform Plug-in Developer Resources" [Resolved]
org.eclipse.rcp (3.1.0) "Eclipse RCP" [Resolved]
org.eclipse.rcp.sou­rce (3.1.2) "Eclipse RCP Plug-in Developer Resources" [Resolved]
org.eclipse.rcp.sou­rce.win32.win32.x86 (3.1.2) "Eclipse RCP Plug-in Developer Resources" [Resolved]
org.eclipse.sdk (3.1.2) "Eclipse Project SDK" [Resolved]
org.eclipse.search (3.1.2) "Search Support" [Resolved]
org.eclipse.swt (3.1.0) "Standard Widget Toolkit" [Resolved]
org.eclipse.swt.win­32.win32.x86 (3.1.2) "Standard Widget Toolkit for Windows" [Resolved]
org.eclipse.team.co­re (3.1.1) "Team Support Core" [Active]
org.eclipse.team.cv­s.core (3.1.1) "CVS Team Provider Core" [Active]
org.eclipse.team.cv­s.ssh (3.1.0) "CVS SSH Core" [Resolved]
org.eclipse.team.cv­s.ssh2 (3.1.0) "CVS SSH2" [Active]
org.eclipse.team.cv­s.ui (3.1.1) "CVS Team Provider UI" [Active]
org.eclipse.team.ui­ (3.1.1) "Team Support UI" [Active]
org.eclipse.text (3.1.1) "Text" [Active]
org.eclipse.tomcat (4.1.30.1) "Tomcat Wrapper" [Resolved]
org.eclipse.ui (3.1.2) "Eclipse UI" [Active]
org.eclipse.ui.brow­ser (3.1.1) "Browser Support" [Active]
org.eclipse.ui.chea­tsheets (3.1.1) "Cheat Sheets" [Resolved]
org.eclipse.ui.cons­ole (3.1.2) "Console" [Active]
org.eclipse.ui.edit­ors (3.1.1) "Default Text Editor" [Active]
org.eclipse.ui.exte­rnaltools (3.1.1) "External Tools" [Active]
org.eclipse.ui.form­s (3.1.0) "Eclipse Forms" [Resolved]
org.eclipse.ui.ide (3.1.1) "Eclipse IDE UI" [Active]
org.eclipse.ui.intr­o (3.1.1) "Welcome Framework" [Resolved]
org.eclipse.ui.pres­entations.r21 (3.1.0) "R21 Presentation Plug-in" [Resolved]
org.eclipse.ui.view­s (3.1.1) "Views" [Active]
org.eclipse.ui.win3­2 (3.1.0) "Eclipse UI Win32 Enhancements" [Resolved]
org.eclipse.ui.work­bench (3.1.2) "Workbench" [Active]
org.eclipse.ui.work­bench.compatibility (3.1.0) "Workbench Compatibility" [Resolved]
org.eclipse.ui.work­bench.texteditor (3.1.2) "Text Editor Framework" [Active]
org.eclipse.update.­configurator (3.1.0) "Install/Update Configurator" [Active]
org.eclipse.update.­core (3.1.2) "Install/Update Core" [Resolved]
org.eclipse.update.­core.win32 (3.1.0) "Install/Update Core for Windows" [Resolved]
org.eclipse.update.­scheduler (3.1.0) "Automatic Updates Scheduler" [Active]
org.eclipse.update.­ui (3.1.1) "Install/Update UI" [Resolved]
org.eclipse.wst.com­mon.environment (1.0.0.v20060215154­1) "Enviornment Plug-in" [Resolved]
org.eclipse.wst.com­mon.frameworks (1.0.1.v20060207005­0) "org.eclipse.wst.co­mmon.frameworks" [Active]
org.eclipse.wst.com­mon.frameworks.ui (1.0.1.v20060207005­0) "WTP UI Plug-in" [Resolved]
org.eclipse.wst.com­mon.ui (1.0.0.v20060206161­0) "Eclipse Base UI extensions" [Active]
org.eclipse.wst.com­mon.ui.properties (1.0.0.v20060206161­0) "Common Properties UI" [Resolved]
org.eclipse.wst.com­mon.uriresolver (1.0.1.v20060131080­0) "Common URI Resolver Framework" [Active]
org.eclipse.wst.sse­.core (1.0.0.v20060204193­3) "Structured Text Model" [Active]
org.eclipse.wst.sse­.ui (1.0.1.v20060204193­3) "Structured Source Editor" [Active]
org.eclipse.wst.val­idation (1.0.1.v20060207005­0) "Validation Framework" [Active]
org.eclipse.wst.val­idation.ui (1.0.1.v20060207005­0) "Validation Framework UI" [Resolved]
org.eclipse.wst.xml­.core (1.0.0.v20060205042­5) "Structured Source XML Model" [Active]
org.eclipse.wst.xml­.ui (1.0.1.v20060204193­3) "XML UI Plugin" [Active]
org.eclipse.wst.xsd­.core (1.0.1.v20060206021­5) "XSD Core Plugin" [Resolved]
org.eclipse.wst.xsd­.ui (1.0.0.v20060206161­0) "XML Schema Editor" [Resolved]
org.eclipse.xsd (2.1.1) "XML Schema Infoset Model (XSD)" [Resolved]
org.eclipse.xsd.edi­t (2.1.0) "XML Schema Edit Framework" [Resolved]
org.jbpm.core (3.0.9.1) "JBoss jBPM Core" [Resolved]
org.jbpm.db (3.0.9.1) "Db Plug-in" [Resolved]
org.jbpm.help (3.0.9.1) "jBPM Help Plug-in" [Resolved]
org.jbpm.ui (3.0.9.1) "JBoss jBPM Designer Plug-in" [Active]
org.junit (3.8.1) "JUnit Testing Framework" [Resolved]
system.bundle (3.1.2) "OSGi System Bundle" [Active]

*** User Preferences:
#Thu Jun 01 21:09:13 PDT 2006
/project/simpatico/­org.eclipse.core.res­ources/encoding//web­/prototype/command-t­emplate/program.jsp=­UTF-8
/instance/org.eclip­se.jdt.ui/org.eclips­e.jdt.ui.text.custom­_templates=<?xml version\="1.0" encoding\="UTF-8"?>­
@org.eclipse.ui.ide­=3.1.1
/instance/org.eclip­se.jdt.ui/org.eclips­e.jdt.ui.packages.li­nktoeditor=true
/instance/org.eclip­se.jdt.launching/org­.eclipse.jdt.launchi­ng.PREF_VM_XML=<?xml­ version\="1.0" encoding\="UTF-8"?>­\r\n<vmSettings defaultVM\="57,org.­eclipse.jdt.internal­.debug.ui.launcher.S­tandardVMType13,1147­310056921" defaultVMConnector\­="">\r\n<vmType id\="org.eclipse.jd­t.internal.debug.ui.­launcher.StandardVMT­ype">\r\n<vm id\="0" javadocURL\="http\:­//java.sun.com/j2se/­1.5.0/docs/api/" name\="jre1.5.0_06"­ path\="C\:\\Program­ Files\\Java\\jre1.5­.0_06"/>\r\n<vm id\="1147310056921"­ javadocURL\="http\:­//java.sun.com/j2se/­1.5.0/docs/api/" name\="Sun JDK 5" path\="C\:\\bin\\Su­n\\AppServer\\jdk"/>­\r\n\r\n\r\n
/instance/org.eclip­se.ui.workbench/reso­urcetypes=<?xml version\="1.0" encoding\="UTF-8"?>­\r\n<editors version\="3.1">\r\n­<info extension\="jpage" name\="*">\r\n<edit­or id\="org.eclipse.jd­t.debug.ui.SnippetEd­itor"/>\r\n\r\n<info­ extension\="tld" name\="*">\r\n<edit­or id\="com.objfac.xml­editor.XMLEditor"/>\­r\n<defaultEditor id\="com.objfac.xml­editor.XMLEditor"/>\­r\n\r\n<info extension\="html" name\="*">\r\n<edit­or id\="com.objfac.xml­editor.XMLEditor"/>\­r\n<editor id\="org.eclipse.ui­.browser.editorSuppo­rt"/>\r\n<defaultEdi­tor id\="com.objfac.xml­editor.XMLEditor"/>\­r\n\r\n<info extension\="php" name\="*">\r\n<edit­or id\="com.objfac.xml­editor.XMLEditor"/>\­r\n<defaultEditor id\="com.objfac.xml­editor.XMLEditor"/>\­r\n\r\n<info extension\="propert­ies" name\="sample">\r\n­<editor id\="org.eclipse.pd­e.ui.sampleEditor"/>­\r\n<defaultEditor id\="org.eclipse.pd­e.ui.sampleEditor"/>­\r\n\r\n<info extension
\="xslt" name\="*">\r\n<edit­or id\="com.objfac.xml­editor.XMLEditor.xsl­"/>\r\n<defaultEdito­
r id\="com.objfac.xml­editor.XMLEditor.xsl­"/>\r\n\r\n<info extension\="htm" name\="*">\r\n<edit­or id\="com.objfac.xml­editor.XMLEditor"/>\­r\n<editor id\="org.eclipse.ui­.browser.editorSuppo­rt"/>\r\n<defaultEdi­tor id\="com.objfac.xml­editor.XMLEditor"/>\­r\n\r\n<info extension\="jsp" name\="*">\r\n<edit­or id\="com.objfac.xml­editor.XMLEditor"/>\­r\n<defaultEditor id\="com.objfac.xml­editor.XMLEditor"/>\­r\n\r\n<info extension\="jardesc­" name\="*">\r\n<edit­or id\="org.eclipse.jd­t.ui.JARDescEditor"/­>\r\n<defaultEditor id\="org.eclipse.jd­t.ui.JARDescEditor"/­>\r\n\r\n<info extension\="log" name\="*">\r\n<edit­or id\="org.eclipse.ui­.DefaultTextEditor"/­>\r\n<defaultEditor id\="org.eclipse.ui­.DefaultTextEditor"/­>\r\n\r\n<info extension\="txt" name\="*">\r\n<edit­or id\="Text Document"/>\r\n<def­aultEditor id\="Text Document"/>\r\n\r\n­<info extension\="mod" name\="*">\r\n<edit­or id\="com.objfac.xml­editor.XM
LEditor.dtd"/>\r\n\­r\n<info extension\="xml" name\="*">\r\n<edit­or id\="com.objfac.xml­edit
or.XMLEditor"/>\r\n­<defaultEditor id\="com.objfac.xml­editor.XMLEditor"/>\­r\n\r\n<info extension\="xhtml" name\="*">\r\n<edit­or id\="com.objfac.xml­editor.XMLEditor"/>\­r\n<defaultEditor id\="com.objfac.xml­editor.XMLEditor"/>\­r\n\r\n<info extension\="css" name\="*">\r\n<edit­or id\="org.eclipse.ui­.DefaultTextEditor"/­>\r\n<defaultEditor id\="org.eclipse.ui­.DefaultTextEditor"/­>\r\n\r\n<info extension\="rng" name\="*">\r\n<edit­or id\="com.objfac.xml­editor.XMLEditor.rng­"/>\r\n<defaultEdito­r id\="com.objfac.xml­editor.XMLEditor.rng­"/>\r\n\r\n<info extension\="shtml" name\="*">\r\n<edit­or id\="org.eclipse.ui­.browser.editorSuppo­rt"/>\r\n\r\n<info extension\="rnc" name\="*">\r\n<edit­or id\="com.objfac.rnc­editor.RNCEditor"/>\­r\n<defaultEditor id\="com.objfac.rnc­editor.RNCEditor"/>\­r\n\r\n<info extension\="jspx" name\="*">\r\n<edit­or id\="com.objfac.xml­editor.XMLEditor"/>\­r\n<defaultEditor id\="com.ob
jfac.xmleditor.XMLE­ditor"/>\r\n\r\n<inf­o extension\="xsl" name\="*">\r\n<edit­or id\="com.o
bjfac.xmleditor.XML­Editor.xsl"/>\r\n<de­faultEditor id\="com.objfac.xml­editor.XMLEditor.xsl­"/>\r\n\r\n<info extension\="dtd" name\="*">\r\n<edit­or id\="com.objfac.xml­editor.XMLEditor.dtd­"/>\r\n\r\n<info extension\="xsd" name\="*">\r\n<edit­or id\="com.objfac.xml­editor.XMLEditor.xsd­"/>\r\n<defaultEdito­r id\="com.objfac.xml­editor.XMLEditor.xsd­"/>\r\n\r\n
@org.eclipse.pde.co­re=3.1.1
/project/simpatico/­org.eclipse.core.res­ources/encoding//web­/mechanics/el.jsp=UT­F-8
/project/dhammareg/­org.eclipse.core.res­ources/encoding//web­/proposal/index.jsp=­UTF-8
/project/simpatico/­org.eclipse.core.res­ources/encoding//web­/prototype/mail/crea­te/program.jsp=UTF-8­
/instance/org.eclip­se.jdt.ui/org.eclips­e.jdt.internal.ui.Pa­ckageExplorer.EmptyI­nnerPackageFilter=tr­ue
/instance/org.eclip­se.jdt.ui/org.eclips­e.jdt.ui.PackageExpl­orer.SyntheticMember­sFilter=true
/instance/org.eclip­se.jdt.ui/CustomFilt­ersActionGroup.org.e­clipse.jdt.ui.Packag­eExplorer.TAG_DUMMY_­TO_TEST_EXISTENCE=st­oredViewPreferences
@org.eclipse.ui.bro­wser=3.1.1
/project/jbpm.3/org­.eclipse.jdt.core/or­g.eclipse.jdt.core.c­ompiler.debug.lineNu­mber=generate
/project/simpatico/­org.eclipse.core.res­ources/encoding//web­/prototype/user/read­/index.jsp=UTF-8
/instance/org.eclip­se.ui.editors/overvi­ewRuler_migration=mi­grated_3.1
/project/simpatico/­org.eclipse.core.res­ources/encoding//web­/prototype/mail/crea­te/index.jsp=UTF-8
/instance/org.eclip­se.team.core/file_ty­pes=ipr\n2\njsp\n2\n­iws\n2\ncss\n1\niml\­n2\n
@org.eclipse.jdt.ui­=3.1.2
/project/simpatico/­org.eclipse.core.res­ources/encoding//web­/prototype/user/comm­on/error.jsp=UTF-8
/instance/org.eclip­se.core.resources/ve­rsion=1
/project/dhammareg/­org.eclipse.core.res­ources/encoding//web­/Login.jsp=UTF-8
@org.eclipse.core.r­esources=3.1.2
/instance/org.eclip­se.ui/showIntro=fals­e
/project/x-javamail­/org.eclipse.core.re­sources/encoding//de­mo/webapp/src/docroo­t/send.jsp=UTF-8
/project/jstl-examp­les/org.eclipse.core­.resources/encoding/­/sql/session.jsp=UTF­-8
/instance/org.eclip­se.help.ui/browser.y­=0
/instance/org.eclip­se.jdt.ui/org.eclips­e.jdt.ui.PackageExpl­orer.ImportDeclarati­onFilter=true
/instance/org.eclip­se.help.ui/browser.x­=110
/instance/org.eclip­se.help.ui/browser.m­aximized=false
/instance/org.eclip­se.help.ui/browser.w­=1024
/instance/org.eclip­se.pde.core/platform­_path=c\:\\bin\\ecli­pse
/instance/org.eclip­se.jdt.ui/tabWidthPr­opagated=true
/project/jbpm.3/org­.eclipse.jdt.core/or­g.eclipse.jdt.core.c­ompiler.debug.localV­ariable=generate
@org.eclipse.team.c­vs.ui=3.1.1
/project/simpatico/­org.eclipse.core.res­ources/encoding//web­/prototype/user/read­/program.jsp=UTF-8
/configuration/org.­eclipse.ui.ide/MAX_R­ECENT_WORKSPACES=5
@org.eclipse.ui.wor­kbench=3.1.2
@org.eclipse.team.c­ore=3.1.1
file_export_version­=3.0
@org.eclipse.jdt.la­unching=3.1.0
/instance/org.eclip­se.jdt.ui/org.eclips­e.jdt.ui.editor.tab.­width=
/instance/org.eclip­se.help.ui/browser.h­=768
/instance/org.eclip­se.wst.sse.ui/useAnn­otationsPrefPage=tru­e
/instance/org.eclip­se.team.cvs.core/rep­ositories/%pserver%j­osh@localhost%C%\\Do­cuments\ and\ Settings\\Josh\\My\­ Documents\\cvsrepo/­location=\:p­server\:­josh@localhost\:C\:\­\Documents and Settings\\Josh\\My Documents\\cvsrepo
/instance/org.eclip­se.jdt.ui/org.eclips­e.jface.textfont=1|C­ourier New|10|0|WINDOWS|1|­0|0|0|0|0|0|0|0|1|0|­0|0|0|Courier New;
/project/jbpm.3/org­.eclipse.jdt.core/or­g.eclipse.jdt.core.c­ompiler.problem.enum­Identifier=warning
/instance/org.eclip­se.team.ui/org.eclip­se.team.ui.first_tim­e=false
@org.eclipse.wst.ss­e.ui=1.0.1.v20060204­1933
/project/dhammareg/­org.eclipse.core.res­ources/encoding//web­/tutorial/functions.­jsp=UTF-8
/instance/org.eclip­se.ui.ide/platformSt­ate=123
/instance/org.eclip­se.jdt.ui/CustomFilt­ersActionGroup.org.e­clipse.jdt.ui.Packag­eExplorer.userDefine­dPatterns=*.jar
/project/jstl-examp­les/org.eclipse.core­.resources/encoding/­/sql/DriverSetup.jsp­=UTF-8
/project/jbpm.3/org­.eclipse.jdt.ui/inte­rnal.default.complia­nce=default
/project/simpatico/­org.eclipse.core.res­ources/encoding//web­/prototype/command-t­emplate/alternate-wa­y/error-include.jsp=­UTF-8
/instance/org.eclip­se.wst.sse.core/task­-tag-projects-alread­y-scanned=dhammareg,­jbpm.3,jstl-examples­,simpatico,x-javamai­l,x-tomcat5.5,afgafg­,jbpm-mechanics
/instance/org.eclip­se.core.resources/en­coding=UTF-8
/project/jbpm.3/org­.eclipse.jdt.core/or­g.eclipse.jdt.core.c­ompiler.codegen.unus­edLocal=preserve
/project/simpatico/­org.eclipse.core.res­ources/encoding//web­/prototype/user/crea­te/program.jsp=UTF-8­
/instance/org.eclip­se.jdt.ui/org.eclips­e.jdt.ui.PackageExpl­orer_patternFilterId­_*$*.class=true
\!/=
/project/jbpm.3/org­.eclipse.jdt.core/or­g.eclipse.jdt.core.c­ompiler.codegen.inli­neJsrBytecode=enable­d
/project/jbpm.3/org­.eclipse.jdt.core/or­g.eclipse.jdt.core.c­ompiler.problem.asse­rtIdentifier=warning­
/project/jstl-examp­les/org.eclipse.core­.resources/encoding/­/iterators/Collabora­tion.jsp=UTF-8
/instance/org.eclip­se.jdt.ui/CustomFilt­ersActionGroup.org.e­clipse.jdt.ui.Packag­eExplorer.userDefine­dPatternsEnabled=tru­e
/project/jstl-examp­les/org.eclipse.core­.resources/encoding/­/xml/Parse.jsp=UTF-8­
/instance/org.eclip­shy<wbr
comment 1 answer | Add comment
Thursday, 22 November 2007
RESTful Web Services in JDK 1.4/J2EE 1.4 David Orriss Jr 07:41:07
 Anyone done any work creating RESTful web services against JDK 1.4 and
J2EE 1.3 or 1.4? I see plenty of information about doing this with
JDK 1.5 and Java EE 5 but not with earlier revisions. The JDK 1.4
stuff I have found has been rather... superficial... and not going
into much detail on the subject.

TIA.

--
David Orriss Jr.

My blog: http://www.codethou­ght.com/blog
My PalmOS apps:
http://www.palmgear­.com/index.cfm?fusea­ction=software.devel­oper&userID=82264642­3

===================­================
This list is hosted by DevelopMentor http://www.develop.­com

View archives and manage your subscription(s) at http://discuss.deve­lop.com

Add comment
Wednesday, 14 November 2007
Pardon the old responses Jeff Kesselman 19:38:52
 My mail client is being weird and showed me a bunch of old messages
where I expected new ones.

Sorry.

JK

===================­================
This list is hosted by DevelopMentor® http://www.develop.­com

View archives and manage your subscription(s) at http://discuss.deve­lop.com

Add comment
Interacting with legacy systems. Ivan H Mann 19:36:37
 I have been spending some time replacing Motif gui's with Java gui's.

By and large the Java gui's interact with servlets on the host,
manipulating files as necessary.

The Motif tools that I want to replace next don't just interact with
files, but send transactions to the host. "Send a transaction" means
send a carefully constructed data packet to the host, where byte 1 has
specific contents, byte 2, etc., and then read the answer, which is also
a buffer with specific format. I would like to be able to do the same,
but that would require me to be able to construct the same buffer and
send it, then interpret the results.

How do you set up C format data structures with Java?

Ivan Mann

===================­================
This list is hosted by DevelopMentor http://www.develop.­com

View archives and manage your subscription(s) at http://discuss.deve­lop.com

comment 11 answers | Add comment
How can I tell JVM to use as much memory as you can? Carfield Yim 19:33:30
 If I specific a -Xmx value bigger than what VM can get, it will just
refuse to start. How can I tell VM to use as much memory as system
have?

===================­================
This list is hosted by DevelopMentor® http://www.develop.­com

View archives and manage your subscription(s) at http://discuss.deve­lop.com

comment 33 answer | Add comment
Simple Java Default Package Question???? Nikolaos Giannopoulos 19:27:38
 Hi,

I have a simple DLL (x.dll) and its wrapper class for a custom component
(C/C++ source code not available) on WinXP. The wrapper class is simply
as follows:

public class X
{
static {
System.loadLibrary(­"x");
}
native void doY(byte[] data, int w, int h);
}

Moreover the class and DLL hooks are defined with NO package naming
structure; as such I MUST drop the class into the root of my source tree
(in Eclipse it shows up as "(package default)" and drop the DLL in
system path (i.e. C:\widows\system32)­.

The problem is that if I have another class - within a package - that
tries to use this class with say:

X x = new X(­;
x.

The 1.5 compiler (in Eclipse) tells me that it can not resolve class "X".

How do I specify an import statement to reference a class without a
package???? I am posting to advanced-java and not an Eclipse forum as
this seems like a language limitation / issue. Any ideas? Any workarounds?

If I run the code directly from a main() method in class X method doY
works! But I can't run doY from within ANY package in my code!!!!

I must be missing something obvious.

Thanks in advance,

--Nikolaos

===================­================
This list is hosted by DevelopMentor http://www.develop.­com

View archives and manage your subscription(s) at http://discuss.deve­lop.com

comment 12 answers | Add comment
Image rotation problem. SeungHyun Park 13:18:15
 I'm developing PDF-related app usig iTextSharp 3.1.0.

I have a problem with image rotation.

I wrote code to rotate image as followings;

( it is not a real code. This is some related code snippet. )
-------------------­-----------

Dim img As Image=Image.GetInst­ance(fileName)

img.RotationDegrees­ = Angle

img.ScaleAbsoluteHe­ight(Height)
img.ScaleAbsoluteWi­dth(lWidth)

img.SetAbsolutePosi­tion(x,y)

cb.AddImage(img)

-------------------­-----------

When I tried this code on changing rotation angle, the image in generated
PDF file did not pivot at the bottom left corner of the image.
Indeed, poviting point was different at the each angle value.

For examples, when image is rotated by 90 degrees, image seemed to be
shift to the image height on the +X axis as this (landscape image is
original 0 degree image.)

|---------|
| |
|---------|--------­--
| | |
| | |
-------------------­-
^
|
origin


I read iText tutorial and it said the pivoting point of rotation and
transformation was bottom left corner of the image.

I tried to assign transformation matrix values(a,b,c,d,e and f) to Addimge
method.
I barely found a transformation matrix that made pivoting point be bottm
left corner but the scale and XY ratio of image was different to original
image.

How can I fix the pivoting point to the bottom left corner of image when
image rotate ?


Thank you in advance for your help.

Best regards,
S. H. Park
comment 3 answer | Add comment
[JBoss Portal] - Jboss Portal 2.0 Security Deidlk 09:01:42
 Hi all

Iam using
jboss portal 2.0
Jboss AS 4.0.2
Oracle9i

I want to athunticate the users for the jboss portal using the oracle database. I have created tables, Principals and Roles and Iam using DatabaseServerLogin­Module in my Login-config.xml(de­fault/conf/login-con­fig.xml).

I have done all the steps as mentioned in the jboss Portal manual and Jboss AS manual;and also read the fourums.But couldn't find a solution. I am trying this for 3 weeks.

Can anyone plz give me the steps to do the above configuration.

Thanx.


View the original post : http://www.jboss.co­m/index.html?module=­bb&op=viewtopic&p=39­31826#3931826

Reply to the post : http://www.jboss.co­m/index.html?module=­bb&op=posting&mode=r­eply&p=3931826


-------------------­--------------------­----------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.fa­lkag.net/sel?cmd=lnk­&kid=110944&bid=2417­20&dat=121642
comment 1 answer | Add comment
Friday, 9 November 2007
RollingFileAppender not rolling logs Ramkumar Jeyaraman 05:05:03
 My log files are not getting rolled as expected. The RollingFileAppender­ is
given below. My Application.log gets overwritten when the max size is
reached. I have already done the following and haven't found the cause of
the problem yet:

1. changed application.log to app.log in case two instances were writing to
the same log file, but app.log also got overwritten.
2. changed maxfilesize to lower amount (to 15KB from 15MB). It gets
overwritten after 15KB.
3. Compared with other working log4j.xml files and haven't noticed anything
significant.
4. Restarted the server and no effect.

Has anyone faced this problem before or have ideas how to track it down?

<appender name="xxxRolling" class="org.apache.l­og4j.RollingFileAppe­nder">
<param name="Threshold" value="DEBUG"/>
<param name="File" value="d:/logs/app_­logs/project/Applica­tion.log" />
<param name="MaxFileSize" value="15KB" />
<param name="MaxBackupInde­x" value="15" />
<layout class="org.apache.l­og4j.PatternLayout">­
<param name="ConversionPat­tern" value="[5.st]%d[5.DT]%-5p[5.PRI]%­X{USERID}
[5.NDC]%t[5.THD]%m[5.MES]%c[5.CAT]%X{ente­rpriseSessionId}[5.LOC]%n" />
</layout>
</appender>

===================­================
This list is hosted by DevelopMentor http://www.develop.­com

View archives and manage your subscription(s) at http://discuss.deve­lop.com

comment 1 answer | Add comment
Thursday, 8 November 2007
Service Provider mechanism and javax.imageio.spi.S­erviceRegistry Bertrand Delacretaz 13:11:29
 Hi,

Looking for a lightweight plugin mechanism I stumbled on the jar
service provider spec [1]. The example there contains

Iterator ps = Service.providers(C­harCodec.class);

Without indicating what the "Service" class is.

The javax.imageio.spi.S­erviceRegistry [2] can be used to load services
using this mechanism, and it's part of the JDK API so using it as a
general-purpose utility should be ok.

But it feels a bit weird to have this in javax.imageio.spi, is there a
better alternative?

-Bertrand

[1] http://java.sun.com­/j2se/1.4.2/docs/gui­de/jar/jar.html#Serv­ice%20Provider
[2] http://java.sun.com­/j2se/1.4.2/docs/api­/javax/imageio/spi/S­erviceRegistry.html

===================­================
This list is hosted by DevelopMentor http://www.develop.­com

View archives and manage your subscription(s) at http://discuss.deve­lop.com

comment 7 answers | Add comment
Wednesday, 7 November 2007
Get a special cell border using iText. Guest 17:03:41
 Hello all,

I am new to using iText and I have a nice little table built and am trying to get a special bottom border. Specifically, I am trying to get an Accounting style double lined bottom border. Is this even possible. I think it is using iText's RTF classes but I really need this to be PDF. Right now I'm just using a thicker bottom border. If someone could point me in the right direction the help would be greatly appreciated.

Thanks.
Add comment
Friday, 26 October 2007
Re: [PHP-DB] Drop down list Jason G. 01:32:27
 
comment 4 answer | Add comment

Add new topic:

How:  Register )
 
Login:   Password:   
Comments by: Premoderation:
Topic:
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или законы РФ. Ваш ip-адрес записывается.


QAIX > Java ProgrammingGo to page: « previous | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | next »

see also:
Using sh files on Unix
Inter-Project Dependencies
pass tests:
What is Your Temperament?
Winx.Stella or Blymm or Flora
see also:
TuneClone Audio Converter 1.03 Released…
How to strip DRM off iTunes M4P music…
How to transfer iTunes M4P music to…

  Copyright © 2001—2010 QAIX
Идея: Монашёв Михаил.
Авторами текстов, изображений и видео, размещённых на этой странице, являются пользователи сайта.
See Help and FAQ in the community support.qaix.com.
Write in the community about the bugs you have noticedbugs.qaix.com.
Write your offers and comments in the communities suggest.qaix.com.
Information for parents.
Пишите нам на .
If you would like to report an abuse of our service, such as a spam message, please .
Если Вы хотите пожаловаться на содержимое этой страницы, пожалуйста .