You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@servicemix.apache.org by Alexanderz <al...@yandex.ru> on 2009/09/09 08:31:00 UTC

Re: servicemix 3.0_M2 servicemix-ant-task.xml doesn't work

Hi,

  Also such problem may occur when servicemix jmx/rmi connector is running
on non default port, even if you define valid port number with sm.port
property. sm.port property is not passed to any ant tasks in default
servicmix-ant-task.xml file.

I've just created a jira (https://issues.apache.org/activemq/browse/SM-1892)
related to this issue.


Ying wrote:
> 
> Hi, 
> 
> I tried very hard to try to get at least one of the ant task (in 3.0-M2 )
> working, but no luck. Please help or advise.
> 
> I used jdk1.5.0_07 and ant 1.6.5 to start a standalone servicemix.
> 
> I called this on a command line and got following exception:
> ant -f servicemix-ant-task.xml list-service-assemblies
> 
> The exception on console is:
> Buildfile: servicemix-ant-task.xml
> 
> list-service-assemblies:
>      [echo]  list-service-assemblies
>      [echo]  list deployed Service Assemblies in Servicemix.
>      [echo]     host=localhost
>      [echo]     port=1099
>      [echo]     state=
>      [echo]     componentName=
>      [echo]     serviceAssemblyName=
> [jbi-list-service-assemblies] Error accessing ServiceMix administration:
> Failed
> to retrieve RMIServer stub: javax.naming.ServiceUnavailableException [Root
> excep
> tion is java.rmi.ConnectException: Connection refused to host: localhost;
> nested
>  exception is:
> [jbi-list-service-assemblies]   java.net.ConnectException: Connection
> refused: c
> onnect]
> 
> BUILD FAILED
> 
> Any help would be highly appreciated.
> -Ying
> 
> 

-- 
View this message in context: http://www.nabble.com/servicemix-3.0_M2-servicemix-ant-task.xml-doesn%27t-work-tp5636491p25359307.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.


Re: servicemix 3.0_M2 servicemix-ant-task.xml doesn't work

Posted by Jean-Baptiste Onofré <jb...@nanthrax.net>.
Fixed on SMX3 trunk.

