Re: how to get Datasource from a non j2ee module

2008-01-25 Thread David Jencks
I'm going to try to get an updated version of this class into 2.1.   
Tomasz was using it for a jms connection factory, thus the class he  
used: for a datasource indeed you would use javax.sql.DataSource.   
This class also won't work without modification in 2.1-SNAPSHOT since  
the ConnectionFactorySource interface has been replaced by  
ResourceSource.  It should work in 2.0.2 however.


Hope this helps
david jencks

On Jan 25, 2008, at 5:29 PM, Viet Nguyen wrote:


Hi David,

I tried the class given at
http://www.nabble.com/How-to-register-a-Datasource-in-GlobalJNDI- 
Namespace--to12898127.html#a12902470,

but it does not seem to have bind the datasources into global jndi. I
checked using the admin console and I tried to access it with
something like ic.lookup("jdbc/ActiveDS"); and I get a
NotContextException.

I think it might be because I am not configuring the gbean
incorrectly. The "type" is of type ConnectionFactory. I'm not sure if
this is a mistake or not...shouldn't it be of type
javax.sql.DataSource?

class="org.apache.geronimo.connector.globaljndi.ConnectionFactoryBindi 
ngs">
jms:conndep:attribute>

javax.jms.ConnectionFactory
name="regularExpression">^JmsDispatcher.*ConnectionFactory$dep:attribute>



Thanks,
Viet


On Jan 25, 2008 2:02 AM, David Jencks <[EMAIL PROTECTED]> wrote:

Use the class mentioned here


http://www.nabble.com/How-to-register-a-Datasource-in-GlobalJNDI-
Namespace--tf4521379s134.html#a12902470


to bind the datasources into global jndi and your classes can look
them up there.

thanks
david jencks


On Jan 24, 2008, at 10:30 PM, Viet Nguyen wrote:


Hi All,

I have a plugin that pulls in a a JAR file (that is not a j2ee  
module)

along with some datasources (packaged as a CAR). I want the
datasources to be visible to the classes of the JAR. Is there a  
way to

configure this?

--Viet







Re: how to get Datasource from a non j2ee module

2008-01-25 Thread Viet Nguyen
Hi David,

I tried the class given at
http://www.nabble.com/How-to-register-a-Datasource-in-GlobalJNDI-Namespace--to12898127.html#a12902470,
but it does not seem to have bind the datasources into global jndi. I
checked using the admin console and I tried to access it with
something like ic.lookup("jdbc/ActiveDS"); and I get a
NotContextException.

I think it might be because I am not configuring the gbean
incorrectly. The "type" is of type ConnectionFactory. I'm not sure if
this is a mistake or not...shouldn't it be of type
javax.sql.DataSource?


jms:conn
javax.jms.ConnectionFactory
^JmsDispatcher.*ConnectionFactory$


Thanks,
Viet


On Jan 25, 2008 2:02 AM, David Jencks <[EMAIL PROTECTED]> wrote:
> Use the class mentioned here
>
>
> http://www.nabble.com/How-to-register-a-Datasource-in-GlobalJNDI-
> Namespace--tf4521379s134.html#a12902470
>
>
> to bind the datasources into global jndi and your classes can look
> them up there.
>
> thanks
> david jencks
>
>
> On Jan 24, 2008, at 10:30 PM, Viet Nguyen wrote:
>
> > Hi All,
> >
> > I have a plugin that pulls in a a JAR file (that is not a j2ee module)
> > along with some datasources (packaged as a CAR). I want the
> > datasources to be visible to the classes of the JAR. Is there a way to
> > configure this?
> >
> > --Viet
>
>


Re: Geronimo 2.0

2008-01-25 Thread Jarek Gawor
Jithesh,

This problem should be fixed but but I would appreciate if you could
test it by deploying your app with a latest snapshot build of 2.1 or
2.0.3. The latest binary snapshots should be published under
http://geronimo.apache.org/maven/server/binaries/ in a few hours.

Jarek

