cancel
Showing results for 
Search instead for 
Did you mean: 

Resource Error(-8006)

Former Member
0 Kudos

Dear All,

When i am trying to connect SAP B1 through then i am getting error at oCompany.Connect. Though the same project is working for another server.

Waiting for a reply soon...

Thanks in advance

Regards

Sanjay

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Sanjay.

from archive of this forum you may try:

You can try the following. It usually works: open a search in your windows explorer and search for SM_OBS_DLL. Search for files and folders. If the search returns anything, delete it (both files and folders). It should be in your temp folder of the user that's logged in.

hope it helps

Petr

Former Member
0 Kudos

Dear Petr,

Thanks .

The problem is solved. I am working fine.

Can you plz tell me the reason for the same.

Regards

Sanjay

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi All,

I have encountered with the same issue, and I tried deleting the SM_OBS_DLL folder from my %temp% folder. Instead of reinstalling DI API, I just checked whether all my services (SQL and SAP) were running. And the reason was my sql server has been stopped. So I've started it manually, and then stop the DI Server and started back.


You can use below batch file script to stop or start all the SQL/SAP processes at once.

Stop Services.bat :

net stop MSSQLSERVER

net stop TAO_NT_Naming_Service

net stop SLD

net stop B1LicenseService

net stop SBODI_Server

net stop SBOWFDataAccess

net stop SBOWorkflowEngine

@PAUSE


Start Services.bat :

net start MSSQLSERVER

net start TAO_NT_Naming_Service

net start SLD

net start B1LicenseService

net start SBODI_Server

net start SBOWFDataAccess

net start SBOWorkflowEngine

@PAUSE


Regards,

Hasitha