[jboss-user] [Installation, Configuration & DEPLOYMENT] - Jar versions list

2007-10-31 Thread cry4dawn
Is there a list of what jar version is used in what jboss wersion? for example i am using jboss 4.0.5 with maven 2 for development. now i want to use javamail, but what version does my jboss use? when i open the manifest in the jar jboss hass it just says: | Manifest-Version: 1.0 | Speci

[jboss-user] [JBoss Portal] - Re: Disableing maximise and minimise buttons in portlet

2007-10-29 Thread cry4dawn
what we did here was create our own layouts and themes that did not have the buttons on them. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4099813#4099813 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4099813

[jboss-user] [Javassist user questions] - Re: javassist as a profiler in jboss

2007-10-26 Thread cry4dawn
here is my transform method: | public byte[] transform(ClassLoader loader, String className, Class classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) throws IllegalClassFormatException { | byte[] transformed = null; | System.out.println(

[jboss-user] [Javassist user questions] - javassist as a profiler in jboss

2007-10-25 Thread cry4dawn
Im trying to use javassist to create a profiler for our classes in jboss. i have gotten the -javagent part to work, i have gotten the transform part to work for classes in the run.jar. now i can see my classes(from the ears, wars and jars) being passed into the transformer class. i can even get

[jboss-user] [JBoss Portal] - Re: Looking for Jar file for org.jboss.portal.identity.User

2007-10-18 Thread cry4dawn
i beilive you would have to find the jbosssx.jar source. as an example here is an example User i created that i use with our custom Login module: | /** | * com.xxx.databaseUser | */ | package com.xxx.database; | | import java.sql.Date; | import java.sql.ResultSet; | import j

[jboss-user] [JBoss Portal] - Re: Looking for Jar file for org.jboss.portal.identity.User

2007-10-18 Thread cry4dawn
the UserPrinciple: | package com.xxx.database; | | import java.security.Principal; | | /** | * | */ | public final class UserPrincipal implements Principal { | | private final String name; | | /** | * @param nameIn | * | */

[jboss-user] [JBoss Portal] - Re: How to set and get Portal session

2007-10-18 Thread cry4dawn
their are a few things in http request for that. isUserInRole("String"); which returns a boolean or getUserPrincipal() which returns a Principle View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096760#4096760 Reply to the post : http://www.jboss.com/index.ht

[jboss-user] [JBoss Portal] - Re: Unable to get JBoss portal to start

2007-10-18 Thread cry4dawn
i would think then its getting in to some kind of endless loop trying to get to the DB. does your user have add create permisions of tables and sequences in their schema? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096488#4096488 Reply to the post : http

[jboss-user] [JBoss Portal] - Re: jsp include not working

2007-10-17 Thread cry4dawn
it makes me woder if it has something to do with portlet jsp's extending GenericPortlet not HTTPServlet View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096319#4096319 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=409631

[jboss-user] [JBoss Portal] - Re: How to set and get Portal session

2007-10-17 Thread cry4dawn
well i dont think its just a portlet problem then. if you deploy 2 wars warA can not see Warb's session without doing some kind of call back. there is always application scope, but thats worse then using the session scope. that said you could probably create a singelton class to hold the values

[jboss-user] [JBoss Portal] - Re: jsp include not working

2007-10-17 Thread cry4dawn
is this in a regular jsp or a jsf jsp? and an easier way to do include params is assign it in the parent jsp: <% final String x = "xyz";%> then use the old fashioned include <%@ include file="page2.jsp"%> then in page2.jsp you can <% out.write(x);%> given that you are using straight up jsp's

[jboss-user] [JBoss Portal] - Re: removing the default portal

2007-10-17 Thread cry4dawn
no worries about the misundersting it happens. thanx for the code snipit. its all working now. im just wondering why this problem has never showed up before we started using portal? we have been using jboss on solaris since 3.2.5. oh well. thanx everyone for your help. View the original post :

[jboss-user] [JBoss Portal] - Re: How to delete a given portal page?

2007-10-17 Thread cry4dawn
see this topic http://www.jboss.org/index.html?module=bb&op=viewtopic&t=121025 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096030#4096030 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4096030 ___

[jboss-user] [JBoss Portal] - Re: removing the default portal

2007-10-16 Thread cry4dawn
i know how to use the run level im asking how do i add the -b 0.0.0.0 to it. the link you posted has no information on that View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4095817#4095817 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting

[jboss-user] [JBoss Portal] - Re: removing the default portal

2007-10-16 Thread cry4dawn
that worked!!! how do i get it into the runlevel (/ect/init.d/jboss start) ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4095767#4095767 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4095767 _

[jboss-user] [JBoss Portal] - Re: removing the default portal

2007-10-16 Thread cry4dawn
i have never done that in any other jboss on solaris before. do you have a link to the documentation? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4095763#4095763 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4095763

[jboss-user] [JBoss Portal] - Re: removing the default portal

2007-10-16 Thread cry4dawn
it didnt work. i built it in windows and rsync'ed it to the solaris box. it starts up fine, but when i try to even get the default maven jsp nothing happens. its like the server is not even listening to incoming requests. the jmx console doesnt work and there are no errors in the log, even at de

[jboss-user] [JBoss Portal] - Re: How to set and get Portal session

2007-10-16 Thread cry4dawn
request.getPortletSession().setAttribute("xxx", xxx, PortletSession.APPLICATION_SCOPE); i really advise against it though. as the idea is that portlets are spoused to be independent units. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4095578#4095578 Reply

[jboss-user] [JBoss Portal] - Re: removing the default portal

2007-10-14 Thread cry4dawn
we have problems in the past going from compiled 32 bit to solaris 64 bit. a good example is anything in the new concurrent packages. they throw no class def found evan though the same jdk version is on bith system. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic

[jboss-user] [JBoss Portal] - Re: removing the default portal

2007-10-14 Thread cry4dawn
there is no ant on the solaris environments that this is for and since the developers can not install (no root access) we can't build on the environment. can i build it in windows 32 bit then use it in a solaris 10 64 bit system? View the original post : http://www.jboss.com/index.html?module=b

[jboss-user] [JBoss Portal] - Re: removing the default portal

2007-10-12 Thread cry4dawn
well building from source did not go so well but i removed all the war/sars from jboss-portal-ha.sar except server and core. i then went into core to remove all the layouts, and themes and now have a nice streamlined portal/as server that is clustered, starts in 49 seconds, and can handle 2

[jboss-user] [JBoss Portal] - Re: removing the default portal

2007-10-12 Thread cry4dawn
1) i would love to go to orlando, but as i make burger king wages for not having any college i cant (stay in school kids) 2) i will give building from source a try, dont get the warm fuzzies from that though. ill let u know how i make out. View the original post : http://www.jboss.com/index.ht

[jboss-user] [JBoss Portal] - removing the default portal

2007-10-11 Thread cry4dawn
since we are not using the CMS, any of the layouts, themes, or any of the portlets that ship with jboss portal, is there a way to trim it down or completely remove them? what is the minimum stuff you need to run your own portal without any of teh jboss pages? View the original post : http://w

[jboss-user] [JBossCache] - org.hibernate.cache.CacheException: org.jboss.cache.lock.Tim

2007-10-11 Thread cry4dawn
I am running jboss 4.2.1 with portal 2.6.2 clustered using oracle. without deploying anything when i start up its fine. as soon as i try to go to the default portal page that ships with 2.6.2 i get the following error. org.hibernate.cache.CacheException: org.jboss.cache.lock.TimeoutException:

[jboss-user] [JBoss Portal] - Re: Couldn't create consumer 'self'

2007-10-11 Thread cry4dawn
I fixed the problem. it seems that for some reason the sequences were not being create in oracle. i dont know if this is a jboss issue or not but after running the following sql everything works again. create sequence hibernate_sequence; create sequence portal_seq; create sequence sec_seq; cr

[jboss-user] [JBoss Portal] - Re: Couldn't create consumer 'self'

2007-10-11 Thread cry4dawn
if i remove the wsrp i get the following deployment error: [EMAIL PROTECTED] { url=file:/C:/Documents and Settings/aanderson/Desktop/test/jboss-4.2.1.G HEI/server/default/deploy/jboss-portal-ha.sar/conf/data/default-object.xml } deployer: [EMAIL PROTECTED] status: Deployment FAILED reason: co

[jboss-user] [JBoss Portal] - Couldn't create consumer 'self'

2007-10-10 Thread cry4dawn
I am getting the following i am getting the following error when starting up my jboss(portal 2.6.2, AS 4.2.1, both cluster configed) i am using Oracle9i and have it configured to use the oracle stuff. 18:02:08,432 WARN [JDBCExceptionReporter] SQL Error: 2289, SQLState: 42000 18:02:08,448 ERROR

[jboss-user] [JBoss Portal] - Re: WARN [JDBCExceptionReporter] SQL Error: 0, SQLState: 01

2007-10-10 Thread cry4dawn
I am getting the same problem using oracle 9i the cuased by is: Caused by: org.jboss.xb.binding.JBossXBException: Failed to parse source: Couldn't create Consumer 'MyProducer' at org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:178) at org.jboss.xb.b