On Jan 24, 2008 12:04 PM, David Jencks <[EMAIL PROTECTED]> wrote:
> If this original tld file is valid according to that dtd then you
> have found a bug in our tld handling.  I've opened GERONIMO-3782 to
> track this.
>
> thanks
> david jencks
>
>
> On Jan 24, 2008, at 12:41 AM, jithesh wrote:
>
> >
> > Hi ,
> >
> > Thanks for ur responses...
> >
> >  I have modified those parts and its not shown any error this time.
> > Here is
> > the content on the
> >  \META-INF\scriptfree.tld.
> >
> >
> > 
> >  > PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//
> > EN"
> > "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd";>
> > 
> >   1.0
> >   1.2
> >   scriptfree
> >   http://jakarta.apache.org/taglibs/standard/scriptfree
> >
> > Thanks ,
> > Jithesh
> >
> >
> >
> >
> > djencks wrote:
> >>
> >> umm, isn't it fairly clear from the error message?
> >>
> >> WEB-INF\lib\standard.jar!\META-INF\scriptfree.tld
> >>
> >> Can you tell us if this file starts out with
> >>
> >> http://java.sun.com/xml/ns/javaee
> >> http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd";
> >> version="2.1"
> >> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
> >> xmlns="http://java.sun.com/xml/ns/javaee";>
> >>
> >> or if it uses earlier xmlns or version?
> >>
> >> thanks
> >> david jencks
> >>
> >> On Jan 23, 2008, at 10:28 PM, jithesh wrote:
> >>
> >>>
> >>> Thanks for your response...
> >>>
> >>>   Will u please provide the file name that i need to modify the
> >>> text.
> >>>
> >>> Thanks,
> >>> Jithesh PM
> >>>
> >>>
> >>>
> >>> Jarek Gawor-2 wrote:
> 
>  Move the  element to the top of the 
>  element.
>  For example, change:
> 
>  
> allowDeclarations
> false
> Controls whether or not declarations are
>  considered valid.
>   
> 
>  to:
> 
>  
> Controls whether or not declarations are
>  considered valid.
> allowDeclarations
> false
>   
> 
>  Jarek
> 
>  On Jan 24, 2008 12:48 AM, jithesh <[EMAIL PROTECTED]> wrote:
> >
> > Hi,
> >
> >   Thanks for your response.
> >
> >  Here is my server log description
> >
> > 15:45:25,078 WARN  [JspModuleBuilderExtension] Invalid
> > transformed taglib
> > org.apache.xmlbeans.XmlException: Invalid deployment descriptor:
> > errors:
> >
> > D:\Program
> > Files\IBM\WebSphere\AppServerCommunityEdition\bin\jar:file:D:
> > \Program
> > Files\IBM\WebSphere\AppServerCommunityEdition\repository\default
> > \securedmd\1200996902765\securedmd-1200996902765.war\WEB-INF\lib
> > \standard.jar!\META-INF\scriptfree.tld:21:7:
> > error: cvc-complex-type.2.4b: Element not allowed:
> > [EMAIL PROTECTED]://java.sun.com/xml/ns/javaee in element
> > [EMAIL PROTECTED]://java.sun.com/xml/ns/javaee
> >
> > D:\Program
> > Files\IBM\WebSphere\AppServerCommunityEdition\bin\jar:file:D:
> > \Program
> > Files\IBM\WebSphere\AppServerCommunityEdition\repository\default
> > \securedmd\1200996902765\securedmd-1200996902765.war\WEB-INF\lib
> > \standard.jar!\META-INF\scriptfree.tld:28:7:
> > error: cvc-complex-type.2.4b: Element not allowed:
> > [EMAIL PROTECTED]://java.sun.com/xml/ns/javaee in element
> > [EMAIL PROTECTED]://java.sun.com/xml/ns/javaee
> >
> > D:\Program
> > Files\IBM\WebSphere\AppServerCommunityEdition\bin\jar:file:D:
> > \Program
> > Files\IBM\WebSphere\AppServerCommunityEdition\repository\default
> > \securedmd\1200996902765\securedmd-1200996902765.war\WEB-INF\lib
> > \standard.jar!\META-INF\scriptfree.tld:35:7:
> > error: cvc-complex-type.2.4b: Element not allowed:
> > [EMAIL PROTECTED]://java.sun.com/xml/ns/javaee in element
> > [EMAIL PROTECTED]://java.sun.com/xml/ns/javaee
> >
> > Descriptor:
> > http://java.sun.com/xml/ns/javaee
> > http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd";
> > version="2.1"
> > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
> > xmlns="http://java.sun.com/xml/ns/javaee";>
> >   Validates JSP pages to prohibit use of scripting
> > elements.
> >   1.0
> >   scriptfree
> >   http://jakarta.apache.org/taglibs/standard/scriptfree
> >   
> > Validates prohibitions against scripting
> > elements.
> >
> > javax.servlet.jsp.jstl.tlv.ScriptFreeTLV > validator-class>
> > 
> >   allowDeclarations
> >   false
> >   Controls whether or not declarations are
> > considered
> > valid.
> > 
> > 
> >   

