The following error may be seen in X12 Studio after submitting an edited EDI file opened from the EDI Gateway Portal.
This error message is usually encountered when the EDI Gateway Windows Services are not running on the application server. To remedy this, ensure that all Tctep Windows services are in a started state and make sure that the T-Connect license is not expired.
Another cause for this error is an incorrect resubmission URL in the TctepDb table that stores resubmission URLs.
Ensure that the view [TctepDb].[portal].[vGetResubmissionLocations] has the correct URLs that match the hostname of the application server.
CREATE VIEW [portal].[vGetResubmissionLocations]
AS
SELECT
1 AS Id,
1 AS FeedId,
'HTTP Re-queue' AS DisplayName,
'http://localhost/TctepHttpService/Resubmit' AS SendAddress
UNION ALL
SELECT
2 AS Id,
1 AS FeedId,
'HTTP Resubmit' AS DisplayName,
'http://localhost/TctepHttpService/Resubmit' AS SendAddress
GO