MyITBlog.com - IT Professionals Online Journal
 
  Home  |   Site News  |   About Us  |   Privacy  |   FAQ  |   Contact   Add Blog Entry  |  Login  |  Register   
 My Account
Username
Password
Remember me
Lost Password?


 Categories


 < Previous   Showing Page: 2 of 21   Next >
 
Order by Date | Hits | Total Votes  

0
Votes
Linux Thin Client Networks Design and Deployment in Tech Notes   
by admin on 16 Jul 2008, 19:45
Linux Thin Client Networks Design and Deployment Considering the Network Much information already exists concerning methods for deploying networks and hardware. We shall try to clarify differences between using a network with personal computers and thin clients with the help of anecdotes. Certain designs...
Total Hits: 846      0 Comments Add Comment  Visit



0
Votes
Bind Web Services in ESB-Web Services Gateway in Tech Notes   
by admin on 16 Jul 2008, 19:45
Bind Web Services in ESB-Web Services Gateway Since SOI is all about integrating multiple SOA-based systems, web services play a critical role in the integration space. This chapter is all about the importance of web services in integration. We will use the samples to illustrate how to bind web services...
Total Hits: 853      0 Comments Add Comment  Visit



0
Votes
ServiceMix HTTP in Tech Notes   
by admin on 16 Jul 2008, 19:45
ServiceMix HTTP HTTP HTTP is the World Wide Web (www) protocol for information exchange. HTTP is based on character-oriented streams and is firewall-friendly. Hence, we can also exchange XML streams (which are XML encoded character streams) over HTTP.
Total Hits: 845      0 Comments Add Comment  Visit



0
Votes
Consumer and Provider Roles in Tech Notes   
by admin on 16 Jul 2008, 19:45
Consumer and Provider Roles When we speak of the Consumer and Provider roles for the ServiceMix components, the difference is very subtle at first sight, but very important from a programmer perspective. The following figure shows the Consumer and Provider roles in the ServiceMix ESB:
Total Hits: 732      0 Comments Add Comment  Visit



0
Votes
servicemix-http XBean Configuration in Tech Notes   
by admin on 16 Jul 2008, 19:45
servicemix-http XBean Configuration The servicemix-http components supports the XBean-based deployment. Since the servicemix-http component can be configured in both the consumer and provider roles, we have two sets of configuration parameters for the component. Let us look into the main configuration...
Total Hits: 693      0 Comments Add Comment  Visit



0
Votes
servicemix http Lightweight Configuration in Tech Notes   
by admin on 16 Jul 2008, 19:45
servicemix-http Lightweight Configuration In addition to the XBean-based configuration, servicemix-http can also be deployed based on the lightweight mode to use in an embedded ServiceMix. The configuration would be as follows:
Total Hits: 700      0 Comments Add Comment  Visit



0
Votes
Deploy the Web Service in Tech Notes   
by admin on 16 Jul 2008, 19:45
Deploy the Web Service As a first step, if you haven't done it before, edit examples.PROPERTIES (provided along with the code download for this chapter), and change the paths there to match your development environment. The code download for this chapter also includes a README.txt file, which gives detailed...
Total Hits: 752      0 Comments Add Comment  Visit



0
Votes
XBean based servicemix http Binding in Tech Notes   
by admin on 16 Jul 2008, 19:45
XBean-based servicemix-http Binding For XBean-based deployment of servicemix-http, our xbean.xml matches the following:
Total Hits: 626      0 Comments Add Comment  Visit



0
Votes
Access WSDL in Tech Notes   
by admin on 16 Jul 2008, 19:45
Access WSDL and Generate Axis Stubs to Access the Web Service Remotely Now for the really cool stuff. As we discussed earlier, we have set up the ServiceMix as a separate web service gateway in front of the actual web service deployment. Now we have to check whether we can access the WSDL from the ServiceMix....
Total Hits: 688      0 Comments Add Comment  Visit



