RE: Ofbiz Service as Webservice - Need Help

2010-10-27 Thread Deepa Priolkar
Hi Chirag, I haven’t tried with the SOAP UI, but the issue with my case is when I am trying to invoke the service, the call comes to SOAPClientEngine, but then it goes in infinite loop which I am not able to understand.. can you please give me some leads to fix this issue... -Original

Re: Ofbiz Service as Webservice - Need Help

2010-10-27 Thread Chirag Manocha
This means that its coming to OFBiz and you can trace by putting logs or debug mode that why its getting in the infinite loop. Right ? I also have to check this. Regards -- Chirag Manocha Emforium Software Pvt. Ltd. | ALL-IN Software +91-98735-47457 | +91-98263-19099 Please don't print

RE: Ofbiz Service as Webservice - Need Help

2010-10-27 Thread Deepa Priolkar
Hi Chirag, This is fixed now.. the issue was I calling back the same soap service, instead of forwarding the request to another service.. Now I have one questions.. is it possible to map one of the input parameter as user defined object.. something like service name=updateScanResult

RE: Ofbiz Service as Webservice - Need Help

2010-10-27 Thread Deepa Priolkar
When I am trying to export the service as a wsdl it gives an error.. so not sure if we can have userdefined object for the service which is exposed as webservice.. please advice. WSDLException: faultCode=OTHER_ERROR: Service cannot be described with WSDL (scanResult /

Re: Getting an OrderPaymentPreference in orderinfo.ftl

2010-10-27 Thread BJ Freeman
this feature is already in Ofbiz. if you are following the order flow you should not have to do anything. = BJ Freeman Strategic Power Office with Supplier Automation http://www.businessesnetwork.com/automation/viewforum.php?f=52 Specialtymarket.com

Check on party fields from ftl files

2010-10-27 Thread Shereen
Hi all I'm new to freemarker and I want to do some checking in the orderinfo.ftl I want to get the customer for the order then check on certain field in the that customer In more detailes I've added a field to the party called requirePrepayment now I want in the orderinfo.ftl to know the

Re: Getting an OrderPaymentPreference in orderinfo.ftl

2010-10-27 Thread Shereen
I now this feature in ofbiz I've seen the tables and the records I just want be able to do any checking I like in my ftl files for more cutomization I'm also facing another proble of getting entities and check on their fields I've mentioned that in separate topic Thanks a lot for your reply --

Re: Check on party fields from ftl files

2010-10-27 Thread BJ Freeman
when you do a view, a groovy file marshals data and passed to ftl and/or widgets, as defined in the view. if the screen is a widget the Groovy many be declared in the Actions section. if just ftl, as defined in the view, then the groovy file with the same name is usually in /WEB-INF/actions

Re: Check on party fields from ftl files

2010-10-27 Thread Shereen
It wil be the first time ever I use the groovy. But I'll follow your advice and try this but meanwhile I'll try also to do it using the ftl That's what I've done till now: #assign orh = Static[org.ofbiz.order.order.OrderReadHelper].getHelper(orderHeader) #assign billToParty =

Re: Check on party fields from ftl files

2010-10-27 Thread BJ Freeman
Sorry I use the flow I talked to you about. so all that is done in the Groovy. maybe someone else will give you an answer. = BJ Freeman Strategic Power Office with Supplier Automation http://www.businessesnetwork.com/automation/viewforum.php?f=52 Specialtymarket.com

Fetch entities via RMI

2010-10-27 Thread Rene Scheibe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 If I have an app that is not having an OFBiz delegator because it is communicating with OFBiz via RMI, is there a service one can expose to fetch OFBiz GenericEntities remotely? Cheers, René - -- René Scheibe * rene.sche...@tngtech.com TNG

Re: Check on party fields from ftl files

2010-10-27 Thread BJ Freeman
take a look at applications\party\webapp\partymgr\WEB-INF\actions\party = BJ Freeman Strategic Power Office with Supplier Automation http://www.businessesnetwork.com/automation/viewforum.php?f=52 Specialtymarket.com http://www.specialtymarket.com/ Systems Integrator--

Re: Getting an OrderPaymentPreference in orderinfo.ftl

2010-10-27 Thread Scott Gray
In general you should avoid putting too much logic in your ftl files and instead prepare the data in groovy scripts at the screen level. Freemarker doesn't have a huge amount of scripting support and you'll have a much better time using groovy scripts. Regards Scott HotWax Media