You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-user@portals.apache.org by Henry Lu <zh...@umich.edu> on 2008/05/14 14:19:59 UTC

wsrp4j current version with spring

I checked the web.xml file in wsrp4j-producer, there are two isteners:

    <listener>
      
<listener-class>org.apache.wsrp4j.producer.provider.pluto.driver.ProviderImpl</listener-class>
    </listener>   

    <listener>
        
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>        

    </listener>

It seems to me that the ProviderImpl works, but the 
ContextLoaderListener never starts.

Any idea to fix?

-Henry

Re: wsrp4j current version with spring

Posted by Elliot Metsger <em...@jhu.edu>.
Henry,

I'm not sure why the spring listener wouldn't be starting.  I'll try to 
replicate the error later this week (I'm out for a couple of days this 
week).

Best,
Elliot

Henry Lu wrote:
> I checked the web.xml file in wsrp4j-producer, there are two isteners:
> 
>    <listener>
>      
> <listener-class>org.apache.wsrp4j.producer.provider.pluto.driver.ProviderImpl</listener-class> 
> 
>    </listener>  
>    <listener>
>        
> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>        
> 
>    </listener>
> 
> It seems to me that the ProviderImpl works, but the 
> ContextLoaderListener never starts.
> 
> Any idea to fix?
> 
> -Henry