I don't think it has to do with the country, the devices probably have a different configuration.
First, you must check a service record with CID = "WPTCP" exists in the troubled devices. Check the UID is the one you are using. For WAP2, it should contain "WAP2".
Second, append the "deviceside" suffix to the URL to make sure it does not attempt to go through other connection mode:
HttpTransport httpTransport = new HttpTransport(requestURL+";deviceside=true;ConnectionUID="+wapuid);
More info: Different ways to make an HTTP or socket connection
UPDATE:
Try this code in the troubled devices:
ConnectionFactory factory = new ConnectionFactory();
factory.setPreferredTransportTypes(new int[]{TransportInfo.TRANSPORT_WAP2});
factory.setDisallowedTransportTypes(new int[]{TransportInfo.TRANSPORT_WAP, TransportInfo.TRANSPORT_BIS_B, TransportInfo.TRANSPORT_MDS, TransportInfo.TRANSPORT_TCP_WIFI, TRANSPORT_TCP_CELLULAR});
ConnectionDescriptor cd = factory.getConnection("http://www.google.com");
HttpConnection httpConnection = (HttpConnection) cd.getConnection();
//Now work with httpConnection as usual.
If it does not work, then you can't open a WAP2 connection for some reason.