harry hita

Greenhorn
+ Follow
since Jan 05, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by harry hita

hi

I want to call a weblogic ejb from within jboss. I know that I have to change the JNDI properties to use the weblogic values but what jars do I need from Weblogic? I dont want to take the whole weblogic81.jar... so is there a jndi client jar that I can use?

thanks

harry
19 years ago
hi

i was wondering if anyone has had any experience getting weblogic 8.1 to use jdk1.5?

is it possible?
thanks
harry
hi

ok i am a beginner with linux so forgive me if this question is dumb.

i installed eclipse and it works fine if i am running as root. but if i log in as a normal user then when i try to run eclipse i get this error:

!SESSION Wed Jun 29 21:58:18 PDT 2005 ------------------------------------------wa
!ENTRY org.eclipse.core.launcher 4 0 Jun 29, 2005 21:58:18.682
!MESSAGE Exception launching the Eclipse Platform:
!STACK
java.lang.RuntimeException: Could not find framework
at org.eclipse.core.launcher.Main.getBootPath(Main.java:395)
at org.eclipse.core.launcher.Main.basicRun(Main.java:174)
at org.eclipse.core.launcher.Main.run(Main.java:704)
at org.eclipse.core.launcher.Main.main(Main.java:688)


Does anyone know what is wrong with it? My guess is that there is some permission or classpath that isn't set right but no clue what it is...

thanks

harry
Hi

I am using websphere v6 and I have enabled global security. What do I need to do to get JMS to work? I have an ear file with an MDB installed. The MDB has an authentication alias associated to it.

When I try to start the application it fails because it says that
"Caused by: com.ibm.wsspi.sib.core.exception.SINotAuthorizedException: CWSIP0302E: A user atkins is not authorized to access the messaging engine pludc5000Node01.server1-NexusSibBus on bus NexusSibBus."

so can anyone tell me what i need to do to get the user access to the messaging engine?

Thanks
19 years ago
hi

i wanted to play around with jboss at home.
does anyone know what the system requirements for jboss are? (cpu, ram, etc)
hi

i was wondering what the implications of caching the ejb remotes created from calling create on an ejb?
Thanks for the reply Valentin, but I was referring to mbeans (as in jmx managed objects) not message driven beans.



Originally posted by Valentin Tanase:
Hi Harry,

Clients cannot invoke methods on MDBs (this is why MDBs don�t have remote or home interfaces). They are strict server side components that act like asynchronous JMS listeners. Only the container calls the onMessage() if a message was added to the associate JMS destination. Clients interact with the MDB indirectly, sending JMS messages to the JMS destination.

Hi

If I have an mbean defined in application 1 and then use the mbean server in application 2 to invoke a method on the mbean, which class loader will the invocation happen in? app 2's classloader or app 1's classloader?
Hi

lets say I have 2 ejbs, A and B, deployed separately in 2 ear files on the same server. then how do i invoke b from a? i would need to put b;s remote interface files into a's ear file right?

is there anyother way?

harry
Hi

Is it possible to create a connection factory and jms queues programmatically for websphere and weblogic?

I know websphere has the wsadmin and you can use scripting but is there a way i can do this in the code?

Thanks

harry
Hi

How do you get the local interface for an EJB from JNDI in Websphere?
We only specify the 1 jndi name when I deploy the bean so what would the name be? is there a way to see the contents of the JNDI directory?
hi

figured out what i was doing wrong
you can actually do this but when you create the session it has to be outside of the current transaction

so it should be like this
suspend transaction
createsession
send
resume transaction
sorry about that. i was a little too eager to get the question posted
Hi

I have a session bean using container manager persistance. is it possible to call the transaction manager and suspend the current transaction and then start a new one?

I would think this is not possible since we are using CMT and the container should be handling all of the transactions...

I am using Websphere...

thanks

harry

ps - if you want to know why i am doing this here is the reason.
I am trying to make a jms call and i need the response... (i'm trying to fake a synchronous call).