Hi all!
I'm trying to connect to the CCX Database Informix with a .NET program, but I'm receiving this error when I try to open the connection: [Informix][Informix ODBC Driver][Informix]Database locale information mismatch.
This is my connection string: "Driver={IBM INFORMIX ODBC DRIVER}; Host=xx.x.x.xx; Server=uccx01_uccx; Service = 1504; Protocol = onsoctcp; Database = db_cra; UID = uccx123; PWD = abc123; ";
I've already created a connection with windows native ODBC application, and it worked:
Windows DSN
The Informix setnet32 connectTest also worked:
Setnet32
On both (windows ODBC and Setnet32), the client_locale and database_locale are set as en_US.57372.
But at the .NET program the locale mismatch error apears.
Anyone knows how can I solve this?
Thanks!
... View more
Hello,
I'm having a lot of issues when trying to connect with Informix database using Visual Studio 2017 version 15.8.8. I've created a new project with .NET Framework 4.6.1 with the MVC example. I already tried to use the IBM.Data.Informix, IBM.Data.DB2 but both returns me the same error:
Could not load file or assembly 'IBM.Data.DB2' or one of its dependencies.
I'm starting to use .NET and i've never worked with Informix before, so I'm not sure if I need to install anything before using the lib. By the moment, I've created a reference to the IBM.Data.DB2 inside the project, but it still doesn't work.
Here's my code:
using System ; using IBM . Data . DB2 ; namespace TestCCX . ContextConn { public class ContextConnect { public void testConnectionByDB2 () { String connectionString = "Database=db_test;Server=10.3.1.14:1504;User ID=test;Password=12345;" ; Boolean testStatus = true ; try { using ( DB2Connection conn = new DB2Connection ( connectionString )) { conn . Open (); Console . WriteLine ( "Connected" ); } } catch ( DB2Exception exc ) { Console . WriteLine ( "Error Message: {0}" , exc . Message ); foreach ( DB2Error error in exc . Errors ) Console . WriteLine ( "Error: ({1}): {0}" , error . Message , error . NativeError ); testStatus = false ; } Console . WriteLine ( testStatus ); } } }
Can anyone please help me?
Thank you,
Bruna Toledo.
... View more
Hi!
You're totally right! My first custom report and my first adventure with CCX!
Thanks for everything and luck to both of us :)
Bruna Toledo.
... View more
Hello,
I'm new with CCX and also with Informix, I want to know if there's any chance to see what is the query that the CCX report use when you click on the 'run' button.
When i open the database at DBeaver for example, I can see all the tables and make SELECTS, but I can't see what is the SELECT made when I generate the Abandoned Call Detail Activity Report at the CCX.
Can anyone help me with this please?
Thanks!
Bruna Toledo.
... View more
Hello!
I've finally had success making API calls, I'm using postman and now everything is working fine, I've had some problems with the token but now is already solved.
Thank you,
Bruna.
... View more
Hi Keith,
I've registered my application and I received an client ID and a client secret, but when I put this secret on authorization field at the request the error 403 continues, do you know what can I do to fix this please?
Thank you,
Bruna
... View more
Hi Keith!
Actually I'm not a Cisco employee, I work at a partner.
I'll try to do the process you've indicated, create an application and include the APIs that I need.
If I have new troubles I'll reply again :)
Thank you!
Bruna.
... View more
Hello,
I'm new at this subject and I want to make a request for the EoX API, reference - https://developer.cisco.com/docs/support-apis/#!eox/get-eox-by-dates
This link shows what do I need to put at the url request, but it doesn't say anything about the headers, the main request url for JSON is - GET https://api.cisco.com/supporttools/eox/rest/5/EOXByDates/1/2011-01-01/2015-12-31?responseencoding=json
When I send it, the status shows 403 Forbidden, I thing it's because something is necessary at the headers but I don't know what.
Can anyone help me with this please?
Thank you,
Bruna T.
... View more
Hi,
There's some useful information in here -> https://apiconsole.cisco.com/apps/myapis
The only thing you need to have is a CCO.
Thanks!
... View more
Hello,
I've created a bot (with botkit) and I can talk with it directly anytime, but now I want it to send messages to other rooms (group rooms which I do not belong) by typing a command on our chat. Is there any example of code or some ideas about how can I do this? I've been searching but I'm not having success.
Thanks!
... View more
Hello,
I've created a bot (with botkit) and I can talk with it directly anytime, but now I want it to send messages to other rooms (group rooms which I do not belong) by typing a command on our chat. Is there any example of code or some ideas about how can I do this? I've been searching but I'm not having success.
Thanks!
Bruna Toledo.
... View more