Re: Geronimo modules

2008-01-25 Thread Kevan Miller


On Jan 25, 2008, at 8:04 AM, vpyati wrote:



Hi All,
  I am new to Geronimo.  What I understand is that it is  
composed

of modules and that modules can be added further.

When I start the server I see a lot of statements in the console
similar to below:
geronimo/j2ee-deployer/1.1/car.

Here I assume that j2ee-deployer is one module. I went inside the  
directory
to find that there are 3 files- config.info, config.ser and  
config.ser.sha1.


I would like to know that when Geronimo prints
"geronimo/j2ee-deployer/1.1/car", what does it actually do ? How do  
we make

sense of the three files ?

Also if I would like to add my application module, what should go  
into these

files ?


Vikram,
1.1 is a pretty old version of Geronimo. Would suggest you upgrade to  
a later version.


By application module, do you mean a war or ear? New modules should be  
deployed using the 'deploy' command (or configured during a build).  
The module configuration information (config.info, etc) are built as  
part of this process... This module configuration is really internal  
to the server and not something you would need to worry about (unless  
you want to get involved with server internals -- in which case, your  
help would be more than welcome!).


--kevan


Re: Error after sending Message via MDB

2008-01-25 Thread Kevan Miller


On Jan 24, 2008, at 2:26 PM, the666pack wrote:



Hello,

My application sends a message via a MDB to update some value in the
database. The update is successful, yet after the update i get the  
error

below at the console. Can anyone tell me how to get rid of this error?

Thanks a lot for helping,


Hi Mario,
There's a problem with transaction recovery for MDB's. We recently  
learned of the problem and will be fixing. ATM, I don't know of a way  
to avoid... Well, other than turning off error logging or not using  
MDBs.


--kevan


Geronimo modules

2008-01-25 Thread vpyati

Hi All,
   I am new to Geronimo.  What I understand is that it is composed
of modules and that modules can be added further.

 When I start the server I see a lot of statements in the console
similar to below:
geronimo/j2ee-deployer/1.1/car.

Here I assume that j2ee-deployer is one module. I went inside the directory
to find that there are 3 files- config.info, config.ser and config.ser.sha1.

I would like to know that when Geronimo prints
"geronimo/j2ee-deployer/1.1/car", what does it actually do ? How do we make
sense of the three files ?

Also if I would like to add my application module, what should go into these
files ?

Thanks,
Vikram
-- 
View this message in context: 
http://www.nabble.com/Geronimo-modules-tp15087193s134p15087193.html
Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.



Re: Problem in deploying Apache ServiceMix3.2.1 on Apache Geronimo 2.0.2

2008-01-25 Thread YogeshArora

Hi,

I am doing it from the "Service Assemblies" web page and facing the errors
mentioned in the previous message.

Please do let me know, what could be the cause of it?

Thanks,
Yogesh



