Inheritance in XML Schema
Nice description of that is here:-
http://www.codesynthesis.com/pipermail/xsd-users/2005-September/000029.html
Nice description of that is here:-
http://www.codesynthesis.com/pipermail/xsd-users/2005-September/000029.html
Configuring a Mail Resource with SSL on Apache Tomcat 7.x
Add the following entry to the context xml for the application:-
<Resource name="mail/MailSession" type="javax.mail.Session" protocol="smtp" host="example.com" auth="Container" user="test@example.com" password="test" class="javax.net.ssl.SSLSocketFactory" port="465" debug="true"/>
Laying out the Widgets is the basic requirement of any UI Toolkit let it be
Swing,AWT or SWT. Understanding the different API methods related to the
layout mechanism is a essential for those who develop Applications using
these toolkits. This article looks at how this is designed in the Draw2D
library (which is written on top SWT).
General UI Tookit related terms:-
Control: Any UI Widget like Button, Label, Combo Box, Text Control etc.
Container: A Container as the name suggests contains a groupd of Controls
or Containers. It is the parent of all the Controls and Containers inside
it.
Layout Manager: The component which is resposible for laying out the
Controls within a Control. This is associated with a Container and has
the layout algorithm.
In the case of Draw2d the IFigure class takes up the role of both the Control
and Container.
Requirement 1:-
When the size of the Container increases/decreases the sizes of the controls
inside it should be increased/decreased accordingly.
For this the layout method of the Figure is called which inturn delegates the
call to the #layout() method of the Layout Manager. Following is the sequence
of methods:-
LayoutManager#layout()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Type this in Google Search:
link:_your_site_url
1. The place in the registry where the contents of the "right-click" menu of Folder go is HKEY_CLASSES_ROOT\Directory\shell
This is what I got to read from "Andreas Mueller" on this thread
http://www.theserverside.com/user/userthreads.tss?user_id=13939
What they mean is just a form of workflow, based on P2P. A service is listening on an input queue, processes a message, does some generic or specific transformation, calls an EIS or a Web Service, generates an output message and sends it to another queue which is input of another service and so on. So in fact, this is just plain workflow, based on messaging. The 'bus' is a logical term of a messaging infrastructure, connected by routing connections. It's just the ability to address queues, located wherever.
Had been wondering what this new technology called AJAX (Asynchronous Javascript and XML) is.
This article explains very clearly what it is:
http://java.sun.com/developer/technicalArticles/J2EE/AJAX/
Have been hearing of this stuff called ERP, CRM etc. Knew about them at some abstract level but never was very clear until I stumbled on this nice piece of article on ERP.
http://www.cio.com/research/erp/edit/erpbasics.html
Ends the article with this note:-
The difficulty of getting ERP and e-commerce applications to work together—not to mention the other applications that demand ERP information such as supply chain and CRM software—has led companies to consider software known alternately as middleware and EAI software. These applications act as software translators that take information from ERP and convert it into a format that e-commerce and other applications can understand.