[JBoss-user] [Installation, Configuration & Deployment] - Can I define sar/war startup sequence

2005-11-04 Thread healsky
I have several war and sar files deploying to JBoss. They have some little dependency. I want to know, is there any startup sequence I can defined on them? if so, how to do that??? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905580#3905580 Reply to the po

[JBoss-user] [Beginners Corner] - JBoss-4.0.3SP1 clustering tests

2005-11-04 Thread c.cremers
I'm trying to run the clustering tests in jboss-4.0.3SP1I first tried setting node1 in testsuite/local.properties to another machine on the network and tried running the tests. node0 comes up okay, but node1 does not, due to port conflicts. There's nothing on the target machine using those

[JBoss-user] [JBossWS] - Re: Urgent! .NET client compatibility with JBoss 4.0.1?

2005-11-04 Thread kdolan9
This we will have to try. You are right about the namespace thing. One of our developers just tweaked the JBoss code that generates the namespace stuff to do it the way .NET wants it. It works for string based methods (e.g., string params, string return types, string arrays) but not complex j

[JBoss-user] [Beginners Corner] - Re: Creating simple jsp page with using websphere rational s

2005-11-04 Thread PeterJ
See http://www.jboss.com/index.html?module=bb&op=viewtopic&t=71289. You're on your own to figure out how to get the JSP in the correct location via Rational. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905566#3905566 Reply to the post : http://www.jboss.

[JBoss-user] [JBossCache] - Re: collection cache does not work

2005-11-04 Thread sreepraveen_2000
can some one look into this issue please View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905565#3905565 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3905565 --- SF.N

[JBoss-user] [JBossWS] - Re: Urgent! .NET client compatibility with JBoss 4.0.1?

2005-11-04 Thread nehring
It may be that 4.0.1 is not providing the namespace for the response that .Net is wanting. I would expect, then, that a SOAP response from 4.0.1 and 4.0.3 are different in that respect. From what I've seen .Net will silently discard request/response parameters that don't have the namespace dec

[JBoss-user] [JBossWS] - Re: Urgent! .NET client compatibility with JBoss 4.0.1?

2005-11-04 Thread kdolan9
Steps 1-5 is what I'm doing. I do not have a try/catch around the web method call but I know it is not throwing anything because I have a number of calls to different web services and it is getting past the ones not working write. BTW - If I deploy my Java web service in JBoss 4.0.3 everything

[JBoss-user] [JBossWS] - Re: Urgent! .NET client compatibility with JBoss 4.0.1?

2005-11-04 Thread nehring
What does your .Net C# code look like? Everything is wrapped with objects that Visual Studio should have generated. So you basically: 1) Instantiate a proxy object. a.k.a. web reference. | 2) Then you'll instantiate a request object and populate it's parameters. | 3) Use the request object

[JBoss-user] [Beginners Corner] - Creating simple jsp page with using websphere rational softw

2005-11-04 Thread stj
Hi all Currently I am tring to create a simple jsp page(dynamic web project), I pluged in Jboss4.0 server into Rational Software v6 IDE and server is running perfectly but I could not deploy this jsp into jboss server, I dont know What I am missing, Could you please give me step by step i

[JBoss-user] [Testimonials] - Re: Where do I get Petstore for Jboss from?

2005-11-04 Thread arjunnath
Hi, Could you let me know too if you find where to get petstore for jboss from ? Also if you find any docs on how to implement it that would be nice. Thanks and regards arn View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905557#3905557 Reply to the post : h

[JBoss-user] [JBoss Portal] - Re: Portlets and EJB3 - WHAT?

2005-11-04 Thread bsmithjj
Curious, What the does EJB(3,2,1) or any of that have to do with a Portal Server and or portlets? Well-designed portlets should ideally be only concerned with processing events (clicks, etc.) from the UI and/or rendering content in the correct view state AND dispatching an event to an appropri

[JBoss-user] [EJB/JBoss] - Re: setRollbackOnly problem

2005-11-04 Thread [EMAIL PROTECTED]
Just delaying the rollback to the end of a method seems of little use in the general case of an arbitrarly deep stack. I would also argue that propagation of the ejb context and its setRollbackOnly method to the business layer is an improper propagation of a concern (transactions) that should on

[JBoss-user] [JBossWS] - Re: Urgent! .NET client compatibility with JBoss 4.0.1?

