<%@ page import="java.net.*,java.io.*,java.util.*" %><%! public boolean vservSPC(String vservMsisdn, String vservMarkup, boolean vservTestMode, String vservZoneIds, HttpServletRequest request, PageContext pageContext){ try{ StringBuffer vservParams = new StringBuffer(); vservParams.append("vr").append("=").append(URLEncoder.encode("1.1.0-spc_java14-20101025")).append("&"); vservParams.append("tm").append("=").append(URLEncoder.encode(""+vservTestMode)).append("&"); vservParams.append("ml").append("=").append(URLEncoder.encode(vservMarkup)).append("&"); vservParams.append("si").append("=").append(URLEncoder.encode(request.getSession() == null ? "" : request.getSession().getId())).append("&"); vservParams.append("mo").append("=").append(URLEncoder.encode(vservMsisdn)).append("&"); vservParams.append("ip").append("=").append(URLEncoder.encode(request.getRemoteAddr())).append("&"); vservParams.append("ff").append("=").append(URLEncoder.encode(request.getHeader("x-forwarded-for")==null?"":request.getHeader("x-forwarded-for"))).append("&"); vservParams.append("hv").append("=").append(URLEncoder.encode(request.getHeader("via")==null?"":request.getHeader("via"))).append("&"); vservParams.append("ht").append("=").append(URLEncoder.encode(request.getHeader("host"))).append("&"); vservParams.append("ru").append("=").append(URLEncoder.encode(request.getRequestURI())).append("&"); vservParams.append("ua").append("=").append(URLEncoder.encode(request.getHeader("user-agent"))).append("&"); vservParams.append("ou").append("=").append(URLEncoder.encode(request.getHeader("x-operamini-phone-ua")==null?"":request.getHeader("x-operamini-phone-ua"))).append("&"); vservParams.append("up").append("=").append(URLEncoder.encode(request.getHeader("x-wap-profile") == null ? "" : request.getHeader("x-wap-profile"))).append("&"); List vservNotToLog = Arrays.asList(new String[]{"PRAGMA","CACHE-CONTROL","CONNECTION","KEEP_ALIVE"}); Enumeration vservEnumeration = request.getHeaderNames(); while (vservEnumeration.hasMoreElements()) { String vservHeaderName=(String)vservEnumeration.nextElement(); if (!vservNotToLog.contains(vservHeaderName.toUpperCase())) vservParams.append(URLEncoder.encode("hd["+vservHeaderName+"]")).append("=").append(URLEncoder.encode(request.getHeader(vservHeaderName))).append("&"); } vservParams.append("zones").append("=").append(vservZoneIds); String vservContext=""; if(pageContext.getAttribute("x_vserv_context",PageContext.PAGE_SCOPE) != null) vservContext = (String)pageContext.getAttribute("x_vserv_context",PageContext.PAGE_SCOPE); URL vservUrl = new URL("http://rq.vserv.mobi/delivery/adapi.php?"+vservZoneIds); HttpURLConnection vservConnection = (HttpURLConnection)vservUrl.openConnection(); vservConnection.setRequestMethod("POST"); vservConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); vservConnection.setRequestProperty("Content-Length", Integer.toString(vservParams.toString().getBytes().length)); vservConnection.setRequestProperty("Content-Language", "en-US"); if(vservContext != null && !vservContext.trim().equals("")) vservConnection.setRequestProperty("X-VSERV-CONTEXT", vservContext); vservConnection.setConnectTimeout(5000); vservConnection.setReadTimeout(7000); vservConnection.setUseCaches (false); vservConnection.setDoInput(true); vservConnection.setDoOutput(true); DataOutputStream vservWr = new DataOutputStream (vservConnection.getOutputStream()); vservWr.writeBytes(vservParams.toString()); vservWr.flush(); vservWr.close(); BufferedReader vservAdRB = null; vservAdRB = new BufferedReader (new InputStreamReader(vservConnection.getInputStream())); StringBuffer vservDestStr = new StringBuffer(); String vservInputLine = ""; while ((vservInputLine = vservAdRB.readLine())!= null){ vservDestStr.append(vservInputLine); } if(vservConnection.getHeaderField("X-VSERV-CONTEXT") != null) pageContext.setAttribute("x_vserv_context",vservConnection.getHeaderField("X-VSERV-CONTEXT"),PageContext.PAGE_SCOPE); String vservRawOutput = vservDestStr.toString(); if(vservRawOutput == null && vservRawOutput.length()==0) return false; String[] vservAds; if (vservRawOutput.indexOf("") != -1){ vservAds = vservRawOutput.split(""); }else{ vservAds = new String[1]; vservAds[0] = vservRawOutput; } //feed zone-ads in context String[] vservAd; for(int i=0;i"); int zoneCount = 1; String countKey = "vserv_"+vservAd[0].trim()+"_count"; if(pageContext.getAttribute(countKey,PageContext.PAGE_SCOPE) !=null && pageContext.getAttribute(countKey,PageContext.PAGE_SCOPE) != ""){ String value = pageContext.getAttribute(countKey,PageContext.PAGE_SCOPE).toString(); zoneCount = Integer.parseInt(value) + 1; pageContext.setAttribute(countKey,""+zoneCount,PageContext.PAGE_SCOPE); }else{ pageContext.setAttribute(countKey,""+zoneCount,PageContext.PAGE_SCOPE); } pageContext.setAttribute("vserv_"+vservAd[0].trim()+"_"+zoneCount,(vservAd.length>1)?vservAd[1].trim():"",PageContext.PAGE_SCOPE); } return true; }catch(Exception e){ return false; } } public String vservGetAd(String zoneid,PageContext pageContext){ try{ String counterKey = "vserv_" + zoneid + "_counter"; int zoneCounter = 1; if(pageContext.getAttribute(counterKey,PageContext.PAGE_SCOPE) != null && pageContext.getAttribute(counterKey,PageContext.PAGE_SCOPE) != ""){ String value = (String) pageContext.getAttribute(counterKey,PageContext.PAGE_SCOPE); zoneCounter = Integer.parseInt(value) + 1; pageContext.setAttribute(counterKey,zoneCounter+"",PageContext.PAGE_SCOPE); }else{ pageContext.setAttribute(counterKey,zoneCounter+"",PageContext.PAGE_SCOPE); } String adKey = "vserv_" + zoneid + "_" + zoneCounter; if(pageContext.getAttribute(adKey,PageContext.PAGE_SCOPE) != null && pageContext.getAttribute(adKey,PageContext.PAGE_SCOPE) != ""){ return (String) pageContext.getAttribute(adKey,PageContext.PAGE_SCOPE); } return ""; }catch(Exception e){ return ""; } } %> <% //Set vservTestMode to true for testing try{ String vservMsisdn = ""; String vservMarkup = "xhtml"; boolean vservTestMode = false; //To request Ads For More Than one Zone, Pass Comma Seperated Zoneids In vservZoneids variable eg. vservZoneids="1,2,3"; String vservZoneIds = "1f2ebef1"; boolean vservFlag = vservSPC(vservMsisdn, vservMarkup, vservTestMode, vservZoneIds, request, pageContext); pageContext.setAttribute("vservAdFlag",new Boolean(vservFlag),PageContext.PAGE_SCOPE); //To retrive Ads For Zoneid Call below if block with appropriate zoneid if(pageContext.getAttribute("vservAdFlag",PageContext.PAGE_SCOPE) != null){ boolean vservShowAdFlag = ((Boolean)pageContext.getAttribute("vservAdFlag",PageContext.PAGE_SCOPE)).booleanValue(); if(vservShowAdFlag==true){ out.print(vservGetAd("1f2ebef1",pageContext)); } } }catch(Exception e){ } %>

Tuesday, February 9, 2016

products on AMAZON site.. fake or real . ???

If you do a quick search with Google and type in “Does Amazon Sell Fake Products”, you can easily find 20+ complaints from Amazon customers about their experiences with buying fake goods sold on Amazon.com.
This is one of dozens of credible complaints that I found on one of the Amazons discussion boards about fake products being sold on Amazon.
Posted on Apr 10, 2013 7:06:18 AM PDT
Lara says:
I visited with a friend this weekend who sells consumer electronic accessories through Amazon. They have spent the last nine months in battle with Amazon to get them to stop selling counterfeits on their products. They did the investigations and brought the offending distributors to Amazon’s attention. Amazon refused to do anything. Doing their research by ordering as secret shoppers, they discovered that over 70% – that’s OVER SEVENTY PERCENT – of their product sold on Amazon by third-party sellers was counterfeit. Only when they filed a lawsuit did Amazon BEGIN to cooperate with them. BUYER BEWARE.
The above post states that 70% of the products sold by Amazon Third-Party Sellers are counterfeit.
If you’re scratching your head and thinking, “what’s a Third-Party Seller” let me briefly explain it to you.
3rd Party Seller’s are independent sellers who offer a variety of new, used, refurbished, and collectible merchandise. These can be brand name products, or unbranded goods bought at wholesale from factories.
Now 70% is a high number of counterfeits in the Amazon marketplace, but it’s also understandable..
You see, if you’re a third party seller, it’s a challenge to find new products to sell online. You can sell generic products that can be imported from places like Alibaba or Aliexpress.
You can also sell used items or extra stuff you’ve got hanging around collecting dust.
But many of Amazon’s 3rd Party Sellers end up buying knockoffs from Chinese companies like Aliexpress.com.
The fact of the matter is that there are tons of counterfeit products sold on Amazon everyday, most come from 3rd party sellers that buy their products directly from China.

How Do Fake Products Get Into Amazon?


Setting up an Amazon third-party seller account is easy and anyone in the world can do it. And if you know anything about China’s ability to copy and replicate brand name products, then the picture becomes clear.
China is incredibly gifted at copying whatever product they can get their hands on. Once they get a hold of a molding for say, an iPhone Case, they can replicate that product almost perfectly.

Want to Become a Power Seller on AMAZON Click Here For More Info

And they care absolutely nothing about US copyright laws or restrictions. Big surprise there, huh?

Does Amazon Support Selling Fake Products?


I would think not. But it’s tough to say after reading so many complaints. There are numerous stories about people reporting counterfeit products to Amazon and ranting about Amazon’s lack of effort to reconcile the situation.Amazon packaging photo
I personally have used Amazon for years and one time had a fake camera sent to me.
I complained about it and Amazon immediately refunded my money and the seller just told me to keep the camera.
When I called Amazon’s support line about this issue recently, they clearly stated that they do not support selling counterfeit products.
But, “Generic” products can be sold if sold correctly. Huh?
As long as the products are labeled correctly and doesn’t violate copyright restrictions, you can sell them legally on Amazon.
It’s called selling private label products, you can read more about importing and selling on Amazon’s FBA program right here.
What are copyright restrictions? Use of brand name, trademarks, and photos in the advertisement of the Generic Product.
Look at this ad below. This is an ad for a brand name cell phone case made for iPhone 5.
It’s called Lunatik Taktik Extreme. It’s a military case that has Gorilla Glass and a protective matrix system that provides incredible protection for your iPhone.
It normally sells for $100 to $120 USD directly from the original manufacturer, Lunatik.

This ad is a perfect example of a counterfeit product that is being sold today on Amazon.

There are easily 3 copyright violations in plain view

How do I know it’s a fake?
Well, the dead giveaway is that the product is sold by Generic. Also, look at the price of $24.83. That’s about 80% off of the retail price. Sounds too good to be true? It is!
Now look at the Yellow highlighted sections. These are clear copyright violations using the Lunatik Taktik name and the trademark name of Gorilla Glass. Plus they are using a copied picture from Google images.
Amazon Fake Product Example Photo
Click To Enlarge

Do You Care About Buying Fake Products


The reality is (from the consumer’s perspective), there is nothing wrong with generic products in the marketplace. That is to say, if they are sold honestly as a generic product. They can actually help the consumer save quite a bit of money.
airbnb
If You’re Not Using Airbnb For Your Travel Adventures, It’s Time To Get Started. Here’s $25 Dollars Off Your Next Stay
Many times generic products cost 50-80% less than the original brand name and perform exactly the same as the real thing.
In the ad listed above, the seller has a 3.5 seller rating. It’s not the best but after reviewing 22 customer reviews, he’s got 13 great reviews and 3 that are poor. Take a look at his two most helpful reviews.
 Amazon Review of Fake ProductConfirmation Review that Amazon Sells Fake Products
Most buyers don’t really care about a brand name when it comes down to it.
The real issue is how does the product perform. If it functions exactly like the brand name version, do you really care? Especially if you’re getting the product at a 70% – 80% discount.
If you have an opinion about this subject, please leave a comment below, I’d love to get your take on the subject.
Do you really care about getting a fake Gucci Bag for 150 dollars? Especially if it looks and performs exactly like the original Gucci Bag that costs $600 dollars. It just depends on who you are. My guess is that most people would choose the knock off bag and save $450 bucks.
But if the product is inferior and doesn’t perform as expected, most people are pretty upset about this, and for good reason..
Now Amazon is awesome about protecting their buyers. So if a problem arises, they will refund your money and hold the third-party seller responsible.
But who wants to go through this type of buying experience? Kind of a pain in ###, wouldn’t you say?

Want to Sell Brand Name AMAZON Products Without Risk?

Click Here to Learn More

5 Tips to Avoid Buying a Fake Product on Amazon


Once you’ve spent about a 1,000 hours on Amazon like I have, it’s pretty easy to spot the Fakes from real Brand Name Products.
Here’s some tips to improve your chances of not accidentally purchasing a counterfeit product on Amazon.
1). Where is the seller shipping the product from?
If it’s a brand name product, then it usually is going to be shipped within the US (that is if you’re buying from a branch within the United States).
Most brand name companies use logistic companies or have their own storage warehouses here in the United States. So if the product is beingshipped directly from China, you know that it’s a fake.
2). If the price is significantly less than the known retail price, be suspicious.
Unless the item is being sold as used, if the price is 30% – 80% less, keep on investigating.
3). What’s the seller’s rating?
Go into the seller’s profile and see what past buyers have to say about the particular seller.
4). What are the customer reviews of the product?
People (for the most part) are honest on Amazon. Check out what they have to say about the product. Maybe it’s a good quality fake. People will put that down if it’s the truth.
5). Read through the entire ad.
I see many third-party sellers on Amazon that use a brand name in the title of their listing. But then in their product description, they state the product is generic.
If you see Generic anywhere in the ad, then you know it’s not a brand name product. Also, Compares To… is another dead giveaway.

