473,734 Members | 2,824 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

CDOEXM - Error adding assembly

When trying to add the Microsoft CDO for Exchange Management Library (aka CDOEXM.dll) I receive the following message:

"A reference to 'Microsoft CDO for Exchange Management Library' could not be added. Converting the type library to a .Net assembly failed. A depended type library 'CDO' could not be converted to a .NET assembly. A dependent type library 'ADODB' could not be converted to a .NET assembly. Item has already been added."

The ADODB library has already been added.

I have tried removing the assemblies and restarting Visual Studio. I've uninstalled and reinstalled Exchange 2003 management tools. I've even scrolled to the DLL directly and added it manually.

I even built a new box... installed XP (with SP2) from scratch. Installed Visual Studio. Installed the Exchange 2003 Management Tools. When I try to add the CDOEXM component... I get the same message.

Can somebody lead me in the right direction?

Thanks.
Nov 18 '05 #1
8 3422
I ran into the same situation last week.
I 've tried C# and VB.NET on Windows 2003 Standard Edition + all hot fixes +
Exchange 2003 Management Tools, and Exchange Server 2003 on a seperate
computer.
I could successfully add reference to CDOEXM at July and August,
so maybe it's a problem of Windows hot fixes?

I've tried to install Exchange 2003 Service Pack 1 on both computer but
still the same.

When I try to add reference of any version (2.5, 2.6, 2.7) of ADODB first,
it will failed and have the message:

Warning: The dependency 'Interop.ADODB, Version=2.7.0.0 , Culture=neutral ' in
project 'MyProjectName' cannot be copied to the run directory because it
would overwrite the reference 'Interop.ADODB,
Version=TheVers ionOfAdodbIAddM anually, Culture=neutral '.

Some libraries are using different version of ADODB?
"Rob Edwards" wrote:
When trying to add the Microsoft CDO for Exchange Management Library (aka CDOEXM.dll) I receive the following message:

"A reference to 'Microsoft CDO for Exchange Management Library' could not be added. Converting the type library to a .Net assembly failed. A depended type library 'CDO' could not be converted to a .NET assembly. A dependent type library 'ADODB' could not be converted to a .NET assembly. Item has already been added."

The ADODB library has already been added.

I have tried removing the assemblies and restarting Visual Studio. I've uninstalled and reinstalled Exchange 2003 management tools. I've even scrolled to the DLL directly and added it manually.

I even built a new box... installed XP (with SP2) from scratch. Installed Visual Studio. Installed the Exchange 2003 Management Tools. When I try to add the CDOEXM component... I get the same message.

Can somebody lead me in the right direction?

Thanks

Nov 18 '05 #2
Hey Eric,

I have the same issue, but perhaps better resources (machines of different
configurations) to figure out what is going on.

Problem Statement: Using Visual Studio 2003, user cannot reference Exchange
2003's CDOEXM.dll as an Interop assembly if the machine in question does not
actually have Exchange 2003 installed on it, but only the Exchange
Management Tools. (On a machine with Exchange 2003, user can add the
reference.) Attempts to do so generate the following large error message
from the TLBIMP tool used internally to create the Interop DLL wrappers:

A reference to 'Microsoft CDO for Exchange Management Library' could not be
added. Converting the type library to a .NET assembly failed. A dependent
type library 'CDO' could not be converted to a .NET assembly. A dependent
type library 'ADODB' could not be converted to a .NET assembly. Item has
already been added. Key in dictionary: "C:\Documen ts and Settings\User\M y
Documents\Visua l Studio Projects\Projec t1\obj\Interop. ADODB.dll" Key being
added: "C:\Documen ts and Settings\User\M y Documents\Visua l Studio
Projects\Projec t1\obj\Interop. ADODB.dll"

Analysis (supposition): The CDO libraries, and their dependents, create a
unique problem for Interop assembly generation. On machines with neither
Exchange 2003, or the Exchange Management Tools, the CDO COM definition is
handled by C:\Windows\syst em32\CDOSYS.dll . This environment lacks the
required DLL for mail-enabling users and groups and other activities unique
to the CDOEXM.dll. On machines with Exchange 2003 installed, the CDO COM
definition is handled by C:\Program Files\Exchsrvr\ bin\CDOEX.dll; and
CDOEXM.dll in the same directory. On machines with only the Exchange 2003
Management Tools installed, CDOEXM.dll is installed, but has certain
incompatibiliti es with the CDO COM definition derived from CDOSYS.dll.

