- Usual backups at site
- The PKI site was back up so I was able to access the signed cert. Couldn’t figure out how to construct the .jks file from it, Phil said he would show me on Monday.
- No word from the firewall people.
- Back at the mill reading about Maven best practices and general java naming conventions
Category Archives: VISIBILITY
Mike 4.19.2012
- Usual backups at site
- No word on my help ticket regarding the production server connectivity
- Since the production server IP address changed I decided to get it a new PKI Cert in hopes that might resolve the issue. I applied for it yesterday, it was approved, and today the download site is unreachable.
- Back at the mill looking at GWT Calendar widgets from various libraries
Dong Shin 04.19.2012
- got GWTRequestFactory working with hibernate JPA..
- to create GWT Request Factory with Hibernate…
- create a domain model class, e.g., Person.java
- create a server service class that contains EntityManagerFactory, e.g., PersonService.java
- create a service locator class that extends Locatorr<T, ID>, e.g., PersonLocator.java
- create a proxy interface in Client that extends EntityProxy and defines ProxyFor, e.g., PersonProxy
- create a request interface that extends RequestContext and defines service, e.g, PersonRequest
- create a request factory interface that initialize the request in step 5, e.g., PersonRequestFactory
- create a persistence.xml that defines database properties and object relation mappings
- create a orm.xml that defines entities used in persistence.xml
Mike 4.18.2012
- Usual backups at site
- The firewall team replied to my help desk request saying the firewall is open just fine because their firefox responds with a generic SSL error when trying to connect to our production server. I recreated their results both with our webserver on and off and asked how it could be an SSL issue if the server is not even on and firefox reports the same error. Waiting for a reply…
- Back at the mill, tried checking in my log changes to svn and it wouldn’t go. So I deleted my sandbox project, redownloaded the latest checked in version, and redid all my changes: checks in fine now.
- Added a cursor example page to my sandox, clicking buttons changes the cursor to various options: default, wait, help, hand, etc.
Dong Shin 04.18.2012
- spent past few days going over GWT Request Factory tuorials. Not many helpful tutorials out there…. Phil’s GWT in action book helped a lot. The example projects from the book contains Maven projects, but need some tweaking to work in my environment.
- got GWTRequestFactory project working
- got Mike’s sandbox project working – hibernate stuff
- working on GWTRequestFactory with Hibernate (PPM Database)
- Basic JPA attribute mapping to XML
Mike 4.17.2012
- Usual backups this morning
- Someone got back to me about my help ticket concerning connectivity to our production machine. They believe the firewall change request was not correctly filled so they are checking with the firewall team and will get back to me
- Back at the mill incorporating Dong’s gwtLogger in to my sandbox to try it out, local log works well so far
- Helped Dong build my sandbox so he can check out my hibernate usage
Mike 4.16.2012
- Usual backups at site
- No word back from the firewall person, submitted a new ticket assuming the firewall port is open but something else is wrong
- Contacted by Jessica R. with a COGNOS data dictionary (approx. 3,500 rows) briefly describing every field available in the COGNOS database. She suggested I go through and and try to match up their tables / columns with ours. I looked at it briefly and then requested access to the actual data to make it less of a guessing game.
- Back at the mill looking at AspectJ examples
- Also reviewing the additions made to GWT in Action
Mike 4.13.2012
- Server backups this morning
- Heard back about my firewall change request, apparently it has been implemented but I was still unable to connect to the server. I asked where else the connection may be getting blocked and he said he would get back to me.
- At the mill learning about AspectJ, an AOP extension for Java, as I have run in to it in a number of examples. It looks pretty neat so far.
Mike 4.12.2012
- Usual server backups
- My firewall change request was approved but not implemented yet
- Still working on connection Hibernate and MySQL through a RequestFactory, lots of dependency issues. A few notes:
- As of GWT 2.4, in order to use RequestFactories a 3rd part validator must be run as part of the build process: link
- There’s a class loader issue with Hibernate 4.0+ and the GWT jetty dev server. There are a few workarounds:
- Revert to Hibernate 3.6
- Don’t use the dev server and simply deploy to something like tomcat or jboss
- It works, doesn’t use best practices, but it works.
Mike 4.11.2012
- Usual backups at site this morning
- Fixed an issue with Tomcat on the production server, it seemed to be stopping whenever I logged off. Not that i can tell since the port is closed but it was not running when I would log off / back on. Now it does.
- The DNS issue has been resolved, my firewall change request is still pending
- Denise P. emailed me asking for documentation on “installing casport and pki enabling” a server. I responded with links to each groups list of instructions and she seemed happy with that.
- Back at the mill working on linking up my gwt widget to my hibernate managed database using a GWT RequestFactory service layer, so far it compiles but that’s about it
Dong Shin 04.10.2012
- Mavenized Project Manager GWT App
- cleaned up lots of codes
- Added client/server logger
- fixed Server Logger not filtering correctly (SmartGWT problem?)
Mike 4.10.2012
- Usual back ups this morning
- Our SSP got a 1-month extension so it did not expire today. As far as I know I have completed everything I’m responsible for. There was a flurry of emails going around about tasks for other people.
- Finally heard back from the help center about our production server. I can’t connect to it via HTTPS for several reasons…
- The DNS is pointing to the wrong IP address and the tech doesn’t know how to fix that but is sure someone else does
- I need to submit a ticket to the production firewall team and have a exception put in. The firewall team is a completely separate group than the person who is answering my ticket
- So I submitted a firewall exception request
- I contacted Allen N., the guy who set up our VMs originally last May, and asked him about the DNS problems. He helped me submit several more tickets to get that resolved.
- Back at the Mill I was able to create, save, and reload some hibernate java objects
- Looked back at some old Dynamic Hibernate stuff for Phil: closet full of wheels
Mike 4.9.2012
- Usual backups this morning
- Contacted the help center at site to check on the status of my ticket requesting the production server to be opened up…. they will be back to me (I believe the person I spoke to submitted a ticket to check on the status of my ticket)
- Back at the mill working on a fully wired SuggestionBox (user types in a text input, as the user types the incomplete entry is sent to the server and queries the database for possible results, then the matches are displayed below the text input on the client).
- I started with a very basic implementation that generated suggestions on the client
- Now I’m going to try starting at a hibernate managed database table and work my way to the client
Mike 4.6.2012
- Usual backups this morning
- Figured out how to upload my server vulnerability scan to the SSP documents and immediately received questions from people asking “how did you do that?”
- Back at the mill working on GWT things: Finished my sandbox framework, simply a framework site for displaying and testing simple components
- Added a built in gwt SuggestBox to my sandbox just to make sure it works
- Played around with an autocomplete demo found here and implemented it in my sandbox
Dong Shin 04.06.2012
- GWTLogger
- moved logger to separate Maven Module, deployed
- <dependency>
<groupId>com.fgm.gwt</groupId>
<artifactId>gwtLogger</artifactId>
<version>0.0.1</version>
</dependency> - added timer to Server Log – allows auto retrieval of logs in specified interval
- re-arranged UI components
- added filters for the columns
- writing up how-to – done
- gwtLogger – also added to Useful GWT Info page
- sample GWT application located @ trunk/Sandbox_folders/DONG_SANDBOX/GWTLogger
- Converting ProjectManager to Maven project

You must be logged in to post a comment.