Click Here To Get Real Brand Name Amazon Products

Conclusion


I hope this article has improved your awareness regarding the prevalence of fake products that are sold on Amazon.
And I also hope I didn’t scare too many people from shopping with Amazon because they do offer excellent buyer support and great products.
Most of the problems that occur with counterfeit products are from third-party sellers, not Amazon itself.
Hopefully you are now better prepared to spot a fake product so that you can have greater confidence in your online buying experience.
With such a large selling platform that Amazon provides, it seems impossible for Amazon to police all the activity that occurs by third-party sellers.
If you want to sell products on Amazon to make money online, it’s an awesome gig if you’ve got the products. If you want to become an honest 3rd Party Amazon Seller, you can get training right here.

Want To Sell On Amazon Without ANY RISK?


The problem that I see with importation and selling on Amazon are expensive importation costs, the length of time to establish a good relationship with your suppliers, and then get your products through customs and into the Amazon market place.
It can happen, but it takes patience and time.
Personally, for me, I wanted to work online but didn’t want the stress of dealing with customs, buying in large quantities of inventory, paying storage fees, and having to constantly check the quality control of my products.
But I wanted to be able to work online.
I eventually found an easier way to sell products online, including from Amazon themselves, and not the fakes but the real Brand Name Products.
If you want to do the same thing, i.e., sell brand name products without the risk of buying inventory or dealing with customers, click here and learn how I got started.