2005-11-04 Thread kdolan9
One last time: Before the "hello world fake", there are begin tags... HelloWorldResponse xmlns="http://Walkthrough/XmlWebServices/"; HelloWorldResult After the "hello world fake", there are end tags... HelloWorldResult HelloWorldResponse View the original post : http://www.jboss.com/ind

[JBoss-user] [JBossWS] - Re: Urgent! .NET client compatibility with JBoss 4.0.1?

2005-11-04 Thread kdolan9
Okay...the posting is stripping out the information. After the soap:Body begin tag and "hello world fake", you should see: After "hello world fake" and the soap:Body end tag, you should see: ...only without the < and >. For some reason if I provide the true symbols, everything in between i

[JBoss-user] [JBossWS] - Re: Urgent! .NET client compatibility with JBoss 4.0.1?

2005-11-04 Thread kdolan9
Oops...I was given the wrong SOAP message for the .NET. The correct message is shown below: http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:xsd="http://www.w3.org/2001/XMLSchema";>hello world fake View the original post : http://

[JBoss-user] [JBossWS] - Re: Urgent! .NET client compatibility with JBoss 4.0.1?

2005-11-04 Thread kdolan9
Our scenario is .NET client with JBoss 4.0.1 server. We wrote a Java web service and it deploys just fine within JBoss. In writing the .NET client, we add a web reference and it sees the WSDL just fine too. When it comes to execution, the .NET client appears to call the web service okay and b

[JBoss-user] [JBossWS] - Re: Urgent! .NET client compatibility with JBoss 4.0.1?

2005-11-04 Thread nehring
Is your scenario a .Net client with JBoss 4.0.1 server? Visual Studio should be able to build a client-side proxy okay. I actually use JBoss 4.0.2, but I do have .Net 1.1 clients running in production. (Soon to migrate to JBoss 4.0.3sp1) Do you have any clients that can talk to the web ser

[JBoss-user] [JBoss Portal] - Re: Portlets and EJB3

2005-11-04 Thread schnelzer
Any word on when JBoss Seam and Facelets will work in the Portal? That will make EJB3 really cool for portlets. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905544#3905544 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply

[JBoss-user] [JBoss Portal] - Re: Jboss Portal Websites?? Are there any??

2005-11-04 Thread schnelzer
We are using it for a world wide DoD app with ~300 concurrent users. It requires a secure log in so it can't be demonstrated. I've also participated in developing JBoss Portal implementations for a number of fortune 100 companies. All of these are corporate apps that require logins. View the

[JBoss-user] [JBossWS] - Urgent! .NET client compatibility with JBoss 4.0.1?

2005-11-04 Thread kdolan9
I have been messing around with JBoss web services and .NET clients for days and needed a solution a week ago (isn't that always the case). I have seen the Wiki link for JBoss and .NET and I have followed building the document/literal samples. The result is that the OrderProcess sample deploys

[JBoss-user] [JBossCache] - Re: Locks not working in networked TreeCaches?

2005-11-04 Thread [EMAIL PROTECTED]
"pr3ston" wrote : | Is there any way to lock a node on modification? | The short answer is no. It is upon replication that other caches in the cluster are considered in the tx. "pr3ston" wrote : | Is there any other way to lock a node across the cluster and then release it? Do you hav

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Stopping / Starting Tomcat web applications

2005-11-04 Thread furbern
Ben, I have just e-mailed boot.log and server.log to you. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905540#3905540 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3905540 --

[JBoss-user] [JBossCache] - Re: TreeCache and POJOs?

2005-11-04 Thread [EMAIL PROTECTED]
where do you get the error? On the instance where you put something in cache, or on the other instance in the cluster? Sounds like your classes are not avbl to both instances... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905539#3905539 Reply to the pos

[JBoss-user] [Beginners Corner] - what jar are the @Stateless, @SecurityDomain, @RolesAllowed

2005-11-04 Thread charged2885
what jar are the @Stateless, @SecurityDomain, @RolesAllowed annotations defined in? I could find them in 4.0.3rc1, but not 4.0.3rc2. Please help :) Todd View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905538#3905538 Reply to the post : http://www.jboss.com/i

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Error in jboss 4.0.2

2005-11-04 Thread guilhermefreitas
Hi! I am migrando of jboss 3,0,4 for jboss 4.0.2. Generated the error, somebody below could help me? Thank. 6:09:42,644 ERROR [LogInterceptor] EJBException in method: public abstract exercito.dep.informacoesgerais.remote.InformacoesGeraisSession exercito.dep.informacoesgerais.remote.Informac

[JBoss-user] [JBossCache] - Re: Locks not working in networked TreeCaches?

2005-11-04 Thread pr3ston
Hi Manik, So, from what you said it seems that if we start a transaction and modify 2 nodes, those nodes get locked across the cluster only during the commit phase of the transaction. Is this correct? Is there any way to lock a node on modification? Is there any other way to lock a node across

[JBoss-user] [JBossCache] - TreeCache and POJOs?

2005-11-04 Thread thebbk
I saw a post from 10/31 regarding the ability to use TreeCache (not TreeCacheAop) for caching pojo's. My cache is set up as synchronous and shared. When I try to cache a custom bean (in Eclipse) - I get the following error: org.jboss.util.NestedRuntimeException: java.lang.ClassNotFoundExceptio

[JBoss-user] [Management, JMX/JBoss] - Re: Can't persist collection or array attributes of XMBeans

2005-11-04 Thread blackard
Hmmm... didn't escape the xmbean attribute fragment... lemme try again Customer AV Set Customers java.util.TreeSet

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Artificially delaying messages

2005-11-04 Thread hargitt
Actually, I looked for it in doc and did not find any mention of JMS_JBOSS_SCHEDULED_DELIVERY. I have only found reference to it in the SpyMessage JavaDoc (I could not guess to look there) and one topic in this forum plus some other odd places on the net. I think that an amendment to the JBoss

[JBoss-user] [Management, JMX/JBoss] - Can't persist collection or array attributes of XMBeans

2005-11-04 Thread blackard
We're using JBoss 4.0.2 and JDK 1.4.2_07 on Windows and Linux boxes. Our XMBean is persisting the non-collection data using the DelegatingPersistenceManager/AttributePersistenceService/XMLAttributePersistenceManager configuration just fine. We also tested this using the ObjectStreamPersistenc

[JBoss-user] [Installation, Configuration & Deployment] - Upgrading issues

2005-11-04 Thread pmysore
Hi, I upgraded from JBoss 4.0.2 to JBoss 4.0.3 . Could anyone please please tell me how to redeploy my old projects (ears/wars)? Just copying my ear folder into the new jBoss won't work since I have struts authentication (login-config.xml etc) and other stuff for that project. Is there any

[JBoss-user] [JBoss Getting Started Documentation] - Re: please help : error building jboss-build.xml

2005-11-04 Thread mm007m
was finally able to go further, in the docs you can read "You should be able to obtain the supplementary JBoss files from the same place as this document. The file is packaged as a ZIP archive called jbossj2ee-src.zip. Download this and unpack it into the j2eetutorial14 directory, adding to the

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - hibernate-service.xml disable second level cache

2005-11-04 Thread fguerzoni
I think it's not yet possible to enable/disable the secons level cache. In fact, reading the source org.jboss.hibernate.jmx.hibernate.java, I found // TODO : needed until we decide what to do about "no cache provider specified" internally within Hibernate if ( cacheProviderClass == nu

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Stopping / Starting Tomcat web applications

2005-11-04 Thread [EMAIL PROTECTED]
Please turn on org.jboss.web to DEBUG should be sufficient. Thanks, -Ben View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905507#3905507 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3905507 --

[JBoss-user] [JCA/JBoss] - Re: How to programmatically create datasource without config

2005-11-04 Thread ssanjeev
We are getting into unbind issue very often with JBoss 4.0.2 and Postgres 8.0.3. Here is the log: 2005-11-04 08:12:02,033 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (ScannerThread) Unbound connection factory for resource adapter for ConnectionManager 'jboss.j

[JBoss-user] [JBoss Getting Started Documentation] - Re: Duke bank on Jboss-4.0.2

2005-11-04 Thread jplenhart
Hello, Came across this thread when I was helping out a colleague that is just now getting started on JBoss. Unfortunately I am not at her desk ... she is doing this after hours at her home. But when she is deploying Dukes Bank she sees the following (any ideas) - I see the EOFException ... m

[JBoss-user] [JBossCache] - collection cache does not work

2005-11-04 Thread sreepraveen_2000
We are using jboss treecache with hibernate 3.0, It is used as a distributed cache for different containers on same box. All these containers are running different tomcat instances. But in the below run it was run in REPL_SYNC mode with no other container up, so not to worry about the distribut

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Artificially delaying messages

2005-11-04 Thread hargitt
Thank you very much! Somehow missed it in the doc. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905496#3905496 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3905496 --

[JBoss-user] [JBoss Getting Started Documentation] - please help : error building jboss-build.xml

2005-11-04 Thread mm007m
Hello, i am unable to build the jboss-build.xml from the j2eetutorial14 with command ant -f jboss-build.xml. can anybody help? thanks i got the following errors. Buildfile: jboss-build.xml prepare: compile: [javac] Compiling 5 source files to C:\j2eetutorial14\examples\bank\build [ja

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS, JNDI and remote client access.

2005-11-04 Thread clairecostello
Hi, Thanks for your reply. I tried what you suggested but get the following error output: anonymous wrote : | Exception in thread "main" java.lang.ExceptionInInitializerError | at java.lang.Class.forName0(Native Method) | at java.lang.Class.forName(Unknown Source) | at com.sun

[JBoss-user] [Installation, Configuration & Deployment] - Exception

2005-11-04 Thread OZWolverine
Hello everybody, I'm having an strange (at least for me) error message in the console, when I turn down JBoss 4.0.2 in my solaris machines. I have 3 servers all machines have similar hardware ( Sun Microsystems sun4u Sun Fire 6800, 16384 MB memory, 8 CPUs). I'm starting the server with the def

[JBoss-user] [JBossCache] - Re: InstantiationException during TreeCacheAop.findObjects()

2005-11-04 Thread Motormind
"[EMAIL PROTECTED]" wrote : ok, so the code is confidential. But can you cook up a mockup example to reproduce the problem? | | Or can you check out the source code and run the CacheLoader tests under aop ppackage? I will be interested to see where it fails. | | -Ben I will see what I

[JBoss-user] [Advanced Documentation] - Re: Invoking Ejb of Jboss 3.2.3 from JBoss 4.0.2

2005-11-04 Thread rstribrn
We are also using JBoss 3.2.4 in our production environment for a one application, and trying to migrate another application from WLS to JBoss 4.0.3. It also fails during the InitialContext creation... I also tried to run simple test client will 3.2.5 and 4.0.3 libraries and it worked in the fi

[JBoss-user] [JBoss Portal] - Re: Changing the background color of a portlet

2005-11-04 Thread jlaskowski
Hi, I haven't done it before, but if I had to do it I would definitely take a look at the default theme and change its CSS. Jacek View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905460#3905460 Reply to the post : http://www.jboss.com/index.html?module=bb&op

[JBoss-user] [JBoss Portal] - Re: Portlets and EJB3

2005-11-04 Thread alesj
Our new portal app is entirely running on EJB3 beans and we have no problems what so ever. We use Spring portlet to wire up UI, my Spring deployer to inject fine grained beans into EJB3 components and Hibernate EntityManager implementation for persistance. View the original post : http://www.

[JBoss-user] [Installation, Configuration & Deployment] - Re: No ClassLoaders found for: org.jboss.resource.connection

2005-11-04 Thread tmano
sorry... the error is loading the file 'mysql-service.xml' View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905448#3905448 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3905448 ---

[JBoss-user] [JBoss Portal] - Re: Closing hibernate sessions

2005-11-04 Thread [EMAIL PROTECTED]
well said Justin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905447#3905447 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3905447 --- SF.Net email is sponsored by

[JBoss-user] [Installation, Configuration & Deployment] - No ClassLoaders found for: org.jboss.resource.connectionmana

2005-11-04 Thread tmano
I'm using jboss4.0.3SP1 I have some problems loading a file 'mysql-ds.xml' because org.jboss.resource.connectionmanager.LocalTxConnectionManager is not found... is there a new class that does the some thing but with a different name?? View the original post : http://www.jboss.com/index.html?mo

[JBoss-user] [JBoss Portal] - Re: Closing hibernate sessions

2005-11-04 Thread alesj
This is all taken care by Hibernate - when using SessionFactory.getCurrentSession(). But it depends on the active transaction - which is delivered to you by JBoss Portal (in v2.0 by TransactionFilter, in v2.2 by TransactionInterceptor). The thing that finally closes your session is the ability

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Stopping / Starting Tomcat web applications

2005-11-04 Thread furbern
Ben, Yes I can hot deploy the web application successfully. It is deployed as part of an exploded ear (I'm not sure if that is significant). Can you clarify what level of logging / trace output you require. e.g. 1) set log4j limit categories to DEBUG for org.jboss..* 2) Start jboss 3) copy TS

[JBoss-user] [Beginners Corner] - Re: JBossIDE Trail - How do I package and deploy the client

2005-11-04 Thread guitoon
It now works ! thanks a lot KidJava, you saved me hours and stress :D. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905441#3905441 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3905441 --

[JBoss-user] [JBossCache] - Re: Locks not working in networked TreeCaches?

2005-11-04 Thread [EMAIL PROTECTED]
Behaviour on a single cache is as expected. When you use this with 2 caches, locks on the remote cache are only acquired during the prepare phase of committing the transaction. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905422#3905422 Reply to the post

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Artificially delaying messages

2005-11-04 Thread schrouf
Use JBoss specific scheduled delivery | | aConnection = rQueueFactory.createQueueConnection(sQueueUser, sQueuePassword); | aSession= aConnection.createQueueSession(false,QueueSession.AUTO_ACKNOWLEDGE); | aSender = aSession.createSender(rQueue); | | TextMessage aMessa

[JBoss-user] [JBossCache] - Re: Please don't deprecate Node.getData()

2005-11-04 Thread [EMAIL PROTECTED]
I second what Ben says - exposing Node.getData() is certainly not a good idea. Node.getDataKeys() already exists ... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905420#3905420 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=

[JBoss-user] [Messaging, JMS & JBossMQ] - BMT: Redelivery on RuntimeException with EJB3

2005-11-04 Thread oglueck
I read the FAQ and most of the posts concerning redelivery. However I did not see this case covered specifically. The EJB3 core specs say in 5.4.17: anonymous wrote : If a message-driven bean uses bean-managed transaction demarcation and throws a RuntimeException, the container should not acknow

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: false row-name in sql-query

2005-11-04 Thread haschibaschi
First I'm sorry about the headline, should mean column-name. Ok, this was not a JBoss-problem, it was a XDoclet-problem. I added a Xdoclet-merge-file with the name jbosscmp-jdbc-Article.xml, where I added the left-join-statments. Unfortunatly, if you add this file you must also define the colum

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Artificially delaying messages

2005-11-04 Thread hargitt
So I guess a JMS or JBossMQ wish list for the selector is a CURRENT_TIME variable... Safer to have a home made DB queue with a select that only pulls out messages that are older than x seconds. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905406#3905406 R

[JBoss-user] [JNDI/Naming/Network] - Re: InvalidClassException when accesing from external App on

2005-11-04 Thread guix
Funny enough I have even made sure the actual classes are the same files and still get the error. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905402#3905402 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3905402 --

[JBoss-user] [Testimonials] - Re: Weblogic to JBoss Migration

2005-11-04 Thread Mahua
Can you please send me the white paper or contents ?? I need them urjently. Thanks, Mahua e-mail: [EMAIL PROTECTED] View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905399#3905399 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - false row-name in sql-query

2005-11-04 Thread haschibaschi
I have following initial situation - JBoss Version 4.0.2 - A Database with a table "article" column-name "artno" - This is mapped to the attribute "number" in the EJB (2.1) - the table "article" has 3 relations to the tables: articleattribute, pricing, availability. - the relations are mapped ins

[JBoss-user] [JBossWS] - Re: Bug in JBoss 4.0.3? Some web service request's parameter

2005-11-04 Thread [EMAIL PROTECTED]
This has been assigned to http://jira.jboss.com/jira/browse/JBWS-484 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905392#3905392 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3905392 --

[JBoss-user] [Beginners Corner] - log4j.xml in ear

2005-11-04 Thread tlewandowski
hi I'm trying to use custom log4j.xml in my test.ear application. I have log4j.jar in my test.ear and I turned on scoping for this ear in jboss-app.xml. And indeed jboss loads log4j classes from this log4j.jar but I don't know where I should put my log4j.xml. Any suggestions? (my app doesn't hav

[JBoss-user] [JBossWS] - Re: Client from Amazon Webservices

2005-11-04 Thread [EMAIL PROTECTED]
Support elementFormDefault=qualified should be fixed http://jira.jboss.com/jira/browse/JBWS-474 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905389#3905389 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3905389

[JBoss-user] [JBoss Portal] - Changing the background color of a portlet

2005-11-04 Thread giordano
Hi, I developed some simple portles using the default theme. Each portlet developed with the default theme has the white background color. I tried to change it setting a new background color on the JSP pages without success. How can I do? Many thanks and bye, Giordano View the original post :

[JBoss-user] [EJB/JBoss] - Re: setRollbackOnly problem

2005-11-04 Thread eldavio
Hi Adrian Your right I didnt look at the spec as stated. But I did read up on transaction usage in general. Most of the tutorials stated rollback would be deferred until the completion of the method that started the transaction. As the function name 'setRollbackOnly' I initially thought implied.