Archive for category Uncategorized
Send Remote Content as a mail attachment in Salesforce
Posted by Jason513 in Apex, Programming, SalesForce, Uncategorized, VisualSource on April 21, 2012
Hi All, Recently I encountered a situation where I need to fetch some content present in a remote server and need to send this content to salesforce users as attachment in mail. Without much thinking I started Googling but I didn’t find any soution for this. Finally I came up with my own solution. I […]
Getting All Field Names and their corresponding values using Java Reflection
Posted by Jason513 in Java, Programming, Uncategorized on August 27, 2011
Hi All, Today I am posting a simple source code to get all field names and their corresponding valuea present in a java class. Here I am using a simple java Reflection concept. Using java reflection we can access even private fields and can modify their vales. For more details on this you can refer […]
Calculating MD5 hash for a File
Posted by Jason513 in Uncategorized on June 26, 2011
Below Code can be used for calculating md5 hash of a file. It uses 2 libraries from apache commons project. One is common-codec and other one is commons-io. package com.wordpress.narendrakadali.utils; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import org.apache.commons.io.IOUtils; /** * @author narendra */ public class Main { /** * @param args */ public […]
Sign SAML Assertion using OpenSAML
Posted by Jason513 in Java, Programming, SAML, Uncategorized on June 5, 2011
Hi All, After long time I am posting some useful stuff to my blog. In this post I am trying to write code for signign assertion which is generated by OpenSAML ans signing is aslo performed by OpenSAML API’s. Generating SAML assertion code can be found at http://blog.keksrolle.de/2010/07/27/how-to-create-a-valid-saml-2-0-assertion-with-opensaml-for-java.html The code below uses keystore and x509 […]
Code for listing classes present in a Jar file
Posted by Jason513 in Uncategorized on April 15, 2011
Hello world!
Posted by Jason513 in Uncategorized on November 9, 2010
Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!