Thanks for the update,
Maybe you could write a word in the FAQ?
https://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo
Jacques
devalpatel wrote:
Hi all,
Finally, I have resolved the .Net - ofBiz webservice communication issue by
using following way :
1) In ofBiz, the call for .Net was successful and response also received
successfully.
2) The problem was such that, while calling ofBiz service from .Net
app...the response was recieved was null values. However, the required
task in the ofBiz service was performed. In order to send the response or
success notification to .Net app, i have called another .Net webservice in
ofBiz service implementation. Hence, after performing the task of .Net
request in ofBiz service i send the response to .Net by calling .Net
service.
e.g.
ofBiz service - updateInventory()
.Net service - getUpdateInvNotificationFrmOfbiz()
1) .Net app calls updateInventory().
2) updateInventory {
// perform required task based on received params from .Net req.
//call getUpdateInvNotificationFrmOfbiz().
}
3) ofBiz sends "SUCCESS" as req param to .Net service
getUpdateInvNotificationFrmOfbiz().
This is how the communication achieved.
Regards,
Deval