Re: pos hangs

2007-09-20 Thread Scott Gray
Sounds like a dialog box problem, I think there's a jira issue for it but I'm on windows and it works fine so can't really help I'm afraid. Regards Scott On 20/09/2007, Samito [EMAIL PROTECTED] wrote: I have had the same problem with Java 1.5 and Java 1.6 with Ubuntu 7.x 'feisty fawn'

Re: Creating a .net webservice.

2007-09-20 Thread Michael Imhof
Hi Christoffer, I can't figure out which direction your problem goes: 1.Calling a .NET SOAP service from OFBIZ? 2.Calling a OFBIZ SOAP service from .NET? To the first case I got no experience. We're using the second case. That means we: * Generate WSDL's out of OFBIZ (even with complex

RE: pos hangs

2007-09-20 Thread [EMAIL PROTECTED]
Get the IBM JVM, you'll be happier. Skip -Original Message- From: Samito [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 19, 2007 8:39 PM To: user@ofbiz.apache.org Subject: Re: pos hangs I have had the same problem with Java 1.5 and Java 1.6 with Ubuntu 7.x 'feisty fawn' This

Re: Creating a .net webservice.

2007-09-20 Thread Christoffer Munck
I michael, thanks for the reply. I'ts option 2, and yes it's complex types that I can't figure out to make work. But I got some other gret links from Jacques, which will help me getting startet with it. Best regards Christoffer On 9/20/07, Michael Imhof [EMAIL PROTECTED] wrote: Hi

Using Basic Authentication with OFBIZ

2007-09-20 Thread Michael Imhof
Following this link: http://www.unix.org.ua/orelly/java-ent/servlet/ch08_01.htm we can extend the OFBIZ SOAPEventHandler to support basic authentication. Add the following code snipped to the start of SOAPEventHandler.invoke(..): Map serviceContext = new HashMap();

Re: Accessing authentication information

2007-09-20 Thread Michael Imhof
Redirect to this post: http://www.nabble.com/Using-Basic-Authentication-with-OFBIZ-tf4487032.html Michael Imhof wrote: The OFBIZ technique to secure external calls is to add login.username and login.password to the parameters. But we don't want to add this additional parameters to every

Unsubribe

2007-09-20 Thread Canh Phan
Boardwalk for $500? In 2007? Ha! Play Monopoly Here and Now (it's updated for today's economy) at Yahoo! Games. http://get.games.yahoo.com/proddesc?gamekey=monopolyherenow

Re: Unsubribe

2007-09-20 Thread Jacques Le Roux
Please do it yourself : http://docs.ofbiz.org/display/OFBADMIN/Mailing+Lists Thanks Jacques De : Canh Phan [EMAIL PROTECTED] Objet : Unsubribe

Re: Contact mechanisms

2007-09-20 Thread Scott.
So any opinion on the idea that would allow us to delete these unconverted prospects? I know that the idea of deleting things is frowned upon but after a couple months, this stuff would be useless I would think. Thanks. BJ Freeman wrote: scott the one I am working on for ofbiz is not

More Ofbiz exposure

2007-09-20 Thread BJ Freeman
Just added Apache Ofbiz to my Elance profile (http://bjfreeman.elance.com) . links back to http://ofbiz.apache.org/ should generate more interest.

Re: More Ofbiz exposure

2007-09-20 Thread Scott Gray
I think this could be the break we've all been waiting for ;-) Scott On 21/09/2007, BJ Freeman [EMAIL PROTECTED] wrote: Just added Apache Ofbiz to my Elance profile (http://bjfreeman.elance.com) . links back to http://ofbiz.apache.org/ should generate more interest.

is classification the best solution

2007-09-20 Thread Case Torres
Hi, I am fairly new to OFBiz and would like some feedback about whether this configuration is the best solution. I have organizations with branch offices and each of those offices have departments. People from those various departments will buy our products. So I want the customer to be

FindBy question

2007-09-20 Thread [EMAIL PROTECTED]
Can anyone tell me if any of the findBy methods using primary keys will return matching records when only the first N bytes match? For example, we have lots of GZ- in the demo Product table. Are there any findBy methods that will return all if I do something like List m = findByxxx(Product,

Re: FindBy question

2007-09-20 Thread Scott Gray
Use the % wildcard List m = findByLike(Product, UtilMisc.toMap(productId, GZ%); or you can use findByAnd with a list of expressions, there are plenty of examples in the code to work from. Regards Scott On 21/09/2007, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Can anyone tell me if any of the