It seems to me that Javas "NetworkInterface" isn't supported on GoogleAppEngine - not a surprise I guess given the limited Java .net support on GAE. I do however want to use the BSON Java library to covert my string to a BSON object (ObjectID). The problem is that it uses the below as part of the generation of the ObjectId:
StringBuilder sb = new StringBuilder();
Enumeration<NetworkInterface> e = NetworkInterface.getNetworkInterfaces();
while ( e.hasMoreElements() ){
NetworkInterface ni = e.nextElement();
sb.append( ni.toString() );
}
machinePiece = sb.toString().hashCode() << 16;
Which is clearly problematic when using GoogleAppEngine. Does anyone know an alternative to NetworkInterface that is supported by GAE that I could use in the above case?
It's really making me tear my hair out!
For reference the offending code appears between lines 356 and 362 in the below file: https://github.com/mongodb/mongo-java-driver/blob/2.11.x/src/main/org/bson/types/ObjectId.java
If you have to use mongoDB for your application, I recommend you to switch to managed vm.
Managed VM will allow you to have full access to all Java.
If you are still early in development, I would recommend that you see if you can datastore for your back-end. The biggest time saving of using a platform like GAE is auto scaling and auto maintenance of your application stack.