Earlier, I had covered an example here, which showed how to dynamically create users and map the application roles to enterprise groups. In this post, the sample application is extended to show how you can query the application roles from the application stripe(application specific policies).
To query the application specific roles, you need to access...
ADF Examining memory leaks
Simply Read: A RSS/Atom Reader
Event Handlers in OIM 11g
Analyzing and Fixing memory leaks in Android
Driving security for ADF Essentials: Part1
Target Reconciliation Scheduler in OIM 11g
Using Lucene in Android
Better Charting with NVD3
ADF: Doing Runtime Entity Validations
ADF View Criteria Performance Impact
Aug 5, 2015
Jun 11, 2015
11
June
You might be aware that there are different content encoding formats for encoding the text. Generally, it is safe to use UTF encoding, but at least you would expect that the websites would specify the encoding format in the response. Alas, you might find certain sites , which just send the content without specifying the content encoding that they are using. So to detect content encoding for such cases, you need a FSM (Finite State Machine). Initially, you just split the input into individual characters and then pass them onto different state machines,...
Posted on Thursday, June 11, 2015 by Unknown
Apr 10, 2015
10
April
In this post I will share an example of analyzing memory leak in an Android application. I recently tried to integrate a popular android library ShowcaseView which can be used for first run demos in your android application. The thing is while testing the library, I noticed severe memory leaks. This was occurring because references to ShowcaseView...
Posted on Friday, April 10, 2015 by Unknown
Mar 21, 2015
21
March
SSL handshake errors can occur due to various reasons such as Self Signed certificate, unavailability of protocol or cipher suite requested by client or server, etc. Recently I faced this issue where I was connecting to third party server using HttpClient library. Here’s what I did to identify the cause:- Firstly, I enabled the debug flag for SSL,handshake and failure on javax.net packages. -Djavax.net.debug=ssl,handshake,failureOn examining the logs, I could see that the third party site was expecting a cipher key of 256...
Posted on Saturday, March 21, 2015 by Unknown
21
March
If you use ProGuard for obfuscating your code and happen to use Retrofit in your application, you will need to configure ProGuard to exclude certain Retrofit files from being obfuscated. Also you must note that if you are using GSON for conversion from JSON to POJO representation, you must ignore those POJO classes from being obfuscated, this is required as if those POJO class field names are obfuscated, conversion to POJO’s from JSON would fail because POJO field names are inferred from JSON response. So to keep it brief...
Posted on Saturday, March 21, 2015 by Unknown
Mar 4, 2015
04
March
I recently reviewed this title and found it short on a few important consideration such as cross client authorization. This is definitely a book for developers who are beginning android application development, but isn’t comprehensive. I discuss about what each chapter covers and then offer suggestions later on how this book can be improved further....
Posted on Wednesday, March 04, 2015 by Unknown
Feb 26, 2015
26
February
In this post, I will explain how you can use apache chemistry API’s to query the enterprise content management systems. Apache Chemistry project provides client libraries for you to easily implement integration with any of the content management products that support or implement CMIS standard. As you might be aware that there are multiple standards such as JCR and CMIS for interacting with the content repositories. Although with JCR 2 support for SQL-92 is now available, I really prefer the conciseness and wider adoption of the ...
Posted on Thursday, February 26, 2015 by Unknown
Feb 20, 2015
20
February
Retrofit uses Google’s gson libraries to deserialize JSON representation to Java object representation. Although, this deserialization process works for most of the cases, sometimes you would have to override the deserialization process to parse a part of the response or because you don’t have any clear object representation of the JSON data. In this post, I will share an example of a custom deserializer to parse the response from Wiktionary’s word definition API. First, let us take a look at the request and response. The request URL is mentioned...
Posted on Friday, February 20, 2015 by Unknown
Jan 15, 2015
15
January
In the past few weeks, I had been working on an android application, for reading feed articles, there were quite a few takeaways from that experience and I am just sharing few of those, along with the link and features to the application. The app can be downloaded from the link: Simply Read on Play Store Takeaways: - Parsing is slow: As...
Posted on Thursday, January 15, 2015 by Unknown
Subscribe to:
Posts (Atom)
Subscribe to Feeds
About Me
Google Translate
Connect !
Categories
ADF
(30)
java
(21)
windows
(20)
Counter Strike 1.6
(13)
Android
(11)
Unix/Linux
(10)
ADF security
(8)
Apache Spark
(8)
Scala
(6)
Search engine Optimization
(6)
jdeveloper11g
(6)
rest
(6)
Computer Networking
(5)
Cool Tutorials
(5)
Retrofit
(5)
Security
(5)
Fortress
(4)
OIM11g
(4)
jsf
(4)
oracle 11g
(4)
Big Data
(3)
Hive
(3)
OPSS
(3)
OpenLDAP
(3)
Wordpress
(3)
javascript
(3)
sql
(3)
website on pc
(3)
Google
(2)
Programming Stuff
(2)
Songbird
(2)
Usenet
(2)
php
(2)
search engines
(2)
wallpapers
(2)
webserver
(2)
Dynamic Dns
(1)
ECM
(1)
Impala
(1)
Lucene
(1)
Softwares
(1)
apache
(1)
code coverage
(1)
firefox
(1)
jmeter
(1)
whitepaper
(1)
Total Pageviews
955,076
Popular Posts
-
Are you annoyed of motion blur that occurs in Need For Speed Most Wanted when the car goes at higher speeds ? Well if you are then there ...
-
In this post i am sharing the process to make your own custom reconciliation connector. The process flow of the scheduler is shown in the be...
-
As you all are aware that Google Plus is shutting down in March 2019 and so are all its services. I have had a legacy android app on p...
-
If you want to integrate Lucene with your android application, this post will get you started. Lucene provides you with a wide range of se...