gnodet wrote:
> 
> You need to deploy your service assembly from the "Service Assemblies" web
> page, not from the components page.
> 
> On Jan 25, 2008 10:24 AM, YogeshArora <[EMAIL PROTECTED]> wrote:
> 
>>
>> Hi,
>>
>> We have a Service assembly (bridge-sa-3.2.1.zip which comes with
>> ServiceMix
>> examples) that is working fine in the Standalone version of Servicemix
>> 3.2.1
>>
>> We need to have Servicemix run inside Geronimo 2.0.2, so we downloaded
>> Apache ServiceMix Web Application 3.2.1.war and deployed to Geronimo
>> (3.2.1).
>>
>> We have deployed the shared library and all the components (binding
>> component and service engines that are the hotdeploy folder of the Apache
>> ServiceMix) from the web interface of servicemix. When we tried to deploy
>> the bridge-sa-3.2.1.zip service assembly from the web interface of
>> ServiceMix, we are getting the following errors:
>>
>> << org.springframework.jmx.access.InvocationFailureException: JMX access
>> failed; nested exception is javax.management.MBeanException
>> Caused by: javax.management.MBeanException
>> >>
>>
>>
>> The details errors are attached in the document <> Error.txt
>> >>.
>>
>> Please help us in resolving this issue.
>>
>> Thanks in advance.
>>
>> Thanks,
>> Yogesh
>>
>>
>>
>> gnodet wrote:
>> >
>> > What kind of problems do you have when building ? Can you post the
>> maven
>> > output ?
>> > Also you can find pre-built versions of the components inside the
>> > servicemix
>> > binary distribution in the hotdeploy folder or directly from the maven
>> > repositories:
>> >
>> >
>> http://repo1.maven.org/maven2/org/apache/servicemix/servicemix-http/3.2.1/servicemix-http-3.2.1-installer.zip
>> >
>> > Once you have installed all the required JBI components, you need to
>> start
>> > them, and you should be able to deploy the SA.
>> >
>> > On Jan 24, 2008 6:41 PM, YogeshArora <[EMAIL PROTECTED]> wrote:
>> >
>> >>
>> >> Hi,
>> >>
>> >> Thanks for the response !
>> >>
>> >> Through the ServiceMix web app, I am able to install the following
>> >> components (build through maven):
>> >>
>> >> servicemix-shared-3.2.1.zip
>> >> servicemix-jms-3.2.1-installer.zip
>> >> servicemix-file-3.2.1-installer.zip
>> >> servicemix-ftp-3.2.1-installer.zip
>> >>
>> >> I am not able to build the following component through maven:
>> >> servicemix-http
>> >>
>> >> Problem statement:
>> >> 1. Please tell the complete steps (which all components are needed) to
>> >> install a "service assemblies" from ServiceMix web app interface.
>> >> 2. How to build the "service-http"?
>> >>
>> >> Looking forward for your help.
>> >>
>> >> Thanking you,
>> >> Yogesh
>> >>
>> >>
>> >>
>> >> gnodet wrote:
>> >> >
>> >> > The main difference is that the components are not pre-deployed when
>> >> you
>> >> > use
>> >> > servicemix web app, so you have to go download the shared library
>> and
>> >> > components (if you have a standalone distro, you can use those),
>> >> install
>> >> > them through the web console (see Shared libraries and Components
>> >> pages),
>> >> > then you will be able to deploy you service assembly.
>> >> >
>> >> > On Jan 24, 2008 5:27 PM, YogeshArora <[EMAIL PROTECTED]>
>> wrote:
>> >> >
>> >> >>
>> >> >> Hi,
>> >> >>
>> >> >> Thanks, I'll join servicemix mailing list.
>> >> >>
>> >> >> I tried 2 examples on standalone servicemix and these are working
>> >> fine.
>> >> >>
>> >> >> Thanks,
>> >> >> Yogesh
>> >> >>
>> >> >>
>> >> >> gnodet wrote:
>> >> >> >
>> >> >> > You should join the servicemix mailing list, where there will be
>> >> more
>> >> >> > servicemix people able to help you.
>> >> >> > Also, I would recommend downloading the standalone servicemix
>> >> >> > distribution,
>> >> >> > try the examples, etc.. before trying to deploy ServiceMix in
>> >> Geronimo.
>> >> >> >
>> >> >> > On Jan 24, 2008 4:26 PM, YogeshArora <[EMAIL PROTECTED]>
>> >> wrote:
>> >> >> >
>> >> >> >>
>> >> >> >> Hi,
>> >> >> >>
>> >> >> >> Thanks for the quick response!
>> >> >> >>
>> >> >> >> I am new to ServiceMix and Geronimo.
>> >> >> >>
>> >> >> >> Could you please elaborate the following statement written by
>> you?
>> >> >> >>
>> >> >> >> <> the
>> >> >> >> Components
>> >> >> >> web page and install the needed components>>
>> >> >> >>
>> >> >> >> Thanks,
>> >> >> >> Yogesh
>> >> >> >>
>> >> >> >>
>> >> >> >> gnodet wrote:
>> >> >> >> >
>> >> >> >> > ServiceMix WAR distribution does not include all the JBI
>> >> components
>> >> >> by
>> >> >> >> > default.
>> >> >> >> > To be able to deploy your service assembly, you need to go to
>> the
>> >> >> >> > Components
>> >> >> >> > web page and install the needed components, as explained in
>> the
>> >> >> >> exception:
>> >> >> >> >
>> >> >> >> > Target component servicemix-http for service unit
>> >> >> >> > bridge-http-su is no

Re: Problem in deploying Apache ServiceMix3.2.1 on Apache Geronimo 2.0.2

2008-01-25 Thread Guillaume Nodet
You need to deploy your service assembly from the "Service Assemblies" web
page, not from the components page.

On Jan 25, 2008 10:24 AM, YogeshArora <[EMAIL PROTECTED]> wrote:

>
> Hi,
>
> We have a Service assembly (bridge-sa-3.2.1.zip which comes with
> ServiceMix
> examples) that is working fine in the Standalone version of Servicemix
> 3.2.1
>
> We need to have Servicemix run inside Geronimo 2.0.2, so we downloaded
> Apache ServiceMix Web Application 3.2.1.war and deployed to Geronimo
> (3.2.1).
>
> We have deployed the shared library and all the components (binding
> component and service engines that are the hotdeploy folder of the Apache
> ServiceMix) from the web interface of servicemix. When we tried to deploy
> the bridge-sa-3.2.1.zip service assembly from the web interface of
> ServiceMix, we are getting the following errors:
>
> << org.springframework.jmx.access.InvocationFailureException: JMX access
> failed; nested exception is javax.management.MBeanException
> Caused by: javax.management.MBeanException
> >>
>
>
> The details errors are attached in the document < >>.
>
> Please help us in resolving this issue.
>
> Thanks in advance.
>
> Thanks,
> Yogesh
>
>
>
> gnodet wrote:
> >
> > What kind of problems do you have when building ? Can you post the maven
> > output ?
> > Also you can find pre-built versions of the components inside the
> > servicemix
> > binary distribution in the hotdeploy folder or directly from the maven
> > repositories:
> >
> >
> http://repo1.maven.org/maven2/org/apache/servicemix/servicemix-http/3.2.1/servicemix-http-3.2.1-installer.zip
> >
> > Once you have installed all the required JBI components, you need to
> start
> > them, and you should be able to deploy the SA.
> >
> > On Jan 24, 2008 6:41 PM, YogeshArora <[EMAIL PROTECTED]> wrote:
> >
> >>
> >> Hi,
> >>
> >> Thanks for the response !
> >>
> >> Through the ServiceMix web app, I am able to install the following
> >> components (build through maven):
> >>
> >> servicemix-shared-3.2.1.zip
> >> servicemix-jms-3.2.1-installer.zip
> >> servicemix-file-3.2.1-installer.zip
> >> servicemix-ftp-3.2.1-installer.zip
> >>
> >> I am not able to build the following component through maven:
> >> servicemix-http
> >>
> >> Problem statement:
> >> 1. Please tell the complete steps (which all components are needed) to
> >> install a "service assemblies" from ServiceMix web app interface.
> >> 2. How to build the "service-http"?
> >>
> >> Looking forward for your help.
> >>
> >> Thanking you,
> >> Yogesh
> >>
> >>
> >>
> >> gnodet wrote:
> >> >
> >> > The main difference is that the components are not pre-deployed when
> >> you
> >> > use
> >> > servicemix web app, so you have to go download the shared library and
> >> > components (if you have a standalone distro, you can use those),
> >> install
> >> > them through the web console (see Shared libraries and Components
> >> pages),
> >> > then you will be able to deploy you service assembly.
> >> >
> >> > On Jan 24, 2008 5:27 PM, YogeshArora <[EMAIL PROTECTED]> wrote:
> >> >
> >> >>
> >> >> Hi,
> >> >>
> >> >> Thanks, I'll join servicemix mailing list.
> >> >>
> >> >> I tried 2 examples on standalone servicemix and these are working
> >> fine.
> >> >>
> >> >> Thanks,
> >> >> Yogesh
> >> >>
> >> >>
> >> >> gnodet wrote:
> >> >> >
> >> >> > You should join the servicemix mailing list, where there will be
> >> more
> >> >> > servicemix people able to help you.
> >> >> > Also, I would recommend downloading the standalone servicemix
> >> >> > distribution,
> >> >> > try the examples, etc.. before trying to deploy ServiceMix in
> >> Geronimo.
> >> >> >
> >> >> > On Jan 24, 2008 4:26 PM, YogeshArora <[EMAIL PROTECTED]>
> >> wrote:
> >> >> >
> >> >> >>
> >> >> >> Hi,
> >> >> >>
> >> >> >> Thanks for the quick response!
> >> >> >>
> >> >> >> I am new to ServiceMix and Geronimo.
> >> >> >>
> >> >> >> Could you please elaborate the following statement written by
> you?
> >> >> >>
> >> >> >> < the
> >> >> >> Components
> >> >> >> web page and install the needed components>>
> >> >> >>
> >> >> >> Thanks,
> >> >> >> Yogesh
> >> >> >>
> >> >> >>
> >> >> >> gnodet wrote:
> >> >> >> >
> >> >> >> > ServiceMix WAR distribution does not include all the JBI
> >> components
> >> >> by
> >> >> >> > default.
> >> >> >> > To be able to deploy your service assembly, you need to go to
> the
> >> >> >> > Components
> >> >> >> > web page and install the needed components, as explained in the
> >> >> >> exception:
> >> >> >> >
> >> >> >> > Target component servicemix-http for service unit
> >> >> >> > bridge-http-su is not installed
> >> >> >> >
> >> >> >> >
> >> >> >> > You'll have to do the same for the servicemix-eip component and
> >> >> >> > servicemix-jms.  Once they are installed, you need to start
> them
> >> >> from
> >> >> >> the
> >> >> >> > same Components page.  Then you'll be able to deploy and start
> >> your
> >> >> SA.
> >> >> >> >
> >> >> >> > Hopes this helps/
> >> >> >> >
> >> >> >> > On Ja

