Michael Grossenbacher

Greenhorn
+ Follow
since Mar 28, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Michael Grossenbacher

Hi Jason

I am not sure about it, but I start my registry within my server class like this:

java.rmi.registry.Registry registry = LocateRegistry.createRegistry(rmiPort);
registry.rebind("YourService", new YourServiceImpl());

It is not explicitely written in the instructions, but when you only are allowed to run your application with the arguments "server" or "client" (or without argument) then how would you start your registry in your submission?

have a nice day,
Mike
Hi Mostafa Radwan

I've mailt them the exact same question, and this was coming back:


Hi Michael,

You can try to submit the assignment in the next few days

Please send your SCJD assignment to us at this email address developer-submit_US@oracle.com. The team will decide to process it or we will inform you the further action to be taken.

Please be sure that you include your Prometric Testing ID/ Candidate ID when you send your assignment.

Thanks,
Oracle Certification Program



Good luck with your assignment!
Mike





Hi Pete

1)
I think you misunderstood something. The "Start of file" section and the "Schema description section" is the header of the file and will not be repeated foreach record. After the header will be only the "naked" records without size-bytes.

2)
That means, that every record has a pre-record indicator if this record is deleted or is valid. Keep in mind, that these 2 bytes are also counted to the record length.

3)
I understood the magic cookie in that way, that it is a fixed value which i can check while reading the header. If the cookie is not what I expect, then the database is not corresponding to my databasemodel and therefore will throw an exception while start reading the database.

greetZ Mike
Hi xi brian

Because this field can be empty, it is not applicable as a primary key.

If your specification is nearly similar to mine, then it is only possible to use the position of the record in the database file as the primary key because no other field, or combination of fields would allow to be used as the pk.

Mike