Questions tagged [mifos]

Mifos X is an extended platform for delivering the complete range of financial services needed for an effective financial inclusion solution.

Mifos X is an extended platform for delivering the complete range of financial services needed for an effective financial inclusion solution.

http://mifos.org/

15 questions
3
votes
0 answers

Hook in apache fineract, the request which was received in the local server doesn't contain the event response body

I created hook in apache fineract- when new share product is created, the response of this event will send to a local server. The server actually received the event kind (SHAREPRODUCT CREATE) but doesn't received the response body which contains…
2
votes
2 answers

Mifosx Installation failure

I was trying to install MiFOS X server on a windows 7 PC. I installed Java runtime 1.8 -> set JRE_HOME variable. Downloaded tomcat 1.9 -> set CATALINA_HOME variable I installed Wamp server for MySQL server. It came with MySQL 5.7. added MySQL…
NINJA
  • 89
  • 2
  • 10
2
votes
0 answers

Travis test keep failling saying this Loading "grunt-karma.js" tasks...ERROR TypeError: Cannot read property 'emit' of undefined

Please we are facing a travis test on PR in the community-app. with the following error: https://travis-ci.org/openMF/community-app/builds/230628985?utm_source=github_status&utm_medium=notification please can someone give a hand? we have give some…
tony pro
  • 405
  • 3
  • 12
1
vote
1 answer

I have tried installing Mifos X on Xampp. It's worked as I could access the UI on my browser but I had lots of problems with the credentials

I recently installed Mifos X on my laptop on Windows 10 Pro using the Xampp server. I put the fineract folder in the htdocs as I would with all the other framework. Only problem, after following all the steps, I was using mariaDB server and I set…
1
vote
2 answers

Files with unapproved/unknown licenses when running a gradle project

I'm trying to run this API: GitHub link as a gradle project in Netbeans. When I build, it fails with this error: Found 1715 files with unapproved/unknown licenses. I would appreciate if you could help me.
1
vote
2 answers

Android Studio Gradle build script not working

This is the build script used by an Android client built on top of the MifosX platform for the mifos user community. /* * This project is licensed under the open source MPL V2. * See…
Lema
  • 93
  • 1
  • 11
1
vote
1 answer

An error occurred while registering a ClassTransformer with PersistenceUnitInfo

I'm trying to run a Server application on Eclipse. I've imported the Project but, when I run it I get this error: 25 jpa-pu WARN [localhost-startStop-1] openjpa.Runtime - An error occurred while registering a ClassTransformer with…
Carlos Bernardes
  • 473
  • 4
  • 10
0
votes
2 answers

Combining Fineract on backend and mifos UI on front end

I have successfully installed fineract platform on my windows system. The local host is working perfectly fine. How can i design an User interface for the fineract platform same as mifos x. I tried dropping mifos UI file to fineract platform.But it…
0
votes
4 answers

Fineract CN Basic Setup

I have followed the setup detailed on this link https://cwiki.apache.org/confluence/display/FINERACT/Bare+minimum+to+run+Fineract-CN+locally but it appears there are some properties that are missing such…
0
votes
1 answer

Fineract doesn't start in mac Mojave

I followed exact same step as per [1] and when I execute ./gradlew tomcatRunWar Process didn't work after 92% 16:14:48.912 [localhost-startStop-1] INFO o.s.j.c.CachingConnectionFactory - Established shared JMS Connection: ActiveMQConnection…
Gayan
  • 779
  • 3
  • 8
0
votes
1 answer

Run/Debug Apache Fineract using Eclipse?

Github guides suggest building the war and running in embedded tomcat through gradle wrapper.... This takes a lot of time to implement code changes.....I would like to run the project from Eclipse/IntelliJ and debug, hot code replacement, etc. The…
julianm
  • 2,393
  • 1
  • 23
  • 24
0
votes
2 answers

Tomcat is not starting after installing Mifos on Windows using Xampp. Mifos doesn't work, what is wrong?

I am trying to install Mifos in Windows 10 using Xampp 5.6.8. I tried all the steps given in Mifos documentation but now Tomcat server does not start. What did I do wrong?
0
votes
0 answers

Unable to use Session Management with Spring Boot

I have declared the following functions in an open source core banking solution based on Spring boot (Fineract) to limit the number of concurrent sessions per user to 1. My WebSecurity.java file is as…
Usman Khaliq
  • 363
  • 3
  • 22
0
votes
1 answer

Unexpected Error While Testing Web Service Endpoint and did not find Path?

ConsumerData package org.apache.fineract.lab.data; import java.util.Date; public class ConsumerData { private String uniqueIndentifier; private String firstName; private String lastName; private Boolean active; private Date…
Abu Sufian
  • 991
  • 1
  • 6
  • 15
0
votes
1 answer

Recursive Dynamic Query

I have this recursive SQL query where I obtain the hierarchy of IDs of every office (an office belongs to higher rank office and such) - inspired by @leftclickben's answer in How to do the Recursive SELECT query in MySQL?: select @pv := o.office_id,…