Hi. I am also toying with integrating GWT and Ofbiz. Using rpc calls available in Ofbiz (xml, soap or json) does work with GWT with not much problem. My problem is that I dont want to make all the services I need in Ofbiz to be publicly available. Is there a way to make a service available for RPC but would limit it to specific IPs only? Or is my concern unnecessary?
Ian Tabangay On Tue, Jul 21, 2009 at 1:01 AM, Ashish Vijaywargiya < [email protected]> wrote: > I would suggest you to go with a xml-rpc way. > Explore XmlRpcTests.java & XmlRpcClient.java files. > > You can export services to external world by setting service definition > export attribute to true. > Take a look at the service definition "testScv" for more details. > > OFBiz has XML-Rpc client and server inbuilt in it. > So you can see the output generated by XmlRpcTests.java file by following > command on console. > > java -jar ofbiz.jar -test > > Check block : "Running OFBiz Automated Tests" in the below document. > > http://docs.ofbiz.org/display/OFBTECH/Apache+OFBiz+Technical+Production+Setup+Guide > > -- > Ashish
