Development kits

Problems of registering a contact as a company

I am making a web page for registering a contact online.
I defined 2 customer types which are "AFF" (is member) and "COR" (is member and is company).
When I try to register a contact by type "COR" (contact.CustomerTypeCode = "COR"), I got "The operation has timed out" error on 'contact.save()',
if I simply change the type to "AFF" (contact.CustomerTypeCode = "AFF"), not touching any other code, it works fine.

How to customize the web interface? Changing master page doesn't work!

We need to customize the web interface for our client. I am new in iMis, and our version is iMis15.
Seems simply change the master pages under /templates/masterpages/ folder doesn't affect the front-end look. However if I delete public.master, it reports error. If I put an empty public master page there, it still works as before I made the changes.
I notice all pages are inherited from Asi.Bae.Web.xxxx, does that mean we don't have any easy ways to modify the interface?

iMISPublic - IQA - IBO.NET - QueryBuilder - V 15.x - How to use?

I'm trying to figure out how to call IQA Queries. Just for a test I'm trying to call a standard IQA query, pass a value, and read the results or dump into a data set etc...

I can't seem to find even a basic sample on this. Any help would be greatly appreciated.

A bit of help please? Questions would be:
- Am I even on the right track?
- Am I creating the container correctly?
- Does the container need to be further initialized?
- Am I using the QueryBuilder correctly?
- How do I add the parameter to this querybuilder? I see just one key
- Am I executing the QueryBuilder correctly?

SAMPLE CODE,

    public void callIQA()
    {
        //Create the container using a common standard query anyone with iMIS should have
        Asi.Business.BusinessContainer myContainer;
        myContainer = new Asi.Business.BusinessContainer("$.Common.Queries.Search.CsContact.Name");

        //Does something else need to be done to finish initializing the container?


        //Make a querybuilder to be able to execute the query?
        Asi.QueryBuilder.Query myQuery = Asi.QueryBuilder.Query.NewQuery(myContainer);


        //If everything so far is correct, how is the string key formatted for adding parameters? 
        //Example, the above built in container has a possible 'Name' that can be added.  What would
        //be entered to pass the query a   [Last First]=DOE
        //NOTE: the above CsContact.Name sample requires [Last First] to be provided at least one value

        //myQuery.Parameters.Clear();
        //myQuery.Parameters.Add("string key");


        //Execute the query, and see what we get, which is nothing, something's wrong
        System.Data.OleDb.OleDbDataReader myReader;
        myReader = myQuery.GetList();

        if (myReader != null)
        {
            while (myReader.Read())
            {
                Response.Write("  

iBO version 10.5.28.01

I am looking for iBO version 10.5.28.01. Can anyone direct me to the proper download? (Is it iBO for .NET - Project 0.1 (alpha)?)

Thanks much!

Signed imis dlls

I am working on a project with Sharepoint 2007. I need signed imis 15 dlls to use them in sharepoint 2007. Do these even exist and if so where can I find them ?

Adam

Updating the InstituteContactId causes an error - Asi.iBO.dll Version - v0.18

I receive the following error when I try to update the InstituteContactId for a contact.
CAddressBasic.MailCode : The supplied value, '026' is not defined in the MAIL_CODE validation table and is invalid.
In iMIS Client -> Customer -> Set up module -> Address and Notes window I have "No Mail Codes" selected for "Address Codes "
Could anyone please point out what I am doing wrong and where this MAIL_CODE validation is defined

iMIS iBO and DotNetNuke

Hi
We are busy redoing our entire web site, using DotNetNuke. Due to the problems, mainly the slowness, we plan to develop our own version of iMIS Public, customised for our needs.

My questions are:
1) Did anyone do this before and if so, what where the pitfalls?
2) Did it really improve the speed, or is the iBO part of the slowness problem?
3) Have anyone used this combination before, i.e. DotNetNuke and iBO?

SetPassword for iMIS 15 Web Service

I keep recieving this error when trying to set a password for a user through the web service;
"Server was unable to process request. ---> You must authenticate with the web service before you can set a user's password."

Below is the code I am trying to execute in visual studios;

Dim _iMISAuth As imis15.MembershipWebService = New imis15.MembershipWebService

Dim _strNewPassword As String = _iMISAuth.GeneratePassword

iMIS 15 com iBO Subscript out of range error

We just upgraded a custom iMIS 10.6 iBO application to use the iMIS 15 iBOs, and started getting the following internal IBO error:

„Unknown error. Description: Subscript out of range” error number 1000

The error is thrown when we try to filter contact data. Here is the code causing the problem:

Private _securityAdmin As iboUserSecurity.CUser
Private _contactManagementAdmin As iboContactManagement.CContactsBOAdmin

ibo.net Error Creating new Contact

I have a web service that works fine with the .18 version of iBO.net. I tried referencing the .19 version of iBO and my service breaks when I call the .Save() method. I have tried the second version of the .19 ibos and it fails in the same placec. There is no ErrorCount on the CContact Object before the save. The Errormessage is an empty string. I did a sql profiler trace to see where it was breaking and this is what I got back.