Tags
Android AngularJS APN C# Cell C Checklist CV eScript Ethics FJUG Google Guava Graduate HyperSQL Interview Java Java Data Bean JavaScript Jenkins JGoodies JGoodies Binding Job Search Jozi JUG JSUG Marketing Marketing Smell Maven NetBeans NetBeans Platform Open Source Oracle Permission marketing Recruitment Renjin Rhino Samsung Galaxy Tab Ship it Siebel SiebelDataBean Software AG SqlTool Static Analysis Swing Tetrad IT University webMethods-
Recent Posts
-
Twitter
-
@CityPowerJhb "Tell people (roughly) how long they have to wait and they are more accepting of the delay" https://t.co/ExRkMAFgKW 2 years ago
-
@Afrihost Both on Vuma though? 2 years ago
-
@Afrihost Why is your fibre hundreds of Rands more expensive than @CipherWave for (seemingly) exactly the same service? 2 years ago
-
Recent Comments
- vaibhav on About
- Nimmi Kumari on Using Subversion With Siebel
- John on IT Cuties and Code Babes – Why Oh Why?
- Santosh on Using Subversion With Siebel
- HydeUniversity on Simple dynamic ToolTip text for JComponents
Categories
Archives
- April 2017
- January 2017
- October 2015
- October 2014
- September 2014
- August 2014
- June 2014
- May 2014
- April 2014
- November 2013
- August 2013
- June 2013
- May 2013
- April 2013
- March 2013
- June 2012
- May 2012
- February 2012
- January 2012
- December 2011
- October 2011
- September 2011
- August 2011
- July 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- October 2010
- September 2010
- August 2010
Meta
Author Archives: Michael
IT Cuties and Code Babes – Why Oh Why?
An acquaintance of mine posted a link to the IT Cuties site. The description is “Programming tutorials hosted by cute girls”. Not women, but girls. This led me to discover the even more explicit Code Babes where you can learn … Continue reading
HMAC SHA512 in Java
When doing some research on authentication tokens I came across the post Don’t Hash Secrets and learn’t of a few new things, one of which was HMAC: Hash-based message authentication code. I use Google Guava for some utility functions, but … Continue reading
Submit HTML form using AngularJS
The payment gateway I’m integrating with requires a post from a form to navigate to their payment page. Some of the information I need to post is dependent on the results from a call to my back end server. My … Continue reading
Xamarin View Fails To Bind To Model
MvxBind:Warning: 9.81 Unable to bind: source property source not found Property:SomeObject on null-objectMvxBind:Warning: 9.81 Unable to bind: source property source not found Property:SomeObject on null-object One of the causes of the above error is mixing up the order of base.OnCreate … Continue reading
5 Minute NLog Wrapper: Limiting The Number Of Emails Sent
If you’re using an Email target to send notifications when an error occurs, it may be useful to limit the frequency of those emails. One way of achieving this is to wrap your target that sends email in a Wrapper … Continue reading
JEE7 Launch with Arun Gupta
The Jozi JUG is hosting Arun Gupta on 26 August for the launch of JEE7. You can RSVP on Meetup. See you there! Arun Gupta will be flying in (not to Waterkloof) to give a presentation to the Jozi JUG … Continue reading
Posted in Uncategorized
Leave a comment
Unit Testing WebMethods Services With JUnit
Unit tests are ubiquitous (or at least should be) amongst software projects. Some environments are easier to unit test than others, and WebMethods is somewhere in the middle. As the services run on a server and the tests in your … Continue reading
WebMethods Client – java.lang.NoClassDefFoundError: iaik/x509/X509Certificate
If you’re calling a WebMethods service from a client and you get the error below, you need to add the enttoolkit jar to your classpath. It can be found under the Software AG installation directory on the server: \common\lib\ext\enttoolkit.jar java.lang.NoClassDefFoundError: … Continue reading
WebMethods Client – NoClassDefFoundError: javax/mail/internet/ParseException
If you’re calling a WebMethods service from a client and you get the error below, you need to add the java mail jar to your classpath. java.lang.NoClassDefFoundError: javax/mail/internet/ParseException at java.net.URLClassLoader$1.run(URLClassLoader.java:366) at java.net.URLClassLoader$1.run(URLClassLoader.java:355) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:354) at java.lang.ClassLoader.loadClass(ClassLoader.java:423) at … Continue reading
WebMethods Client Maven Dependencies For 8.2.2.0
If you’re invoking WebMethods services from a Java client, you need 3 jars, two of which are specific to Software AG. Step 1: Add dependencies to pom <!– Software AG specific dependencies–> <dependency> <groupId>com.softwareag</groupId> <artifactId>wm-isclient</artifactId> <version>8.2.2.0</version> </dependency> <dependency> <groupId>com.softwareag</groupId> <artifactId>enttoolkit</artifactId> … Continue reading