I have an application written in C# 2 using Broker 7.2.1.50
I have a function that makes several Broker Calls and begins like this:
try
{
conn_init();
//signals the wrapped functions not to connect on there own.
connected = true;
service.OpenConversation(); //so that we can run multiple commands with one service
}
catch ( SoftwareAG.EntireX.NETWrapper.Runtime.XException xe )
{
Utilities.logEntry(xe, true);
throw new FAStorage.EntireX.WrapperException(xe);
}
.
.
.
/* conn_init(); is a custom function to create the broker/service objects and looks like this. */
private void conn_init()
{
broker = create_broker();
service = create_service(broker);
return;
}
I’m getting log output like this:
Event Type: Error
Event Source: FAServerLogSource
Event Category: None
Event ID: 0
Date: 11/1/2010
Time: 8:19:26 AM
User: N/A
Computer: DORCSSAPP01
Description:
SoftwareAG.EntireX.NETWrapper.Runtime.XException: 00740074: WAIT timeout occurred.
Stack Trace:
at SoftwareAG.EntireX.NETWrapper.Runtime.Service.OpenConversation()
at FAServer.EntireXDotNetClasses.EntireXWrapper.getData(String tableId, String caseId, String partyCode, String memberId, String maxChild, String osFips, String formNo, String formType, String formDesc)
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
It looks like the “WAIT timeout” is coming from “service.OpenConversation()” but I’m unsure how to fix it.
Thanks for any help,
Raystorm
#EntireX#webMethods#Mainframe-Integration