iMIS Wordpress or CMS Intregration

I am the lead developer and webmaster for my organization but not the devloper for IMIS. My nonprofit does a lot of thier core membership management with IMIS15+. We have been using it for the past 3 years and I am hoping a solution for authenticating with PHP is made by now. I am interested in using a Wordpress CMS which is coded in PHP but I would like to use the IMIS authentication LDAP tables for valid members only. This would be separate from any IMIS development. I only need a way to authenticate users and passwords in Wordpress. Is there a plugin out there? Our main site uses IIS and the default iMIS authentication. Please help. Thanks.

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Hi You can write php code

Hi

You can write php code something like below to create unified login consuming ASI webservices

$wsdl="http://imisappserver/imis15/AsiCommon/Services/Membership/MembershipWebservice.asmx?wsdl";
$client=new soapclient($wsdl, 'wsdl');
$param=array(
'username'=>'manager',
'password'=>'manager'
);
echo $client->call('ValidateUser', $param);

if you receive true from validateUser method, then entered login details are successfully validated.

<?xml version="1.0" encoding="utf-8"?>
<boolean xmlns="http://imis.com/webservices/membership">true</boolean>

SOAP Response Template

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <ValidateUserResponse xmlns="http://imis.com/webservices/membership">
      <ValidateUserResult>boolean</ValidateUserResult>
    </ValidateUserResponse>
  </soap:Body>
</soap:Envelope>

ASI webservices are limitted to membership level at the moment.
 

Thanks for the feedback.

Thanks for the feedback. When I get time I will experiment with it. The programming is above my head and my PHP skills are not up to par so I will try to figure it out. I appreciate it and thanks again.

interested in the same

Hello as well. Yes, I am interested in the very same. Did anyone actually try this and make it work? Is anyone out there actually doing it? 

Love to be updated in the year's time since this post was first put in.

 

Thanks, B.

interested in the same

Hello as well. Yes, I am interested in the very same. Did anyone actually try this and make it work? Is anyone out there actually doing it? 

Love to be updated in the year's time since this post was first put in.

 

Thanks, B.