In SP04 of the Kapsel SDK, a new parameter was introduced that specifies where the kapsel plugins are located.
For example
cordova -d create C:\Kapsel_Projects\LogonDemo com.mycompany.logon LogonDemo "{\"plugin_search_path\":\"C:/SAP/MobileSDK3/KapselSDK/plugins/\"}"
I believe this creates a folder named
C:\Kapsel_Projects\LogonDemo\.cordova\config.json that contains the plugin_search_path.
{
"plugin_search_path": "C:/SAP/MobileSDK3/KapselSDK/plugins/"
}
The Logon plugin uses a patched version of the InAppBrowser plugin. See
C:\SAP\MobileSDK3\KapselSDK\plugins\inappbrowser
I wonder if the problem is a result of having the wrong version of this plugin in your project.
You can see the version of a plugin by examining it's plugin.xml file.
C:\Kapsel_Projects\LogonDemo\plugins\org.apache.cordova.inappbrowser\plugin.xml
Hope that helps,
Dan van Leeuwen