List Info

Thread: error while registering service




error while registering service
user name
2007-05-19 14:55:06
Hi devs,

I'm trying to register the service i'm working on...and i've got an error message that I can't figure out.

here is the error ( make target ends with no error) appearing when I execute the run target:

ERROR: EventDispatcher: Error during dispatch. (java.lang.ClassCastException: net.java.sip.communicator.impl.spellcheck.SpellCheckServiceImpl cannot be cast to net.java.sip.communicator.service.protocol.ProtocolProviderService )
java.lang.ClassCastException: net.java.sip.communicator.impl.spellcheck.SpellCheckServiceImpl cannot be cast to net.java.sip.communicator.service.protocol.ProtocolProviderService
        at net.java.sip.communicator.impl.systray.jdic.SystrayServiceJdicImpl.serviceChanged(SystrayServiceJdicImpl.java:302)
        at org.apache.felix.framework.util.EventDispatcher.invokeServiceListenerCallback(EventDispatcher.java:712)
       ; at org.apache.felix.framework.util.EventDispatcher.fireEventImmediately(EventDispatcher.java:570)
        at org.apache.felix.framework.util.EventDispatcher.fireServiceEvent (EventDispatcher.java:502)
        at org.apache.felix.framework.Felix.fireServiceEvent(Felix.java:2843)
       ; at org.apache.felix.framework.Felix.access$100(Felix.java:36)
        at org.apache.felix.framework.Felix$1.serviceChanged(Felix.java:242)
        at org.apache.felix.framework.ServiceRegistry.fireServiceChanged(ServiceRegistry.java:435)
       ; at org.apache.felix.framework.ServiceRegistry.registerService(ServiceRegistry.java:71)
        at org.apache.felix.framework.Felix.registerService (Felix.java:2107)
        at org.apache.felix.framework.BundleContextImpl.registerService(BundleContextImpl.java:252)
        at org.apache.felix.framework.BundleContextImpl.registerService(BundleContextImpl.java:230)
        at net.java.sip.communicator.impl.spellcheck.SpellCheckActivator.start (SpellCheckActivator.java:89)
        at org.apache.felix.framework.util.SecureAction.startActivator(SecureAction.java:509)
        at org.apache.felix.framework.Felix._startBundle(Felix.java:1260)
        at org.apache.felix.framework.Felix.startBundle (Felix.java:1201)
        at org.apache.felix.framework.Felix.setFrameworkStartLevel(Felix.java:807)
       ; at org.apache.felix.framework.StartLevelImpl.run(StartLevelImpl.java:256)
        at java.lang.Thread.run(Thread.java:619)

but after that the logger finishes to print :

FIN: impl.spellcheck.SpellCheckServiceImpl.start().93 Service Impl: net.java.sip.communicator.impl.spellcheck.SpellCheckActivator [REGISTERED]

So is the service registered ?
and what could be the reason of the error above ?

thx guys and keep up the good work

Jean-Daniel
Re: error while registering service
user name
2007-05-21 07:30:54
Hello JD,

Looks like a copy paste error.

Make sure that when you register your service, you do so
using the class 
name of your own service and not the one of the
ProtocolProviderService.

Hope this helps.

Emil

