• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Pass with 149/155

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I had receive my result and pass with 149/155
General Considerations(maximum = 58): 57
Documentation(maximum = 20): 20
GUI(maximum = 24): 21
Server(maximum = 53): 51
Reading most of the posting in this group really helps. Thanks.
 
Ranch Hand
Posts: 185
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Raymond Wong:
I had receive my result and pass with 149/155
General Considerations(maximum = 58): 57
Documentation(maximum = 20): 20
GUI(maximum = 24): 21
Server(maximum = 53): 51
Reading most of the posting in this group really helps. Thanks.


please share with us ur design patterns ans the problem areas of the project and how did you went around thoes problems
------------------
Sid
 
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Cograte.
I have serios concern on one point.
Can u pl. tell me: did u made criteriaFind methos Suyncronised ?
I hope u will guide on this issue.
thanks
devu
 
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I haven't submitted my exam yet, but here is my $0.02 on locking the criteriaFind() method.
The book "Effective Java" (which is a great book, by the way) says you should synchronize any code that reads or writes shared, mutable data.
I've seen quite a number of posts by people that did not synchronize methods that *read* shared data. Testing on your own is unlikely to discover a problem with this (especially since our testing probably won't call the Data.add() or delete() methods), but I still don't think it's a good idea.
Would you trust your criteriaFind() method running at the same time that some other process was adding or removing a record from the database?
 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to test my client/server jar files. I am facing a
peculiar problem.
I have packaged my classes in two jar files - server.jar and
Client.jar.
Server.jar contains among other classes Data and DataServer(RMI
server).
Client.jar contains all client classes.
While testing-
A. For RMI - 1. Run Server.jar
2. run client.jar
Everything is OK.
B. Local mode - Unable to run client.jar alone as it needs Data class,
which is in server.jar.
However even if I run Server.jar, client.jar still does not find Data
class and returns error 'Data class not found'
How you have addressed the issue.
regards.


 
Ranch Hand
Posts: 1871
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

<h2>Congratulations Raymond</H2>
------------------

Mahindrakar
IBM Application Server & Developer Forum Moderator

Consultant - Zensar Technologies ,Pune India.
SCJP2, SCJD2 & SCJEA (Part I)
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic