Check out http://www.cfcomet.com/, it has a bunch of CF/COM related
information on it. Of course though, it didn't solve the problem I had!

Jason Nokes, Director of Web Development
DistributorCentral
http://www.distributorcentral.com
[EMAIL PROTECTED]
888-516-7401 phone/fax 



-----Original Message-----
From: Ryan Hartwich [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, September 19, 2001 5:19 PM
To: [EMAIL PROTECTED]
Subject: [KCFusion] CFObject problems


We are trying to implement a set of objects created by one of our
partners for exchanging data and are encountering intermittent and
inconsistent errors. An example of the test code we are running is
below. We know that the code and objects work for the most part because
we are able to exchange data. To this point we have been unable to
identify whether this is an issue with CF, the COM objects or both. The
COM objects are written in C++ and are thread-safe.

The first error we receive is the following from the server.log file:

* "Error","TID=195","09/19/01","15:57:47","Unexpected exception while
processing a tag with a general identifier of (CFSET), occupying
document position (25:2) to (25:44)

This is one of the cfset ResultsTemp.Add statements. Unfortunately, it
does not always error and not always on the same CFSET statement.

Occasionally, we also encounter the following two errors.

* unknown execption condition PCodeRuntimeContextImp::setComponentObj

* Request canceled or ignored by server. Server busy or unable to
fulfill request. ... (Location Code: 26)

We have tried several things but to no avail. We created an ASP page
with the equivalent code and have not encountered any errors on it. This
may point to an issue with CF.

We are running CF 4.5.1 SP2,NT 4.0 SP6a, SQL Server 7.0, and MDAC 2.6
SP1. The test pages we are running do not have any session, server, or
application variables on them.

If any one has any ideas on what to try or to look for, it would be much
appreciated.

[EMAIL PROTECTED]
<cftry>
     <!--- Creates instance of CandidateTestResult---->
     <cfobject type="COM" name="Results" class="PCDMMessages.TestResult"
action="Create">

     <!--- Create instance of proxy object ---->
     <cfobject type="COM" name="proxy" class="PCDMWSProxy.Exchange"
action="Create">

     <!--- Initialize proxy object --->
     <cfset
proxy.init("http://www.partnername.com/WebServices/PCDMWebService.wsdl";)
>

     <cfset ResultsTemp=Results.TestResults>
      <cfset ResultsTemp.Add("1234","5678",85.2)>
     <cfset ResultsTemp.Add("5678","9123",23.9)>
     <cfset ResultsTemp.Add("9123","4567",56.8)>
     <cfset ResultsTemp.Add("1234","5678",85.2)>
     <cfset ResultsTemp.Add("9123","4567",56.8)>

        <cfset receiptId=proxy.SubmitCandidateTestResult(Results)>

     <cfset ResultsTemp="">
     <cfset Results="">
     <cfset proxy="">

     <cfif receiptId EQ "FAILED">
         Test Not Successful
     <cfelse>
             Test Successful<br>
         <cfoutput>ReceiptId:  #receiptId#</cfoutput>
     </cfif>

     <cfcatch type="Any">
          <cfoutput>#CFCATCH.Type#<br>
          #CFCATCH.Message#<br>
          #CFCATCH.Detail#<br>
          </cfoutput>
     </cfcatch>
</cftry>


Mike Worrall
DiscoverME
www.discoverme.com
[EMAIL PROTECTED]
Work: 913-642-1600 x209
PCS: 913-706-1165



 
 
______________________________________________________________________
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives........ http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe.................... mailto:[EMAIL PROTECTED]
To Unsubscribe................ mailto:[EMAIL PROTECTED]
 
 
 
______________________________________________________________________
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives........ http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe.................... mailto:[EMAIL PROTECTED]
To Unsubscribe................ mailto:[EMAIL PROTECTED]
 

Reply via email to