|
This is the discussion forum for WSO2 Web Services Framework for Spring (WSO2 WSF / Spring).
A memorial was introduced by Pope Gelasius I in 469 AD but in 1969, it was omitted from the General Roman Calendar.
Hi,
I have a web service package called 'TestService.aar' deployed in 'axis2.war/WEB-INF/services'. Each web-method of my service has following code;
public ClassOne getClassOne () {
ServiceFactory factory = new ServiceFactory();
MyServiceAPI service = (MyServiceAPI) factory.getService() ;
return service.getClassOne();
}
INSTALL.txt says:
3. Add the following line in your application context (WEB-INF/ in this case) and copy the axisConfig.xml to the relevant location
But where does axis2Config.xml come from?
Any suggestions?
Thanks, Steffen
I had deployed the sample application which comes along with WSO2 WSFSpring build zip file. When I try to generate client WSDLe2JAVA throws following error.
Operating System: Windows 7 Home Edition
Tomcat Server 5.5.31
Thanks in Advance,
Vishnu
D:\axis2testclient>WSDL2Java.bat -uri http://localhost:8080/wsf-spring-sample-1.
5/services/TestProductManager?wsdl -p tutorial.client -uw -o d:\axis2testclient
Using AXIS2_HOME: D:\axis2
Using JAVA_HOME: c:\java\jdk1.6
Retrieving document at 'http://localhost:8080/wsf-spring-sample-1.5/services/Tes
tProductManager?wsdl'.
hi there,
I'll try to be as clear as possible in explaining why I want to use Jibx2Wsdl.
I exposed a bean from my applicationContext that connect to a database to retrieve data.
one method uses a class to load a collection from database and return it as a list:
public List getAllinstances() {
return this.getHibernateTemplate().loadAll(Comm.class);
}
When I invoque the service I get the exception "Mapping qname not fond" for the class Comm.
Hi,
I want change default nillable, minOccur/maxOccur for element in WSDL. How can do that.
In my applicationContext.xml I have just :
<bean id="services" class="org.wso2.spring.ws.WebServices">
<property name="services">
<list>
<bean id="creationAbonnement" class="org.wso2.spring.ws.SpringWebService">
Hello,
I am trying to configure jms transport using wsf/spring. In axis2 configuration example it is done this way
<transportReceiver name="jms" class="org.apache.axis2.transport.jms.JMSListener">
<parameter name="default">
<parameter name="java.naming.factory.initial">org.apache.activemq.jndi.ActiveMQInitialContextFactory</parameter>
Hi! I´m new in the JAVA world; I have some days with a problem; I download the WS Framework for made a Web Service with Spring and Axis2; the integration Axis2-Spring is perfect, but when I try to include the Hibernate integration, I receive the next exception: |