Re: Problem in deploying Apache ServiceMix3.2.1 on Apache Geronimo 2.0.2

2008-01-25 Thread YogeshArora

Hi,

We have a Service assembly (bridge-sa-3.2.1.zip which comes with ServiceMix
examples) that is working fine in the Standalone version of Servicemix 3.2.1

We need to have Servicemix run inside Geronimo 2.0.2, so we downloaded
Apache ServiceMix Web Application 3.2.1.war and deployed to Geronimo
(3.2.1).

We have deployed the shared library and all the components (binding
component and service engines that are the hotdeploy folder of the Apache
ServiceMix) from the web interface of servicemix. When we tried to deploy
the bridge-sa-3.2.1.zip service assembly from the web interface of
ServiceMix, we are getting the following errors:

<< org.springframework.jmx.access.InvocationFailureException: JMX access
failed; nested exception is javax.management.MBeanException
Caused by: javax.management.MBeanException
>>


The details errors are attached in the document <>.

Please help us in resolving this issue.

Thanks in advance.

Thanks,
Yogesh



gnodet wrote:
> 
> What kind of problems do you have when building ? Can you post the maven
> output ?
> Also you can find pre-built versions of the components inside the
> servicemix
> binary distribution in the hotdeploy folder or directly from the maven
> repositories:
> 
> http://repo1.maven.org/maven2/org/apache/servicemix/servicemix-http/3.2.1/servicemix-http-3.2.1-installer.zip
> 
> Once you have installed all the required JBI components, you need to start
> them, and you should be able to deploy the SA.
> 
> On Jan 24, 2008 6:41 PM, YogeshArora <[EMAIL PROTECTED]> wrote:
> 
>>
>> Hi,
>>
>> Thanks for the response !
>>
>> Through the ServiceMix web app, I am able to install the following
>> components (build through maven):
>>
>> servicemix-shared-3.2.1.zip
>> servicemix-jms-3.2.1-installer.zip
>> servicemix-file-3.2.1-installer.zip
>> servicemix-ftp-3.2.1-installer.zip
>>
>> I am not able to build the following component through maven:
>> servicemix-http
>>
>> Problem statement:
>> 1. Please tell the complete steps (which all components are needed) to
>> install a "service assemblies" from ServiceMix web app interface.
>> 2. How to build the "service-http"?
>>
>> Looking forward for your help.
>>
>> Thanking you,
>> Yogesh
>>
>>
>>
>> gnodet wrote:
>> >
>> > The main difference is that the components are not pre-deployed when
>> you
>> > use
>> > servicemix web app, so you have to go download the shared library and
>> > components (if you have a standalone distro, you can use those),
>> install
>> > them through the web console (see Shared libraries and Components
>> pages),
>> > then you will be able to deploy you service assembly.
>> >
>> > On Jan 24, 2008 5:27 PM, YogeshArora <[EMAIL PROTECTED]> wrote:
>> >
>> >>
>> >> Hi,
>> >>
>> >> Thanks, I'll join servicemix mailing list.
>> >>
>> >> I tried 2 examples on standalone servicemix and these are working
>> fine.
>> >>
>> >> Thanks,
>> >> Yogesh
>> >>
>> >>
>> >> gnodet wrote:
>> >> >
>> >> > You should join the servicemix mailing list, where there will be
>> more
>> >> > servicemix people able to help you.
>> >> > Also, I would recommend downloading the standalone servicemix
>> >> > distribution,
>> >> > try the examples, etc.. before trying to deploy ServiceMix in
>> Geronimo.
>> >> >
>> >> > On Jan 24, 2008 4:26 PM, YogeshArora <[EMAIL PROTECTED]>
>> wrote:
>> >> >
>> >> >>
>> >> >> Hi,
>> >> >>
>> >> >> Thanks for the quick response!
>> >> >>
>> >> >> I am new to ServiceMix and Geronimo.
>> >> >>
>> >> >> Could you please elaborate the following statement written by you?
>> >> >>
>> >> >> <> >> >> Components
>> >> >> web page and install the needed components>>
>> >> >>
>> >> >> Thanks,
>> >> >> Yogesh
>> >> >>
>> >> >>
>> >> >> gnodet wrote:
>> >> >> >
>> >> >> > ServiceMix WAR distribution does not include all the JBI
>> components
>> >> by
>> >> >> > default.
>> >> >> > To be able to deploy your service assembly, you need to go to the
>> >> >> > Components
>> >> >> > web page and install the needed components, as explained in the
>> >> >> exception:
>> >> >> >
>> >> >> > Target component servicemix-http for service unit
>> >> >> > bridge-http-su is not installed
>> >> >> >
>> >> >> >
>> >> >> > You'll have to do the same for the servicemix-eip component and
>> >> >> > servicemix-jms.  Once they are installed, you need to start them
>> >> from
>> >> >> the
>> >> >> > same Components page.  Then you'll be able to deploy and start
>> your
>> >> SA.
>> >> >> >
>> >> >> > Hopes this helps/
>> >> >> >
>> >> >> > On Jan 24, 2008 12:21 PM, YogeshArora <[EMAIL PROTECTED]>
>> >> wrote:
>> >> >> >
>> >> >> >>
>> >> >> >> Hello Friends,
>> >> >> >>
>> >> >> >> We are facing the following issues while deploying Apache
>> >> >> >> ServiceMix3.2.1on
>> >> >> >> Apache Geronimo 2.0.2
>> >> >> >>
>> >> >> >> 1. We have downloaded the Apache ServiceMix WAR file (Apache
>> >> >> ServiceMix
>> >> >> >> Web
>> >> >> >> Application 3.2.1 (.war)) from the following location
>> >> >> >>
>> >> >> >> http://servicemix.apache.or