Folks,

I am looking at ColdSpring documentation for help on this particular topic and found a complete section on Remote Facades. However when I implement that in my coldspring service.xml file, it just doesn't work. Here is a snapshot of xml file

<bean id="testArticleManager" class="somepath.com.TestArticleManager">
</bean>

    <bean id="testArticleManager_Remote" class="coldspring.aop.framework.RemoteFactoryBean ">
        <property name="target">
            <ref bean="testArticleManager" />
        </property>
        <property name="serviceName">
            <value>RemoteTestArticleManager</value>
        </property>
        <property name="relativePath">
            <value>/somepath/com/remote/</value>
        </property>
        <property name="remoteMethodNames">
            <value>get*</value>
        </property>
    </bean>


After this I have created the remote proxy by calling beanFactory.getBean( 'testArticleManager_Remote' ). However now when I try to open that webservice in the url like

http://....../somepath/remote/RemoteTestArticleManager.cfcm?wsdl, I am getting an Axis fault error. I am positive that there is something stupid that I am missing. Any help is appreciated.

Thanks,
Qasim

Reply via email to