Exchange 2003's CDOEX.dll is bound to msado27.dll (ADODB 2.7) or msado28.dll
(ADODB 2.8); and uses the CDO COM defined interface for some of its work.
CDOSYS.dll is bound to msado15.dll (ADODB 2.5); CDOEX.dll is bound exactly
like that of CDOEXM.dll. For full Exchange 2003, adding a reference to
CDOEXM.dll causes the IDE to generated three Interop DLLs:
Interop.CDOEXM. dll (from CDOEXM.dll), Interop.CDO.dll (from CDOEX.dll), and
Interop.ADODB.d ll (from msado27.dll or msado28.dll). Since both the CDOEXM
and CDO interfaces use the same version of ADODB, there is no conflict--only
one Interop.ADODB.d ll is built and shared. However, the resulting compile
should only be installed an a machine with the full Exchange 2003
environment.

With just the Exchange 2003 Management Tools installed, adding a reference
to CDOEXM.dll causes the IDE to generated three Interop DLLs:
Interop.CDOEXM. dll (from CDOEXM.dll), Interop.CDO.dll (from CDOSYS.dll), and
Interop.ADODB.d ll. Here, there is a fundamental conflict since CDOEXM is
bound to a different version of ADODB then CDO is. Within the COM world
itself, use of the generic ADODB definitions allows everyone to work
together. However, the TLBIMP.EXE utility used by Visual Studio 2003
requires more exacting version matches: the result is it attempt to build
two ADODB Interop assembly (one for each version), and dies because they
share the same namespace, namely ADODB. If someone has figured out how to
build the required Interop DLLs without error, please speak up (my attempts
at running TLBIMP directly resulted in the same conflict).

There are other "threads" in the various newsgroups that talk of
mail-enabling users and groups (the most common need for CDOEXM.dll) using
just the Active Directory interfaces only, but I have yet to see any actual
..NET code that does so. Thus, accomplishing this with .NET seems to
restrict us from writing code that works in the Management Tools-only
environment for the time being. I hope the bright boys (and girls) at
Microsoft resolve this issue so that Exchange 2003 .NET support is not so
difficult.

Resolution (as it currently stands): use of CDOEXM is restricted to Exchange
2003 Server-only environments.

Victor Lindsey
"Eric Tsai" <Eric Ts**@discussion s.microsoft.com> wrote in message
news:45******** *************** ***********@mic rosoft.com...
I ran into the same situation last week.
I 've tried C# and VB.NET on Windows 2003 Standard Edition + all hot fixes
+
Exchange 2003 Management Tools, and Exchange Server 2003 on a seperate
computer.
I could successfully add reference to CDOEXM at July and August,
so maybe it's a problem of Windows hot fixes?

I've tried to install Exchange 2003 Service Pack 1 on both computer but
still the same.

When I try to add reference of any version (2.5, 2.6, 2.7) of ADODB first,
it will failed and have the message:

Warning: The dependency 'Interop.ADODB, Version=2.7.0.0 , Culture=neutral '
in
project 'MyProjectName' cannot be copied to the run directory because it
would overwrite the reference 'Interop.ADODB,
Version=TheVers ionOfAdodbIAddM anually, Culture=neutral '.

Some libraries are using different version of ADODB?
"Rob Edwards" wrote:
When trying to add the Microsoft CDO for Exchange Management Library (aka
CDOEXM.dll) I receive the following message:

"A reference to 'Microsoft CDO for Exchange Management Library' could not
be added. Converting the type library to a .Net assembly failed. A
depended type library 'CDO' could not be converted to a .NET assembly. A
dependent type library 'ADODB' could not be converted to a .NET assembly.
Item has already been added."

The ADODB library has already been added.

I have tried removing the assemblies and restarting Visual Studio. I've
uninstalled and reinstalled Exchange 2003 management tools. I've even
scrolled to the DLL directly and added it manually.

I even built a new box... installed XP (with SP2) from scratch.
Installed Visual Studio. Installed the Exchange 2003 Management Tools.
When I try to add the CDOEXM component... I get the same message.

Can somebody lead me in the right direction?

Thanks

Nov 18 '05 #3
Hey Eric,

I have the same issue, but perhaps better resources (machines of different
configurations) to figure out what is going on.

Problem Statement: Using Visual Studio 2003, user cannot reference Exchange
2003's CDOEXM.dll as an Interop assembly if the machine in question does not
actually have Exchange 2003 installed on it, but only the Exchange
Management Tools. (On a machine with Exchange 2003, user can add the
reference.) Attempts to do so generate the following large error message
from the TLBIMP tool used internally to create the Interop DLL wrappers:

A reference to 'Microsoft CDO for Exchange Management Library' could not be
added. Converting the type library to a .NET assembly failed. A dependent
type library 'CDO' could not be converted to a .NET assembly. A dependent
type library 'ADODB' could not be converted to a .NET assembly. Item has
already been added. Key in dictionary: "C:\Documen ts and Settings\User\M y
Documents\Visua l Studio Projects\Projec t1\obj\Interop. ADODB.dll" Key being
added: "C:\Documen ts and Settings\User\M y Documents\Visua l Studio
Projects\Projec t1\obj\Interop. ADODB.dll"

Analysis (supposition): The CDO libraries, and their dependents, create a
unique problem for Interop assembly generation. On machines with neither
Exchange 2003, or the Exchange Management Tools, the CDO COM definition is
handled by C:\Windows\syst em32\CDOSYS.dll . This environment lacks the
required DLL for mail-enabling users and groups and other activities unique
to the CDOEXM.dll. On machines with Exchange 2003 installed, the CDO COM
definition is handled by C:\Program Files\Exchsrvr\ bin\CDOEX.dll; and
CDOEXM.dll in the same directory. On machines with only the Exchange 2003
Management Tools installed, CDOEXM.dll is installed, but has certain
incompatibiliti es with the CDO COM definition derived from CDOSYS.dll.

Exchange 2003's CDOEXM.dll is bound to msado27.dll (ADODB 2.7) or
msado28.dll
(ADODB 2.8); and uses the CDO COM defined interface for some of its work.
CDOSYS.dll is bound to msado15.dll (ADODB 2.5); CDOEX.dll is bound exactly
like that of CDOEXM.dll. For full Exchange 2003, adding a reference to
CDOEXM.dll causes the IDE to generated three Interop DLLs:
Interop.CDOEXM. dll (from CDOEXM.dll), Interop.CDO.dll (from CDOEX.dll), and
Interop.ADODB.d ll (from msado27.dll or msado28.dll). Since both the CDOEXM
and CDO interfaces use the same version of ADODB, there is no conflict--only
one Interop.ADODB.d ll is built and shared. However, the resulting compile
should only be installed an a machine with the full Exchange 2003
environment.

With just the Exchange 2003 Management Tools installed, adding a reference
to CDOEXM.dll causes the IDE to generated three Interop DLLs:
Interop.CDOEXM. dll (from CDOEXM.dll), Interop.CDO.dll (from CDOSYS.dll), and
Interop.ADODB.d ll. Here, there is a fundamental conflict since CDOEXM is
bound to a different version of ADODB then CDO is. Within the COM world
itself, use of the generic ADODB definitions allows everyone to work
together. However, the TLBIMP.EXE utility used by Visual Studio 2003
requires more exacting version matches: the result is it attempt to build
two ADODB Interop assembly (one for each version), and dies because they
share the same namespace, namely ADODB. If someone has figured out how to
build the required Interop DLLs without error, please speak up (my attempts
at running TLBIMP directly resulted in the same conflict).

There are other "threads" in the various newsgroups that talk of
mail-enabling users and groups (the most common need for CDOEXM.dll) using
just the Active Directory interfaces only, but I have yet to see any actual
..NET code that does so. Thus, accomplishing this with .NET seems to
restrict us from writing code that works in the Management Tools-only
environment for the time being. I hope the bright boys (and girls) at
Microsoft resolve this issue so that Exchange 2003 .NET support is not so
difficult.

Resolution (as it currently stands): use of CDOEXM is restricted to Exchange
2003 Server-only environments.

Victor Lindsey

"Eric Tsai" <Eric Ts**@discussion s.microsoft.com> wrote in message
news:45******** *************** ***********@mic rosoft.com...
I ran into the same situation last week.
I 've tried C# and VB.NET on Windows 2003 Standard Edition + all hot fixes
+
Exchange 2003 Management Tools, and Exchange Server 2003 on a seperate
computer.
I could successfully add reference to CDOEXM at July and August,
so maybe it's a problem of Windows hot fixes?

I've tried to install Exchange 2003 Service Pack 1 on both computer but
still the same.

When I try to add reference of any version (2.5, 2.6, 2.7) of ADODB first,
it will failed and have the message:

Warning: The dependency 'Interop.ADODB, Version=2.7.0.0 , Culture=neutral '
in
project 'MyProjectName' cannot be copied to the run directory because it
would overwrite the reference 'Interop.ADODB,
Version=TheVers ionOfAdodbIAddM anually, Culture=neutral '.

Some libraries are using different version of ADODB?
"Rob Edwards" wrote:
When trying to add the Microsoft CDO for Exchange Management Library (aka
CDOEXM.dll) I receive the following message:

