java - Exception in integration of banking api -


this exception referred me checking. exception raised when doing api integration of icici bank.

java.lang.exception: createinstance failed: new com.opus.epg.sfa.java.billtoaddress

reference url: http://kndexim.com/java/sfaclient/testpages/testssl.php

i j2ee developer, know little bit php , . know related class path problems. can solution this. if question not clear, please ask provide more details.

content of web.xml file given below

<?xml version="1.0" encoding="utf-8"?> <!doctype web-app public "-//sun microsystems, inc.//dtd web application 2.3//en" "http://java.sun.com/dtd/web-app_2_3.dtd">  <web-app>     <!-- support java ee cluster, remove line if want put non-serializable objects java_session() -->     <distributable/>      <!-- system php executable. default /usr/bin/php-cgi or c:/program files/php/php-cgi.exe -->       <!--<context-param><param-name>php_exec</param-name><param-value>php-cgi</param-value></context-param>-->     <!-- prefer system php executable, if available. otherwise use php .war file. default off -->     <context-param><param-name>prefer_system_php_exec</param-name><param-value>on</param-value></context-param>      <!-- handle php urls cannot expressed using standard servlet spec 2.2 url-pattern,           e.g.: *.php/delete/from?what=that may remove , filter-mapping below -->     <filter><filter-name>phpcgifilter</filter-name><filter-class>php.java.servlet.phpcgifilter</filter-class></filter>     <filter-mapping><filter-name>phpcgifilter</filter-name><url-pattern>/*</url-pattern></filter-mapping>      <!-- attach jsr223 script factory servlet context -->     <listener><listener-class>php.java.servlet.contextloaderlistener</listener-class></listener>      <!-- php servlet: back-end apache or iis -->     <servlet><servlet-name>phpjavaservlet</servlet-name><servlet-class>php.java.servlet.phpjavaservlet</servlet-class></servlet>      <!-- php cgi servlet: when iis or apache not available -->     <servlet><servlet-name>phpcgiservlet</servlet-name><servlet-class>php.java.servlet.fastcgi.fastcgiservlet</servlet-class></servlet>      <!-- php servlet mapping -->     <servlet-mapping><servlet-name>phpjavaservlet</servlet-name><url-pattern>*.phpjavabridge</url-pattern></servlet-mapping>      <!-- php cgi servlet mapping -->     <servlet-mapping><servlet-name>phpcgiservlet</servlet-name><url-pattern>*.php</url-pattern></servlet-mapping>      <!-- welcome files -->     <welcome-file-list>         <welcome-file>index.php</welcome-file>     </welcome-file-list>  </web-app> 

there classnotfoundexception. typical cause jar missing.

try looking class com.opus.epg.sfa.java.billtoaddress , include class/jar in classpath.


Comments

  1. open banking api
    Therefore, services today, including banks need to make a choice; solving functional needs by utilizing vertical expertise, or transforming to adopt a more platform-based approach which makes them customer owners, able to solve broader lifecycle needs.

    ReplyDelete

Post a Comment

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -