Hi,
I recently came across Webslinger framework which I think is based upon OFBiz. I want to explore it more as it has lots if technologies and seems pretty exciting but the website (webslinger.org) has nothing in it to start apart from the trunk code. If anybody can help me start. Regards, Kaushik |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1 if you can not get it to work, i suggest you contact them. ofbiz OOTB works. Kaushik Chakraborty sent the following on 2/27/2009 5:36 AM: > Hi, > > I recently came across Webslinger framework which I think is based upon > OFBiz. I want to explore it more as it has lots if technologies and seems > pretty exciting but the website (webslinger.org) has nothing in it to start > apart from the trunk code. > If anybody can help me start. > > Regards, > Kaushik > Version: GnuPG v1.4.6 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJqCIorP3NbaWWqE4RAo9CAJsHbpvFIqHB1esbhSaq5a+Q3yGW2wCeNiC8 gWEftkxN7P4RYL+JCTnv//M= =UK9E -----END PGP SIGNATURE----- |
I tried to connect the SVN trunk and download the code but its showing
access denied error. And moreover there is no contact address as well in the website. Regards, Kaushik On Fri, Feb 27, 2009 at 10:56 PM, BJ Freeman <[hidden email]> wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > if you can not get it to work, i suggest you contact them. > ofbiz OOTB works. > > Kaushik Chakraborty sent the following on 2/27/2009 5:36 AM: > > Hi, > > > > I recently came across Webslinger framework which I think is based upon > > OFBiz. I want to explore it more as it has lots if technologies and seems > > pretty exciting but the website (webslinger.org) has nothing in it to > start > > apart from the trunk code. > > If anybody can help me start. > > > > Regards, > > Kaushik > > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.6 (MingW32) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFJqCIorP3NbaWWqE4RAo9CAJsHbpvFIqHB1esbhSaq5a+Q3yGW2wCeNiC8 > gWEftkxN7P4RYL+JCTnv//M= > =UK9E > -----END PGP SIGNATURE----- > |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1 Then connect to the ofbiz svn you can download the trunk or release4.0 http://ofbiz.apache.org/ look under Download OfBiz Kaushik Chakraborty sent the following on 2/27/2009 10:18 AM: > I tried to connect the SVN trunk and download the code but its showing > access denied error. And moreover there is no contact address as well in the > website. > > > Regards, > Kaushik > > > On Fri, Feb 27, 2009 at 10:56 PM, BJ Freeman <[hidden email]> wrote: > > if you can not get it to work, i suggest you contact them. > ofbiz OOTB works. > > Kaushik Chakraborty sent the following on 2/27/2009 5:36 AM: >>>> Hi, >>>> >>>> I recently came across Webslinger framework which I think is based upon >>>> OFBiz. I want to explore it more as it has lots if technologies and seems >>>> pretty exciting but the website (webslinger.org) has nothing in it to > start >>>> apart from the trunk code. >>>> If anybody can help me start. >>>> >>>> Regards, >>>> Kaushik >>>> >> -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJqDe5rP3NbaWWqE4RAtJiAKC8NIOsQFFmw+J3qcB9C4yTq7qr1ACggtbC U3tHE4GgupcQFqQH1TET1MM= =K2oW -----END PGP SIGNATURE----- |
BJ, I think Kaushik is looking for information on how to get Webslinger, not how to get OFBiz. The suggestion to contact the people behind Webslinger are Brainfood, and they're great people to work with. Webslinger is not part of OFBiz, though it is made to work with it. The Brainfood folks (especially Ean Schuessler and Adam Heath) have presented about it at a couple of OFBiz events, including the recent ApacheCon. There has been discussion about getting this back into OFBiz, but that hasn't happened yet so it is still a separate project. -David On Feb 27, 2009, at 11:58 AM, BJ Freeman wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Then connect to the ofbiz svn > you can download the trunk or release4.0 > http://ofbiz.apache.org/ > look under Download OfBiz > > Kaushik Chakraborty sent the following on 2/27/2009 10:18 AM: >> I tried to connect the SVN trunk and download the code but its >> showing >> access denied error. And moreover there is no contact address as >> well in the >> website. >> >> >> Regards, >> Kaushik >> >> >> On Fri, Feb 27, 2009 at 10:56 PM, BJ Freeman <[hidden email]> >> wrote: >> >> if you can not get it to work, i suggest you contact them. >> ofbiz OOTB works. >> >> Kaushik Chakraborty sent the following on 2/27/2009 5:36 AM: >>>>> Hi, >>>>> >>>>> I recently came across Webslinger framework which I think is >>>>> based upon >>>>> OFBiz. I want to explore it more as it has lots if technologies >>>>> and seems >>>>> pretty exciting but the website (webslinger.org) has nothing in >>>>> it to >> start >>>>> apart from the trunk code. >>>>> If anybody can help me start. >>>>> >>>>> Regards, >>>>> Kaushik >>>>> >>> > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.6 (MingW32) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFJqDe5rP3NbaWWqE4RAtJiAKC8NIOsQFFmw+J3qcB9C4yTq7qr1ACggtbC > U3tHE4GgupcQFqQH1TET1MM= > =K2oW > -----END PGP SIGNATURE----- |
All,
I am extending findOrders (OrderLookupServices) by adding OrderAttribute and Payment as searchable entities. The OrderAttribute works as expected // search by child name if (UtilValidate.isNotEmpty(childName)) { dve.addMemberEntity("OA", "OrderAttribute"); dve.addAlias("OA", "attrValue"); dve.addViewLink("OH", "OA", Boolean.FALSE, UtilMisc.toList(new ModelKeyMap("orderId", "orderId"))); paramList.add("attrValue=" + childName); conditions.add(makeExpr("attrValue", childName)); } but // search by payment ref number if (UtilValidate.isNotEmpty(paymentRefNum)) { dve.addMemberEntity("PT", "Payment"); dve.addAlias("PT", "paymentRefNum"); dve.addViewLink("OP", "PT", Boolean.FALSE, UtilMisc.toList(new ModelKeyMap("orderPaymentPreferenceId", "paymentPreferenceId"))); paramList.add("paymentRefNum=" + paymentRefNum); conditions.add(makeExpr("paymentRefNum", paymentRefNum)); } returns message ..orderPaymentPreferenceId does not exist on the Payment entity. Note: this is the case where fields with matching content (orderPaymentPreferenceId & paymentPreferenceId) have different names. I am stuck with this otherwise piece of art code. Please help. Jacek |
In reply to this post by David E Jones-3
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1 Ok I went to the site and only and email address. the two they have on the site as partners one is non existant so thanks for the update David E Jones sent the following on 2/27/2009 1:26 PM: > > BJ, I think Kaushik is looking for information on how to get Webslinger, > not how to get OFBiz. > > The suggestion to contact the people behind Webslinger are Brainfood, > and they're great people to work with. > > Webslinger is not part of OFBiz, though it is made to work with it. The > Brainfood folks (especially Ean Schuessler and Adam Heath) have > presented about it at a couple of OFBiz events, including the recent > ApacheCon. There has been discussion about getting this back into OFBiz, > but that hasn't happened yet so it is still a separate project. > > -David > > > On Feb 27, 2009, at 11:58 AM, BJ Freeman wrote: > > Then connect to the ofbiz svn > you can download the trunk or release4.0 > http://ofbiz.apache.org/ > look under Download OfBiz > > Kaushik Chakraborty sent the following on 2/27/2009 10:18 AM: >>>> I tried to connect the SVN trunk and download the code but its showing >>>> access denied error. And moreover there is no contact address as well >>>> in the >>>> website. >>>> >>>> >>>> Regards, >>>> Kaushik >>>> >>>> >>>> On Fri, Feb 27, 2009 at 10:56 PM, BJ Freeman <[hidden email]> >>>> wrote: >>>> >>>> if you can not get it to work, i suggest you contact them. >>>> ofbiz OOTB works. >>>> >>>> Kaushik Chakraborty sent the following on 2/27/2009 5:36 AM: >>>>>>> Hi, >>>>>>> >>>>>>> I recently came across Webslinger framework which I think is based >>>>>>> upon >>>>>>> OFBiz. I want to explore it more as it has lots if technologies >>>>>>> and seems >>>>>>> pretty exciting but the website (webslinger.org) has nothing in it to >>>> start >>>>>>> apart from the trunk code. >>>>>>> If anybody can help me start. >>>>>>> >>>>>>> Regards, >>>>>>> Kaushik >>>>>>> >>>>> > Version: GnuPG v1.4.6 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJqGM7rP3NbaWWqE4RAhnDAJ9PhVXWjqWnxEsSUpw+7O+PVvJVmACfRxfw kFeVQue8GGovoD4TQAHI2mE= =nUOB -----END PGP SIGNATURE----- |
Free forum by Nabble | Edit this page |