I am write an C# library that will use as reference for VBA
This library has service reference for some online product we using and this service reference require an .config file to be in the same folder as the application/dll
when I use the service reference in .net application all work grate. But when I use it in Ms access VBA I gets error about variables that are missing and I know they are in the config file.
I was trying few solutions i found but the problem is I cant change the variables in the reference cause we update it every few weeks.
so I have to include the config file with the .dll without change variables in the project.
Thanks,
config sample that the service reference use:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="Isoapbinding" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://192.168.1.180/soap"
binding="basicHttpBinding" bindingConfiguration="Isoapbinding"
contract="time.Isoap" name="IsoapPort" />
</client>
</system.serviceModel>
</configuration>