"A reference to 'Microsoft CDO for Exchange Management Library' could not
be added. Converting the type library to a .Net assembly failed. A
depended type library 'CDO' could not be converted to a .NET assembly. A
dependent type library 'ADODB' could not be converted to a .NET assembly.
Item has already been added."

The ADODB library has already been added.

I have tried removing the assemblies and restarting Visual Studio. I've
uninstalled and reinstalled Exchange 2003 management tools. I've even
scrolled to the DLL directly and added it manually.

I even built a new box... installed XP (with SP2) from scratch.
Installed Visual Studio. Installed the Exchange 2003 Management Tools.
When I try to add the CDOEXM component... I get the same message.

Can somebody lead me in the right direction?

Thanks

Nov 18 '05 #4

"Victor Lindsey" <victor.lindsey @nospam_vlsyste ms.com> wrote in message
news:eP******** ******@TK2MSFTN GP11.phx.gbl...
Hey Eric,
Can somebody lead me in the right direction?

Thanks


Is this of any help?
http://support.microsoft.com/default...b;en-us;842024

Willy.
Nov 18 '05 #5
Willy,

Not really. Even though I have Exchange Server 2003 SP1 installed (just the
tools on one machine, and the full application on another), no new code was
introduced to the C:\Program Files\Microsoft .NET\Primary Interop Assemblies
path as expected. The article seems to refer to a PIA that was to be
included in SP1, but didn't somehow make it. If there is an optional
install, or a file that needs to be copied, I haven't found it yet.

Victor Lindsey
"Willy Denoyette [MVP]" <wi************ *@pandora.be> wrote in message
news:u9******** ******@TK2MSFTN GP12.phx.gbl...

"Victor Lindsey" <victor.lindsey @nospam_vlsyste ms.com> wrote in message
news:eP******** ******@TK2MSFTN GP11.phx.gbl...
Hey Eric,
> Can somebody lead me in the right direction?

Thanks


Is this of any help?
http://support.microsoft.com/default...b;en-us;842024

Willy.

Nov 18 '05 #6
To all:

Today, I tried this on still another machine (VS2003 on Win2003 with
Exchange2003 SP1 Mgmt Tools). For some reason, there is no problem here.
The IDE generates the required Interop assemblies without error or conflict
(the deployment project identifies the output as an ADODB 2.5 interface).
So far, all machines in check out as MDAC 2.8 RTM machines with Microsoft's
ComCheck utility. And I can find no difference in what little registry
entry comparisons I've done. So there you have it..it works on some
machine, and not others.

Hope this helps.

Victor Lindsey

"Victor Lindsey" <victor.lindsey @nospam_vlsyste ms.com> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
Hey Eric,

I have the same issue, but perhaps better resources (machines of different
configurations) to figure out what is going on....

Nov 18 '05 #7
Just fixed the problem

Copy CDOEX.DLL off your exchange server to the workstation that has exchange management and .Net Development on it "C:\Program Files\Common Files\Microsoft Shared\CDO\"

Register the DLL
Command Line: 'REGSVR32 "C:\Program Files\Common Files\Microsoft Shared\CDO\CDOE X.DLL"'

Add reference in .Net for CDOEX.DLL

Now add reference for CDOEXM.DLL

You may need to remove all references first and then re-add them in this order
"C:\Program Files\Exchsrvr\ bin\CDO.DLL"
"C:\Program Files\Common Files\Microsoft Shared\CDO\CDOE X.DLL"
"C:\Program Files\Exchsrvr\ bin\CDOEXM.DLL"

Or Clear the "Interop.*. dll" files out of the following folders
"C:\Documen ts and Settings\UserNa me\My Documents\Visua l Studio Projects\Projec tName\obj"
and
"C:\Documen ts and Settings\UserNa me\My Documents\Visua l Studio Projects\Projec tName\bin"
And then Remove and re-add the CDO References.

I suspect it works for a few of you that have .Net Dev on a full exchange server because CDOEX.DLL exists on that machine

I hope this information helps everyone

What a costly error 12 Hours of development time lost to a stupid fault

Kevin
Dev / Net Admin
New Zealan

