Loading

Friday, May 9, 2008

Entrecard - Get 300 drops a day,

Tysblog.com has made it easier to drop your entrecards. Just visit this blog, follow the instructions and in the process Get 300 Entrecard credits a day - EASY!
Just follow this system…

300 Entrecard drops - FAST!


Enjoy...

Wednesday, May 7, 2008

Need ondemand virtual secretarial service then go to "My Own Secretary"

Well, this world has clearly two different versions going on right now. One lives in Physical real form. While second has life in Virtual form on "Internet". That fulfills everything ...all the human desires...all the business needs and also provide the speed and automation. I am experiencing outsourcing getting boost and world becoming virtual global village first hand. Not only we can outsource technology and BPM work but also very personal and on demand secretarial work too. I think that is enough of introduction. :D) I am talking about virtual secretarial service.

I come across the My Own Secretary website. The website is very nice. The top navigation has beautiful portrait of lush green field with bluish gray clouds. It is followed with two column templates with left hand navigation menu and next to it various related contents.

Apart from simplicity and ease of navigation of the website, I am really interested due to the services these enterpruners are providing. They are an on-demand administrative/virtual secretarial service that provides support to small and large firms across the world. They offer services from secretarial support to business consulting. They also mention that they strive to meet every need for any business whether large or small. The company do provide many options but specialize in secretarial support. Interesting fact is that they provide instant and professional support to those in need of a virtual secretary with guarantee of 110% of quality in their work. Which is backed by a claim that If customer is not satisfied with services, then their service will be free.

The business concept is different and yet very focused. That is fully supported by their website and its design.

They have good points why somebody may like to hire them:

# WE SAVE YOU MONEY & TIME: We help you expand your resources without hiring extra staff so you can avoid paying employee-related taxes, workers' compensation and health insurance. Plus, you won't have to purchase and/or maintain additional office space and equipment. Also you can focus more on other aspects of your business.
# WE PUT OUR CLIENTS FIRST : We work on projects beyond the average 9-5 secretary would. We work on projects all times of the day therefore there is no 5'o clock cut-off time.
# OUR EXPERIENCE: We have over 10 Years of experience in the administration and marketing fields and our business & marketing plan developers' requirements is to obtain at least a Masters degree to achieve the best quality for our clients.
# SEND REFFERALS FOR DISCOUNTS: If you bring us a referral who purchase our services, you will then receive a discount up to 60% off on your next quote.
# ONLINE ACCOUNT ACCESS: You can access your quotes, invoices, and services rendered at anytime. You can also pay your invoices through your online account. Your password will be given to you, which you can change at any time

Very well though out reasons and creative business tactics behind it.

This above mentioned business reasoning is vouched by their portfolio of the customer and client's testimonials available on the website. That is neat.

If this makes you curious and want to get started with their services, you can check their getting started link or may be directly go to get the quote for the service. :D)

Overall very positive concept. Keep it up guys,

Friday, May 2, 2008

Tips & Tricks : how to encrypt the clear text boot.properties manually in WebLogic Application Server?

This tip is useful for two purposes.

  1. First is to recover from invalid system password situation and

  2. second to encrypt the clear text boot.properties.


The trick is to execute File Realm Class from core weblogic.jar file.

  1. First Identify a user and/or the set of users who needs to recover an invalid system password or to encrypt the clear text boot.properties manually.

  2. Second Create a properties file with extension .src and Add all the users need to be defined within this file.

  3. Third execute the File Realm class.


Here is how it is done:


Comments are allowed within the file (preceded by the # sign), and for each user within the set a corresponding entry must be defined on its own new line within the file using the following format:

user.<username>=<cleartext_password>

An example follows:

# define the WebLogic system to have the clear text password WebLogic
user.weblogic=weblogic


  • The newly created fileRealm input definition file (.src) can reside anywhere on the local file system.

  • When the input definition file has been created, the location of SerializedSystemIni.dat must be determined before the FileRealm class is executed from the command line.

  • SerializedSystemIni.dat provides an input seed (or salt) to the hashing phase of the encryption process, and that a password hashed with a specific salt can be successfully compared only to another password hashed by the same exact salt.

  • Therefore, the SerializedSystemIni.dat file, localized at the domain level and present within the security/ directory, has an explicit relationship to the passwords it hashes for the file realm of a given domain. Since WLS can't maintain a file realm in which the set of hashed passwords present have been seeded by different SerializedSystemIni.dat files, you should never mix passwords hashed by different salt files within the same file realm.

  • Set system class path to include the “weblogic.jar” file from the lib directory of the WLS installation.
    <<bea_home>>\server\lib

  • Invoke the utility from the command line as follows:
    java weblogic.security.acl.internal.FileRealm \ <path_to_output_file>\<path_to_salt_file>

  • <path_to_output_file>-
    The path to the output file given by the first parameter should be identical to that of the input definition file, with the .src extension dropped for the output file.

    For example, if you had created the input definition file as mentioned in above steps in a folder:

    c:\temp\user.properties.src,

    You’d now need to define the output file at

    c:\temp\user.properties.


  • This accommodates the way the FileRealm class internally handles the location of the input definition file - it concludes its location by using the same path and name of the output file, yet it assumes the input file has the .src extension added to it.

  • <path_to_salt_file>-
    This contains a hash key (called salt) to encrypt clear text password. This
    Parameter defines the location of the SerializedSystemIni.dat file.

  • It is under folder
    <<bea_home>>\user_projects\domains\<<domain name>>\security

  • Upon execution, the FileRealm class will generate its hashed password outputs into the file defined by the first input parameter.

  • After completion of command execution, open output file in notepad.


    • To recover invalid system password Select encrypted Password
    • &copy it from that output files and paste that encrypted password to FileRealm.dat which is under following folder:
      <<bea_home>>\user_projects\domains\>>domain>>\
    • After completion of copy-paste and file save of FileRealm.properties file, start WLS server to test the password recently set for the <<domain>> user. If the password recovery was successful, the server will properly start and WLS will operate as expected.


    • To encrypt the clear textSelect encrypted Password & copy it from that output files and paste that encrypted password to boot.properties.





Enjoy...