[JBoss-user] [JBoss Portal] - Re: Creating Your Own jboss-portal.sar

2005-07-12 Thread andrejt
Doug, can you be more specific about JAAS Login modules. Where to look at JAAS Login modules in jboss portal code? "schnelzer" wrote : Other than that you don't need to modify the jboss-portal.sar. There a number of different JAAS Login modules that are provided with JBoss AS. If one fits y

[JBoss-user] [JBoss Portal] - Re: examples

2005-07-11 Thread andrejt
Here is another "less hardcoded" solution that reads name of the JSP file as an portlet parameter: Portlet's doView() method: String startJSPPage = getPortletConfig().getInitParameter("startPage"); | PortletRequestDispatcher rd = getPortletContext().getRequestDisp

[JBoss-user] [JBoss Portal] - Re: jbp 2.0 has lots of pitfalls

2005-07-10 Thread andrejt
Hi Yang, have you submited the patch already? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884283#3884283 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884283 -

[JBoss-user] [JBoss Portal] - Re: jbp 2.0 has lots of pitfalls

2005-07-08 Thread andrejt
Hi! Would you mind to send your code to my email? andrej.tibaut*AT*uni-mb.si I want to learn from your code. Thanks, Andrej View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884205#3884205 Reply to the post : http://www.jboss.org/index.html?module=bb&op=post

[JBoss-user] [JBoss Portal] - Re: helloworld page reuse user/admin portlet

2005-07-08 Thread andrejt
Hi! anonymous wrote : After rebuild and redeploy, some windows such as forum, test etc displayed properly. But user portlet window and admin window only displayed the decoration (no contents are displayed). | What have you rebuilt...? Wasn't it enough just to remove page definitions, portle

[JBoss-user] [JBoss Portal] - Re: jbp 2.0 has lots of pitfalls

2005-07-08 Thread andrejt
Hi yxyang! You've done a great job! Can you please share your changed source code, so we don't need to repeat the effort. This would be a very generous move. Andrej (andrej.tibaut*AT*uni-mb.si) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884176#3884176 R

[JBoss-user] [Messaging, JMS & JBossMQ] - How to send large XML file

2005-02-12 Thread andrejt
ell? Anybody with experience?! AndrejT View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3866371#3866371 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3866371

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Runtime JMS queue creation

2005-02-12 Thread andrejt
Hi Adrian, thank for the short but efficient answer. I have succesfully implemented my scenario! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3866310#3866310 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3866310

[JBoss-user] [Messaging, JMS & JBossMQ] - Runtime JMS queue creation

2005-02-10 Thread andrejt
erate these reply queues, I don't want them permanently specified on JBoss. I also don't want the pub/sub model because I don't need the overhead (each client gets all messages). What is the best pattern to do this? AndrejT View the original post : http://www.jboss.org/ind

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Docs\examples\ejb\simplemessage

2005-01-11 Thread andrejt
Here is my jndi.properties: java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory java.naming.provider.url=jnp://localhost:1099 java.naming.factory.url.pkgs=org.jboss.naming.client j2ee.clientName=si.avris.prevoznik.SimpleMessageClient But in the mean time I have the solution. Look

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Docs\examples\ejb\simplemessage

2005-01-09 Thread andrejt
Here are also my configuration files: CLIENT: jboss-client.xml: | SimpleMessageClient | | | jms/QueueConnectionFactory | XAConnectionFactory | | | | jms/QueueName | queue/avrisQueue | | | application-client.x

[JBoss-user] [Messaging, JMS & JBossMQ] - Docs\examples\ejb\simplemessage

2005-01-09 Thread andrejt
I work on the simplemessage MDB example (in Docs\examples\ejb\ from jbossj2ee-src.zip). Originally the SimpleMessage.ear contains mdb-app-client.jar and the code in the client is: connectionFactory = (ConnectionFactory) jndiContext.lookup | ("java:comp/env/jms/QueueConnect

[JBoss-user] [Messaging, JMS & JBossMQ] - JMS based XML messaging

2004-12-12 Thread andrejt
I plan the following J2EE (JBoss based) system: Two Java application clients each has its own database. They asynchroniously extract database data and send it to Jboss MDB using JMS. The database data they send are in XML form. What is the best design pattern to use with such requirements? What o