User submitted from AEWNET (http://www.aewnet.com/)
Nov 19 '05 #8
Just fixed the problem

Copy CDOEX.DLL off your exchange server to the workstation that has exchange management and .Net Development on it "C:\Program Files\Common Files\Microsoft Shared\CDO\"

Register the DLL
Command Line: 'REGSVR32 "C:\Program Files\Common Files\Microsoft Shared\CDO\CDOE X.DLL"'

Add reference in .Net for CDOEX.DLL

Now add reference for CDOEXM.DLL

You may need to remove all references first and then re-add them in this order
"C:\Program Files\Exchsrvr\ bin\CDO.DLL"
"C:\Program Files\Common Files\Microsoft Shared\CDO\CDOE X.DLL"
"C:\Program Files\Exchsrvr\ bin\CDOEXM.DLL"

Or Clear the "Interop.*. dll" files out of the following folders
"C:\Documen ts and Settings\UserNa me\My Documents\Visua l Studio Projects\Projec tName\obj"
and
"C:\Documen ts and Settings\UserNa me\My Documents\Visua l Studio Projects\Projec tName\bin"
And then Remove and re-add the CDO References.

I suspect it works for a few of you that have .Net Dev on a full exchange server because CDOEX.DLL exists on that machine

I hope this information helps everyone

What a costly error 12 Hours of development time lost to a stupid fault

Kevin
Dev / Net Admin
New Zealan

User submitted from AEWNET (http://www.aewnet.com/)
Nov 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1530
by: Erick Bodine | last post by:
I am trying to get a list of Storage Groups on an Exchange Server (E2K) with an eye towards deleting/creating more. I am going off of the Exchange SDK docs in msdn (http://msdn.microsoft.com/library/en-us/wss/wss/_cdo_enumerating_storage_groups_and_stores.asp) to do this. I used makepy.py (on 'Microsoft CDO for Exchange Management Library') to generate early binding and thought everything was going fine, but I get the following...
0
1126
by: Dave Spina | last post by:
I have been working with the System.DirectoryServices namespace and the CDOEXM COM objects in a recent project. After probing the CDOEXM object set for a while I noticed that beyond the usual IMailboxStore interface there existed a MailboxClass class, which does have quite a few properties that would be wonderful to explore. I have tried casting, but that is illegal, and there is no mention of this class or its use anywhere that I have...
4
2142
by: Barry G Freeman | last post by:
I'm fairly new to C# and I need to be able to enumerate the storage groups and mailstores on our Exchange 2k server. So far, i've figured out that I need to ue CDOEXM which I've added as a COM reference. I can instatiate a server object and iDataSource2: CDOEXM.ExchangeServer ExchSrvr = new CDOEXM.ExchangeServerClass(); CDOEXM.IDataSource2 ds2; But how do I attach the IDataSource2 with the server object?
0
1288
by: Ingram Leedy | last post by:
Hi, I am using the example from Microsoft Knowledge Base Article - 313114, "HOW TO: Create a MailBox-Enabled Recipient by using C#.NET". The WindowsXP computer is part of the Microsoft 2003 based domain with Exchange 2003 installed. I have installed Exchange 2003 System Management Tools on the WinXP computer which works fine to create and edit users. I am logged in with a security context that has permissions to make changes
1
2281
by: TM | last post by:
Greetings, I've more or less figured out how to get a list of users who have access to a particular user's mailbox (code below), but I'm stumped as to how to get a list of users that a particular user has access to. In other words, if I'm finding out info for user jdoe, I can get a list of users who have access to jdoe's mailbox, but I can't get a list of mailboxes that jdoe can access. MUCH thanks to any who can help! Blessings, TM
0
2586
by: TM | last post by:
Greetings, I've more or less figured out how to get a list of users who have access to a particular mailbox (code below), but I'm stumped as to how to get a list of mailboxes that a particular user has access to. In other words, if I'm finding out info for user jdoe, I can get a list of users who have access to jdoe's mailbox, but I can't get a list of mailboxes that jdoe can access. MUCH thanks to any who can help! Blessings, TM
0
1798
by: CHRIS | last post by:
Isn't it always the case that as soon as you post, you solve the problem? Apparently, adding an extra "space" to a blank line in my web.config file solved this problem. I would be angry that it was something stupid that like that ended up fixing it, but Im just so glad that I can actually get some work done now.
0
2597
by: Mandy | last post by:
Hi, I am trying to create a exchange mailbox-enabled user on Exchange Server 2003 via w ASP.NET web applcation (written in C#). I can create the user successfully but when I try to create the mailbox I get the following exception: System.Runtime.InteropServices.COMException (0x8000FFFF): Catastrophic failure at CDOEXM.IMailboxStore.CreateMailbox(String HomeMDBURL)
0
1100
by: KPipher | last post by:
Hello, I'm having trouble implementing the CDOEXM Namespace in an asp.net application (VB.NET). I've read many conflicting discussions surrounding the use of CDOEXM remotely and would appreciate any constructive insight. Our basic server setup is as follows: Server 1 (Webserver):
0
8777
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9310
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9237
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8187
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6033
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4551
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4813
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3262
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2729
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.