COM Interoperability

JDE810

Member
We were trying to use COM Interoperability to be used on our ASP web pages. We had done some samples in Xe and it was working.

But after the upgrade to E810 we having problems with executing the COM code. Necessary settings were made into jdeinterop.ini files. But still not able to connect.

This is the issue we are facing -

<font color="blue"> Tue Nov 08 10:28:43 2005 2280 ListenerPort: 6011, MaxConnection: 100, MaxQueueEntry: 100
Tue Nov 08 10:28:43 2005 2280 Could not create server to listen for the events
Tue Nov 08 10:28:43 2005 3228 Entering Logging old login--------
Tue Nov 08 10:28:43 2005 3228 Entering Logging with Environment DV810 User V-JXS06 Role *ALL
Tue Nov 08 10:28:43 2005 3228 Validating user on: SecurityServer , Port 6012
Tue Nov 08 10:28:43 2005 3228 Error : User/Password/Role validation failed on security server.
Tue Nov 08 10:28:43 2005 3228 Error : Login validation failed on security server.
Tue Nov 08 10:37:52 2005 2368 Entering Logoff
Tue Nov 08 10:37:52 2005 2368 Logoff Successful

</font>


Following is the extract from jdeinterop.ini


<font color="blue">
[SERVER]
glossaryTextServer=JDEENT1PGH:6012
codePage=1252

[JDENET]
serviceNameConnect=6012
enterpriseServerTimeout=1200000
maxPoolSize=30

#==========================================================
# Define Cache feature for Connector
#==========================================================
[CACHE]
UserSession=18000000
SpecExpire=300000000

#==========================================================
# Define the features for inbound Business Function call
#==========================================================
[INTEROP]
enterpriseServer=ENTERPRISE
port=6012
manual_timeout=30000000
Repository=c:\connector\repository

#==========================================================
# Define the features for outbound events
#==========================================================
[EVENTS]
port=6011
ListenerMaxConnection=100
ListenerMaxQueueEntry=100
outbound_timeout=6000000

#==========================================================
# Security Server. Security server port is in [JDENET]
#==========================================================
[SECURITY]
NumServers=1
SecurityServer=ENTERPRISE
DataSource=System - 810
DefaultEnvironment=DV810
Default Role=*ALL
Row Security=NO_DEFAULT

#==========================================================
# OCMEnabled--It will enforce Connector to use OCM to find
# enterpriser server or use setting in [Interop]section.
#==========================================================
[OCM]
OCMEnabled=true


[LOGS]
Debug=TRUE
log=c:\jas.log
debuglog=c:\jasdebug.log

[DEBUG]
log=c:\net.log
DebugFile=c:\interopDebug.log
JobFile=c:\interop.Log
netTraceLevel=9
debugLevel=9

</font>

Tools Release - 8.93.N1
 
With a new tools release you may have to GENCOM a new COM Wrapper. Have you tried increasing your logging to get a more details in the logs. Have you tried the netrace setting in the JDENet settings?
 
Just in case anyone else comes across this old post, I had this same issue. The COM Connector needs a 'SecurityServer' setting under [INTEROP] - I suspect a few people run up against this one because the jdeinterop.ini files installed with the client seem to be geared towards the java connector (which doesn't require the setting).
 
Back
Top