Re: [JBoss-dev] Foo Deployer (WL Deployer)

2002-12-05 Thread Alex Loubyansky
Hello Marcus, MR what is the latest version of the WL deployer? it doesn't have its own version. MR Is it currently integrated in MR 3.x MR or in HEAD? It's in HEAD only and works, as I remember, with JBoss-3.2 and HEAD. If you are interested in it I can provide any info. Let's discuss it in

[JBoss-dev] Re: HEAD build problem with foe-deployer tests

2002-12-15 Thread Alex Loubyansky
$ChildrenValidator.consume(ValidatingParser.java:349) DJ [ejbdoclet] at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1 -- Best regards, Alex Loubyansky --- This sf.net email is sponsored by: With Great Power, Comes Great

Re: [JBoss-dev] Re: HEAD build problem with foe-deployer tests

2002-12-15 Thread Alex Loubyansky
:349) DJ [ejbdoclet] at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1 -- Best regards, Alex Loubyansky --- This sf.net email is sponsored by: With Great Power, Comes Great Responsibility Learn to use your power

[JBoss-dev] new problems on Win2K

2002-12-26 Thread Alex Loubyansky
I am watching the following problem. Once ejb-jar module is copied in the deploy directory and deployed it can't be removed until the server is stopped. This occurs on Windows2000 with HEAD only. JVM is Sun 1.3.1_05. Am I alone? Thanks, alex

[JBoss-dev] URLConnection and opened files

2003-01-13 Thread Alex Loubyansky
I am investingating the problem with inability remove deployed files. First, I've found that URLDeploymentScanner uses sun.net.www.protocol.file.FileURLConnection. For example here: URLConnection connection; if (watchUrl != null) { connection = watchUrl.openConnection(); } else { connection

[JBoss-dev] opened files

2003-01-13 Thread Alex Loubyansky
I quickly searched the source for opening files with FileInputStream. I fixed closing it after reading is done in several places. I want to warn. The common, I think mistake, in loading properties is Properties props = new Properties(); props.load(new FileInputStream(new File(filename))); After

[JBoss-dev] Re: URLConnection and opened files

2003-01-13 Thread Alex Loubyansky
Forgot to add. This is for JBoss-3.2. But in HEAD I can't remove deployed/watching files on windows either. So, I guess, HEAD has the same problem. alex Monday, January 13, 2003, 2:10:51 PM, you wrote: AL I am investingating the problem with inability remove deployed files. AL First, I've

Re[2]: [JBoss-dev] URLConnection and opened files

