I did try following , it returned be true. but it is not showing up in the admin catalog
WebServices3SoapClient ws = new WebServices3SoapClient(); AuthenticationToken token = ws.Login("xxxxxxxxxxxx", "xxxxxxxxxxxxx");
Product product = new Product();
product.Sku = "gksku123";
product.ProductName = "gktest123";
product.SitePrice = 4.95m;
// insert new product into database
bool created = ws.Catalog_InternalProduct_Insert(ref token, product);
// retrieve new product from database
product = ws.Catalog_InternalProduct_FindBySku(ref token, "123");
product.ShippingWeight = 2.5m;
// update product
bool updated = ws.Catalog_InternalProduct_Update(ref token, product);
Edited by user Monday, August 18, 2014 10:34:12 AM(UTC)
| Reason: Not specified