[JBoss-user] (no subject)

2003-03-22 Thread Nathan Hoover
I deployed my session bean as a web service using JBoss.NET, and whipped up a quick C# client with VS.NET. When calling a method in my web service, I get the following result: An unhandled exception of type 'System.Web.Services.Protocols.SoapException' occurred in system.web.services.dll Addit

Re: [JBoss-user] JBossIDE updates in eclipse

2003-03-22 Thread David Corbin
MY .eclipseproduct file is in the root of the .eclipse directory, and not in the directory you mention. I've never built the eclipse source, so I can't tell you if that's part of the problem. snpe wrote: I have .eclipseproduct in plugins/org.eclipse.platform directory, only I build Eclipse in

[JBoss-user] JBoss-3.2.0RC4 available

2003-03-22 Thread Scott M Stark
The final release candidate prior to the final relase of 3.2.0 is available from SourceForge here: http://sourceforge.net/project/showfiles.php?group_id=22866 The release notes are available here: http://sourceforge.net/project/shownotes.php?release_id=13 Scott Stark

Re: Re[2]: [JBoss-user] default JNDI location for entity beans

2003-03-22 Thread Adrian Brock
In your original post you had local-jndi-name=Message _context = (Context) new InitialContext(); _messageLocalHome = (MessageLocalHome) _context.lookup("Message"); Again, you need to define an ejb-local-ref if you want it in java:comp/env Regards, Adrian From: Matthew Hixson <[EMAIL PROTECTED]> Rep

Re: Re[2]: [JBoss-user] default JNDI location for entity beans

2003-03-22 Thread Matthew Hixson
With this code: try{ _context = (Context) new InitialContext().lookup("java:comp/env/"); _messageLocalHome = (MessageLocalHome) _context.lookup("local/Message"); }catch(NamingException ned){ _systemLogger.error("Couldn't initialize all of the business objects: " + ned.getMessage());

Re: [JBoss-user] deploy *-ds.xml as part of an EAR?

2003-03-22 Thread David Jencks
Right now you can't do that :- I'm thinking about how to do it, but it seems more complicated than I thought at first. My idea involves allowing the elements from the *-ds.xml file to be present in a normal jboss-service.xml file, and applying all available XSLSubDeployers to every jboss-serv

Re: [JBoss-user] JBossIDE updates in eclipse

2003-03-22 Thread snpe
I have .eclipseproduct in plugins/org.eclipse.platform directory, only I build Eclipse in motif with eclipse-sourceBuild-srcFetchRC2.zip Can I add .eclipseproduct ? Thanks Haris Peco On Saturday 22 March 2003 12:13 pm, David Corbin wrote: > If I understand what you're saying, your eclipse directo

Re: [JBoss-user] JBossIDE updates in eclipse

2003-03-22 Thread David Corbin
If I understand what you're saying, your eclipse directory does not have a ".eclipseproduct" file in it. The times I've seen this, it's because you did a "mv * " when installing eclipse, which means the .eclipseproduct file did not moved with it. snpe wrote: Hello, I try eclipse 2.1.0 on lin

Re: [JBoss-user] JBossIDE updates in eclipse

2003-03-22 Thread Hans Dockter
s> Hello, s> I try eclipse 2.1.0 on linux motif and JBossIDE update s> My problem is update manager. s> When I select jbosside-1.0.3and 'Install New' in s> 'Install Location' : s> For every location I get : s> Target install location must be selected.If none is avaliable, create new s> one Stran

Re[2]: [JBoss-user] default JNDI location for entity beans

2003-03-22 Thread costin
Hi! I`ve had the same problem when moving from Resin. As far as I can tell deploying a bean without any jndi configuration(i.e. jboss.xml) will deploy your beans under local: i.e.you should search your bean like this: _contex.lookup("local/Message"); I don`t why this isn`t specified in the doc

Re: [JBoss-user] default JNDI location for entity beans

2003-03-22 Thread Langelage, Frank
Simply try this: try{ _context = (Context) new InitialContext(); _messageLocalHome = (MessageLocalHome) _context.lookup("Message"); }catch(NamingException ned){ _systemLogger.error("Couldn't initialize all of the business objects: " + ned.getMessage