Alexanderz wrote:
> Hi,
>    
>     Actually our company is used SMX 3.3 and it is related to any SMX
> version. I've just found related post and decided to reply in order to not
> create new thread.
> 
> BR,
>    Alexander
> 
> lhein wrote:
>> Btw. is there a special reason why you guys work with a very old
>> milestone of ServiceMix?
>>
>> Regards
>> Lars
>>
>> 2009/9/9 Alexanderz <al...@yandex.ru>:
>>> Hi,
>>>
>>>  Also such problem may occur when servicemix jmx/rmi connector is running
>>> on non default port, even if you define valid port number with sm.port
>>> property. sm.port property is not passed to any ant tasks in default
>>> servicmix-ant-task.xml file.
>>>
>>> I've just created a jira
>>> (https://issues.apache.org/activemq/browse/SM-1892)
>>> related to this issue.
>>>
>>>
>>> Ying wrote:
>>>> Hi,
>>>>
>>>> I tried very hard to try to get at least one of the ant task (in 3.0-M2
>>>> )
>>>> working, but no luck. Please help or advise.
>>>>
>>>> I used jdk1.5.0_07 and ant 1.6.5 to start a standalone servicemix.
>>>>
>>>> I called this on a command line and got following exception:
>>>> ant -f servicemix-ant-task.xml list-service-assemblies
>>>>
>>>> The exception on console is:
>>>> Buildfile: servicemix-ant-task.xml
>>>>
>>>> list-service-assemblies:
>>>>      [echo]  list-service-assemblies
>>>>      [echo]  list deployed Service Assemblies in Servicemix.
>>>>      [echo]     host=localhost
>>>>      [echo]     port=1099
>>>>      [echo]     state=
>>>>      [echo]     componentName=
>>>>      [echo]     serviceAssemblyName=
>>>> [jbi-list-service-assemblies] Error accessing ServiceMix administration:
>>>> Failed
>>>> to retrieve RMIServer stub: javax.naming.ServiceUnavailableException
>>>> [Root
>>>> excep
>>>> tion is java.rmi.ConnectException: Connection refused to host:
>>>> localhost;
>>>> nested
>>>>  exception is:
>>>> [jbi-list-service-assemblies]   java.net.ConnectException: Connection
>>>> refused: c
>>>> onnect]
>>>>
>>>> BUILD FAILED
>>>>
>>>> Any help would be highly appreciated.
>>>> -Ying
>>>>
>>>>
>>> --
>>> View this message in context:
>>> http://www.nabble.com/servicemix-3.0_M2-servicemix-ant-task.xml-doesn%27t-work-tp5636491p25359307.html
>>> Sent from the ServiceMix - User mailing list archive at Nabble.com.
>>>
>>>
>>
>>
>> -- 
>> http://lhein.blogspot.com
>>
>>
>> -----
>> Regards 
>> Lars 
>>
>>
>> http://lhein.blogspot.com 
>>
>>
> 

Re: servicemix 3.0_M2 servicemix-ant-task.xml doesn't work

Posted by Jean-Baptiste Onofré <jb...@nanthrax.net>.
Hi Alexander,

Regarding the source code, the port is managed in the JbiTask:
- we have a port attribute, initialized to 
ManagementContext.DEFAULT_CONNECTOR_PORT (1099) by default
- the JMX URL is initialized using the port:
	url = new JMXServiceURL("service:jmx:rmi:///jndi/rmi://" + host + ":" + 
port + jndiPath);

So, the problem is only in the servicemix-ant-task.xml which ignore the 
port. I will fix it on the SMX3 trunk.

The workaround is only to add the port attribute in the 
jbi-install-component target if you don't use the default one 1099.

Regards
JB

Alexanderz wrote:
> Hi,
>    
>     Actually our company is used SMX 3.3 and it is related to any SMX
> version. I've just found related post and decided to reply in order to not
> create new thread.
> 
> BR,
>    Alexander
> 
> lhein wrote:
>> Btw. is there a special reason why you guys work with a very old
>> milestone of ServiceMix?
>>
>> Regards
>> Lars
>>
>> 2009/9/9 Alexanderz <al...@yandex.ru>:
>>> Hi,
>>>
>>>  Also such problem may occur when servicemix jmx/rmi connector is running
>>> on non default port, even if you define valid port number with sm.port
>>> property. sm.port property is not passed to any ant tasks in default
>>> servicmix-ant-task.xml file.
>>>
>>> I've just created a jira
>>> (https://issues.apache.org/activemq/browse/SM-1892)
>>> related to this issue.
>>>
>>>
>>> Ying wrote:
>>>> Hi,
>>>>
>>>> I tried very hard to try to get at least one of the ant task (in 3.0-M2
>>>> )
>>>> working, but no luck. Please help or advise.
>>>>
>>>> I used jdk1.5.0_07 and ant 1.6.5 to start a standalone servicemix.
>>>>
>>>> I called this on a command line and got following exception:
>>>> ant -f servicemix-ant-task.xml list-service-assemblies
>>>>
>>>> The exception on console is:
>>>> Buildfile: servicemix-ant-task.xml
>>>>
>>>> list-service-assemblies:
>>>>      [echo]  list-service-assemblies
>>>>      [echo]  list deployed Service Assemblies in Servicemix.
>>>>      [echo]     host=localhost
>>>>      [echo]     port=1099
>>>>      [echo]     state=
>>>>      [echo]     componentName=
>>>>      [echo]     serviceAssemblyName=
>>>> [jbi-list-service-assemblies] Error accessing ServiceMix administration:
>>>> Failed
>>>> to retrieve RMIServer stub: javax.naming.ServiceUnavailableException
>>>> [Root
>>>> excep
>>>> tion is java.rmi.ConnectException: Connection refused to host:
>>>> localhost;
>>>> nested
>>>>  exception is:
>>>> [jbi-list-service-assemblies]   java.net.ConnectException: Connection
>>>> refused: c
>>>> onnect]
>>>>
>>>> BUILD FAILED
>>>>
>>>> Any help would be highly appreciated.
>>>> -Ying
>>>>
>>>>
>>> --
>>> View this message in context:
>>> http://www.nabble.com/servicemix-3.0_M2-servicemix-ant-task.xml-doesn%27t-work-tp5636491p25359307.html
>>> Sent from the ServiceMix - User mailing list archive at Nabble.com.
>>>
>>>
>>
>>
>> -- 
>> http://lhein.blogspot.com
>>
>>
>> -----
>> Regards 
>> Lars 
>>
>>
>> http://lhein.blogspot.com 
>>
>>
> 

Re: servicemix 3.0_M2 servicemix-ant-task.xml doesn't work

Posted by Lars Heinemann <lh...@apache.org>.
ah, just wondered why someone should use 3.0-M2

 ;)

2009/9/9 Alexanderz <al...@yandex.ru>:
>
> Hi,
>
>    Actually our company is used SMX 3.3 and it is related to any SMX
> version. I've just found related post and decided to reply in order to not
> create new thread.
>
> BR,
>   Alexander
>
> lhein wrote:
>>
>> Btw. is there a special reason why you guys work with a very old
>> milestone of ServiceMix?
>>
>> Regards
>> Lars
>>
>> 2009/9/9 Alexanderz <al...@yandex.ru>:
>>>
>>> Hi,
>>>
>>>  Also such problem may occur when servicemix jmx/rmi connector is running
>>> on non default port, even if you define valid port number with sm.port
>>> property. sm.port property is not passed to any ant tasks in default
>>> servicmix-ant-task.xml file.
>>>
>>> I've just created a jira
>>> (https://issues.apache.org/activemq/browse/SM-1892)
>>> related to this issue.
>>>
>>>
>>> Ying wrote:
>>>>
>>>> Hi,
>>>>
>>>> I tried very hard to try to get at least one of the ant task (in 3.0-M2
>>>> )
>>>> working, but no luck. Please help or advise.
>>>>
>>>> I used jdk1.5.0_07 and ant 1.6.5 to start a standalone servicemix.
>>>>
>>>> I called this on a command line and got following exception:
>>>> ant -f servicemix-ant-task.xml list-service-assemblies
>>>>
>>>> The exception on console is:
>>>> Buildfile: servicemix-ant-task.xml
>>>>
>>>> list-service-assemblies:
>>>>      [echo]  list-service-assemblies
>>>>      [echo]  list deployed Service Assemblies in Servicemix.
>>>>      [echo]     host=localhost
>>>>      [echo]     port=1099
>>>>      [echo]     state=
>>>>      [echo]     componentName=
>>>>      [echo]     serviceAssemblyName=
>>>> [jbi-list-service-assemblies] Error accessing ServiceMix administration:
>>>> Failed
>>>> to retrieve RMIServer stub: javax.naming.ServiceUnavailableException
>>>> [Root
>>>> excep
>>>> tion is java.rmi.ConnectException: Connection refused to host:
>>>> localhost;
>>>> nested
>>>>  exception is:
>>>> [jbi-list-service-assemblies]   java.net.ConnectException: Connection
>>>> refused: c
>>>> onnect]
>>>>
>>>> BUILD FAILED
>>>>
>>>> Any help would be highly appreciated.
>>>> -Ying
>>>>
>>>>
>>>
>>> --
>>> View this message in context:
>>> http://www.nabble.com/servicemix-3.0_M2-servicemix-ant-task.xml-doesn%27t-work-tp5636491p25359307.html
>>> Sent from the ServiceMix - User mailing list archive at Nabble.com.
>>>
>>>
>>
>>
>>
>> --
>> http://lhein.blogspot.com
>>
>>
>> -----
>> Regards
>> Lars
>>
>>
>> http://lhein.blogspot.com
>>
>>
>
> --
> View this message in context: http://www.nabble.com/servicemix-3.0_M2-servicemix-ant-task.xml-doesn%27t-work-tp5636491p25359489.html
> Sent from the ServiceMix - User mailing list archive at Nabble.com.
>
>



-- 
http://lhein.blogspot.com

Re: servicemix 3.0_M2 servicemix-ant-task.xml doesn't work

Posted by Alexanderz <al...@yandex.ru>.
Hi,
   
    Actually our company is used SMX 3.3 and it is related to any SMX
version. I've just found related post and decided to reply in order to not
create new thread.

BR,
   Alexander

lhein wrote:
> 
> Btw. is there a special reason why you guys work with a very old
> milestone of ServiceMix?
> 
> Regards
> Lars
> 
> 2009/9/9 Alexanderz <al...@yandex.ru>:
>>
>> Hi,
>>
>>  Also such problem may occur when servicemix jmx/rmi connector is running
>> on non default port, even if you define valid port number with sm.port
>> property. sm.port property is not passed to any ant tasks in default
>> servicmix-ant-task.xml file.
>>
>> I've just created a jira
>> (https://issues.apache.org/activemq/browse/SM-1892)
>> related to this issue.
>>
>>
>> Ying wrote:
>>>
>>> Hi,
>>>
>>> I tried very hard to try to get at least one of the ant task (in 3.0-M2
>>> )
>>> working, but no luck. Please help or advise.
>>>
>>> I used jdk1.5.0_07 and ant 1.6.5 to start a standalone servicemix.
>>>
>>> I called this on a command line and got following exception:
>>> ant -f servicemix-ant-task.xml list-service-assemblies
>>>
>>> The exception on console is:
>>> Buildfile: servicemix-ant-task.xml
>>>
>>> list-service-assemblies:
>>>      [echo]  list-service-assemblies
>>>      [echo]  list deployed Service Assemblies in Servicemix.
>>>      [echo]     host=localhost
>>>      [echo]     port=1099
>>>      [echo]     state=
>>>      [echo]     componentName=
>>>      [echo]     serviceAssemblyName=
>>> [jbi-list-service-assemblies] Error accessing ServiceMix administration:
>>> Failed
>>> to retrieve RMIServer stub: javax.naming.ServiceUnavailableException
>>> [Root
>>> excep
>>> tion is java.rmi.ConnectException: Connection refused to host:
>>> localhost;
>>> nested
>>>  exception is:
>>> [jbi-list-service-assemblies]   java.net.ConnectException: Connection
>>> refused: c
>>> onnect]
>>>
>>> BUILD FAILED
>>>
>>> Any help would be highly appreciated.
>>> -Ying
>>>
>>>
>>
>> --
>> View this message in context:
>> http://www.nabble.com/servicemix-3.0_M2-servicemix-ant-task.xml-doesn%27t-work-tp5636491p25359307.html
>> Sent from the ServiceMix - User mailing list archive at Nabble.com.
>>
>>
> 
> 
> 
> -- 
> http://lhein.blogspot.com
> 
> 
> -----
> Regards 
> Lars 
> 
> 
> http://lhein.blogspot.com 
> 
> 

-- 
View this message in context: http://www.nabble.com/servicemix-3.0_M2-servicemix-ant-task.xml-doesn%27t-work-tp5636491p25359489.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.


Re: servicemix 3.0_M2 servicemix-ant-task.xml doesn't work

Posted by Lars Heinemann <lh...@apache.org>.
Btw. is there a special reason why you guys work with a very old
milestone of ServiceMix?

Regards
Lars

2009/9/9 Alexanderz <al...@yandex.ru>:
>
> Hi,
>
>  Also such problem may occur when servicemix jmx/rmi connector is running
> on non default port, even if you define valid port number with sm.port
> property. sm.port property is not passed to any ant tasks in default
> servicmix-ant-task.xml file.
>
> I've just created a jira (https://issues.apache.org/activemq/browse/SM-1892)
> related to this issue.
>
>
> Ying wrote:
>>
>> Hi,
>>
>> I tried very hard to try to get at least one of the ant task (in 3.0-M2 )
>> working, but no luck. Please help or advise.
>>
>> I used jdk1.5.0_07 and ant 1.6.5 to start a standalone servicemix.
>>
>> I called this on a command line and got following exception:
>> ant -f servicemix-ant-task.xml list-service-assemblies
>>
>> The exception on console is:
>> Buildfile: servicemix-ant-task.xml
>>
>> list-service-assemblies:
>>      [echo]  list-service-assemblies
>>      [echo]  list deployed Service Assemblies in Servicemix.
>>      [echo]     host=localhost
>>      [echo]     port=1099
>>      [echo]     state=
>>      [echo]     componentName=
>>      [echo]     serviceAssemblyName=
>> [jbi-list-service-assemblies] Error accessing ServiceMix administration:
>> Failed
>> to retrieve RMIServer stub: javax.naming.ServiceUnavailableException [Root
>> excep
>> tion is java.rmi.ConnectException: Connection refused to host: localhost;
>> nested
>>  exception is:
>> [jbi-list-service-assemblies]   java.net.ConnectException: Connection
>> refused: c
>> onnect]
>>
>> BUILD FAILED
>>
>> Any help would be highly appreciated.
>> -Ying
>>
>>
>
> --
> View this message in context: http://www.nabble.com/servicemix-3.0_M2-servicemix-ant-task.xml-doesn%27t-work-tp5636491p25359307.html
> Sent from the ServiceMix - User mailing list archive at Nabble.com.
>
>



-- 
http://lhein.blogspot.com