Re: Question on session tracking

2008-11-21 Thread Al Byers
I am able to get around the problem by pulling the JSESSIONID value out of the returned headers and adding it to the second url in the form of "...;jsessionid=...". Setting the return JSESSIONID header to the same header that is returned did not fix the problem. I wonder if it could have something

Re: Using SOAP complex types with OfBiz

2008-11-21 Thread Michael Imhof
Hi Alfredo, we're using successfully arrays of objects in SOAP services. The ObjectType.class in the trunk should support arrays (https://issues.apache.org/jira/browse/OFBIZ-1008). This should work for simple data types. If you're using complex types then it will be more complicated because you

Re: Comparing columns in an entity

2008-11-21 Thread BJ Freeman
Hopefully the people that have done the refactoring will respond. I have never run across the requirement myself. even in SQL. ian tabangay sent the following on 11/20/2008 7:23 PM: > oh ok. thank you for all who responded. > BJ, would you happen to know why this wasnt implemented? > im pretty sur

Re: Comparing columns in an entity

2008-11-21 Thread ian tabangay
I see. thanks. On Fri, Nov 21, 2008 at 6:06 PM, BJ Freeman <[EMAIL PROTECTED]> wrote: > Hopefully the people that have done the refactoring will respond. > I have never run across the requirement myself. > even in SQL.

CheckOutHelper.makeTaxContext .... r718913 goes boooom !!

2008-11-21 Thread Grant Edwards
Hi, Got release 718913 yesterday and have run into the following checkout problems. Seems to be the same problem as described in -> http://www.nabble.com/Re%3A-svn-commit%3A-r713396ofbiz-trunk-applications-product-src-org-ofbiz-product-product-ProductServices.java-to20462557.html#a2050

Re: Comparing columns in an entity

2008-11-21 Thread STELTZLEN Charles
Hi, I'm not sure :-\ but I think it's possible with EntityFieldsValues like new EntityExpr("originFacilityId", EntityOperator.EQUALS, new EntityFieldValue("facilityId")); Isn't it ? ian tabangay a écrit : Hi. How do you do an EntityCondition wherein you need to compare the values of the 2 co

Returns Invoice

2008-11-21 Thread Rees Watkins
Hi An invoice is not generated when do a return using this method: Order ->Returns->create new return But If I do a return by clicking on: Quick Refund Entire Order from within an order then An Invoice is generated. Is there any reason for this difference? Is there a way to get the first m

Re: Question on session tracking

2008-11-21 Thread Adrian Crum
Try using HtmlUnit. -Adrian --- On Thu, 11/20/08, Al Byers <[EMAIL PROTECTED]> wrote: > From: Al Byers <[EMAIL PROTECTED]> > Subject: Question on session tracking > To: user@ofbiz.apache.org > Date: Thursday, November 20, 2008, 11:22 PM > I am working on a plugin for the SeleniumXml tool that B

Re: CheckOutHelper.makeTaxContext .... r718913 goes boooom !!

2008-11-21 Thread Jacques Le Roux
This bug has been fixed in r713396, I suggest to try last revision Jacques From: "Grant Edwards" <[EMAIL PROTECTED]> Hi, Got release 718913 yesterday and have run into the following checkout problems. Seems to be the same problem as described in -> http://www.nabble.com/Re%3A-svn-commit%3

TaxAuthorityRateProduct.minPurchase DB Type Error (r718913)

2008-11-21 Thread Grant Edwards
Hi TaxAuthorityServices.getTaxAdjustments() takes *BigDecimal itemAmount *as one of its parameters and sets it as a condition for delegator.findList("TaxAuthorityRateProduct", .., however minPurchase is defined as a currency-amount (java Double) and as such fails with the error below

DATABASE TYPE ERROR in EntityExpr =-=-=-=-=-=-=-=-= In entity field [TaxAuthorityRateProduct.minPurchase] - r718913

2008-11-21 Thread Grant Edwards
Hi In TaxAuthorityServices.getTaxAdjustments(...) the conditions set on the delegator.findList("TaxAuthorityRateProduct", ) are of type BigDecimal, however the entitymodel for TaxAuthorityRateProduct has minPurchase defined as a currency-amount, java Double. The error seems to make sense

NullPointerException..

2008-11-21 Thread adithi agarwal
Hi Can someone please guess what the problem is.. My  webtools application suddenly shows me an exception when I try to open the webtools main page It says: org.ofbiz.widget.screen.ScreenRenderException: Error rendering screen [component://common/widget/CommonScreens.xml#GlobalDecorator]: java.l

Re: NullPointerException..

2008-11-21 Thread Adrian Crum
Try running ant clean-data and ant run-install. -Adrian --- On Fri, 11/21/08, adithi agarwal <[EMAIL PROTECTED]> wrote: > From: adithi agarwal <[EMAIL PROTECTED]> > Subject: NullPointerException.. > To: "user@ofbiz.apache.org" > Date: Friday, November 21, 2008, 8:08 AM > Hi > > Can someone pl

Re: Array of pojos as an output parameter of an ofbiz service exported via soap

2008-11-21 Thread Alfredo Rueda
Hello Jacques, I'm new to web services so I've researched some information about how to deploy a web service that returns an array of pojos in Axis. There are many tutorials that explain how to accomplish this task, however the problem I'm facing now is that all the tutorials assume that you wil

Re: Using SOAP complex types with OfBiz

2008-11-21 Thread Alfredo Rueda
Hi Michael, I'm sorry but I'm a bit confused. I don't know how to relate the instructions that you provided in the first post to accomplish the task of passing an object as a parameter with the ones that you are pointing now to return an array of objects. In order to return an array of objects, S