charithaka.blogspot.com
Charitha Kankanamge's blog: Exploratory Testing 3.0
http://charithaka.blogspot.com/2015/04/exploratory-testing-30.html
Service Oriented Architecture (SOA) and Software Testing without nonsense. Tuesday, April 28, 2015. Exploratory Testing 3.0. And crew have re-defined software testing as follows. 8220;Testing is the process of evaluating a product by learning about it through exploration and experimentation, which includes: questioning, study, modeling, observation and inference, output checking, etc.”. Http:/ www.satisfice.com/blog/archives/1509. Subscribe to: Post Comments (Atom). Web Services Testing with soapUI.
charithaka.blogspot.com
Charitha Kankanamge's blog: November 2014
http://charithaka.blogspot.com/2014_11_01_archive.html
Service Oriented Architecture (SOA) and Software Testing without nonsense. Sunday, November 2, 2014. I have been discussing about testing service oriented solutions through a lot of blog posts as well as this book. I just want to summarize some key points, specially since I switched from SOA middleware testing to service-oriented solutions testing. Automation is the key. Even if you do majority of automated testing, you cannot replace human brain when releasing software. With a large percentage of au...
charithaka.blogspot.com
Charitha Kankanamge's blog: How to add a custom SOAP header to the request using AXIOM
http://charithaka.blogspot.com/2008/10/how-to-add-custom-soap-header-to.html
Service Oriented Architecture (SOA) and Software Testing without nonsense. Sunday, October 12, 2008. How to add a custom SOAP header to the request using AXIOM. Suppose you want to add the following SOAP header block to your web service request message. MyNS:header xmlns:myNS="http:/ ws.org". This is a custom soap header. There are different approaches to add user defined headers to the request soap messages. Lets see how it could be done using AXIOM. Download and install Apache Axis2. Wsdl -o out -uw.
charithaka.blogspot.com
Charitha Kankanamge's blog: Fuzz testing web service APIs
http://charithaka.blogspot.com/2015/08/fuzz-testing-web-service-apis.html
Service Oriented Architecture (SOA) and Software Testing without nonsense. Saturday, August 1, 2015. Fuzz testing web service APIs. Fuzzing is a mechanism to exercise software with random inputs. Fuzz testing is an integral component of API verification and it helps to uncover potential failures due to incorrect input handling. While you can find more information about fuzz testing from various web references, this post intends to summarize some key principles/best practices associated with fuzzing.
charithaka.blogspot.com
Charitha Kankanamge's blog: How to enable child-first class loading in WSO2 Application Server or Axis2
http://charithaka.blogspot.com/2011/01/how-to-enable-child-first-class-loading.html
Service Oriented Architecture (SOA) and Software Testing without nonsense. Tuesday, January 25, 2011. How to enable child-first class loading in WSO2 Application Server or Axis2. By default, WSO2 Application Server. Or Axis2) uses parent-first. If you deploy an AAR service, which can load classes from the following locations. CARBON HOME/lib (CARBON HOME is the location where you installed WSO2 Application Server). AAR service/lib (lib directory under your service archive). If you set this parameter in a...
charithaka.blogspot.com
Charitha Kankanamge's blog: Common mistakes to avoid in WSO2 API Manager - "ERROR - APIAuthenticationHandler API authentication failure" for a API call with valid access token
http://charithaka.blogspot.com/2014/03/common-mistakes-to-avoid-in-wso2-api.html
Service Oriented Architecture (SOA) and Software Testing without nonsense. Thursday, March 27, 2014. Common mistakes to avoid in WSO2 API Manager - "ERROR - APIAuthenticationHandler API authentication failure" for a API call with valid access token. In the third post of the common mistakes to avoid in WSO2 Carbon platform. Let's look at the problem in detail. Suppose I'm calling a REST API hosted in WSO2 API Manager. With a set of query parameters as shown below. After saving the configuration in file sy...
charithaka.blogspot.com
Charitha Kankanamge's blog: OAuth 2.0 grant types with WSO2 API Manager - I - Authorization Code
http://charithaka.blogspot.com/2013/07/oauth-20-grant-types-with-wso2-api.html
Service Oriented Architecture (SOA) and Software Testing without nonsense. Monday, July 15, 2013. OAuth 2.0 grant types with WSO2 API Manager - I - Authorization Code. Is a complete open source solution to manage APIs. It provides authorization and authentication for APIs using OAuth 2.0 standard. According to the OAuth specification, the client needs to get authorization from the resource owner when requesting an access token. The authorization is expressed in the form of an authorization grant. WSO2 AP...
charithaka.blogspot.com
Charitha Kankanamge's blog: May 2014
http://charithaka.blogspot.com/2014_05_01_archive.html
Service Oriented Architecture (SOA) and Software Testing without nonsense. Sunday, May 25, 2014. Handling JSON responses in Apache JMeter. There are various types of post processor elements. That we can use out of the box when handling responses in a JMeter test plan. For example, Regular Expression Extractor. Can be used to capture a specific value or set of values from a XML, HTML or JSON response. Download and install JMeter version 2.8 or later. Sampler. Enter the following values. Right-click on the...
charithaka.blogspot.com
Charitha Kankanamge's blog: Common mistakes to avoid in WSO2 ESB - 1 - "org.apache.axis2.AxisFault: The system cannot infer the transport information from the URL"
http://charithaka.blogspot.com/2014/02/common-mistakes-to-avoid-in-wso2-esb-1.html
Service Oriented Architecture (SOA) and Software Testing without nonsense. Saturday, February 22, 2014. Common mistakes to avoid in WSO2 ESB - 1 - "org.apache.axis2.AxisFault: The system cannot infer the transport information from the URL". In the next few weeks, you could expect a series of blog posts from me which explain the remedies to avoid some common mistakes which we do when working with WSO2 ESB. This is the first of many. InSequence outSequence send/ /outSequence /target description/ /proxy.
charithaka.blogspot.com
Charitha Kankanamge's blog: Simulating RESTful services with soapUI
http://charithaka.blogspot.com/2013/11/simulating-restful-services-with-soapui.html
Service Oriented Architecture (SOA) and Software Testing without nonsense. Monday, November 25, 2013. Simulating RESTful services with soapUI. I have discussed about the mock services which simulate SOAP back-ends in chapter 6 of Web Services Testing with soapUI book. SoapUI-4.5.2 or later. Simulating POX (Plain-Old-XML) with soapUI. Suppose you have a web service which returns XML response. Usually, the HTTP Content-Type of such a message is application/xml or text/xml. We are going to simulate a respon...