JD wrote:
> Hi devs,
> 
> I'm trying to register the service i'm working on...and
i've got an 
> error message that I can't figure out.
> 
> here is the error ( make target ends with no error)
appearing when I 
> execute the run target:
> 
> ERROR: EventDispatcher: Error during dispatch. 
> (java.lang.ClassCastException: 
>
net.java.sip.communicator.impl.spellcheck.SpellCheckServiceI
mpl cannot 
> be cast to 
>
net.java.sip.communicator.service.protocol.ProtocolProviderS
ervice )
> java.lang.ClassCastException: 
>
net.java.sip.communicator.impl.spellcheck.SpellCheckServiceI
mpl cannot 
> be cast to 
>
net.java.sip.communicator.service.protocol.ProtocolProviderS
ervice
>         at 
>
net.java.sip.communicator.impl.systray.jdic.SystrayServiceJd
icImpl.serviceChanged(SystrayServiceJdicImpl.java:302)
>         at 
>
org.apache.felix.framework.util.EventDispatcher.invokeServic
eListenerCallback(EventDispatcher.java:712)
>         at 
>
org.apache.felix.framework.util.EventDispatcher.fireEventImm
ediately(EventDispatcher.java:570)
>         at 
>
org.apache.felix.framework.util.EventDispatcher.fireServiceE
vent 
> (EventDispatcher.java:502)
>         at 
>
org.apache.felix.framework.Felix.fireServiceEvent(Felix.java
:2843)
>         at
org.apache.felix.framework.Felix.access$100(Felix.java:36)
>         at 
>
org.apache.felix.framework.Felix$1.serviceChanged(Felix.java
:242)
>         at 
>
org.apache.felix.framework.ServiceRegistry.fireServiceChange
d(ServiceRegistry.java:435)
>         at 
>
org.apache.felix.framework.ServiceRegistry.registerService(S
erviceRegistry.java:71)
>         at
org.apache.felix.framework.Felix.registerService 
> (Felix.java:2107)
>         at 
>
org.apache.felix.framework.BundleContextImpl.registerService
(BundleContextImpl.java:252)
>         at 
>
org.apache.felix.framework.BundleContextImpl.registerService
(BundleContextImpl.java:230)
>         at 
>
net.java.sip.communicator.impl.spellcheck.SpellCheckActivato
r.start 
> (SpellCheckActivator.java:89)
>         at 
>
org.apache.felix.framework.util.SecureAction.startActivator(
SecureAction.java:509)
>         at
org.apache.felix.framework.Felix._startBundle(Felix.java:126
0)
>         at org.apache.felix.framework.Felix.startBundle
(Felix.java:1201)
>         at 
>
org.apache.felix.framework.Felix.setFrameworkStartLevel(Feli
x.java:807)
>         at 
>
org.apache.felix.framework.StartLevelImpl.run(StartLevelImpl
.java:256)
>         at java.lang.Thread.run(Thread.java:619)
> 
> but after that the logger finishes to print :
> 
> FIN: impl.spellcheck.SpellCheckServiceImpl.start().93
Service Impl: 
>
net.java.sip.communicator.impl.spellcheck.SpellCheckActivato
r [REGISTERED]
> 
> So is the service registered ?
> and what could be the reason of the error above ?
> 
> thx guys and keep up the good work
> 
> Jean-Daniel

------------------------------------------------------------
---------
To unsubscribe, e-mail: dev-unsubscribesip-communicator.dev.java.net
For additional commands, e-mail: dev-helpsip-communicator.dev.java.net


Re: error while registering service
user name
2007-05-21 10:03:18
In fact the error what located in net.java.sip.communicator.impl.systray.jdic.SystrayServiceJdicImpl