0
Votes
Swing Extreme Testing Book Review in Tech Notes   
by admin on 16 Jul 2008, 19:45
Swing Extreme Testing Book Review Swing used to be a simple component offered as an add-on for Java. This plug-in can be used as a GUI (graphical user interface) to develop as an add-on for the Java application. It has the ability to emulate certain platforms eventually building a powerful application....
Total Hits: 685      0 Comments Add Comment  Visit



0
Votes
Swing Extreme Testing in Tech Notes   
by admin on 16 Jul 2008, 19:45
Swing Extreme Testing by Tim Lavers, Lindsay Peters This book is a practical guide to automated software testing for extreme Java programming using Swing GUIs, with lots of ready-to-use real-life examples and source code for automated testing of the software components usually regarded as too hard to...
Total Hits: 624      0 Comments Add Comment  Visit



0
Votes
Swing Extreme Testing - Outline of the Unit Test in Tech Notes   
by admin on 16 Jul 2008, 19:45
Outline of the Unit Test The things we want to test are: Initial settings: The text field is empty. The text field is a sensible size. The Ok button is disabled. The Cancel button is enabled. The dialog is a sensible size.
Total Hits: 623      0 Comments Add Comment  Visit



0
Votes
Swing Extreme Testing - Getting the Text of a Text Field in Tech Notes   
by admin on 16 Jul 2008, 19:45
Getting the Text of a Text Field The method is getText(), and there is a variant to retrieve just the selected text:
Total Hits: 579      0 Comments Add Comment  Visit



0
Votes
Swing Extreme Testing - Unit Test Infrastructure in Tech Notes   
by admin on 16 Jul 2008, 19:45
Unit Test Infrastructure Having seen the broad outline of the test class and the UI methods needed, we can look closely at the implementation of the test. We'll start with the UI Wrapper class and the init() and cleanup()methods.
Total Hits: 600      0 Comments Add Comment  Visit



0
Votes
Swing Extreme Testing - The ShowerThread Class in Tech Notes   
by admin on 16 Jul 2008, 19:45
The ShowerThread Class Since SaveAsDialog.show() blocks, we cannot call this from our main thread; instead we spawn a new thread. This thread could just be an anonymous inner class in the init()method:
Total Hits: 617      0 Comments Add Comment  Visit



0
Votes
Swing Extreme Testing - The init() Method in Tech Notes   
by admin on 16 Jul 2008, 19:45
The init() Method The job of the init() method is to create and show the SaveAsDialog instance so that it can be tested:
Total Hits: 681      0 Comments Add Comment  Visit



0
Votes
Swing Extreme Testing - The Constructor Test in Tech Notes   
by admin on 16 Jul 2008, 19:45
The Constructor Test A freshly constructed SaveAsDialog should be in a known state, and we need to check the things we listed at the start of this chapter.
Total Hits: 572      0 Comments Add Comment  Visit



0
Votes
Swing Extreme Testing - The wasCancelled() Test in Tech Notes   
by admin on 16 Jul 2008, 19:45
The wasCancelled() Test The first of our API tests is to check the wasCancelled() method. We will basically do three investigations. The first test will call wasCancelled()before the dialog has been cancelled. The second test will cancel the dialog and then call the method. In the third test we will...
Total Hits: 653      0 Comments Add Comment  Visit



0
Votes
Swing Extreme Testing - The name() Test in Tech Notes   
by admin on 16 Jul 2008, 19:45
The name() Test Like the wasCancelled()method, the name() method is not thread-safe, so our test class needs another boilerplate helper method:
Total Hits: 658      0 Comments Add Comment  Visit



0
Votes
Swing Extreme Testing - The Data Validation Test in Tech Notes   
by admin on 16 Jul 2008, 19:45
The Data Validation Test The Ok button of the SaveAsDialog should only be enabled if the name that has been entered is valid. A name can be invalid if it contains an illegal character, or if it has already been used.
Total Hits: 614      0 Comments Add Comment  Visit




Show Page: 1 [ 2 ] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Copyright © 2008 MyITBlog.com