[JBoss-user] [Persistence & CMP/JBoss] - Re: Delete Foreign Key Object

2004-08-24 Thread Hustenbolschen
Anyone? Anything not clear in my question? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3846015#3846015 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3846015 --

[JBoss-user] [Persistence & CMP/JBoss] - Re: Delete Foreign Key Object

2004-08-19 Thread Hustenbolschen
My Tables after the create look like this: CREATE TABLE `BEANB` ( | `BEANB_NAME` varchar(250) binary default NULL, | `BEANA_ID` int(11) default NULL, | `BEANB_ID` int(11) NOT NULL auto_increment, | PRIMARY KEY (`BEANB_ID`) | ) TYPE=MyISAM; | | CREATE TABLE `BEANA` ( |

[JBoss-user] [Persistence & CMP/JBoss] - Delete Foreign Key Object

2004-08-19 Thread Hustenbolschen
Hello, IÂm using JBOSS 3.23 with mysql How can I prevent to delete the foreign key component when its still in use in the primary key object: I have two Beans BEAN A and BEAN B Both have an autoincrement ID and the ID of Bean A shall be the foreign key of BEAN B. This already works fine, but I

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: connect to queue or topic from inside an applet?

2004-07-14 Thread Hustenbolschen
OK the problem is much clearer now. I canÂt call qSession.createMapMessage() from inside an applet with qSession.createTextMessage("Banana") it wirks all fine? Why? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3842052#3842052 Reply to the post

[JBoss-user] [Messaging, JMS & JBossMQ] - connect to queue or topic from inside an applet?

2004-07-14 Thread Hustenbolschen
Hello, IÃÂm trying to send a message to a queue and subscribe to a topic by an applet. I tried both secure an non secure applets, and it doesn`t work. Is there a possibilty to do this? I know IÃÂm only allowed to create an network-connection to the host i load the applet from. It works all fine

[JBoss-user] [Messaging, JMS & JBossMQ] - InitialContext or JNDI Problem with JMS

2004-07-07 Thread Hustenbolschen
Hi, I have an signed applet which communicates over Http with Servlets (both in a war-file). And the servlets communicate with my EJBs. Now I want to set up JMS on my system, and I had no problem to set it up for the servlets. But when I try to get a ConnectionFactory inside the applet I always

[JBoss-user] [HTTPD, Servlets & JSP] - Re: How to... Java Applets

2004-05-28 Thread Hustenbolschen
OK, thank you for that info, but my main question is not answered Maybe it was not clear. I have JBOSS 3.2.3 with MySQL. I wrote different EntityBeans and Session Beans and now I want to make my solution ready for the net. I wrote and deployed a servlet which communicates with the sessi

[JBoss-user] [HTTPD, Servlets & JSP] - Re: How to... Java Applets

2004-05-26 Thread Hustenbolschen
I´m going mad with the "search" at jboss. For two days I found nothing when searching for "applet", and now i got 339 results Don`t know what was wrong. Anyhow, it would be great if someone can give me a simple example or even the link to an example or more informations, how to deploy a ser

[JBoss-user] [HTTPD, Servlets & JSP] - How to... Java Applets

2004-05-26 Thread Hustenbolschen
Hello, I wrote different EJBs and succesfully deployed them in JBOSS. I also got them working with Mysql. Now I need a small java-application for the intranet (fast connection). I already had the application running as a standalone-client, and it won`t be a problem to rebuild an awt or swing ap

[JBoss-user] [Installation & Configuration] - Re: Installing JBOSS on SGI Irix

2004-05-10 Thread Hustenbolschen
Great! It works. Am I right? The "-server" Option is just to optimize the VM for serverlike applications? Thank you for this. I will share my further experience with JBOSS on IRIX... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3834241#3834241 Reply

[JBoss-user] [Installation & Configuration] - Re: Installing JBOSS on SGI Irix

2004-05-07 Thread Hustenbolschen
Hello, I tried to install JBOSS 3.2.3 on the IRIX and failed. When I start run.sh, I get the message "VM is not supported". There is a JDK 1.4.1_03 installed and path and JAVA_HOME is set. But I think SGI builds its own JDK any idea what to do? View the original post : http://www.jboss.o

[JBoss-user] [Persistence & CMP/JBoss] - Re: Foreign Key Problem

2004-05-06 Thread Hustenbolschen
Thank You. I was searching before, but your link gave me the idea what to try, and this link was the solution of my problem (For those, wo watch this thread...) http://www.jboss.org/index.html?module=bb&op=viewtopic&t=37700 View the original post : http://www.jboss.org/index.html?module=

[JBoss-user] [Persistence & CMP/JBoss] - Foreign Key Problem

2004-05-06 Thread Hustenbolschen
I have a problem about foreign keys. I have two tables company and contact_person and the company_id (pk of company) shall be the foreign key of the table contact_personThis foreign key is defined to be NOT NULL.so every contact_person belongs to a company. I think my question is abou