[jboss-user] [Microcontainer] - Re: directly injecting a bean in a property

2009-03-25 Thread jaikiran
"bryan.kearney" wrote : However, aren't the two lines the same? I am bad at understanding xml schema declarations. To answer your question, i'll have to first understand the difference myself :) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4220947#4220947 R

[jboss-user] [Microcontainer] - Re: directly injecting a bean in a property

2009-03-25 Thread bryan.kearney
Yeah.. that worked.. thanks. However, aren't the two lines the same? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4220941#4220941 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4220941 __

[jboss-user] [Microcontainer] - Re: directly injecting a bean in a property

2009-03-25 Thread jaikiran
The only difference i see is that you use: http://www.w3.org/2001/XMLSchema-instance"; | xsi:schemaLocation="urn:jboss:bean-deployer:2.0 bean-deployer_2_0.xsd" | xmlns="urn:jboss:bean-deployer:2.0"> | Change it to: And see if it works. View the original post : http://www.jbos

[jboss-user] [Microcontainer] - Re: directly injecting a bean in a property

2009-03-25 Thread bryan.kearney
I noticed I did not comments out the first Muppet bean. Even if I do that: | | http://www.w3.org/2001/XMLSchema-instance"; | xsi:schemaLocation="urn:jboss:bean-deployer:2.0 bean-deployer_2_0.xsd" | xmlns="urn:jboss:bean-deployer:2.0"> | | | |

[jboss-user] [Microcontainer] - Re: directly injecting a bean in a property

2009-03-25 Thread bryan.kearney
Sure. Here is the xml | | http://www.w3.org/2001/XMLSchema-instance"; | xsi:schemaLocation="urn:jboss:bean-deployer:2.0 bean-deployer_2_0.xsd" | xmlns="urn:jboss:bean-deployer:2.0"> | | | | amqp://guest:guest@/?brokerlist='tcp://loc

[jboss-user] [Microcontainer] - Re: directly injecting a bean in a property

2009-03-25 Thread jaikiran
5.0.1 GA, Sun Java. Can you post your exact xml file and also the console logs? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4220876#4220876 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4220876 ___

[jboss-user] [Microcontainer] - Re: directly injecting a bean in a property

2009-03-25 Thread bryan.kearney
I am using Jboss 5.0 on Fedora 10, with the sun JDK. What stack are you running on? -- bk View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4220868#4220868 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4220868 __

[jboss-user] [Microcontainer] - Re: directly injecting a bean in a property

2009-03-24 Thread jaikiran
Works fine for me: | | | | | | | | | | public class TestBean | { | |private String name; | |public String getName() |{ | return name; |} | |public void setName(String name) |{