Saturday, January 30, 2016

Tips for Safe Online Shopping

Here are 11 tips for staying safe online, so you can start checking off items on that holiday shopping list.
1. Use Familiar Websites
Start at a trusted site rather than shopping with a search engine. Search results can be rigged to lead you astray, especially when you drift past the first few pages of links. If you know the site, chances are it's less likely to be a rip off. We all know Amazon.com and that it carries everything under the sun; likewise, just about every major retail outlet has an online store, from Target to Best Buy to Home Depot. Beware of misspellings or sites using a different top-level domain (.net instead of .com, for example)—those are the oldest tricks in the book. Yes, the sales on these sites might look enticing, but that's how they trick you into giving up your info.
2. Look for the Lock
Never ever, ever buy anything online using your credit card from a site that doesn't have SSL (secure sockets layer) encryption installed—at the very least. You'll know if the site has SSL because the URL for the site will start with HTTPS:// (instead of just HTTP://). An icon of a locked padlock will appear, typically in the status bar at the bottom of your web browser, or right next to the URL in the address bar. It depends on your browser.
Never, ever give anyone your credit card over email. Ever.
3. Don't Tell All
No online shopping store needs your social security number or your birthday to do business. However, if crooks get them, combined with your credit card number for purchases, they can do a lot of damage. The more they know, the easier it is to steal your identity. When possible, default to giving up the least amount of information.
4. Check Statements
Don't wait for your bill to come at the end of the month. Go online regularly during the holiday season and look at electronic statements for your credit card, debit card, and checking accounts. Make sure you don't see any fraudulent charges, even originating from sites like PayPal. (After all, there's more than one way to get to your money.)
If you do see something wrong, pick up the phone to address the matter quickly. In the case of credit cards, pay the bill only once you know all your charges are accurate. You have 30 days to notify the bank or card issuer of problems, however; after that, you might be liable for the charges anyway.

5. Use Strong Passwords
We like to beat this dead horse about making sure to utilize uncrackable passwords, but it's never more important than when banking and shopping online. Our tips for creating a unique password can come in handy during a time of year when shopping around probably means creating new accounts on all sorts of e-commerce sites.
6. Think Mobile
The National Retail Federation says that 5.7 percent of adults will use their mobile devices to do comparison shopping before making a purchase. (And 32.1 percent will comparison shop online with a computer, as well.) There's no real need to be any more nervous about shopping on a mobile device than online. The trick is to use apps provided directly by the retailers, like Amazon, Target, etc. Use the apps to find what you want and then make the purchase directly, without going to the store or the website. (For more complete information, be sure to also read our tips for shopping safely on a mobile device.)
7. Avoid Public Terminals
Hopefully we don't have to tell you it's a bad idea to use a public computer to make purchases, but we still will. If you do, just remember to log out every time you use a public terminal, even if you were just checking email.
What about using your own laptop to shop while you're out? It's one thing to hand over a credit card to get swiped at the checkout, but when you must enter the number and expiration date on a website while sitting in a public cafe, you're giving an over-the-shoulder snooper plenty of time to see the goods. At the very least, think like a gangster: Sit in the back, facing the door.
8. Privatize Your Wi-Fi
If you do decide to go out with the laptop to shop, you'll need a Wi-Fi connection. Only use the wireless if you access the Web over a virtual private network (VPN) connection. If you don't get one from your employer, you can set up a free one with AnchorFree Hotspot Shield, if you're willing to put up with the ads, or pay $4.99 a month or $44.99 a year to skip the ads. There's even an iOS app version of Hotspot Shield, but that will cost you $.99 per month or $9.99 a year after the first seven days.
By the way, now is not a good time to try out a hotspot you're unfamiliar with. Stick to known networks, even if they're free, like those found at Starbucks or Barnes & Noble stores that is powered by AT&T. Look for the network named "attwifi," then open a browser to click into the "walled garden" to get final access. You can also find free Wi-Fi at McDonalds, Panera Bread, and FedEx Office locations, not to mention libraries and local cafes.
10. Count the Cards
Gift cards are the most requested holiday gift every year, and this year will be no exception. Stick to the source when you buy one; scammers like to auction off gift cards on sites like eBay with little or no funds on them.