2003-01-13 Thread Alex Loubyansky
System.setProperty(java.protocol.handler.pkgs, handlerPkgs); SMS SMS Scott Stark SMS Chief Technology Officer SMS JBoss Group, LLC SMS SMS - Original Message - SMS From: Alex Loubyansky [EMAIL PROTECTED] SMS To: JBoss-Dev [EMAIL PROTECTED

Re[4]: [JBoss-dev] URLConnection and opened files

2003-01-13 Thread Alex Loubyansky
being used. What version of JBoss are we SMS talking about here? SMS SMS Scott Stark SMS Chief Technology Officer SMS JBoss Group, LLC SMS SMS - Original Message - SMS From: Alex Loubyansky [EMAIL PROTECTED] SMS To: Scott M Stark [EMAIL

Re[4]: [JBoss-dev] URLConnection and opened files

2003-01-14 Thread Alex Loubyansky
I'm a bit confused. I wrote a simple standalone test. - main public static void main(String[] args) throws Exception { // set handler pkgs System.out.println(java.protocol.handler.pkgs: + System.getProperty(java.protocol.handler.pkgs)); URL url = new URL(file, null, args[0]);

Re[6]: [JBoss-dev] URLConnection and opened files

2003-01-14 Thread Alex Loubyansky
SMS Scott Stark SMS Chief Technology Officer SMS JBoss Group, LLC SMS SMS - Original Message - SMS From: Alex Loubyansky [EMAIL PROTECTED] SMS To: Scott M Stark [EMAIL PROTECTED] SMS Sent: Tuesday, January 14, 2003 7:07 AM SMS Subject: Re[4]: [JBoss

Re[2]: [JBoss-dev] JNuke dev

2003-01-14 Thread Alex Loubyansky
I also thought about support class/method/field level metadata attributes for aspects deploying the source file this way. But this could be a limiting solution for aspects development. alex Tuesday, January 14, 2003, 9:16:20 PM, you wrote: DS Bill, DS This reminds me of an I deal I has last

Re[6]: [JBoss-dev] URLConnection and opened files

2003-01-15 Thread Alex Loubyansky
SMS SMS - Original Message - SMS From: Alex Loubyansky [EMAIL PROTECTED] SMS To: Scott M Stark [EMAIL PROTECTED] SMS Sent: Tuesday, January 14, 2003 7:07 AM SMS Subject: Re[4]: [JBoss-dev] URLConnection and opened files I'm a bit confused. I wrote a simple

Re: [JBoss-dev] Fw: [jboss-cvs] jboss-common/src/main/org/jboss/net/protocol/resource ResourceURLConnection.java

2003-01-15 Thread Alex Loubyansky
JBoss-3.2 doesn't have + String urlStr = target.toString(); + target = new URL(urlStr); But just adding this doesn't help me. BTW, is java.protocol.handler.pkgs setup after the SCL is created? As I see it is, but how is it supposed to be? I would expect vice versa. alex

RE: Re[2]: [JBoss-dev] JNuke dev

2003-01-15 Thread Alex Loubyansky
of class/method/field metadata in the AOP framework I've been working on. Please refer to the AOP forum. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Alex Loubyansky Sent: Wednesday, January 15, 2003 1:01 AM To: Dain Sundstrom Subject

Re[4]: [JBoss-dev] JNuke dev

2003-01-15 Thread Alex Loubyansky
PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Alex Loubyansky Sent: Wednesday, January 15, 2003 10:56 AM To: [EMAIL PROTECTED] Subject: RE: Re[2]: [JBoss-dev] JNuke dev I meant specifying them in XDoclet style, not XML. /** * @classAttr */ class MyClass { /** * @fieldAttr

Re[8]: [JBoss-dev] URLConnection and opened files

2003-01-15 Thread Alex Loubyansky
Thursday, January 16, 2003, 1:38:59 AM, you wrote: JB OK - changed this in 3.2 and HEAD and I can now delete a .war archive I JB couldn't before. JB Alex, can you let me know if this worked for you. Sorry about the hassle. Yes, it works now. Thanks, alex

Re[2]: [JBoss-dev] Finders, Selectors and ... deleters?

2003-01-17 Thread Alex Loubyansky
Jeremy, as I remember, once we already considered delete and update operations in JBossQL. This is great because we don't depend on the specific database. I thought this was planned for 4.0. alex Friday, January 17, 2003, 7:08:43 PM, you wrote: I was thinking about something while looking at

[JBoss-dev] tx propagation in 3.2 and HEAD

2003-02-03 Thread Alex Loubyansky
This came from XPetstore-2.2. First, tx propagation in 3.2 and HEAD differs. Consider the following situation: - CMP CategoryEJB with default tx attr Required; - CategoryEJB has business method getCategoryValue with tx attr Supports (this is not spec compliant but anyway); - session bean

Re[2]: [JBoss-dev] New module for cmp? What about the ejb module?

2003-03-02 Thread Alex Loubyansky
Sunday, March 02, 2003, 9:15:33 PM, Jason Dillon wrote: JD I think it might be better to use a different name non-ejb related... JD but whatever... what about just persistence? I like just persistence too. alex JD --jason JD On Monday, March 3, 2003, at 01:45 AM, Jeremy Boynes wrote: I

[JBoss-dev] MarshalledValue

2003-03-03 Thread Alex Loubyansky
MarshalledValue's constructor is public MarshalledValue(Object obj) throws IOException { baos = new ByteArrayOutputStream(); MarshalledValueOutputStream mvos = new MarshalledValueOutputStream(baos); mvos.writeObject(obj); mvos.flush(); isHashComputed = false;

Re[2]: [JBoss-dev] [AUTOMATED] (HEAD) JBoss compilation failed

2003-03-03 Thread Alex Loubyansky
This morning I had problems with this error and clean build. The error was out of memory. JDK 1.3.1_05 Windows2000 alex Monday, March 03, 2003, 5:06:03 PM, David Jencks wrote: DJ I don't think so, the error is not shown. DJ I built fresh from a clean checkout last night with no problems. The

[JBoss-dev] JBoss-3.2 build issues

2003-03-18 Thread Alex Loubyansky
I did a clean check out of jboss-3.2 and can't build it on Win2000 with Sun's jdk1.3.1. I have no idea what's wrong. Whether it's something wrong with my environment or it is check out incorrectly, though I re-checked out it again. Any hints are welcome. The problem is with classpath. I had to

Re[2]: [JBoss-dev] JBoss-3.2 build issues

2003-03-18 Thread Alex Loubyansky
SMS - Original Message - SMS From: Alex Loubyansky [EMAIL PROTECTED] SMS To: jboss-development [EMAIL PROTECTED] SMS Sent: Tuesday, March 18, 2003 6:40 AM SMS Subject: [JBoss-dev] JBoss-3.2 build issues I did a clean check out of jboss-3.2 and can't build it on Win2000

Re[2]: [JBoss-dev] JBoss-3.2 build issues

2003-03-18 Thread Alex Loubyansky
Yes, branch is required. Thank you very much. alex Tuesday, March 18, 2003, 5:10:52 PM, David Jencks wrote: DJ did you check out -r Branch_3_2 jboss-3.2 DJ david jencks DJ On 2003.03.18 09:40 Alex Loubyansky wrote: I did a clean check out of jboss-3.2 and can't build it on Win2000

[JBoss-dev] HEAD: Instance Per Transaction container

2003-03-25 Thread Alex Loubyansky
Something went wrong with Instance Per Transaction CMP2.x EntityBean conatiner configuration in HEAD. I found that at least one-to-many relationships are not working currently. Attempt to set relationship results in an exception (snippet below). I haven't looked at it yet. Did anyone do something

[JBoss-dev] resource-ref vs resource-env-ref

2002-06-08 Thread Alex Loubyansky
Hi guys. I need your advice. I map weblogic's dd's to jboss' equivalents for foe-deployer. Gloomy stuff :) But nevertheless... In WL6.X there is a resource-description tag that is an equivalent of ours resource-ref and there is resource-env-description that is an equivalent of ours

[JBoss-dev] WL's persistence to JBoss' commit-options

2002-06-09 Thread Alex Loubyansky
Hi guys, please look at this and tell whether you agree or don't. I need your either yes and no votes. So, here one of the most interesting stuff in wl to jboss mapping goes: commit options. I've done it this way: 1. !-- IF -- !-- Descr: The read-timeout-seconds is the number of seconds

Re[2]: [JBoss-dev] WL's persistence to JBoss' commit-options

2002-06-09 Thread Alex Loubyansky
Thanks David! !-- Descr: The passivation-strategy can be either default or transaction. With the default setting the container will attempt to keep a working set of beans in the cache. With the transaction setting, the container will passivate the

[JBoss-dev] web security constraints

2002-06-10 Thread Alex Loubyansky
description/description transport-guaranteeNONE/transport-guarantee /user-data-constraint /security-constraint -- Best regards, Alex Loubyansky ___ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25

[JBoss-dev] Re: web security constraints

2002-06-10 Thread Alex Loubyansky
/transport-guarantee AL /user-data-constraint AL /security-constraint -- Best regards, Alex Loubyansky ___ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas - http://devcon.sprintpcs.com

Re: [JBoss-dev] Getting UserTransaction object for Transaction Management

2002-06-11 Thread Alex Loubyansky
Hello Dharma, actually, UserTransaction is its JNDI name. It's bound in the global context. You can verify whether it's really boud by checking JNDIView (localhost:8082) alex -Original Message- From: Dharma Kishore [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Tue, 11 Jun 2002

Re[2]: [JBoss-dev] deploying waiting deployments

2002-06-26 Thread Alex Loubyansky
. So, that's the reason of the question. I think for now I just leave it as it is. Thank you again! :) alex DJ please refactor MainDeployer before copying its functionality. DJ david jencks DJ On 2002.06.26 13:55:53 -0400 Alex Loubyansky wrote: Hi guys, what is the best way to deploy

Re: [JBoss-dev] unsubcribe

2002-06-27 Thread Alex Loubyansky
https://lists.sourceforge.net/lists/listinfo/jboss-development -- Best regards, Alex Loubyansky --- Sponsored by: ThinkGeek at http://www.ThinkGeek.com/ ___ Jboss-development mailing list [EMAIL

Re[2]: [JBoss-dev] Build broken?

2002-07-01 Thread Alex Loubyansky
() [execmodules] location: class org.jboss.mx.loading.MBeanElement [execmodules] valueMap.put(VERSIONS, element.getVersions()); [execmodules]^ -- Best regards, Alex Loubyansky --- This sf.net

[JBoss-dev] relationship keys mapping

2002-07-01 Thread Alex Loubyansky
Hi Dain, I remember someone was working on the problem of mapping primary keys of one bean to related primary keys of another bean. I'd like to know whether it's in progress now. If not maybe I could help solve it? Thanks. -- Best regards, Alex Loubyansky

Re: [JBoss-dev] Realm TomcatJboss Configuration

2002-07-17 Thread Alex Loubyansky
-development -- Best regards, Alex Loubyansky --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Jboss-development mailing list [EMAIL PROTECTED

Re[2]: [JBoss-dev] Realm TomcatJboss Configuration

2002-07-17 Thread Alex Loubyansky
JDBC based loging module, i have readed that RN the realms are for this... i have found documentation for tomcat, but for RN the embedded installation nothing... RN Thanks again RN Ruben RN -Original Message- RN From: Alex Loubyansky [mailto:[EMAIL PROTECTED]] RN Sent: 17 July 2002 13:30 RN

Re[2]: [JBoss-dev] Realm TomcatJboss Configuration

2002-07-17 Thread Alex Loubyansky
Hello marc, I am sorry, guys. I haven't looked at the address. Yes, I'll do next time. --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___

[JBoss-dev] current cvs version can't be built

2002-07-22 Thread Alex Loubyansky
regards, Alex Loubyansky --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Jboss-development mailing list [EMAIL PROTECTED] https

Re[2]: [JBoss-dev] current cvs version can't be built

2002-07-22 Thread Alex Loubyansky
Hello Hiram, builds successfully. Thanks! alex Monday, July 22, 2002, 3:43:31 PM, you wrote: HC try it again.. I forgot to check something in. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Alex Loubyansky Sent: Monday, July 22, 2002 2:54 AM

[JBoss-dev] problems with JBossMQ

2002-07-23 Thread Alex Loubyansky
) at org.jboss.Main.boot(Main.java:152) at org.jboss.Main$1.run(Main.java:385) at java.lang.Thread.run(Thread.java:484) -- Best regards, Alex Loubyansky --- This sf.net email is sponsored by:ThinkGeek Welcome

Re: [JBoss-dev] problems with JBossMQ

2002-07-24 Thread Alex Loubyansky
Uh... Today even worse. Just have checked out cvs and couldn't even start JBoss w/o that exception. -- Best regards, Alex Loubyansky --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf

[JBoss-dev] Container.getJmxName()

2002-08-09 Thread Alex Loubyansky
comments? TIA. -- Best regards, Alex Loubyansky --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Jboss-development mailing list [EMAIL PROTECTED] https

Re[6]: [JBoss-dev] Container.getJmxName()

2002-08-09 Thread Alex Loubyansky
leave the branches to me. Ok, so, no problem. Thanks! -- Best regards, Alex Loubyansky --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ Jboss

[JBoss-dev] JCAConnectionFactory undeployment bug and patch

2002-08-16 Thread Alex Loubyansky
=JCA,j2eeType=JCAConnectionFactory,name=MySqlDS-LocalTxCM,* And it works. I guess it's a weird way. Please, comment it. TIA! -- Best regards, Alex Loubyansky --- This sf.net email is sponsored by: OSDN - Tired of that same old cell phone

Re: [JBoss-dev] JCAConnectionFactory undeployment bug and patch

2002-08-17 Thread Alex Loubyansky
- Original Message - From: Alex Loubyansky [EMAIL PROTECTED] To: JBoss-Dev [EMAIL PROTECTED] Sent: Friday, August 16, 2002 12:54 PM Subject: [JBoss-dev] JCAConnectionFactory undeployment bug and patch Hello guys, there is a bug in JCAConnectionFactory undeployment (I guess in all

[JBoss-dev] jdk dependent build

2002-09-05 Thread Alex Loubyansky
Hello, guys! I remember threads on this but don't remember the conclusion (if it was made). To support JDBC-3.0 code, I have to decide whether to compile sources depending on the JDK version. For now I solve it this way target name=set-java-version condition property=jdk1.4 equals

Re: [JBoss-dev] jboss 4 build system changes, possible jboss.net and catalina impact.

2002-09-11 Thread Alex Loubyansky
DJ I also don't know if the catalina module still works and don't know how to DJ test it. I only partially converted that build.xml, leaving the previous DJ definitions commented out. Again, info appreciated. DJ thanks DJ david jencks -- Best regards, Alex Loubyansky

Re: [JBoss-dev] jboss 4 build system changes, possible jboss.net and catalina impact.

2002-09-11 Thread Alex Loubyansky
is imminent. DJ DJ I also don't know if the catalina module still works and don't know how to DJ test it. I only partially converted that build.xml, leaving the previous DJ definitions commented out. Again, info appreciated. DJ thanks DJ david jencks -- Best regards, Alex Loubyansky

Re[2]: [JBoss-dev] jboss 4 build system changes, possible jboss.net and catalina impact.

2002-09-11 Thread Alex Loubyansky
on my linux system to do build.sh all. Could you try build.bat DJ all and add the -X. stuff if necessary? set ANT_OPTS=%ANT_OPTS% -Xmx640m As in build.sh but it doesn't help. Thank you. alex DJ On 2002.09.11 12:45:30 -0400 Alex Loubyansky wrote: Another problem, David. When cleaning up I

Re[3]: [JBoss-dev] jboss 4 build system changes, possible jboss.net and catalina impact.

2002-09-12 Thread Alex Loubyansky
? AL set ANT_OPTS=%ANT_OPTS% -Xmx640m AL As in build.sh but it doesn't help. AL Thank you. AL alex DJ On 2002.09.11 12:45:30 -0400 Alex Loubyansky wrote: Another problem, David. When cleaning up I get the following exception. The file exists and can deleted manually w/o problems. Or is it just

[JBoss-dev] CMP vendor specific code

2002-09-12 Thread Alex Loubyansky
Hello, guys! David and Dain, I guess, you are the persons who can help me here. Currently, I am writting CMP code that supports db-vendor specific API. I need to cast PreparedStatement/Statement to vendor specific ones. So, the statements need to be casted to WrappedStatement first and then

[JBoss-dev] CVS problems / broken build

2002-09-19 Thread Alex Loubyansky
Hello guys, I probably broke the build. I committed one file and then the connection to cvs was lost. I am very sorry and will correct it as soon as I am able. -- Best regards, Alex Loubyansky --- This sf.net email is sponsored

[JBoss-dev] JBossCMP: new ways to create entity beans

2002-09-19 Thread Alex Loubyansky
the corresponding element of in the known command. For now the feature is available in HEAD version. -- Best regards, Alex Loubyansky --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf

Re: [JBoss-user] RE: [JBoss-dev] SUBMITTING DOCUMENTATION PLEASE READ

2002-09-25 Thread Alex Loubyansky
Whom should I send it? alex I want to change that once and for all, I will ask that as you submit new code you also submit the JUnit tests if you have them as the documentation. The documentation can come mf This doesn't make sense. I mean, just like you have you junit test, mf submit

[JBoss-dev] Set interface implementation

2002-10-01 Thread Alex Loubyansky
I'm working on a bug 576410. The problem is that we need a Set implementation that will order elements by its addition to the set. I called it SequencedSet. There are two main approaches: implement it from scratch extending AbstractSet or on top of something. I talked with Dain and he advised me

[JBoss-dev] HEAD build problem: Win2000, jdk1.3.1

2002-10-05 Thread Alex Loubyansky
I can't build current fresh HEAD on Win2000 with jdk1.3.1. 1. I had to add -Xmx640m as in build.sh 2. BUILD FAILED file:C:/CVSROOT/jboss-all/security/build.xml:166: Reference javac.classpath not found. alex --- This sf.net email is

[JBoss-dev] undeploying ejb-jar in Branch_3_2

2002-10-05 Thread Alex Loubyansky
Undeploying ejb-jar with one entity and one session beans in current Branch_3_2, the exception below is thrown. Am I alone? alex 2002-10-05 13:19:58,447 INFO [org.jboss.ejb.plugins.EntityInstancePool] Destroyed 2002-10-05 13:19:58,447 ERROR [org.jboss.ejb.EntityContainer] Destroying failed

Re[2]: [JBoss-dev] SARDeployer strange ordering of archives

2002-10-10 Thread Alex Loubyansky
org.jboss.deployment.SARDeployer method parseXMLClasspath on line 292 This method parses the Classpath element. But it adds each archive to a HashSet. Then iterates over the elements in the HashSet and deploys them. Changing the HashSet to an java.util.ArrayList or java.util.Vector

Re: [JBoss-dev] Fwd: [jboss-cvs] jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCLoadEntityCommand.java

2002-10-13 Thread Alex Loubyansky
_ AB Chat with friends online, try MSN Messenger: http://messenger.msn.com -- Best regards, Alex Loubyansky --- This sf.net email is sponsored by:ThinkGeek Welcome to geek

Re: [JBoss-dev] Fwd: [jboss-cvs] jboss/src/main/org/jboss/ejb/plugins/cmp/jdbc JDBCLoadEntityCommand.java

2002-10-14 Thread Alex Loubyansky
) )) { +|| ( field.isLoaded( ctx ) + ( !field.isReadOnly() || !field.isReadTimedOut( ctx ) ) + ) + ) + { fields.remove(); } } -- Best regards, Alex Loubyansky

[JBoss-dev] ArrayIndexOutOfBoundsException in testsuite

2002-10-14 Thread Alex Loubyansky
Running tests-db in current HEAD on jdk1.3.1 on Win2000 I get the exception below. There are two test-cases that fail. Sometimes they fail eventually. Sometime, one of them, sometime both. Do someone see it too? The problem is in MetaData.java in getChildrenByTagName alex 2002-10-14

Re[2]: [JBoss-dev] suggestion for JBOSS_CMP

2002-10-23 Thread Alex Loubyansky
of the worse problem with CMP is that : database overhead. CMP generates too much sql commands that in some cases could be handled by fewer (if not one) sql commands. The DBA's in my company didn't like very much the trace they saw in the database for a very simple app. -- Best regards, Alex

[JBoss-dev] jboss-client.jar vs jboss-all-client.jar

2002-10-23 Thread Alex Loubyansky
It seems that jboss-client.jar is a subset of jboss-all-client.jar. What is the reason? Thanks. alex --- This sf.net email is sponsored by: Influence the future of Java(TM) technology. Join the Java Community Process(SM) (JCP(SM)) program

Re: [JBoss-dev] jboss-client.jar vs jboss-all-client.jar

2002-10-23 Thread Alex Loubyansky
___ AL Jboss-development mailing list AL [EMAIL PROTECTED] AL https://lists.sourceforge.net/lists/listinfo/jboss-development -- Best regards, Alex Loubyansky --- This sf.net email is sponsored

Re[2]: [JBoss-dev] developing on windows

2002-10-19 Thread Alex Loubyansky
;lists.sourceforge.net]On Behalf Of JD Alex Loubyansky Sent: Friday, October 18, 2002 5:03 PM To: JBoss-Dev Subject: [JBoss-dev] developing on windows Developing on Windows became a nightmare. Sometimes to bulid the server or run a testsuite I need to run build.bat several times

Re[2]: [JBoss-dev] developing on windows

2002-10-19 Thread Alex Loubyansky
DJ low memory (256 mb) machine. What does take a lot of time is running DJ xdoclet hundreds of times, as in the testsuite compile. DJ It does take an annoying amount of time if there are no changed files. DJ I think we should make a flag file that we can do an uptodate check on to DJ completely

[JBoss-dev] HEAD is broken: storeEntity must always be called

2002-10-24 Thread Alex Loubyansky
The bug is in CMP. Many-to-many relationships are not working. Though, the tests-db are passing successfully. The bug was introduced by the following change (this is not a real cvs diff): public boolean isModified(EntityEnterpriseContext ctx) { - return isModifiedCommand.execute( ctx );

[JBoss-dev] can't add a dir to thirdparty

2002-10-25 Thread Alex Loubyansky
I am meeting this problem when attempting to add apache-commons dir to thirdparty. I am said: cvs [add aborted]: cannot add to /cvsroot/jboss/CVSROOT/Emptydir Could someone clarify it, please? I just added a dir in varia successfully. Thanks. alex

Re[2]: [JBoss-dev] can't add a dir to thirdparty

2002-10-25 Thread Alex Loubyansky
Of Alex Loubyansky Sent: Friday, October 25, 2002 10:45 AM To: JBoss-Dev Subject: [JBoss-dev] can't add a dir to thirdparty I am meeting this problem when attempting to add apache-commons dir to thirdparty. I am said: cvs [add aborted]: cannot add to /cvsroot/jboss/CVSROOT/Emptydir Could

Re[4]: [JBoss-dev] can't add a dir to thirdparty

2002-10-25 Thread Alex Loubyansky
-- Best regards, Alex Loubyansky --- This sf.net email is sponsored by: Influence the future of Java(TM) technology. Join the Java Community Process(SM) (JCP(SM)) program now. http://ads.sourceforge.net/cgi-bin/redirect.pl?sunm0004en

[JBoss-dev] Re[2]: [jboss-cvs] jboss-common/src/main/org/jboss/util WeakValueHashMap.java

2002-10-25 Thread Alex Loubyansky
void clear() { processQueue(); hash.clear(); } } -- Best regards, Alex Loubyansky --- This sf.net email is sponsored by: Influence the future of Java(TM) technology. Join the Java Community Process(SM) (JCP(SM

Re: Re[4]: [JBoss-dev] can't add a dir to thirdparty

2002-10-26 Thread Alex Loubyansky
, dated 02/04/2002. thirdparty/apache/commons-collections apache commons-collections_2_0 How can I modify the modules file? Where is it? Thanks. alex --jason -Original Message- From: [EMAIL PROTECTED] [mailto:jboss- [EMAIL PROTECTED]] On Behalf Of Alex Loubyansky Sent: Friday

[JBoss-dev] -service.xml generator

2002-10-26 Thread Alex Loubyansky
I am thinking about writting an MBean that will generate *-service.xml files for datasources. I see it the following way. - MBean attributes corresponding to values needed to construct -service.xml (such as url, driver, user, password, etc); - XML template with dummy/default values; - XSL

Re: [JBoss-dev] -service.xml generator

2002-10-27 Thread Alex Loubyansky
Jelly/Velocity requires only one. Also, I wouldn't add any thirdparty library unless it really helps. The JBoss becomes so heavy. I think it's problem. Thanks. alex On Sat, 26 Oct 2002 20:08:08 -0400 Anatoly Akkerman [EMAIL PROTECTED] wrote: Alex Loubyansky wrote: I am thinking about writting

Re[2]: [JBoss-dev] -service.xml generator

2002-10-27 Thread Alex Loubyansky
with JBoss library dependency growth, then, Jelly is out of AA the picture. AA Alex Loubyansky wrote: Thanks, Anatoly. I'll check it. Also I thought about Velocity which looks similar to Jelly from your description, though I am not familiar with the last one. Could you, please, look

Re[4]: [JBoss-dev] -service.xml generator

2002-10-28 Thread Alex Loubyansky
that is currently only transient. SL cheers, SL Sacha -Message d'origine- De : [EMAIL PROTECTED] [mailto:jboss-development-admin;lists.sourceforge.net]De la part de Alex Loubyansky Envoye : lundi, 28 octobre 2002 07:17 A : Anatoly Akkerman Objet : Re[2]: [JBoss-dev

Re[2]: [JBoss-dev] -service.xml generator

2002-10-28 Thread Alex Loubyansky
or xml AA which the Deployer happily deploys. AA Jelly has many usages this is just what I could come up with. It would AA be more than adequate for what you need to do, but if you are AA dissatisfied with JBoss library dependency growth, then, Jelly is out of AA the picture. AA Alex Loubyansky

Re[4]: [JBoss-dev] -service.xml generator

2002-10-28 Thread Alex Loubyansky
be really cool -Message d'origine- De : [EMAIL PROTECTED] [mailto:jboss-development-admin;lists.sourceforge.net]De la part de Alex Loubyansky Envoye : lundi, 28 octobre 2002 10:03 A : Anatoly Akkerman Objet : Re[2]: [JBoss-dev] -service.xml generator I am thinking about this stuff

Re[2]: [JBoss-dev] -service.xml generator

2002-10-28 Thread Alex Loubyansky
. alex DJ david jencks DJ On 2002.10.26 09:11:31 -0400 Alex Loubyansky wrote: I am thinking about writting an MBean that will generate *-service.xml files for datasources. I see it the following way. - MBean attributes corresponding to values needed to construct -service.xml (such as url

Re[6]: [JBoss-dev] can't add a dir to thirdparty

2002-11-02 Thread Alex Loubyansky
imported in apache-commons. JD --jason -Original Message- From: [EMAIL PROTECTED] [mailto:jboss- [EMAIL PROTECTED]] On Behalf Of Alex Loubyansky Sent: Friday, October 25, 2002 1:30 PM To: Jason Dillon Subject: Re[4]: [JBoss-dev] can't add a dir to thirdparty You are cool. I respect

Re: [JBoss-dev] JBoss Training @ Geneva

2002-11-04 Thread Alex Loubyansky
Sacha -- Best regards, Alex Loubyansky --- This SF.net email is sponsored by: ApacheCon, November 18-21 in Las Vegas (supported by COMDEX), the only Apache event to be fully supported by the ASF. http://www.apachecon.com

Re[2]: [JBoss-dev] JBoss Training @ Geneva

2002-11-04 Thread Alex Loubyansky
gonna be a great training! (well, like all JBoss trainings ;) ) SL Cheers, SL Sacha -- Best regards, Alex Loubyansky --- This SF.net email is sponsored by: ApacheCon, November 18-21 in Las Vegas (supported

[JBoss-dev] JBoss-3.0.1alpha (25.04 cvs version) hangs on start up

2002-04-25 Thread Alex Loubyansky
I just have checked jboss-all from cvs, built with J2SDK1.4.0 under Win2K and got this exception on start up: 2002-04-25 12:01:03,790 INFO [org.jboss.resource.connectionmanager.XATxConnectionManager] Creating 2002-04-25 12:01:03,800 ERROR [org.jboss.management.j2ee.JCAConnectionFactory] Could

RE: [JBoss-dev] JBoss-3.0.1alpha (25.04 cvs version) hangs on start up

2002-04-25 Thread Alex Loubyansky
? thanks david jencks On 2002.04.25 05:08:51 -0400 Alex Loubyansky wrote: I just have checked jboss-all from cvs, built with J2SDK1.4.0 under Win2K and got this exception on start up: 2002-04-25 12:01:03,790 INFO [org.jboss.resource.connectionmanager.XATxConnectionManager] Creating

[JBoss-dev] ClassCastException for Stateful Session Bean

2002-05-07 Thread Alex Loubyansky
I have stateless session bean PublicSessionBean with ejb-ref to stateful session bean PrivateSessionBean. Like in JAAS example. (JAAS works fine and I removed all security related stuff) They have the same remote and home interfaces Session and SessionHome (I tried also to define

Re[2]: [JBoss-dev] ClassCastException for Stateful Session Bean

2002-05-07 Thread Alex Loubyansky
This error doesn't exist in the current CVS version. Thank you. DJ Please check if this is a problem against current cvs. DJ david jencks DJ On 2002.05.07 09:15:05 -0400 Alex Loubyansky wrote: I have stateless session bean PublicSessionBean with ejb-ref to stateful session bean

[JBoss-dev] Start-up error: Wrong number of servers found, should be 1: 0

2002-05-13 Thread Alex Loubyansky
-service.xml ERROR [org.jboss.management.j2ee.SARModule] Wrong number of servers found, should be 1: 0 INFO [org.jboss.deployment.SARDeployer] Created SARModule: null J2SDK-1.4.0, Win2000 -- Best regards, Alex Loubyansky mailto:[EMAIL PROTECTED

Re: [JBoss-dev] Your chance to work on JBoss

2002-05-13 Thread Alex Loubyansky
://lists.sourceforge.net/lists/listinfo/jboss-development -- Best regards, Alex Loubyansky mailto:[EMAIL PROTECTED] ___ Have big pipes? SourceForge.net is looking for download mirrors. We supply the hardware. You get

Re: [JBoss-dev] missing org.jboss.util.id.GUID from client jars?

2002-05-14 Thread Alex Loubyansky
list Mtc [EMAIL PROTECTED] Mtc https://lists.sourceforge.net/lists/listinfo/jboss-development -- Best regards, Alex Loubyansky mailto:[EMAIL PROTECTED] ___ Have big pipes? SourceForge.net is looking

[JBoss-dev] Re: JBoss WL Emulator

2002-05-15 Thread Alex Loubyansky
and Resource Managers AS - 1 to 1 CMP tables AS - Transactions AS - Finders AS - Message Driven Beans AS Until the end of the week I will start creating the Foe-Deployer AS and add the code to JBoss. And sorry... why it is called Foe? :) -- Best regards, Alex Loubyansky mailto

Re: [JBoss-dev] Foe-Deployer

2002-05-17 Thread Alex Loubyansky
mirrors. We supply AS the hardware. You get the recognition. Email Us: [EMAIL PROTECTED] AS ___ AS Jboss-development mailing list AS [EMAIL PROTECTED] AS https://lists.sourceforge.net/lists/listinfo/jboss-development -- Best regards, Alex Loubyansky

Re: [JBoss-dev] Foe-Deployer

2002-05-19 Thread Alex Loubyansky
Hi Andreas, now I have utility that takes .wljar as input parameter and converts it to .jar. It works this way: - Read next jar entry from wljar; - If current jar entry is an xml file: Look in classpath for xsl file with name xmlname.xsl; If xsl file not found, copy entry and read next from

[JBoss-dev] harmless exception?

2002-05-20 Thread Alex Loubyansky
$ScannerThread.loop(AbstractDeploymentScanner.java:202) at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:191) -- Best regards, Alex Loubyansky ___ Hundreds of nodes, one

[JBoss-dev] Deployers lifecycle/logging question

2002-05-24 Thread Alex Loubyansky
(). And converters (WebLogicConverter) are invoked in FoeDeployer.create() method. Could someone clarify it, please? Is it just logging? -- Best regards, Alex Loubyansky ___ Don't miss the 2002 Sprint PCS Application Developer's

Re[2]: [JBoss-dev] Deployers lifecycle/logging question

2002-05-24 Thread Alex Loubyansky
for log4j. TF Just a thought, TF Tobias TF Alex Loubyansky wrote: Hello, I am now testing FoeDeployer and have a question that, probably, affects behaviour of other deployers too. Suppose we have deployment units in the deploy dir waiting for the deployer. And the deployer is at last

Re[2]: [JBoss-dev] Deployers lifecycle/logging question

2002-05-24 Thread Alex Loubyansky
is registered. I don't think I recommend this. DJ david jencks -- Best regards, Alex Loubyansky ___ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

Re[2]: [JBoss-dev] Deployers lifecycle/logging question

2002-05-24 Thread Alex Loubyansky
Hello David, Friday, May 24, 2002, 4:20:33 PM, you wrote: DJ From your description below I think FoeDeployer depends on DJ WebLogicConverter. If you explicitly state this dependency with a depends DJ tag the deployment system will create WLC before FD and start WLC before DJ FD. If FD is

Re[3]: [JBoss-dev] Deployers lifecycle/logging question

2002-05-24 Thread Alex Loubyansky
that it tries to deploy whenever a new DJ converter is registered. I don't think I recommend this. DJ david jencks -- Best regards, Alex Loubyansky ___ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28

  1   2   >