Re: Free Shipping?

2010-10-24 Thread Shereen

Thanks Freeman I got your point but still the Ofbiz needs a valid shipping
address even if no shipping is required right?
I think disabling that will require some coding or it's not possible ? will
cause other problems?
you know it's as  if you choose from certain store or catalog then there
will be no shipping at all no need to enter shipping address or so I'll do
some studies and search and if you have further recommendations please tell
me
Regards 
-- 
View this message in context: 
http://ofbiz.135035.n4.nabble.com/Free-Shipping-tp156203p3008991.html
Sent from the OFBiz - User mailing list archive at Nabble.com.


Re: Free Shipping?

2010-10-24 Thread Jacques Le Roux

I think you are looking for the face to face feature in OFBiz.

Set the ProductStore/Inventory/Is Immediately Fulfilled field to Y

Your store will then behave like a POS.

Jacques

From: Shereen sheri_ash...@hotmail.com

Thanks Freeman I got your point but still the Ofbiz needs a valid shipping
address even if no shipping is required right?
I think disabling that will require some coding or it's not possible ? will
cause other problems?
you know it's as  if you choose from certain store or catalog then there
will be no shipping at all no need to enter shipping address or so I'll do
some studies and search and if you have further recommendations please tell
me
Regards 
--

View this message in context: 
http://ofbiz.135035.n4.nabble.com/Free-Shipping-tp156203p3008991.html
Sent from the OFBiz - User mailing list archive at Nabble.com.





xmlrpc f

2010-10-24 Thread Muhammad Aamir
Hello,

I am trying to access a service from a standalone Java program. I am able to
execute the service, however I am facing problem in getting the response
back. In following example, it does execute the service but returns empty
Map as result.

XmlRpcClient c = new XmlRpcClient();
  XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
  config.setServerURL(new URL(http://localhost:8080/webtools/control/xmlrpc
));
  c.setConfig(config);

  Object[] params = new Object[1];
   Map p = new HashMap();
  p.put(login.username, admin);
  p.put(login.password,ofbiz);
  params[0] = p;

  Map result =  (Map)c.execute(userLogin, params);
   System.out.println(result);
   System.out.println(result.keySet().size());

When I tried to execute another service that I developed, it was successful
except an exception in returning the result. Exception was something like
following:

Outgoing result (in runSync : createSysUser) does not match expected
requirements (Unknown parameter found: [createSysUser.newUserLogin])

Regards
Muhammed Aamir


xmlrpc and standalone java program

2010-10-24 Thread Muhammad Aamir
Hello,

I am trying to access a service from a standalone Java program. I am able to
execute the service, however I am facing problem in getting the response
back. In following example, it does execute the service but returns empty
Map as result.

XmlRpcClient c = new XmlRpcClient();
  XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
  config.setServerURL(new URL(http://localhost:8080/webtools/control/xmlrpc
));
  c.setConfig(config);

  Object[] params = new Object[1];
   Map p = new HashMap();
  p.put(login.username, admin);
  p.put(login.password,ofbiz);
  params[0] = p;

  Map result =  (Map)c.execute(userLogin, params);
   System.out.println(result);
   System.out.println(result.keySet().size());

When I tried to execute another service that I developed, it was successful
except an exception in returning the result. Exception was something like
following:

Outgoing result (in runSync : createSysUser) does not match expected
requirements (Unknown parameter found: [createSysUser.newUserLogin])

Regards
Muhammed Aamir