method serviceChanged and here is the fix :

    public void serviceChanged(ServiceEvent event)
    {
        Object service = SystrayActivator.bundleContext
           ;     .getService( event.getServiceReference());
       
       ; if (! (service instanceof ProtocolProviderService))
           ; return;
    ;   
        ProtocolProviderService provider = (ProtocolProviderService)service;
     ;  
        if (event.getType() == ServiceEvent.REGISTERED){
   ;         protocolProviderTable.put(provider.getAccountID(),provider);
          ;  handleProviderAdded(provider);
    ;       
        }
   ;     if (event.getType() == ServiceEvent.UNREGISTERING){
        ;   protocolProviderTable.remove(provider.getAccountID());
           handleProviderRemoved(provider);
        }

2007/5/21, Emil Ivov < emchoemcho.com">emchoemcho.com>:
Hello JD,

Looks like a copy paste error.

Make sure that when you register your service, you do so using the class
name of your own service and not the one of the ProtocolProviderService.

Hope this helps.

Emil

JD wrote:
>; Hi devs,
>
> I'm trying to register the service i'm working on...and i've got an
> error message that I can't figure out.
>
> here is the error ( make target ends with no error) appearing when I
> execute the run target:
&gt;
> ERROR: EventDispatcher: Error during dispatch.
> (java.lang.ClassCastException:
&gt; net.java.sip.communicator.impl.spellcheck.SpellCheckServiceImpl cannot
>; be cast to
> net.java.sip.communicator.service.protocol.ProtocolProviderService )
> java.lang.ClassCastException:
&gt; net.java.sip.communicator.impl.spellcheck.SpellCheckServiceImpl cannot
>; be cast to
> net.java.sip.communicator.service.protocol.ProtocolProviderService
>&nbsp; &nbsp; &nbsp;   ; at
> net.java.sip.communicator.impl.systray.jdic.SystrayServiceJdicImpl.serviceChanged(SystrayServiceJdicImpl.java:302)
>&nbsp;   ; &nbsp; &nbsp; at
> org.apache.felix.framework.util.EventDispatcher.invokeServiceListenerCallback(EventDispatcher.java:712)
>&nbsp;   ; &nbsp; &nbsp; at
> org.apache.felix.framework.util.EventDispatcher.fireEventImmediately(EventDispatcher.java :570)
&gt; &nbsp; &nbsp;   ;  at
> org.apache.felix.framework.util.EventDispatcher.fireServiceEvent
> (EventDispatcher.java:502)
>&nbsp;   ; &nbsp; &nbsp; at
> org.apache.felix.framework.Felix.fireServiceEvent(Felix.java:2843)
>&nbsp; &nbsp; &nbsp;   ; at org.apache.felix.framework.Felix.access$100(Felix.java:36)
>&nbsp; &nbsp;   ; &nbsp; at
> org.apache.felix.framework.Felix$1.serviceChanged(Felix.java:242)
  ; &nbsp; &nbsp;  at
> org.apache.felix.framework.ServiceRegistry.fireServiceChanged (ServiceRegistry.java:435)
>&nbsp; &nbsp; &nbsp; &nbsp;  at
> org.apache.felix.framework.ServiceRegistry.registerService(ServiceRegistry.java:71)
>; &nbsp; &nbsp; &nbsp; &nbsp; at org.apache.felix.framework.Felix.registerService
> (Felix.java :2107)
&gt; &nbsp; &nbsp;   ;  at
> org.apache.felix.framework.BundleContextImpl.registerService(BundleContextImpl.java:252)
; &nbsp; &nbsp; &nbsp;  at
> org.apache.felix.framework.BundleContextImpl.registerService(BundleContextImpl.java :230)
>&nbsp; &nbsp; &nbsp;   ; at
> net.java.sip.communicator.impl.spellcheck.SpellCheckActivator.start
> (SpellCheckActivator.java:89)
&gt; &nbsp; &nbsp; &nbsp;   at
> org.apache.felix.framework.util.SecureAction.startActivator (SecureAction.java:509)
&gt; &nbsp; &nbsp; &nbsp;   at org.apache.felix.framework.Felix._startBundle(Felix.java:1260)
&gt; &nbsp; &nbsp; &nbsp;   at org.apache.felix.framework.Felix.startBundle (Felix.java:1201)
>; &nbsp; &nbsp; &nbsp; &nbsp; at
> org.apache.felix.framework.Felix.setFrameworkStartLevel (Felix.java:807)
&gt; &nbsp; &nbsp; &nbsp;   at
> org.apache.felix.framework.StartLevelImpl.run(StartLevelImpl.java:256)
>&nbsp;   ; &nbsp; &nbsp; at java.lang.Thread.run(Thread.java:619)
>
> but after that the logger finishes to print :
>
&gt; FIN: impl.spellcheck.SpellCheckServiceImpl.start().93 Service Impl:
> net.java.sip.communicator.impl.spellcheck.SpellCheckActivator [REGISTERED]
>
>; So is the service registered ?
> and what could be the reason of the error above ?
>
&gt; thx guys and keep up the good work
>
> Jean-Daniel

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribesip-communicator.dev.java.net"> dev-unsubscribesip-communicator.dev.java.net
For additional commands, e-mail: dev-helpsip-communicator.dev.java.net">dev-helpsip-communicator.dev.java.net


Re: error while registering service
user name
2007-05-21 12:49:59
Hey JD,

Nice!

I've committed your fix. Let me know if it's working now.

Thanks
Emil

JD wrote:
> In fact the error what located in 
>
net.java.sip.communicator.impl.systray.jdic.SystrayServiceJd
icImpl
> 
> method serviceChanged and here is the fix :
> 
>     public void serviceChanged(ServiceEvent event)
>     {
>         Object service =
SystrayActivator.bundleContext
>                 .getService(
event.getServiceReference());
>        
>         if (! (service instanceof
ProtocolProviderService))
>             return;
>        
>         ProtocolProviderService provider = 
> (ProtocolProviderService)service;
>        
>         if (event.getType() ==
ServiceEvent.REGISTERED){
>            
protocolProviderTable.put(provider.getAccountID(),provider);

>             handleProviderAdded(provider);
>            
>         }
>         if (event.getType() ==
ServiceEvent.UNREGISTERING){
>           
protocolProviderTable.remove(provider.getAccountID());
>            handleProviderRemoved(provider);
>         }
> 
> 2007/5/21, Emil Ivov <emchoemcho.com
<mailto:emchoemcho.com>>:
> 
>     Hello JD,
> 
>     Looks like a copy paste error.
> 
>     Make sure that when you register your service, you
do so using the class
>     name of your own service and not the one of the
ProtocolProviderService.
> 
>     Hope this helps.
> 
>     Emil
> 
>     JD wrote:
>      > Hi devs,
>      >
>      > I'm trying to register the service i'm
working on...and i've got an
>      > error message that I can't figure out.
>      >
>      > here is the error ( make target ends with no
error) appearing when I
>      > execute the run target:
>      >
>      > ERROR: EventDispatcher: Error during
dispatch.
>      > (java.lang.ClassCastException:
>      >
net.java.sip.communicator.impl.spellcheck.SpellCheckServiceI
mpl
>     cannot
>      > be cast to
>      >
net.java.sip.communicator.service.protocol.ProtocolProviderS
ervice )
>      > java.lang.ClassCastException:
>      >
net.java.sip.communicator.impl.spellcheck.SpellCheckServiceI
mpl
>     cannot
>      > be cast to
>      >
net.java.sip.communicator.service.protocol.ProtocolProviderS
ervice
>      >         at
>      >
>    
net.java.sip.communicator.impl.systray.jdic.SystrayServiceJd
icImpl.serviceChanged(SystrayServiceJdicImpl.java:302)
>      >         at
>      >
>    
org.apache.felix.framework.util.EventDispatcher.invokeServic
eListenerCallback(EventDispatcher.java:712)
>      >         at
>      >
>    
org.apache.felix.framework.util.EventDispatcher.fireEventImm
ediately(EventDispatcher.java
>     :570)
>      >         at
>      >
org.apache.felix.framework.util.EventDispatcher.fireServiceE
vent
>      > (EventDispatcher.java:502)
>      >         at
>      >
org.apache.felix.framework.Felix.fireServiceEvent(Felix.java
:2843)
>      >         at
org.apache.felix.framework.Felix.access$100(Felix.java:36)
>      >         at
>      >
org.apache.felix.framework.Felix$1.serviceChanged(Felix.java
:242)
>      >         at
>      >
org.apache.felix.framework.ServiceRegistry.fireServiceChange
d
>     (ServiceRegistry.java:435)
>      >         at
>      >
>    
org.apache.felix.framework.ServiceRegistry.registerService(S
erviceRegistry.java:71)
>      >         at
org.apache.felix.framework.Felix.registerService
>      > (Felix.java :2107)
>      >         at
>      >
>    
org.apache.felix.framework.BundleContextImpl.registerService
(BundleContextImpl.java:252)
>      >         at
>      >
>    
org.apache.felix.framework.BundleContextImpl.registerService
(BundleContextImpl.java
>     :230)
>      >         at
>      >
net.java.sip.communicator.impl.spellcheck.SpellCheckActivato
r.start
>      > (SpellCheckActivator.java:89)
>      >         at
>      >
org.apache.felix.framework.util.SecureAction.startActivator
>     (SecureAction.java:509)
>      >         at
>    
org.apache.felix.framework.Felix._startBundle(Felix.java:126
0)
>      >         at
org.apache.felix.framework.Felix.startBundle
>     (Felix.java:1201)
>      >         at
>      >
org.apache.felix.framework.Felix.setFrameworkStartLevel
>     (Felix.java:807)
>      >         at
>      >
>    
org.apache.felix.framework.StartLevelImpl.run(StartLevelImpl
.java:256)
>      >         at
java.lang.Thread.run(Thread.java:619)
>      >
>      > but after that the logger finishes to print
:
>      >
>      > FIN:
impl.spellcheck.SpellCheckServiceImpl.start().93 Service
Impl:
>      >
net.java.sip.communicator.impl.spellcheck.SpellCheckActivato
r
>     [REGISTERED]
>      >
>      > So is the service registered ?
>      > and what could be the reason of the error
above ?
>      >
>      > thx guys and keep up the good work
>      >
>      > Jean-Daniel
> 
>    
------------------------------------------------------------
---------
>     To unsubscribe, e-mail:
>     dev-unsubscribesip-communicator.dev.java.net
>     <mailto:dev-unsubscribesip-communicator.dev.java.net>
>     For additional commands, e-mail:
>     dev-helpsip-communicator.dev.java.net
>     <mailto:dev-helpsip-communicator.dev.java.net>
> 
> 

------------------------------------------------------------
---------
To unsubscribe, e-mail: dev-unsubscribesip-communicator.dev.java.net
For additional commands, e-mail: dev-helpsip-communicator.dev.java.net


Re: error while registering service
user name
2007-05-21 16:52:55
Hi,

It seems to work "like a charm"; since I don't have this problem anymore.

JD

2007/5/21, Emil Ivov < emchoemcho.com">emchoemcho.com >:
Hey JD,

Nice!

I've committed your fix. Let me know if it's working now.

Thanks
Emil

JD wrote:
>; In fact the error what located in
> net.java.sip.communicator.impl.systray.jdic.SystrayServiceJdicImpl
>
> method serviceChanged and here is the fix :
>
&gt; &nbsp; &nbsp; public void serviceChanged(ServiceEvent event)
>; &nbsp; &nbsp; {
>&nbsp; &nbsp; &nbsp; &nbsp;  Object service = SystrayActivator.bundleContext
&gt; &nbsp; &nbsp;   ; &nbsp; &nbsp; &nbsp; &nbsp;  .getService( event.getServiceReference());
&gt;
>&nbsp; &nbsp; &nbsp; &nbsp;  if (! (service instanceof ProtocolProviderService))
>  ; &nbsp; &nbsp; &nbsp; &nbsp;   return;
&gt;
>&nbsp; &nbsp; &nbsp; &nbsp;  ProtocolProviderService provider =
> (ProtocolProviderService)service;
>
>  ; &nbsp; &nbsp; &nbsp; if (event.getType() == ServiceEvent.REGISTERED){
>&nbsp; &nbsp;   ; &nbsp; &nbsp; &nbsp; protocolProviderTable.put(provider.getAccountID(),provider);
&gt; &nbsp; &nbsp; &nbsp;   ; &nbsp;  handleProviderAdded(provider);
&gt;
>&nbsp; &nbsp; &nbsp;   ; }
>&nbsp; &nbsp; &nbsp; &nbsp;  if (event.getType() == ServiceEvent.UNREGISTERING){
>; &nbsp; &nbsp; &nbsp; &nbsp;   ;  protocolProviderTable.remove(provider.getAccountID());
&gt; &nbsp; &nbsp; &nbsp;   ; &nbsp; handleProviderRemoved(provider);
>; &nbsp; &nbsp; &nbsp; &nbsp; }
>
>; 2007/5/21, Emil Ivov < emchoemcho.com">emchoemcho.com <mailto: emchoemcho.com">emchoemcho.com>>:
&gt;
>&nbsp; &nbsp;  Hello JD,
>
&gt; &nbsp; &nbsp; Looks like a copy paste error.
>;
; &nbsp;  Make sure that when you register your service, you do so using the class
&gt; &nbsp; &nbsp; name of your own service and not the one of the ProtocolProviderService.
>
&gt; &nbsp; &nbsp; Hope this helps.
>;
; &nbsp;  Emil
>
> &nbsp;   JD wrote:
>; &nbsp; &nbsp; &nbsp;> Hi devs,
>  ; &nbsp; &nbsp;>
&gt; &nbsp; &nbsp;  > I'm trying to register the service i'm working on...and i've got an
>&nbsp; &nbsp; &nbsp; > error message that I can't figure out.
>&nbsp;   ; &nbsp;>
>  ; &nbsp; &nbsp;> here is the error ( make target ends with no error) appearing when I
>&nbsp; &nbsp;   ;> execute the run target:
&gt; &nbsp; &nbsp; &nbsp;>
&gt; &nbsp; &nbsp;  > ERROR: EventDispatcher: Error during dispatch.
> &nbsp;   ; > (java.lang.ClassCastException:
&gt; &nbsp; &nbsp;  > net.java.sip.communicator.impl.spellcheck.SpellCheckServiceImpl
  ;  cannot
>; &nbsp; &nbsp; &nbsp;> be cast to
>&nbsp; &nbsp; &nbsp; > net.java.sip.communicator.service.protocol.ProtocolProviderService )
>&nbsp; &nbsp; &nbsp; &gt; java.lang.ClassCastException:
&gt; &nbsp; &nbsp; &nbsp;> net.java.sip.communicator.impl.spellcheck.SpellCheckServiceImpl
  ;  cannot
>; &nbsp; &nbsp; &nbsp;> be cast to
>&nbsp; &nbsp; &nbsp; > net.java.sip.communicator.service.protocol.ProtocolProviderService
; &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp;   at
>&nbsp; &nbsp; &nbsp; >
>&nbsp; &nbsp;  net.java.sip.communicator.impl.systray.jdic.SystrayServiceJdicImpl.serviceChanged (SystrayServiceJdicImpl.java:302)
>; &nbsp; &nbsp; &nbsp;>&nbsp; &nbsp; &nbsp;   ; at
>&nbsp; &nbsp; &nbsp; >
>&nbsp; &nbsp;  org.apache.felix.framework.util.EventDispatcher.invokeServiceListenerCallback(EventDispatcher.java:712)
>&nbsp;   ; &nbsp;> ; &nbsp; &nbsp; &nbsp;  at
>&nbsp;   ; &nbsp;>
>  ; &nbsp; org.apache.felix.framework.util.EventDispatcher.fireEventImmediately(EventDispatcher.java
>&nbsp; &nbsp;  :570)
>  ; &nbsp; &nbsp;>&nbsp; &nbsp; &nbsp; &nbsp;  at
>&nbsp; &nbsp; &nbsp; > org.apache.felix.framework.util.EventDispatcher.fireServiceEvent
; &nbsp; &nbsp; &gt; (EventDispatcher.java:502)
>&nbsp;   ; &nbsp;> ; &nbsp; &nbsp; &nbsp;  at
>&nbsp; &nbsp; &nbsp; > org.apache.felix.framework.Felix.fireServiceEvent(Felix.java:2843)
; &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp;   at org.apache.felix.framework.Felix.access$100 (Felix.java:36)
>  ; &nbsp; &nbsp;>&nbsp; &nbsp; &nbsp; &nbsp;  at
>&nbsp; &nbsp; &nbsp; > org.apache.felix.framework.Felix$1.serviceChanged(Felix.java:242)
  ; &nbsp; >; &nbsp; &nbsp; &nbsp; &nbsp; at
>&nbsp; &nbsp; &nbsp; > org.apache.felix.framework.ServiceRegistry.fireServiceChanged
&gt; &nbsp; &nbsp; (ServiceRegistry.java:435)
>&nbsp;   ; &nbsp;> ; &nbsp; &nbsp; &nbsp;  at
>&nbsp; &nbsp; &nbsp; >
>&nbsp; &nbsp;  org.apache.felix.framework.ServiceRegistry.registerService(ServiceRegistry.java:71)
>; &nbsp; &nbsp; &nbsp;>&nbsp; &nbsp; &nbsp;   ; at org.apache.felix.framework.Felix.registerService
>; &nbsp; &nbsp; &nbsp;> (Felix.java :2107)
>; &nbsp; &nbsp; &nbsp;>&nbsp; &nbsp; &nbsp;   ; at
>&nbsp; &nbsp; &nbsp; >
>&nbsp; &nbsp;  org.apache.felix.framework.BundleContextImpl.registerService(BundleContextImpl.java:252)
; &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp;   at
>&nbsp; &nbsp; &nbsp; >
>  ; &nbsp; org.apache.felix.framework.BundleContextImpl.registerService(BundleContextImpl.java
>; &nbsp; &nbsp; :230)
>  ; &nbsp; &nbsp;>&nbsp; &nbsp; &nbsp; &nbsp;  at
>&nbsp; &nbsp; &nbsp; > net.java.sip.communicator.impl.spellcheck.SpellCheckActivator.start
>&nbsp; &nbsp;   ;> (SpellCheckActivator.java:89)
&gt; &nbsp; &nbsp; &nbsp;>&nbsp; &nbsp;   ; &nbsp; at
>&nbsp; &nbsp; &nbsp; > org.apache.felix.framework.util.SecureAction.startActivator
>&nbsp;   ; (SecureAction.java:509)
>&nbsp; &nbsp; &nbsp; &gt; &nbsp; &nbsp;   ;  at
>&nbsp;   ; org.apache.felix.framework.Felix._startBundle(Felix.java:1260)
&gt; &nbsp; &nbsp; &nbsp;>&nbsp; &nbsp;   ; &nbsp; at org.apache.felix.framework.Felix.startBundle
; &nbsp;  (Felix.java:1201)
>; &nbsp; &nbsp; &nbsp;>&nbsp; &nbsp; &nbsp;   ; at
>&nbsp; &nbsp; &nbsp; > org.apache.felix.framework.Felix.setFrameworkStartLevel
>&nbsp; &nbsp;  (Felix.java:807)
>  ; &nbsp; &nbsp;>&nbsp; &nbsp; &nbsp; &nbsp;  at
>&nbsp; &nbsp; &nbsp; >
>&nbsp; &nbsp;  org.apache.felix.framework.StartLevelImpl.run(StartLevelImpl.java:256)
>&nbsp;   ; &nbsp;> ; &nbsp; &nbsp; &nbsp;  at java.lang.Thread.run(Thread.java:619)
>; &nbsp; &nbsp; &nbsp;>
&gt; &nbsp; &nbsp; &nbsp;> but after that the logger finishes to print :
>&nbsp; &nbsp; &nbsp; &gt;
>&nbsp; &nbsp; &nbsp; > FIN: impl.spellcheck.SpellCheckServiceImpl.start().93 Service Impl:
&gt; &nbsp; &nbsp; &nbsp;> net.java.sip.communicator.impl.spellcheck.SpellCheckActivator
>; &nbsp; &nbsp; [REGISTERED]
>&nbsp; &nbsp; &nbsp; &gt;
>&nbsp; &nbsp; &nbsp; > So is the service registered ?
>&nbsp; &nbsp; &nbsp; &gt; and what could be the reason of the error above ?
>&nbsp; &nbsp;   ;>
>&nbsp;   ; &nbsp;> thx guys and keep up the good work
>&nbsp;   ; &nbsp;>
>  ; &nbsp; &nbsp;> Jean-Daniel
>
>  ; &nbsp; ---------------------------------------------------------------------
>&nbsp; &nbsp;  To unsubscribe, e-mail:
> &nbsp;   dev-unsubscribesip-communicator.dev.java.net">dev-unsubscribesip-communicator.dev.java.net
&gt; &nbsp; &nbsp; <mailto: dev-unsubscribesip-communicator.dev.java.net">dev-unsubscribesip-communicator.dev.java.net >
>&nbsp; &nbsp;  For additional commands, e-mail:
&gt; &nbsp; &nbsp; dev-helpsip-communicator.dev.java.net">dev-helpsip-communicator.dev.java.net
&gt; &nbsp; &nbsp; <mailto: dev-helpsip-communicator.dev.java.net"> dev-helpsip-communicator.dev.java.net&gt;
>
>;

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribesip-communicator.dev.java.net"> dev-unsubscribesip-communicator.dev.java.net
For additional commands, e-mail: dev-helpsip-communicator.dev.java.net">dev-helpsip-communicator.dev.java.net


[1-5]

about | contact  Other archives ( Real Estate discussion Medical topics )