Webservice: Flex to CFC

Hi
I'm triing to send a complex Object (AS) from Flex to a
simple test Webservice CFC.
If I create an Object in ActionScript an send this to my
Webservice, the Object will not be received from the CFC ( return
String is "NO").
How can I send a complex Object to my CFC and read the
variables ?
Thx for any help.
Sonix
Code:
CFC:
<cffunction name="writeTimerChange" output="false"
access="remote" returntype="String">
<cfargument required="no" name="Gewinnzeit"
type="any">
<cfset ret = #isdefined("Gewinnzeit")#>
<cfreturn ret>
</cffunction>
AS:
public class Gewinnzeit {
public var ID:int;
public var timestamp:Date;
public var gewinnzahl:int;
public var count:int;
public var gewinner:String;
public var gewinnerID:int;

Can you post the mxml/as you are using to invoke the
webservice too. From what I can see here, what you are doing should
work. The AS Class should come into CF as a struct and back out as
a struct or generic AS Object() (if you returned it).
---nimer

Similar Messages

  • Flex and CFC with Remote Object

    I wrote a simple cold fusion componenet on my webserver at:
    http://www.paramountmediainc.com/webservices/eadexchange/agent_sys.cfc
    Now I want to play with that in Flex with a Remote Object.
    I'm writing the flex on my local machine. I tried this approach but
    was uncessfull:
    <mx:RemoteObject id="acctRO" showBusyCursor="true"
    source="webservices.eadexchange.agent_sys"
    endpoint="
    http://www.paramountmediainc.com/flashservices/gateway">
    I get the following error ...
    TypeError: Error #1034: Type Coercion failed: cannot convert
    Object@3b15da1 to mx.messaging.messages.ErrorMessage.
    Any ideas what I'm doing wrong here?

    You cant really replace Struts with Flex, maybe a view part
    , thats about is, you still need backend processioning
    logic,all that you are asking is difficult to answer is one reply,
    IMHO, best thing you can do is to dive into following URLs :
    http://www.adobe.com/devnet/flex/
    http://livedocs.adobe.com/flex/3/html/help.html?content=Part2_DevApps_1.html
    http://livedocs.adobe.com/blazeds/1/blazeds_devguide/
    http://livedocs.adobe.com/flex/3/html/help.html?content=Part6_ProgAS_1.html
    and of course your best friend :
    http://livedocs.adobe.com/flex/3/langref/index.html

  • Nothing but CFC errors..

    Ok.. so here's the layout;
    My personal computer:
              Flex Builder 3
              MAC Leopard
              Dreamweaver CS4
    Server:
              ColdFusion MX 6.1 (fully updated)
              IIS
    Trying to build a simple CFC to retrieve a record of data from a datasource from within Flex.  When I visit the WSDL URL (http://blah.blah.com/mycfc/db_getbrat.cfc?wsdl), it shows the following:
    <wsdl:definitions targetNamespace="http://mycfc">
    <wsdl:portType name="db_getBrat">
      </wsdl:portType>

    <wsdl:binding name="db_getBrat.cfcSoapBinding" type="impl:db_getBrat">
    <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    </wsdl:binding>

    <wsdl:service name="db_getBratService">

    <wsdl:port name="db_getBrat.cfc" binding="impl:db_getBrat.cfcSoapBinding">
    <wsdlsoap:address location="http://blah.blah.com/mycfc/db_getBrat.cfc"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    So it appears that the CFC is working and loaded.  I have even tested the code within the CFC (the SQL query and output) using a basic .CFM file, and it works perfectly.  So I know the DSN and query are working.
    However, when I use the following code:
         <mx:WebService id="srv" wsdl="http://blah.blah.com/mycfc/db_getBrat.cfc?wdsl" useProxy="false" showBusyCursor="true" />
        <mx:DataGrid dataProvider="{srv.retrieveBrat.lastResult}" width="726" height="194" x="25" y="10">
            <mx:columns>
                <mx:DataGridColumn dataField="contactid" headerText="Contact ID"/>
                <mx:DataGridColumn dataField="firstname" headerText="First Name"/>
                <mx:DataGridColumn dataField="lastname" headerText="Last Name"/>
            </mx:columns>
        </mx:DataGrid>
        <mx:Button label="Get Data" click="srv.retrieveBrat()" x="25" y="212"/>
    I get the following error in a popup after the application loads:
    RPC Fault faultString="Error #1085: The element type "br" must be terminated by the matching end-tag "</br>"." faultCode="Client.CouldNotDecode" faultDetail="Unable to load WSDL. If currently online, please verify the URI and/or format of the WSDL (http://blah.blah.com/mycfc/db_getBrat.cfc?wdsl)"]
        at mx.rpc.wsdl::WSDLLoader/faultHandler()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\ rpc\wsdl\WSDLLoader.as:98]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()[C:\autobuild\3.2.0\framewor ks\projects\rpc\src\mx\rpc\AbstractInvoker.as:170]
        at mx.rpc.http::HTTPService/http://www.adobe.com/2006/flex/mx/internal::processResult()[C:\autobuild\3.2.0\frameworks\ projects\rpc\src\mx\rpc\http\HTTPService.as:925]
        at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()[C:\autobuild\3.2.0\frameworks\ projects\rpc\src\mx\rpc\AbstractInvoker.as:188]
        at mx.rpc::Responder/result()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\Responde r.as:43]
        at mx.rpc::AsyncRequest/acknowledge()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\ AsyncRequest.as:74]
        at DirectHTTPMessageResponder/completeHandler()[C:\autobuild\3.2.0\frameworks\projects\rpc\s rc\mx\messaging\channels\DirectHTTPChannel.as:403]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at flash.net::URLLoader/onComplete()
    And when I run a .CFM file to <cfinvoke..> the CFC, I get the following error:
    Name: http://blah.blah.com/mycfc/db_getBrat.cfc?wdsl.
    WSDL: http://blah.blah.com/mycfc/db_getBrat.cfc?wdsl. org.xml.sax.SAXException:
    Fatal Error: URI=null Line=40: Expected "" to terminate element starting on line 16.
    Only problem is.. there IS no line 16 in the CFC.. but that's the right one.  Only one in there.  And that very same URL in my browser pulls up
    the WSDL info above.
    Anyone have a clue as to why this is happening?  I'm about to throw the computers out the window.  (well.. not really.. too expensive)
    Thanks to all, in advance, for any help..

    couple things, how come you didnt use and mx:operation tag between the mx:webservice open and close tags?  im not sure if thats even the issue but to me it makes it easier because you specify the function inside the cfc you're trying to call by doing this.
    also, most of the time when you get the wsdl error you wrote of, its because of some mal-formed xml.  if your result has any html tags in its output, theres a good chance youll get a parsing error because xml is wicked picky.  youd wanna do a coldfusion string replace function to look for < or > signs.
    if you want, post your flex and cfc code, i just finished doing a few projects doing the exact same stuff so i got it fresh in my head!

  • Write data to SharePoint from embeded Flex swf

    I am trying to integrate Flex 3 applications into SharePoint 2007 environment which would allow our users to read/write/delete data from SharePoint using an embeded Flex app inside SharePoint. While the article from matthew.meier on "Adding Event Driven Flex Components to Microsoft Sharepoint 2007" is great and another article by Serge van den Oever on "Use Flex to retrieve data from a SharePoint list" is fantastic, they neither touch the topics of writing or inserting data into SharePoint. My goal is to create a two-way communication between Flex and SharePoint to dynamically pull (read) data into Flex  from SharePoint lists, etc via GUID or other method AND to also write or update SharePoint from a front-end Flex inside SharePoint.

    I have been working on a solution which appears like it would work, but I am getting errors. The source code and examples are found on Code Project http://www.codeproject.com/KB/aspnet/FlexASPWebService.aspx?msg=3270246#xx3270246xx This Flex/ASP example uses a web service to communicate to a SQL database. Flex makes a web service call to the .asmx file via WSDL and the magic happens. I am running into a roadblock as I receive an error that the app cannot find the WSDL. I have tried to run the same WSDL URL in a browser and I get an server application error.
    I also tried a solution found at http://shardulbartwal.wordpress.com/2008/03/20/import-web-servicewsdl-wizard-in-flex-30/ to load the WSDL file directly into Flex, but I ran into another roadblock. When I get to this step below Flex gives an error that it cannot find the WSDL file either…
    Here is the WebService call from Flex…
    The files from Code Project contain a directory structure as such:
    TestWebService\Service.asmx
    TestWebService\Web.config
    TestWebService\App_Code
    TestWebService\App_Code\Service.cs
    TestWebService\App_Data
    The Service.cs file is inside the App_Code directory and is referenced from the Service.asmx file with this code:
    My Flex file calls the Service.asmx?WSDL which then calls the file Service.cs and then it breaks.
    The Code for the Flex file is as follows…
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()">
    <mx:Script>
          <![CDATA[
                import mx.controls.Alert;
                import mx.rpc.events.FaultEvent;
                import mx.rpc.events.ResultEvent;
                private function init():void {
                      // Get Data from WebService and fill datagrid when you fist invoke the application
                      ws.GetEmployees(); 
                private function GetEmployees(event:ResultEvent):void {
                      // Databind data from webservice to datagrid
                      datagrid.dataProvider = event.result;
                private function SaveEmployee(event:ResultEvent):void {
                      // To Refresh DataGrid;
                      ws.GetEmployees();
                      Alert.show("Saved Successfully");
                private function AddRecord(event:MouseEvent):void {
                      // Save a record using a WebService method
                      ws.SaveEmployee(txtEmpId.text, txtEmpName.text, txtEmpEmail.text); //
                private function fault(event:FaultEvent):void {
                      // Oppps some error occured
                      Alert.show(event.toString());
          ]]>
    </mx:Script>
    <!-- WebService definition -->
    <mx:WebService id="ws" wsdl="http://localhost/TestWebService/Service.asmx?WSDL" fault="fault(event)">
          <mx:operation
                name="GetEmployees"
                resultFormat="object"
                result="GetEmployees(event)"
                 />
          <mx:operation
                name="SaveEmployee"
                resultFormat="object"
                result="SaveEmployee(event)"
                 />
    </mx:WebService>
          <mx:Panel x="41.5" y="66" width="714.5" height="237" layout="absolute" title="ASP.NET WebService + Flex Demonstration">
                <mx:HBox height="95%" width="95%" horizontalCenter="0" verticalCenter="0">
                      <mx:DataGrid id="datagrid" width="465" height="100%">
                            <mx:columns>
                                  <mx:DataGridColumn headerText="Emp Id" dataField="EmpId"/>
                                  <mx:DataGridColumn headerText="Emp Name" dataField="EmpName"/>
                                  <mx:DataGridColumn headerText="Emp Email" dataField="EmpEmail"/>
                            </mx:columns>
                      </mx:DataGrid>
                      <mx:Form x="608" y="74" width="100%" height="100%" borderStyle="solid">
                            <mx:FormItem label="EmpId">
                                  <mx:TextInput width="106" id="txtEmpId"/>
                            </mx:FormItem>
                            <mx:FormItem label="EmpName">
                                  <mx:TextInput width="106" id="txtEmpName"/>
                            </mx:FormItem>
                            <mx:FormItem label="EmpEmail">
                                  <mx:TextInput width="106" id="txtEmpEmail"/>
                            </mx:FormItem>
                            <mx:FormItem width="156" horizontalAlign="right">
                                  <mx:Button label="Add" id="btnAdd" click="AddRecord(event)"/>
                            </mx:FormItem>
                      </mx:Form>
                </mx:HBox>
          </mx:Panel>
    </mx:Application>
    The Flex app error states it cannot locate the WSDL. Any ideas?
    I don’t know what I am doing wrong…

  • Script timeouts (Error #1502) and WebService component

    Hello Flex community,
    I am getting a script timeout (error #1502) when I am calling a SharePoint Web Service (CopyIntoItems) when trying to upload large files (greater than 40 MB).
    The error does not occur when using the Web Service for smaller files. The large files can be uploaded directly to SharePoint using the web interface therefore it is not a back-end SharePoint issue.
    I believe the issue has to do with the logic in the WebService Flex component, however I am not sure how to optimize it and I cannot break down the file into smaller chunks as it needs to be together in order to upload with the SharePoint field information.
    Anyone have any ideas on how I can resolve this issue?
    Thanks,
    Mauricio

    I can't say exactly what is big binding because it depends on combination of factors: how fast your machine is, how big the Excel model is, how many components you have etc. Generally if you have bindings with several thousand cells it's going to cause the timeout problem. The problem is that we use Flash player in the application, and if some operation takes longer than a minute it times out. So, if getting data from the big bindings took too long, the flash player stops the operation and you have this timeout error.
    You see the timeout error only if you have debug version of Flash player installed. If you have release version installed, you don't see any erors, but you notice strange things, for example selecting component on the canvas does not cause property sheet to display. Release version of Flash is faster, so you can try to remove debug flash player and install release and there is chance that it will work.
    FP1 version is going to include some optimisations to reduce this problem and allow working with larger files.
    Margaret

  • Webservice, DAO/Bean Pattern - Help

    All,
    I'm stuck on this one - any help would be much apperciated.
    I'm trying to expose a CFC which uses a DAO/Bean pattern and
    am receiving the following error.
    Could not perform web service invocation "getQuote".
    Here is the fault returned when invoking the web service
    operation:
    AxisFault
    faultCode: {
    http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: coldfusion.xml.rpc.CFCInvocationException:
    [coldfusion.runtime.UndefinedElementException : Element
    QUOTEDAO is undefined in a Java object of type class
    [Ljava.lang.String; referenced as ]
    Here are my files to give you an idea of what I am working
    with.
    /webservices/application.cfm
    /webservices/quote/quote.cfc (bean)
    /webservices/quote/quoteDAO.cfc (my data access object, has
    crud methods)
    /webservices/quote/quoteService.cfc (service layer, i
    generate my wsdl from this)
    I have unit tested the CFC's by running a test.cfm file
    within the /webservices directory which calls all methods. Works
    fine. Additionally, the WSDL generates fine.
    The problem is when I invoke the service, here is how I am
    invoking it.
    <cfinvoke
    webservice="
    http://localhost/apps/webservices/quote/quoteService.cfc?wsdl"
    method="getQuote"
    returnvariable="Quote">
    <cfinvokeargument name="Quote_ID" value="200"/>
    </cfinvoke>
    It's important to note that within my application.cfm I am
    setting up my quoteDAO and quoteGateway objects within my variables
    scope. I am then setting my quoteService in my application scope,
    like so:
    <cfset variables.quoteDAO =
    createObject("component","apps.webservices.quote.quoteDAO").init(variables.dsn)
    />
    <cfset variables.quoteGateway =
    createObject("component","apps.webservices.quote.quoteGateway").init(variables.dsn)
    />
    <cfset application.quoteService =
    createObject("component","apps.webservices.quote.quoteService").init(variables.quoteDAO,
    variables.quoteGateway) />
    I'm not sure what exactly the error I am receiving is, but
    part of me cringes thinking it might have to do with pathing.
    Any advice?

    Simon,
    Thanks for your reply - I modified the code to manually setup
    those objects in my init like so.
    <cfset variables.dsn = "mydsn" />
    <cfset variables.quoteDAO =
    createObject("component","apps.webservices.quote.quoteDAO").init(variables.dsn)
    />
    <cfset variables.quoteGateway =
    createObject("component","apps.webservices.quote.quoteGateway").init(variables.dsn)
    />
    It solved that initial error but now I am getting:
    Could not perform web service invocation "getQuote".
    Here is the fault returned when invoking the web service
    operation:
    AxisFault
    faultCode: {
    http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: org.xml.sax.SAXParseException: Premature end of
    file.
    faultActor:
    faultNode:
    Any ideas?

  • Webservice secure

    I would like to secure my webservice just like cfc.If i go to
    cfc it will ask me for userid and password. can i do that for wsdl.
    thankx

    You can try using the @common:security annotation:
    * Users in the Administrators role may access any method in this web service.
    * @common:security roles-allowed="Administrators"
    @common:security roles-allowed="Administrators"
    public class HelloWorld implements com.bea.jws.WebService
    * Only users in the Managers (or Administrators) role may access this method
    * @common:operation
    * @common:security roles-allowed="Managers"
    @common:operation
    @common:security roles-allowed="Managers"
    public String helloManagers()
    return "Hello, Managers.";
    * Only users in the Employees (or Administrators) role may access this method
    * @common:operation
    * @common:security roles-allowed="Employees"
    @common:operation
    @common:security roles-allowed="Employees"
    public String helloEmployees()
    return "Hello, Employees.";
    Thanks,
    Sandeep

  • Populate ComboBox from database - NOT using Flex Data Services

    Hi there,
    We are using CF with Flex but are not using the Flex Data
    Service. I'm very much a newb and I'm having trouble finding any
    information on how to populate controles from a database without
    using Flex Data Service. Any help would be greatly appreciated.
    First I have a page... JobSearch.mxml that contains a combo
    box that I want to populate with the job_id and job_title from a
    MSSQL database.
    In Flex in the RDS DataView I used the "Create CFC" Wizard
    which generated "job.cfc" and "jobGateway.cfc". It also generated
    "job.as".
    The CF Function that selects the data appears to be defaulted
    and called "load" and the .as function is called simply "job".
    So, that all looks great. But I can't find any information on
    what I need to have on my JobSearch.mxml to actually get this data
    into the comboBox.
    I did:
    <mx:Script>
    <![CDATA[
    [Bindable]
    public var jobData:job = null;
    ]]>
    </mx:Script>
    And then:
    <mx:ComboBox
    text="{jobData.job_title}"></mx:ComboBox>
    But I'm being told "Type was not found or was not a
    complie-time constant: job"
    I guess I'm missing something, or doing something way
    wrong... I just don't know enough of Flex at this point to know
    what it is.
    Thanks!
    April

    Using php or asp is not an option, as we are a Cold Fusion
    House.
    I was looking at an article on Ben Forta's blog (
    http://www.forta.com/blog/index.cfm?mode=e&entry=1786)
    and following his example I did this... only it doesn't work:
    I'm very very new to Flash and we are using ColdFusion but
    are not using Flex Data Services. I've been trying to figure out
    how to populate a combobox from a database and I'm just not having
    any luck.
    My project is called "PreTraffic". I have my main file as
    "JobSearch.mxml" and a folder under the root named "cfc" with a
    file called "job.cfc".
    job.cfc contains the following code:
    <cfcomponent>
    <!--- Get jobs --->
    <cffunction name="GetJob" access="remote"
    returntype="query" output="false">
    <cfset var job="">
    <cfset var results="">
    <cfquery datasource="discsdev" name="job">
    SELECT job_id, job_title
    FROM job
    WHERE status = 'O'
    ORDER BY job_title
    </cfquery>
    <cfquery dbtype="query" name="results">
    SELECT job_title AS label, job_id AS data
    FROM job
    ORDER BY label
    </cfquery>
    <cfreturn results>
    </cffunction>
    </cfcomponent>
    And JobSearch.mxml has the following code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
    xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*"
    layout="absolute"
    backgroundGradientColors="[#ffffff, #d0d0d0]"
    creationComplete="InitApp()">
    <mx:Style source="style.css" />
    <mx:Script>
    <![CDATA[
    public function InitApp():void {
    jobSvc.GetJob();
    ]]>
    </mx:Script>
    <!-- ColdFusion CFC (via AMF) -->
    <mx:RemoteObject id="jobSvc" destination="PreTraffic"
    showBusyCursor="true" />
    <mx:VBox label="Job History" width="100%" height="100%"
    x="10" y="92">
    <mx:Label text="Search jobs by"/>
    <mx:Form label="Task" width="100%">
    <mx:FormItem label="Job Name:">
    <mx:ComboBox id="jobNameCB"
    dataProvider="{jobSvc.GetJob.results}"></mx:ComboBox>
    </mx:FormItem>
    </mx:Form>
    <mx:HBox>
    <mx:Button label="Search"/>
    <mx:Button label="Clear"/>
    </mx:HBox>
    </mx:VBox>
    </mx:Application>
    My Compiler thingy points to:
    -services
    "/Volumes/flexwwwroot/WEB-INF/flex/job-services-config.xml" -locale
    en_US
    and job-services-config.xml contains the following code:
    <destination id="PreTraffic">
    <channels>
    <channel ref="my-cfamf"/>
    </channels>
    <properties>
    <source>flex.pretraffic.cfc.job</source>
    <lowercase-keys>true</lowercase-keys>
    </properties>
    </destination>
    Well, when I run the app... the combobox is not populated...
    Can anyone help with what I've done wrong?
    Thanks!
    April

  • ValueObjects and Flex 3 or 4 Wizards

    I think I have many of the VO concepts down but still am not quite getting it to work so if I could get some quick feedback it would be much appreciated.
    So I have a RemoteObject which calls a cfc that then calls a MySql Stored Procedure and ultimately returns to flex a (I guess) structure/object/query/Array/ArrayCollection??? in the sense that I don't have any data typing in the cfc (ie I can display the returned results in a Datagrid where the headers are the database field names).
    Now, various tutorials SEEM to suggest datatyping the results in the cfc and then via the alias attribute I think mapping said cfc to a similarly defined flex vo (which the Flex 3 cfc wizard purports to do automatically).  I again think this step also includes essentially stripping off the database fieldnames and thereby benefiting from reduced data transmission and flex receipt computation requirements -- but to me it seems an imposition of logic on the CF "layer" (whereas I've thought that the app would be best with logic at mainly the dbase but secondly at the flex client layer).  Am I correct in this/these deduction(s) -- fwiw I have yet to find a tutorial which spells such a process out without assuming a better knowledge of CF than I have -- and what are opinions on the performance implications???
    Secondly (and regardless of whether cfc typing occurs) I think I have been missing the step in the vo process in which the vo is stored in a "model" layer. Cairngorm/Mate/etc aside, if say in my main app I import the CustomVO.as then the next steps are to "populate an instance" of the vo -- but then to further save said instance in a "model" (the step I've been missing) -- and then bind my app components to the model (ie NOT to the instance), right?
    Obviously such a process is not necessary in every application but fwiw my app detects visitor location (based on ip) and then returns a look&feel specific for say each state.  Moreover, members who then log in are shown the look&feel they may have previously customized.  Now, the backend dbase to do this works fine but on the flex/client side I'm thinking (derived from tutorials) to:
    A.) Include in the main app a <mx:Model> with default look&feel values (not much data and good insurance for if say dbase goes down)
    B.) have a initialize=". . . "  call a <mx:RemoteObject> which returns the state specific values which then overwrite the values in the model above
    C.) Upon successful signin return member specific values  (I THINK that before overwriting the model here I want to write the (B) values to a SharedObject such that upon signout there is not the need for another call to the server.
    Anyway, thanks for reading this novel, let me know if I am on the right track (or continuing the trainwreck )
    Edit:  Not to further impose but relatedly what are best practices for say search results (ie paginated lists) -- should/need they be valueObjects (seems like a great deal of computing to me) and/or typed on the CF server side?

    bump

  • ColdFusion Remote Service Calls and Dates

    Hi all, I'm hoping someone can help me out with my confusion.  I’m sending an object including datetime data from ColdFusion to a Flash application.  The datetime in the ColdFusion object include milliseconds, however, if I use the getTime() function on the Date object in the Flex application, the milliseconds have been zeroed out.  Is there any way to retain the milliseconds when the data is passed through the flexgateway?
    Thanks,
    Christine

    Hi Balaji,
    I have attached a demo of my proxy webservice called pxTest.cfc.  pxTest.cfc contains two functions, testDate and pushBackTestDate.  I also attached a simple Flex App called testDate.mxml.  And a Test file called test.cfm.
    Save pxTest.cfc to your CFC folder.  Create a new project called TestDate.  Go to the data/services tab, click "Connect to Data/Service" and select Data Service ColdFusion.  Browse to PxTest.cfc and select it for the CFC location.  Click Next, then click Finish.  Configure ReturnType as Date for both pushBackTestDate and testDate.  Paste the code from TestDate.mxml into the blank TestDate.mxml file that was created when you created the project TestDate.  Run the TestDate.mxml application.
    On load of the application a date was requested and received from pxTest.cfc.  Click Confirm Test Date and note the date returned, and the milliseconds value for that date.  Next click Push User Data back, this will call the method pushBackTestDate sending the date from the Flex app back into CF.  All pushBackTestDate does is set the value returned into session and return it back to the Flex app again.
    Click the button Show Pushed Data Result to see the date that was returned.  In my tests this date no longer has a value for milliseconds.  As long as pxTest.cfc and test.cfm run in the same session you will be able to see the dates sent and returned by running test.cfm.  The dump of that session variable and time formatted versions of that variables are displayed below:
    RETURNED
    {ts '2009-09-17 12:57:50'}
    SEND
    {ts '2009-09-17 12:57:50'}
    TimeFormat Send 12:57:50 13
    TimeFormat Returned 12:57:50 0
    Note the date sent contains milliseconds, the date returned does not have milliseconds.  Hopefully this demo will work for you and demonstrate the issue.  Please let me know if you need more information.
    Thanks,
    Christine

  • Web Service is not working in COldfusion 8

    Hi,
    I am using the following code for creating the web service.
    this code was perfectly working in Coldfusion 7,
    however not working in Coldfusion 8.
    &lt;cfscript&gt;
        try {
            ws = CreateObject("webservice", CurrentURL & "IntouchDataService.cfc?wsdl");
        } catch (any e) {
            WriteOutput("Error occured while invoking the Web Service at: ");
            WriteOutput('&lt;a href="#CurrentURL#IntouchDataService.cfc?wsdl"&gt;#CurrentURL#IntouchDataService.cfc?wsdl &lt;/a&gt;');
            WriteOutput('&lt;hr /&gt;&lt;h2&gt;');
            WriteOutput(e.message);
            WriteOutput('&lt;/h2&gt;&lt;hr /&gt;');
            WriteOutput(e.detail);
            WriteOutput('&lt;hr /&gt;');
            WriteOutput(e.StackTrace);
    &lt;/cfscript&gt;
    Follwoing error i got:
    coldfusion.jsp.CompilationFailedException: Errors reported by Java compiler: Found 1 semantic error compiling "E:/ColdFusion8/stubs/WS-2123243560/coldfusion/xml/rpc/CFCInvocationException.java": < 10. public class CFCInvocationException extends org.apache.axis.AxisFault implements java.io.Serializable { . . . 88. } > *** Semantic Error: A class file was not generated for the type "coldfusion.xml.rpc.CFCInvocationException" because a library method that it depends on was not found. See system messages for more information. Found 1 semantic error compiling "E:/ColdFusion8/stubs/WS-2123243560/com/intouchsupport/www/IntouchDataService/TestWebServ iceLocator.java": < 10. public class TestWebServiceLocator extends org.apache.axis.client.Service implements com.intouchsupport.www.IntouchDataService.TestWebSe
    Also i did lot of googling to solve this issue but no luck.
    also i found following blog about this issue also and i did the give steps however problem not solved.
    http://tjordahl.blogspot.com/2007/09/coldfusion-8-getting-started-code.html
    Can somebody help me to sort out this issue?
    thanks
    Prashant Gupta

    Hi,
    I got solution to my problem of webservice is not working in CF8.
    the problem was
    we have already a "rt.jar" file in a location and we defined this location in CF Admin >> java jvm >> classpath
    so this file was conflicting.
    i simply removes this file path from CF Admin.
    and restart the CF services.
    and my web service start working.

  • HELP -- Slow and sometime unresponsive CF Server

    From 2 weeks to date we are having problems with our CF Server. Especifically in one site but affect all the CF webserver. The problem is that the CF server is very slow and unresponsive some times and suddenly is normal again. Sometimes the server take a lot of time to load the index.cfm of the site in some sesion but the rarerly is that at the sametime other users load very fast the index. I don't know why. I debbuged and where it take a lot of time to load is in the application.cfm and is where the session is create. We have othe web apps in our intranet where have session too, they don´t take a lot of time of load the index (index and application.cfm).
    Any recomendations?
    regards!
    This is the last snapshot of unresponsive server
    Snapshot generated on : Fri Aug 19 12:13:27 CDT 2011      Caused by : Unresponsive Server Alert
    Profiling : Enabled
    Memory Tracking : Enabled
    8 or more threads are busy for more than 60 seconds.
    *Total Running requests - 12
    *Total Queued requests - 2
    Template Running requests - 7
    Template Queued requests - 0
    Flash Remoting Running requests - 0
    Flash Remoting Queued requests - 0
    CFC method Running requests - 0
    CFC method Queued requests - 0
    Web Service Running requests - 5
    Web Service Queued requests - 2
    JVM Memory Stats
    Free Memory : 208656768 bytes
    Used Memory : 214836864 bytes
    Server Scope Memory Used - 3192 bytes
       [Variable Type : Variable Name : Size]
       STRUCT : COLDFUSION : 2992 bytes
       STRUCT : OS : 200 bytes
    Application Scope Memory Used - 264 bytes
    [Application Name : Memory Used]
        : 0 bytes
          [Variable Type : Variable Name : Size]
          C:\ColdFusion8\wwwroot\WEB-INF\cfc-skeletons : coldfusion.xml.rpc.CFCServlet.outputdir : 128 bytes
          C:\ColdFusion8\wwwroot\WEB-INF\cfclasses : coldfusion.compiler.outputDir : 120 bytes
           : applicationname : 40 bytes
       cfadmin : 56 bytes
          [Variable Type : Variable Name : Size]
          cfadmin : applicationname : 56 bytes
       MiComimsa : 56 bytes
          [Variable Type : Variable Name : Size]
          xxx : emailpersonarh : 80 bytes
          Portal_Prestacion : datasourcemicomimsa : 72 bytes
          MiComimsa : applicationname : 56 bytes
       Calidad : 56 bytes
          [Variable Type : Variable Name : Size]
          Calidad : applicationname : 56 bytes
       MailCheck : 56 bytes
          [Variable Type : Variable Name : Size]
          MailCheck : applicationname : 56 bytes
       bv : 40 bytes
          [Variable Type : Variable Name : Size]
          bv : applicationname : 40 bytes
    Session Scope Memory Used - 18960 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620834_53879880 : MiComimsa : 976 bytes
          [Variable Type : Variable Name : Size]
          STRUCT : auth : 592 bytes
          STRUCT : usuario : 152 bytes
          ARRAY : perfiles : 152 bytes
          CFID=620834&CFTOKEN=53879880 : urltoken : 96 bytes
          MICOMIMSA_620834_53879880 : sessionid : 88 bytes
          53879880 : cftoken : 56 bytes
          620834 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620827_80747367 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620827&CFTOKEN=80747367 : urltoken : 96 bytes
          MICOMIMSA_620827_80747367 : sessionid : 88 bytes
          80747367 : cftoken : 56 bytes
          620827 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620803_58559093 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620803&CFTOKEN=58559093 : urltoken : 96 bytes
          MICOMIMSA_620803_58559093 : sessionid : 88 bytes
          58559093 : cftoken : 56 bytes
          620803 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620824_83583802 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620824&CFTOKEN=83583802 : urltoken : 96 bytes
          MICOMIMSA_620824_83583802 : sessionid : 88 bytes
          83583802 : cftoken : 56 bytes
          620824 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620800_30123461 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620800&CFTOKEN=30123461 : urltoken : 96 bytes
          MICOMIMSA_620800_30123461 : sessionid : 88 bytes
          30123461 : cftoken : 56 bytes
          620800 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620823_54237891 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620823&CFTOKEN=54237891 : urltoken : 96 bytes
          MICOMIMSA_620823_54237891 : sessionid : 88 bytes
          54237891 : cftoken : 56 bytes
          620823 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620813_39640746 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620813&CFTOKEN=39640746 : urltoken : 96 bytes
          MICOMIMSA_620813_39640746 : sessionid : 88 bytes
          39640746 : cftoken : 56 bytes
          620813 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620819_21112367 : MiComimsa : 1040 bytes
          [Variable Type : Variable Name : Size]
          STRUCT : auth : 656 bytes
          STRUCT : usuario : 152 bytes
          ARRAY : perfiles : 152 bytes
          CFID=620819&CFTOKEN=21112367 : urltoken : 96 bytes
          MICOMIMSA_620819_21112367 : sessionid : 88 bytes
          21112367 : cftoken : 56 bytes
          620819 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620197_32596268 : MiComimsa : 984 bytes
          [Variable Type : Variable Name : Size]
          STRUCT : auth : 600 bytes
          STRUCT : usuario : 152 bytes
          ARRAY : perfiles : 152 bytes
          CFID=620197&CFTOKEN=32596268 : urltoken : 96 bytes
          MICOMIMSA_620197_32596268 : sessionid : 88 bytes
          32596268 : cftoken : 56 bytes
          620197 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620836_27586780 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620836&CFTOKEN=27586780 : urltoken : 96 bytes
          MICOMIMSA_620836_27586780 : sessionid : 88 bytes
          27586780 : cftoken : 56 bytes
          620836 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620793_10115109 : MiComimsa : 632 bytes
          [Variable Type : Variable Name : Size]
          STRUCT : auth : 616 bytes
          STRUCT : usuario : 152 bytes
          ARRAY : perfiles : 152 bytes
          CFID=620793&CFTOKEN=10115109 : urltoken : 96 bytes
          MICOMIMSA_620793_10115109 : sessionid : 88 bytes
          10115109 : cftoken : 56 bytes
          620793 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620815_85048906 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620815&CFTOKEN=85048906 : urltoken : 96 bytes
          MICOMIMSA_620815_85048906 : sessionid : 88 bytes
          85048906 : cftoken : 56 bytes
          620815 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620814_69065671 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620814&CFTOKEN=69065671 : urltoken : 96 bytes
          MICOMIMSA_620814_69065671 : sessionid : 88 bytes
          69065671 : cftoken : 56 bytes
          620814 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620311_98418593 : MiComimsa : 984 bytes
          [Variable Type : Variable Name : Size]
          STRUCT : auth : 600 bytes
          STRUCT : usuario : 152 bytes
          ARRAY : perfiles : 152 bytes
          CFID=620311&CFTOKEN=98418593 : urltoken : 96 bytes
          MICOMIMSA_620311_98418593 : sessionid : 88 bytes
          98418593 : cftoken : 56 bytes
          620311 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620840_57833497 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620840&CFTOKEN=57833497 : urltoken : 96 bytes
          MICOMIMSA_620840_57833497 : sessionid : 88 bytes
          57833497 : cftoken : 56 bytes
          620840 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620801_48226812 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620801&CFTOKEN=48226812 : urltoken : 96 bytes
          MICOMIMSA_620801_48226812 : sessionid : 88 bytes
          48226812 : cftoken : 56 bytes
          620801 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620831_82072476 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620831&CFTOKEN=82072476 : urltoken : 96 bytes
          MICOMIMSA_620831_82072476 : sessionid : 88 bytes
          82072476 : cftoken : 56 bytes
          620831 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620807_99373155 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620807&CFTOKEN=99373155 : urltoken : 96 bytes
          MICOMIMSA_620807_99373155 : sessionid : 88 bytes
          99373155 : cftoken : 56 bytes
          620807 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620805_76851467 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620805&CFTOKEN=76851467 : urltoken : 96 bytes
          MICOMIMSA_620805_76851467 : sessionid : 88 bytes
          76851467 : cftoken : 56 bytes
          620805 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       Calidad_620760_76846444 : Calidad : 624 bytes
          [Variable Type : Variable Name : Size]
          STRUCT : auth : 296 bytes
          CFID=620760&CFTOKEN=76846444 : urltoken : 96 bytes
          CALIDAD_620760_76846444 : sessionid : 88 bytes
          76846444 : cftoken : 56 bytes
          620760 : cfid : 48 bytes
          on : winpopup : 40 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620830_50140928 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620830&CFTOKEN=50140928 : urltoken : 96 bytes
          MICOMIMSA_620830_50140928 : sessionid : 88 bytes
          50140928 : cftoken : 56 bytes
          620830 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620810_94946605 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620810&CFTOKEN=94946605 : urltoken : 96 bytes
          MICOMIMSA_620810_94946605 : sessionid : 88 bytes
          94946605 : cftoken : 56 bytes
          620810 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620806_87405821 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620806&CFTOKEN=87405821 : urltoken : 96 bytes
          MICOMIMSA_620806_87405821 : sessionid : 88 bytes
          87405821 : cftoken : 56 bytes
          620806 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620822_90511878 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620822&CFTOKEN=90511878 : urltoken : 96 bytes
          MICOMIMSA_620822_90511878 : sessionid : 88 bytes
          90511878 : cftoken : 56 bytes
          620822 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620804_93123588 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620804&CFTOKEN=93123588 : urltoken : 96 bytes
          MICOMIMSA_620804_93123588 : sessionid : 88 bytes
          93123588 : cftoken : 56 bytes
          620804 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620764_18211345 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620764&CFTOKEN=18211345 : urltoken : 96 bytes
          MICOMIMSA_620764_18211345 : sessionid : 88 bytes
          18211345 : cftoken : 56 bytes
          620764 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       bv_620833_58599060 : bv : 504 bytes
          [Variable Type : Variable Name : Size]
          STRUCT : auth : 232 bytes
          CFID=620833&CFTOKEN=58599060 : urltoken : 96 bytes
          BV_620833_58599060 : sessionid : 72 bytes
          58599060 : cftoken : 56 bytes
          620833 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620818_16094570 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620818&CFTOKEN=16094570 : urltoken : 96 bytes
          MICOMIMSA_620818_16094570 : sessionid : 88 bytes
          16094570 : cftoken : 56 bytes
          620818 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620811_50303269 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620811&CFTOKEN=50303269 : urltoken : 96 bytes
          MICOMIMSA_620811_50303269 : sessionid : 88 bytes
          50303269 : cftoken : 56 bytes
          620811 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620817_68843193 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620817&CFTOKEN=68843193 : urltoken : 96 bytes
          MICOMIMSA_620817_68843193 : sessionid : 88 bytes
          68843193 : cftoken : 56 bytes
          620817 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620835_82909315 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620835&CFTOKEN=82909315 : urltoken : 96 bytes
          MICOMIMSA_620835_82909315 : sessionid : 88 bytes
          82909315 : cftoken : 56 bytes
          620835 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620837_48954912 : MiComimsa : 1008 bytes
          [Variable Type : Variable Name : Size]
          STRUCT : auth : 624 bytes
          STRUCT : usuario : 152 bytes
          ARRAY : perfiles : 152 bytes
          CFID=620837&CFTOKEN=48954912 : urltoken : 96 bytes
          MICOMIMSA_620837_48954912 : sessionid : 88 bytes
          48954912 : cftoken : 56 bytes
          620837 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620826_45755482 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620826&CFTOKEN=45755482 : urltoken : 96 bytes
          MICOMIMSA_620826_45755482 : sessionid : 88 bytes
          45755482 : cftoken : 56 bytes
          620826 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620795_28314251 : MiComimsa : 1136 bytes
          [Variable Type : Variable Name : Size]
          STRUCT : auth : 592 bytes
          ARRAY : perfiles : 352 bytes
          STRUCT : usuario : 200 bytes
          CFID=620795&CFTOKEN=28314251 : urltoken : 96 bytes
          MICOMIMSA_620795_28314251 : sessionid : 88 bytes
          28314251 : cftoken : 56 bytes
          620795 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620829_95927183 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620829&CFTOKEN=95927183 : urltoken : 96 bytes
          MICOMIMSA_620829_95927183 : sessionid : 88 bytes
          95927183 : cftoken : 56 bytes
          620829 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620820_39067055 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620820&CFTOKEN=39067055 : urltoken : 96 bytes
          MICOMIMSA_620820_39067055 : sessionid : 88 bytes
          39067055 : cftoken : 56 bytes
          620820 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620839_71524632 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620839&CFTOKEN=71524632 : urltoken : 96 bytes
          MICOMIMSA_620839_71524632 : sessionid : 88 bytes
          71524632 : cftoken : 56 bytes
          620839 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620809_48255137 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620809&CFTOKEN=48255137 : urltoken : 96 bytes
          MICOMIMSA_620809_48255137 : sessionid : 88 bytes
          48255137 : cftoken : 56 bytes
          620809 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620802_32861440 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620802&CFTOKEN=32861440 : urltoken : 96 bytes
          MICOMIMSA_620802_32861440 : sessionid : 88 bytes
          32861440 : cftoken : 56 bytes
          620802 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620808_87629440 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620808&CFTOKEN=87629440 : urltoken : 96 bytes
          MICOMIMSA_620808_87629440 : sessionid : 88 bytes
          87629440 : cftoken : 56 bytes
          620808 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620838_28711131 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620838&CFTOKEN=28711131 : urltoken : 96 bytes
          MICOMIMSA_620838_28711131 : sessionid : 88 bytes
          28711131 : cftoken : 56 bytes
          620838 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620828_92134794 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620828&CFTOKEN=92134794 : urltoken : 96 bytes
          MICOMIMSA_620828_92134794 : sessionid : 88 bytes
          92134794 : cftoken : 56 bytes
          620828 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620825_76366611 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620825&CFTOKEN=76366611 : urltoken : 96 bytes
          MICOMIMSA_620825_76366611 : sessionid : 88 bytes
          76366611 : cftoken : 56 bytes
          620825 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620821_75994248 : MiComimsa : 992 bytes
          [Variable Type : Variable Name : Size]
          STRUCT : auth : 608 bytes
          STRUCT : usuario : 152 bytes
          ARRAY : perfiles : 152 bytes
          CFID=620821&CFTOKEN=75994248 : urltoken : 96 bytes
          MICOMIMSA_620821_75994248 : sessionid : 88 bytes
          75994248 : cftoken : 56 bytes
          620821 : cfid : 48 bytes
       [Session Id : Application Name :Session Size]
       MiComimsa_620816_44610515 : MiComimsa : 288 bytes
          [Variable Type : Variable Name : Size]
          CFID=620816&CFTOKEN=44610515 : urltoken : 96 bytes
          MICOMIMSA_620816_44610515 : sessionid : 88 bytes
          44610515 : cftoken : 56 bytes
          620816 : cfid : 48 bytes
    Throttle Stats [Throttle Queue Size : Throttle Memory Used]
                0  : 0.0 megabytes
    Query Cache Stats -
    [Hit Ratio : Size : Count]
       0.0 : 0 bytes : 0
    Cached Queries -
    [Query Name : DSN : Size : TIme Executed : Time Taken : Line No : Function Name : Template Path]
    DB Pool Stats -
    [DSN :Open Conn Count : Total Conn Count : Max Con Count : Avg Open Conn Count : Avg Total Conn Count]
       extensiones : 0 : 0 : Unlimited : 0 : 0
       curriculumtest : 0 : 0 : Unlimited : 0 : 0
       Test_MiComimsa : 0 : 0 : Unlimited : 0 : 0
       SATDSN : 0 : 0 : Unlimited : 0 : 0
       arrendamiento : 0 : 0 : Unlimited : 0 : 0
       carlog : 0 : 0 : Unlimited : 0 : 0
       laboratorios : 0 : 0 : Unlimited : 0 : 0
       iso9000 : 0 : 0 : Unlimited : 0 : 0
       sca : 0 : 0 : Unlimited : 0 : 0
       cfcodeexplorer : 0 : 0 : Unlimited : 0 : 0
       CMIDocumentos : 5 : 6 : Unlimited : 0 : 2
       firmadocs : 0 : 0 : Unlimited : 0 : 0
       CurriculumsPITT : 0 : 0 : Unlimited : 0 : 0
       PORTALPLANEACION : 0 : 0 : Unlimited : 0 : 0
       PortalRH : 0 : 6 : Unlimited : 0 : 4
       FoodMart 2000 : 0 : 0 : Unlimited : 0 : 0
       sig_contabilidad : 0 : 1 : Unlimited : 0 : 0
       Bitacora_AJ : 0 : 0 : Unlimited : 0 : 0
       cfdocexamples : 0 : 0 : Unlimited : 0 : 0
       pnt : 0 : 0 : Unlimited : 0 : 0
       encuestaPITT : 0 : 0 : Unlimited : 0 : 0
       AgendaPresidencial : 0 : 0 : Unlimited : 0 : 0
       CodigoConducta-quiz : 0 : 0 : Unlimited : 0 : 0
       vinculacion : 0 : 0 : Unlimited : 0 : 0
       Dir2 : 0 : 0 : Unlimited : 0 : 0
       SIG_Test : 0 : 0 : Unlimited : 0 : 0
       filemanager-gat : 0 : 0 : Unlimited : 0 : 0
       filiacion : 0 : 0 : Unlimited : 0 : 0
       BSC : 0 : 0 : Unlimited : 0 : 0
       noticias : 0 : 0 : Unlimited : 0 : 0
       sigel : 0 : 0 : Unlimited : 0 : 0
       SIID_test : 0 : 0 : Unlimited : 0 : 0
       dimm : 0 : 0 : Unlimited : 0 : 0
       Portal_auditores : 0 : 0 : Unlimited : 0 : 0
       Xtreme Sample Database : 0 : 0 : Unlimited : 0 : 0
       testisocmi : 0 : 0 : Unlimited : 0 : 0
       bit2 : 0 : 0 : Unlimited : 0 : 0
       DocumentosFEA : 0 : 1 : Unlimited : 0 : 0
       cmm : 0 : 0 : Unlimited : 0 : 0
       ra_sig : 0 : 2 : Unlimited : 0 : 1
       cfbookclub : 0 : 0 : Unlimited : 0 : 0
       foros_GPC : 0 : 0 : Unlimited : 0 : 0
       ows : 0 : 0 : Unlimited : 0 : 0
       guiasimple : 0 : 0 : Unlimited : 0 : 0
       BSC_SQ : 0 : 0 : Unlimited : 0 : 0
       dst : 0 : 0 : Unlimited : 0 : 0
       cfusionlog : 0 : 0 : Unlimited : 0 : 0
       MobileDashboard : 0 : 0 : Unlimited : 0 : 0
       RA_Intra : 0 : 2 : Unlimited : 0 : 1
       cfartgallery : 0 : 0 : Unlimited : 0 : 0
       inventarios : 0 : 0 : Unlimited : 0 : 0
       indicadores : 0 : 0 : Unlimited : 0 : 0
       ForosDTT : 0 : 0 : Unlimited : 0 : 0
       scdwalmi : 0 : 2 : Unlimited : 0 : 1
       ForosSoldadura : 0 : 0 : Unlimited : 0 : 0
       LocalServer : 0 : 0 : Unlimited : 0 : 0
       curriculum : 0 : 1 : Unlimited : 0 : 0
       ForosClasificados : 0 : 0 : Unlimited : 0 : 0
       foros_PlanEstrategica : 0 : 0 : Unlimited : 0 : 0
       bv : 0 : 1 : Unlimited : 0 : 0
       ssdog : 0 : 0 : Unlimited : 0 : 0
       Bitacora_SGIyD : 0 : 0 : Unlimited : 0 : 0
       SIG : 0 : 1 : Unlimited : 0 : 0
       satisfaccioncte : 0 : 0 : Unlimited : 0 : 0
       IMD : 0 : 0 : Unlimited : 0 : 0
       capacitacion : 0 : 0 : Unlimited : 0 : 0
       vpnet : 0 : 0 : Unlimited : 0 : 0
       portal_prestacion : 0 : 2 : Unlimited : 0 : 2
       server : 0 : 4 : Unlimited : 0 : 3
       capacitacion_foros : 0 : 0 : Unlimited : 0 : 0
       indica2 : 0 : 0 : Unlimited : 0 : 0
       votacion : 0 : 0 : Unlimited : 0 : 0
    Thread  jrpp-331 request type - TEMPLATE REQUEST
    *Template Path - E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    *Request Parameters - {BBP=[Ljava.lang.String;@14bb595, tID=[Ljava.lang.String;@17e541f, action=[Ljava.lang.String;@c4ce59, fContent=[Ljava.lang.String;@c75e7c, eLink=[Ljava.lang.String;@10c33ce, recipient=[Ljava.lang.String;@1d36a4}
    *Request Method - POST
    *Client IP address - 172.16.0.36
    *Thread elapsed time - 86263 milliseconds
    *Application Name -
    *request/local/variables scope variables
          [Scope Type: Type : Name : Size]
          -APPLICATION  : SIMPLE : FILECONTENT : 189120 bytes
          -APPLICATION  : SIMPLE : PAGENAME : 88 bytes
          -APPLICATION  : SIMPLE : KEY : 56 bytes
          -APPLICATION  : SIMPLE : RESPONSE : 40 bytes
    *CF stack -
    E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    at E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    *Currently executing queries -
    Thread  jrpp-310 request type - TEMPLATE REQUEST
    *Template Path - E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    *Request Parameters - {BBP=[Ljava.lang.String;@1bf8ca4, tID=[Ljava.lang.String;@aa82a7, action=[Ljava.lang.String;@67d8a6, fContent=[Ljava.lang.String;@1c0abbc, eLink=[Ljava.lang.String;@4ae55d, recipient=[Ljava.lang.String;@11865d9}
    *Request Method - POST
    *Client IP address - 172.16.0.36
    *Thread elapsed time - 37611 milliseconds
    *Application Name -
    *request/local/variables scope variables
          [Scope Type: Type : Name : Size]
          -APPLICATION  : SIMPLE : FILECONTENT : 190216 bytes
          -APPLICATION  : SIMPLE : PAGENAME : 88 bytes
          -APPLICATION  : SIMPLE : KEY : 56 bytes
          -APPLICATION  : SIMPLE : RESPONSE : 40 bytes
    *CF stack -
    E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    at E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    *Currently executing queries -
    Thread  jrpp-319 request type - TEMPLATE REQUEST
    *Template Path - E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    *Request Parameters - {BBP=[Ljava.lang.String;@c6bd69, tID=[Ljava.lang.String;@1bd4b5b, action=[Ljava.lang.String;@9e7eba, fContent=[Ljava.lang.String;@191eddc, eLink=[Ljava.lang.String;@1971194, recipient=[Ljava.lang.String;@1031bbf}
    *Request Method - POST
    *Client IP address - 172.16.0.36
    *Thread elapsed time - 95001 milliseconds
    *Application Name -
    *request/local/variables scope variables
          [Scope Type: Type : Name : Size]
          -APPLICATION  : SIMPLE : FILECONTENT : 167208 bytes
          -APPLICATION  : SIMPLE : PAGENAME : 88 bytes
          -APPLICATION  : SIMPLE : KEY : 56 bytes
          -APPLICATION  : SIMPLE : RESPONSE : 40 bytes
    *CF stack -
    E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    at E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    *Currently executing queries -
    Thread  jrpp-336 request type - TEMPLATE REQUEST
    *Template Path - E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    *Request Parameters - {BBP=[Ljava.lang.String;@187f846, tID=[Ljava.lang.String;@1bcf4de, action=[Ljava.lang.String;@703f9d, fContent=[Ljava.lang.String;@160808b, eLink=[Ljava.lang.String;@9760da, recipient=[Ljava.lang.String;@57ab64}
    *Request Method - POST
    *Client IP address - 172.16.0.36
    *Thread elapsed time - 76250 milliseconds
    *Application Name -
    *request/local/variables scope variables
          [Scope Type: Type : Name : Size]
          -APPLICATION  : SIMPLE : FILECONTENT : 185608 bytes
          -APPLICATION  : SIMPLE : PAGENAME : 88 bytes
          -APPLICATION  : SIMPLE : KEY : 56 bytes
          -APPLICATION  : SIMPLE : RESPONSE : 40 bytes
    *CF stack -
    E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    at E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    *Currently executing queries -
    Thread  jrpp-314 request type - TEMPLATE REQUEST
    *Template Path - E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    *Request Parameters - {BBP=[Ljava.lang.String;@10d867a, tID=[Ljava.lang.String;@f7b83a, action=[Ljava.lang.String;@1601471, fContent=[Ljava.lang.String;@de17d5, eLink=[Ljava.lang.String;@eeb6ef, recipient=[Ljava.lang.String;@2c338c}
    *Request Method - POST
    *Client IP address - 172.16.0.36
    *Thread elapsed time - 50289 milliseconds
    *Application Name -
    *request/local/variables scope variables
          [Scope Type: Type : Name : Size]
          -APPLICATION  : SIMPLE : FILECONTENT : 218808 bytes
          -APPLICATION  : SIMPLE : PAGENAME : 88 bytes
          -APPLICATION  : SIMPLE : KEY : 56 bytes
          -APPLICATION  : SIMPLE : RESPONSE : 40 bytes
    *CF stack -
    E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    at E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    *Currently executing queries -
    Thread  jrpp-315 request type - TEMPLATE REQUEST
    *Template Path - E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    *Request Parameters - {BBP=[Ljava.lang.String;@d029df, tID=[Ljava.lang.String;@6d004d, action=[Ljava.lang.String;@2ee14d, fContent=[Ljava.lang.String;@1c98759, eLink=[Ljava.lang.String;@1d50f08, recipient=[Ljava.lang.String;@ce0137}
    *Request Method - POST
    *Client IP address - 172.16.0.36
    *Thread elapsed time - 65402 milliseconds
    *Application Name -
    *request/local/variables scope variables
          [Scope Type: Type : Name : Size]
          -APPLICATION  : SIMPLE : FILECONTENT : 182016 bytes
          -APPLICATION  : SIMPLE : PAGENAME : 88 bytes
          -APPLICATION  : SIMPLE : KEY : 56 bytes
          -APPLICATION  : SIMPLE : RESPONSE : 40 bytes
    *CF stack -
    E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    at E:\inetpub\wwwroot\CMIMobileServices\CMIMobileSigner\POSTListenerTest.cfm
    *Currently executing queries -
    Thread  jrpp-317 request type - WEB SERVICE REQUEST
    *Template Path - C:\ColdFusion8\wwwroot\Webservices\wsCF\wsMobileSigner.cfc uploadSignedDocument
    *Request Parameters - {}
    *Request Method - POST
    *Client IP address - 172.16.0.3
    *Thread elapsed time - 15092 milliseconds
    *Application Name -
    *request/local/variables scope variables
          [Scope Type: Type : Name : Size]
          -APPLICATION  : CFC : THIS : 1728 bytes
          -APPLICATION  : CFC : THIS : 1728 bytes
          -APPLICATION  : CFC : THIS : 1728 bytes
          -APPLICATION  : CFC : OAPPROVALFLOWMGR : 1728 bytes
          -APPLICATION  : CFC : OAPPROVALFLOW : 1000 bytes
          -APPLICATION  : CFC : THIS : 1000 bytes
          -APPLICATION  : CFC : OOBJECT : 1000 bytes
          -APPLICATION  : CFC : THIS : 1000 bytes
          -APPLICATION  : CFC : THIS : 1000 bytes
          -APPLICATION  : CFC : THIS : 832 bytes
          -APPLICATION  : CFC : THIS : 832 bytes
          -APPLICATION  : CFC : ODOCUMENTMANAGER : 832 bytes
          -APPLICATION  : CFC : THIS : 832 bytes
          -APPLICATION  : CFC : THIS : 832 bytes
          -APPLICATION  : CFC : THIS : 832 bytes
          -APPLICATION  : CFC : THIS : 832 bytes
          -APPLICATION  : CFC : THIS : 744 bytes
          -APPLICATION  : CFC : PARAMETERS : 744 bytes
          -APPLICATION  : CFC : THIS : 744 bytes
          -APPLICATION  : CFC : THIS : 744 bytes
          -APPLICATION  : STRUCT : ENTRIES : 744 bytes
          -APPLICATION  : CFC : OPARAMS : 744 bytes
          -APPLICATION  : CFC : THIS : 728 bytes
          -APPLICATION  : CFC : OAPPROVALFLOWGTW : 728 bytes
          -APPLICATION  : CFC : THIS : 728 bytes
          -APPLICATION  : CFC : THIS : 728 bytes
          -APPLICATION  : CFC : THIS : 728 bytes
          -APPLICATION  : CFC : THIS : 696 bytes
          -APPLICATION  : CFC : THIS : 696 bytes
          -APPLICATION  : CFC : OSIGNATUREMGR : 696 bytes
          -APPLICATION  : CFC : THIS : 696 bytes
          -APPLICATION  : CFC : THIS : 680 bytes
          -APPLICATION  : CFC : THIS : 680 bytes
          -APPLICATION  : CFC : THIS : 680 bytes
          -APPLICATION  : CFC : OEMAILLINKDAO : 680 bytes
          -APPLICATION  : CFC : THIS : 536 bytes
          -APPLICATION  : CFC : THIS : 536 bytes
          -APPLICATION  : CFC : THIS : 536 bytes
          -APPLICATION  : CFC : THIS : 536 bytes
          -APPLICATION  : CFC : THIS : 536 bytes
          -APPLICATION  : CFC : THIS : 536 bytes
          -APPLICATION  : CFC : THIS : 536 bytes
          -APPLICATION  : CFC : THIS : 536 bytes
          -APPLICATION  : CFC : THIS : 536 bytes
          -APPLICATION  : CFC : OEMAILLINK : 536 bytes
          -APPLICATION  : CFC : THIS : 536 bytes
          -APPLICATION  : CFC : THIS : 536 bytes
          -APPLICATION  : STRUCT : SIGNATURESTRUCT : 408 bytes
          -APPLICATION  : STRUCT : LASTSIGNATURE : 408 bytes
          -APPLICATION  : STRUCT : lastSignature : 408 bytes
          -APPLICATION  : STRUCT : RETURNVALUE : 408 bytes
          -APPLICATION  : QUERY : QRYRESULT : 392 bytes
          -APPLICATION  : QUERY : QRYREAD : 392 bytes
          -APPLICATION  : SIMPLE : lastSignature : 384 bytes
          -APPLICATION  : SIMPLE : LASTSIGNATURE : 384 bytes
          -APPLICATION  : CFC : THIS : 384 bytes
          -APPLICATION  : QUERY : QRYREAD : 344 bytes
          -APPLICATION  : QUERY : RESULT : 344 bytes
          -APPLICATION  : CFC : THIS : 296 bytes
          -APPLICATION  : CFC : OSOLICITUDFACTORY : 296 bytes
          -APPLICATION  : CFC : THIS : 296 bytes
          -APPLICATION  : SIMPLE : DOCPATH : 248 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : SIMPLE : MAILPATH : 232 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : OSOLICITUD : 232 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : OOBJECT : 232 bytes
          -APPLICATION  : SIMPLE : PATRON : 184 bytes
          -APPLICATION  : SIMPLE : PATH : 176 bytes
          -APPLICATION  : SIMPLE : TRACKID : 112 bytes
          -APPLICATION  : ARRAY : MATCH : 96 bytes
          -APPLICATION  : SIMPLE : TRACKID : 96 bytes
          -APPLICATION  : SIMPLE : FILEPATH : 88 bytes
          -APPLICATION  : SIMPLE : FILEPATH : 88 bytes
          -APPLICATION  : SIMPLE : mailTo : 80 bytes
          -APPLICATION  : SIMPLE : BACKUPFILENAME : 72 bytes
          -APPLICATION  : SIMPLE : LOGFILE : 72 bytes
          -APPLICATION  : SIMPLE : LOGFILE : 72 bytes
          -APPLICATION  : SIMPLE : HOST : 72 bytes
          -APPLICATION  : SIMPLE : FILEPATH : 64 bytes
          -APPLICATION  : SIMPLE : FILENAME : 64 bytes
          -APPLICATION  : SIMPLE : DSN : 64 bytes
          -APPLICATION  : SIMPLE : PATH : 64 bytes
          -APPLICATION  : SIMPLE : DSN : 64 bytes
          -APPLICATION  : SIMPLE : BBPIN : 56 bytes
          -APPLICATION  : SIMPLE : HASHALGORITHM : 56 bytes
          -APPLICATION  : SIMPLE : RELATIVEPATH : 48 bytes
          -APPLICATION  : SIMPLE : action : 48 bytes
          -APPLICATION  : SIMPLE : IdSolicitud : 48 bytes
          -APPLICATION  : SIMPLE : FOLIO : 48 bytes
          -APPLICATION  : SIMPLE : LOGGING : 48 bytes
          -APPLICATION  : SIMPLE : LOGGING : 48 bytes
          -APPLICATION  : SIMPLE : APP : 48 bytes
          -APPLICATION  : SIMPLE : ID : 48 bytes
          -APPLICATION  : SIMPLE : ID : 48 bytes
          -APPLICATION  : SIMPLE : folio : 48 bytes
          -APPLICATION  : SIMPLE : FOLIO : 48 bytes
          -APPLICATION  : SIMPLE : FILENAME : 48 bytes
          -APPLICATION  : SIMPLE : EXTENSION : 48 bytes
          -APPLICATION  : SIMPLE : PATCHVERSION : 40 bytes
          -APPLICATION  : SIMPLE : MAILPATH : 40 bytes
          -APPLICATION  : SIMPLE : OAPPROVALFLOWGTW : 40 bytes
          -APPLICATION  : SIMPLE : DSN : 40 bytes
          -APPLICATION  : SIMPLE : QRYREAD : 40 bytes
          -APPLICATION  : SIMPLE : FOLIO : 40 bytes
          -APPLICATION  : SIMPLE : MINORVERSION : 40 bytes
          -APPLICATION  : SIMPLE : OSOLICITUD : 40 bytes
          -APPLICATION  : SIMPLE : OWEBSERVICE : 40 bytes
          -APPLICATION  : SIMPLE : SIGNERSANDSIGNATURES : 40 bytes
          -APPLICATION  : SIMPLE : IdApp : 40 bytes
          -APPLICATION  : SIMPLE : DECODED : 40 bytes
          -APPLICATION  : SIMPLE : BACKUPFILENAME : 40 bytes
          -APPLICATION  : SIMPLE : HASHALGORITHM : 40 bytes
          -APPLICATION  : SIMPLE : EXTENSION : 40 bytes
          -APPLICATION  : SIMPLE : FOLIO : 40 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 40 bytes
          -APPLICATION  : SIMPLE : ID : 40 bytes
          -APPLICATION  : SIMPLE : PATH : 40 bytes
          -APPLICATION  : SIMPLE : ID : 40 bytes
          -APPLICATION  : SIMPLE : ENTRIES : 40 bytes
          -APPLICATION  : SIMPLE : OAPPROVALFLOW : 40 bytes
          -APPLICATION  : SIMPLE : OERRORHANDLER : 40 bytes
          -APPLICATION  : SIMPLE : XMLFROMQRY : 40 bytes
          -APPLICATION  : SIMPLE : SUPPORT : 40 bytes
          -APPLICATION  : SIMPLE : SECUENCIA : 40 bytes
          -APPLICATION  : SIMPLE : ACTIVO : 40 bytes
          -APPLICATION  : SIMPLE : MAJORVERSION : 40 bytes
          -APPLICATION  : SIMPLE : IDAPP : 40 bytes
          -APPLICATION  : SIMPLE : FOLIO : 40 bytes
          -APPLICATION  : SIMPLE : TITLE : 40 bytes
          -APPLICATION  : SIMPLE : RESULT : 40 bytes
          -APPLICATION  : SIMPLE : OUPLOADREQUEST : 40 bytes
          -APPLICATION  : SIMPLE : LOGGER : 40 bytes
          -APPLICATION  : SIMPLE : IDAPP : 40 bytes
          -APPLICATION  : SIMPLE : OPKCS7 : 40 bytes
          -APPLICATION  : SIMPLE : FILENAME : 40 bytes
          -APPLICATION  : SIMPLE : FECHA : 40 bytes
          -APPLICATION  : SIMPLE : DOCPATH : 40 bytes
          -APPLICATION  : SIMPLE : PARAMETERS : 40 bytes
          -APPLICATION  : SIMPLE : RESULT : 40 bytes
          -APPLICATION  : SIMPLE : OMULTISIGNERMANAGER : 40 bytes
          -APPLICATION  : SIMPLE : APP : 40 bytes
          -APPLICATION  : SIMPLE : FILENAME : 40 bytes
          -APPLICATION  : SIMPLE : timestamp : 24 bytes
          -APPLICATION  : SIMPLE : MAXDATE : 24 bytes
          -APPLICATION  : SIMPLE : ExecutionTime : 16 bytes
          -APPLICATION  : SIMPLE : IdEmpleado : 16 bytes
          -APPLICATION  : SIMPLE : IIDX : 16 bytes
          -APPLICATION  : STRUCT : CFSTOREDPROC : 16 bytes
          -APPLICATION  : SIMPLE : CFQUERY.EXECUTIONTIME : 16 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : SIMPLE : FECHA : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : LASTSIGNATURE : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : SIMPLE : FECHA : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
    *CF stack -
    C:\ColdFusion8\CustomTags\com\comimsa\blackberry\feamobile\model\ThirdPartyApprovalFlow.cf c execute()
    at C:\ColdFusion8\CustomTags\com\comimsa\blackberry\feamobile\ApprovalFlowManager.cfc start() : 56
    at C:\ColdFusion8\CustomTags\com\comimsa\feaframework\DocumentManager.cfc existsLocalFile() : 79
    at C:\ColdFusion8\CustomTags\com\comimsa\feaframework\DocumentManager.cfc existsFile() : 111
    at C:\ColdFusion8\CustomTags\com\comimsa\blackberry\feamobile\model\EmailLink.cfc isAuthentic() : 52
    at C:\ColdFusion8\wwwroot\Webservices\wsCF\wsMobileSigner.cfc uploadSignedDocument() : 40
    *Currently executing queries -
    Thread  jrpp-333 request type - WEB SERVICE REQUEST
    *Template Path - C:\ColdFusion8\wwwroot\Webservices\wsCF\wsMobileSigner.cfc uploadSignedDocument
    *Request Parameters - {}
    *Request Method - POST
    *Client IP address - 172.16.0.3
    *Thread elapsed time - 87170 milliseconds
    *Application Name -
    *request/local/variables scope variables
          [Scope Type: Type : Name : Size]
          -APPLICATION  : CFC : THIS : 1776 bytes
          -APPLICATION  : CFC : THIS : 1776 bytes
          -APPLICATION  : CFC : THIS : 1776 bytes
          -APPLICATION  : CFC : OAPPROVALFLOWMGR : 1776 bytes
          -APPLICATION  : CFC : OAPPROVALFLOW : 1024 bytes
          -APPLICATION  : CFC : THIS : 1024 bytes
          -APPLICATION  : CFC : OOBJECT : 1024 bytes
          -APPLICATION  : CFC : THIS : 1024 bytes
          -APPLICATION  : CFC : THIS : 1024 bytes
          -APPLICATION  : CFC : THIS : 840 bytes
          -APPLICATION  : CFC : THIS : 840 bytes
          -APPLICATION  : CFC : ODOCUMENTMANAGER : 840 bytes
          -APPLICATION  : CFC : THIS : 840 bytes
          -APPLICATION  : CFC : THIS : 840 bytes
          -APPLICATION  : CFC : THIS : 840 bytes
          -APPLICATION  : CFC : THIS : 840 bytes
          -APPLICATION  : CFC : THIS : 760 bytes
          -APPLICATION  : CFC : PARAMETERS : 760 bytes
          -APPLICATION  : CFC : THIS : 760 bytes
          -APPLICATION  : CFC : THIS : 760 bytes
          -APPLICATION  : STRUCT : ENTRIES : 760 bytes
          -APPLICATION  : CFC : OPARAMS : 760 bytes
          -APPLICATION  : CFC : THIS : 752 bytes
          -APPLICATION  : CFC : OAPPROVALFLOWGTW : 752 bytes
          -APPLICATION  : CFC : THIS : 752 bytes
          -APPLICATION  : CFC : THIS : 752 bytes
          -APPLICATION  : CFC : THIS : 752 bytes
          -APPLICATION  : CFC : THIS : 704 bytes
          -APPLICATION  : CFC : THIS : 704 bytes
          -APPLICATION  : CFC : OSIGNATUREMGR : 704 bytes
          -APPLICATION  : CFC : THIS : 704 bytes
          -APPLICATION  : CFC : THIS : 696 bytes
          -APPLICATION  : CFC : THIS : 696 bytes
          -APPLICATION  : CFC : THIS : 696 bytes
          -APPLICATION  : CFC : OEMAILLINKDAO : 696 bytes
          -APPLICATION  : CFC : THIS : 560 bytes
          -APPLICATION  : CFC : THIS : 560 bytes
          -APPLICATION  : CFC : THIS : 560 bytes
          -APPLICATION  : CFC : THIS : 560 bytes
          -APPLICATION  : CFC : THIS : 560 bytes
          -APPLICATION  : CFC : THIS : 560 bytes
          -APPLICATION  : CFC : THIS : 560 bytes
          -APPLICATION  : CFC : THIS : 560 bytes
          -APPLICATION  : CFC : THIS : 560 bytes
          -APPLICATION  : CFC : OEMAILLINK : 560 bytes
          -APPLICATION  : CFC : THIS : 560 bytes
          -APPLICATION  : CFC : THIS : 560 bytes
          -APPLICATION  : QUERY : QRYRESULT : 408 bytes
          -APPLICATION  : STRUCT : SIGNATURESTRUCT : 408 bytes
          -APPLICATION  : STRUCT : LASTSIGNATURE : 408 bytes
          -APPLICATION  : STRUCT : lastSignature : 408 bytes
          -APPLICATION  : STRUCT : RETURNVALUE : 408 bytes
          -APPLICATION  : QUERY : QRYREAD : 408 bytes
          -APPLICATION  : SIMPLE : lastSignature : 384 bytes
          -APPLICATION  : SIMPLE : LASTSIGNATURE : 384 bytes
          -APPLICATION  : CFC : THIS : 384 bytes
          -APPLICATION  : QUERY : QRYREAD : 352 bytes
          -APPLICATION  : QUERY : RESULT : 352 bytes
          -APPLICATION  : CFC : THIS : 304 bytes
          -APPLICATION  : CFC : OSOLICITUDFACTORY : 304 bytes
          -APPLICATION  : CFC : THIS : 304 bytes
          -APPLICATION  : CFC : THIS : 256 bytes
          -APPLICATION  : CFC : THIS : 256 bytes
          -APPLICATION  : CFC : THIS : 256 bytes
          -APPLICATION  : CFC : OSOLICITUD : 256 bytes
          -APPLICATION  : CFC : THIS : 256 bytes
          -APPLICATION  : CFC : THIS : 256 bytes
          -APPLICATION  : CFC : OOBJECT : 256 bytes
          -APPLICATION  : SIMPLE : DOCPATH : 248 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : SIMPLE : MAILPATH : 232 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : THIS : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : CFC : LOGGER : 232 bytes
          -APPLICATION  : SIMPLE : PATRON : 184 bytes
          -APPLICATION  : SIMPLE : PATH : 176 bytes
          -APPLICATION  : SIMPLE : TRACKID : 112 bytes
          -APPLICATION  : ARRAY : MATCH : 104 bytes
          -APPLICATION  : SIMPLE : TRACKID : 104 bytes
          -APPLICATION  : SIMPLE : FILEPATH : 88 bytes
          -APPLICATION  : SIMPLE : FILEPATH : 88 bytes
          -APPLICATION  : SIMPLE : BACKUPFILENAME : 80 bytes
          -APPLICATION  : SIMPLE : mailTo : 80 bytes
          -APPLICATION  : SIMPLE : FILENAME : 72 bytes
          -APPLICATION  : SIMPLE : LOGFILE : 72 bytes
          -APPLICATION  : SIMPLE : LOGFILE : 72 bytes
          -APPLICATION  : SIMPLE : HOST : 72 bytes
          -APPLICATION  : SIMPLE : FILEPATH : 64 bytes
          -APPLICATION  : SIMPLE : DSN : 64 bytes
          -APPLICATION  : SIMPLE : PATH : 64 bytes
          -APPLICATION  : SIMPLE : DSN : 64 bytes
          -APPLICATION  : SIMPLE : IdSolicitud : 56 bytes
          -APPLICATION  : SIMPLE : FOLIO : 56 bytes
          -APPLICATION  : SIMPLE : BBPIN : 56 bytes
          -APPLICATION  : SIMPLE : ID : 56 bytes
          -APPLICATION  : SIMPLE : folio : 56 bytes
          -APPLICATION  : SIMPLE : HASHALGORITHM : 56 bytes
          -APPLICATION  : SIMPLE : FOLIO : 56 bytes
          -APPLICATION  : SIMPLE : FILENAME : 56 bytes
          -APPLICATION  : SIMPLE : RELATIVEPATH : 48 bytes
          -APPLICATION  : SIMPLE : action : 48 bytes
          -APPLICATION  : SIMPLE : LOGGING : 48 bytes
          -APPLICATION  : SIMPLE : LOGGING : 48 bytes
          -APPLICATION  : SIMPLE : APP : 48 bytes
          -APPLICATION  : SIMPLE : ID : 48 bytes
          -APPLICATION  : SIMPLE : EXTENSION : 48 bytes
          -APPLICATION  : SIMPLE : PATCHVERSION : 40 bytes
          -APPLICATION  : SIMPLE : MAILPATH : 40 bytes
          -APPLICATION  : SIMPLE : OAPPROVALFLOWGTW : 40 bytes
          -APPLICATION  : SIMPLE : DSN : 40 bytes
          -APPLICATION  : SIMPLE : QRYREAD : 40 bytes
          -APPLICATION  : SIMPLE : FOLIO : 40 bytes
          -APPLICATION  : SIMPLE : MINORVERSION : 40 bytes
          -APPLICATION  : SIMPLE : OSOLICITUD : 40 bytes
          -APPLICATION  : SIMPLE : OWEBSERVICE : 40 bytes
          -APPLICATION  : SIMPLE : SIGNERSANDSIGNATURES : 40 bytes
          -APPLICATION  : SIMPLE : IdApp : 40 bytes
          -APPLICATION  : SIMPLE : DECODED : 40 bytes
          -APPLICATION  : SIMPLE : BACKUPFILENAME : 40 bytes
          -APPLICATION  : SIMPLE : HASHALGORITHM : 40 bytes
          -APPLICATION  : SIMPLE : EXTENSION : 40 bytes
          -APPLICATION  : SIMPLE : FOLIO : 40 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 40 bytes
          -APPLICATION  : SIMPLE : ID : 40 bytes
          -APPLICATION  : SIMPLE : PATH : 40 bytes
          -APPLICATION  : SIMPLE : ID : 40 bytes
          -APPLICATION  : SIMPLE : ENTRIES : 40 bytes
          -APPLICATION  : SIMPLE : OAPPROVALFLOW : 40 bytes
          -APPLICATION  : SIMPLE : OERRORHANDLER : 40 bytes
          -APPLICATION  : SIMPLE : XMLFROMQRY : 40 bytes
          -APPLICATION  : SIMPLE : SUPPORT : 40 bytes
          -APPLICATION  : SIMPLE : SECUENCIA : 40 bytes
          -APPLICATION  : SIMPLE : ACTIVO : 40 bytes
          -APPLICATION  : SIMPLE : MAJORVERSION : 40 bytes
          -APPLICATION  : SIMPLE : IDAPP : 40 bytes
          -APPLICATION  : SIMPLE : FOLIO : 40 bytes
          -APPLICATION  : SIMPLE : TITLE : 40 bytes
          -APPLICATION  : SIMPLE : RESULT : 40 bytes
          -APPLICATION  : SIMPLE : OUPLOADREQUEST : 40 bytes
          -APPLICATION  : SIMPLE : LOGGER : 40 bytes
          -APPLICATION  : SIMPLE : IDAPP : 40 bytes
          -APPLICATION  : SIMPLE : OPKCS7 : 40 bytes
          -APPLICATION  : SIMPLE : FILENAME : 40 bytes
          -APPLICATION  : SIMPLE : FECHA : 40 bytes
          -APPLICATION  : SIMPLE : DOCPATH : 40 bytes
          -APPLICATION  : SIMPLE : PARAMETERS : 40 bytes
          -APPLICATION  : SIMPLE : RESULT : 40 bytes
          -APPLICATION  : SIMPLE : OMULTISIGNERMANAGER : 40 bytes
          -APPLICATION  : SIMPLE : APP : 40 bytes
          -APPLICATION  : SIMPLE : FILENAME : 40 bytes
          -APPLICATION  : SIMPLE : timestamp : 24 bytes
          -APPLICATION  : SIMPLE : MAXDATE : 24 bytes
          -APPLICATION  : SIMPLE : ExecutionTime : 16 bytes
          -APPLICATION  : SIMPLE : IdEmpleado : 16 bytes
          -APPLICATION  : SIMPLE : IIDX : 16 bytes
          -APPLICATION  : STRUCT : CFSTOREDPROC : 16 bytes
          -APPLICATION  : SIMPLE : CFQUERY.EXECUTIONTIME : 16 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APPLICATION  : STRUCT : ARGUMENTS : 0 bytes
          -APP

    On the Win 08 r2 64 bit CF8 32 bit server I was able to install  both jdk-6u27-windows-i586.exe and jdk-6u27-windows-x64.exe concurrently.
    This worked:
    # VM configuration
    #java.home=C:/ColdFusion8/runtime/jre
    java.home=C:/Java32/jdk1.6.0_27/jre
    #java.home=C:/Program Files/Java/jdk1.6.0_27/jre
    In part - CFadmin > Server Settings > Settings Summary
    Server Details 
    Server Product  ColdFusion 
    Version  8,0,0,176276   
    Edition  Standard   
    Operating System  Windows Server 2008 R2   
    OS Version  6.1   
    JVM Details 
    Java Version  1.6.0_27   
    Java Vendor  Sun Microsystems Inc.   
    Java Vendor URL  http://java.sun.com/   
    Java Home  C:\Java32\jdk1.6.0_27\jre   
    User Home  C:\   
    User Dir  C:\ColdFusion8\runtime\bin   
    Java VM Specification Version  1.0   
    Java VM Specification Vendor  Sun Microsystems Inc.   
    Java VM Specification Name  Java Virtual Machine Specification   
    Java VM Version  20.2-b06   
    Java VM Vendor  Sun Microsystems Inc.   
    Java VM Name  Java HotSpot(TM) Server VM   
    Java Specification Version  1.6   
    This failed:
    # VM configuration
    #java.home=C:/ColdFusion8/runtime/jre
    #java.home=C:/Java32/jdk1.6.0_27/jre
    java.home=C:/Program Files/Java/jdk1.6.0_27/jre
    Where CF8\runtime\logs\OUT log reports:
    Error loading: C:/Program Files/Java/jdk1.6.0_27/jre\bin\server\jvm.dll
    Error loading: C:/Program Files/Java/jdk1.6.0_27/jre\bin\server\jvm.dll
    I thought CF8 32 bit would struggle with a 64 bit Java. Only had a short time window to try this so did not do any further experiments with trying to make the 64 bit Java function with CF8 like moving or swapping other DLL files around.
    Not sure that helps you much since you said the 32 bit JDK did not install. I suppose I have replicated what you found that CF8 got the same startup problem you saw with 64 bit JDK.
    What else can I suggest? In my case the particular site was working well CF8 with 1.6.0_04 JVM. The JVM had some tuned values applied to the minimum and maximum memory heap and non-heap values as well as garbage collector had core switch applied so it was working multi-threaded. I guess for me it will be interesting to note if any problems arise since I have left the site running 1.6.0_27 32 bit JDK (aka free upgrade).
    Regards, Carl.

  • How to build complex object to be sent to a RESTful web service?

    Hi,
    I'm working with RESTful web services on J2EE 1.6.
    I create the database, generate the entities and generate the web services.
    I must implement Javascript clients and I don't want to use any open source for that.
    I have a simple example that works just fine. For the database :
    CREATE TABLE Shopper(
    shopperId MEDIUMINT AUTO_INCREMENT PRIMARY KEY,
    firstName VARCHAR(40),
    lastName VARCHAR(40),
    phone VARCHAR(40),
    email VARCHAR(50) NOT NULL,
    receiveEmailNotification ENUM('Y', 'N'),
    index(email)
    I create this xml information with javascript :
    *<shopper>*
    *<email>c</email>*
    *<firstName>c</firstName>*
    *<lastName>c</lastName>*
    *<phone>c</phone>*
    *<receiveEmailNotification>Y</receiveEmailNotification>*
    *</shopper>*
    and it is saved in the database. I have a more complex application with relationships between entites. For this database :
    CREATE TABLE Shopper(
    shopperId MEDIUMINT AUTO_INCREMENT PRIMARY KEY,
    firstName VARCHAR(40),
    lastName VARCHAR(40),
    phone VARCHAR(40),
    email VARCHAR(50) NOT NULL,
    receiveEmailNotification ENUM('Y', 'N'),
    index(email)
    CREATE TABLE Address(
    addressId MEDIUMINT AUTO_INCREMENT PRIMARY KEY,
    street VARCHAR(60),
    streetNo VARCHAR(20),
    postalCode VARCHAR(30),
    city VARCHAR(40),
    country VARCHAR(40),
    otherInfo TEXT,
    shopperId MEDIUMINT NOT NULL,
    foreign key (shopperId) REFERENCES  shopper(shopperId) ON DELETE CASCADE,
    index(shopperId)
    I was expecting that xml information sent from the browser should be:
    *<address>*
    *<city>c</city>*
    *<country>c</country>*
    *<otherInfo>c</otherInfo>*
    *<postalCode>c</postalCode>*
    *<street>c</street>*
    *<streetNo>c</streetNo>*
    *<shopper>*
    *<email>c</email>*
    *<firstName>c</firstName>*
    *<lastName>c</lastName>*
    *<phone>c</phone>*
    *<receiveEmailNotification>Y</receiveEmailNotification>*
    *</shopper>*
    *</address>*
    but I keep on getting errors.
    I want to send one XML structure that will be stored in two tables according to the foreign key relation.
    Does the RESTful web services code generated by Netbeans or Eclipse support this?
    Is my XML structure not built correctly?

    Kevin,
    My object base class is Abstract and class I am using in Flex 3 is class inheriting abstract class. But when calling webservice Flex creating soap message of base class and I am getting error in .Net web services that "Can not create instance of Abstract class".
    Below is the soap message difference calling same WCF method from .Net and Flex. For example Constraint is the base class and JobConstraint is the class which inherit Constraint class. But flex send message forming only Constraint while .Net soap is specifying i:type="JobConstraint".
    Part of soap message Calling from .Net 

    Constraints>< 
    Constraint i:type="JobConstraint"><Position 
    >true</Position>< 
    Rank>2</Rank>< 
    Requirement>true</Requirement></ 
    Constraint></ 
    Constraints> 
    Part of Soap message calling from Flex 3
    <ns0:Constraints>
    <ns0:Constraint>
    <ns0:Position>true</ns0:Position>
    <ns0:Rank>2</ns0:Rank>
    <ns0:Requirement>true</ns0:Requirement>
    </ns0:Constraint>
    </ns0:Constraints>

  • Consuming web services

    Hi All,
    What is the best way of reading from 4 different web services using XML (different formats) and display the result in a common list?
    I would like to order the list base on couple fields.
    What about if the web services doesn't respond or the respond is slow?
    I can use Flex using cfcs but I would like to use the faster way for this process.
    Any ideas?
    Thanks in advanced

    Hi,
    See: [Use JDeveloper 11g to Create a Data Control From a Web Service|http://www.oracle.com/technology/obe/obe11jdev/11/wsdc/wsdc.htm]
    Kuba

  • ColdFusion Developer version and web services

    Hi,
    Does anyone know if there is a known issue about Web Services
    not running on
    ColdFusion developer version?
    I have been testing the most simple web services on 3
    different live servers
    and 3 different localhost servers with the same files and got
    successful
    results on all the live servers, but the same errors on all
    the local
    servers running on ColdFusion latest developer version. All 6
    servers are
    running on IIS either on Windows XP or 2000. Below is the
    error I get when
    I tested it locally:
    Could not generate stub objects for web service invocation.
    Name:
    http://tutorial/ColdFusion/template/webservices/helloworld/helloworld.cfc?wsdl.
    WSDL:
    http://tutorial/ColdFusion/template/webservices/helloworld/helloworld.cfc?wsdl.
    java.net.UnknownHostException: tutorial: tutorial It is
    recommended that you
    use a web browser to retrieve and examine the requested WSDL
    document for
    correctness. If the requested WSDL document can't be
    retrieved or it is
    dynamically generated, it is likely that the target web
    service has
    programming errors. The error occurred in
    D:\tutorial\ColdFusion\template\webservices\helloworld\helloworld.cfm:
    line
    6
    4 : method="getMessage"
    5 : returnvariable="aString">
    6 : <cfinvokeargument name="name" value="Rob"/>
    7 : </cfinvoke>
    8 :
    Please let me know if you know anything about this.YC

    If your developer edition is on your own machine you might be
    having proxy server issues.
    Find out what your proxy server is and enter it using the
    proxyserver="" attribute in cfinvoke

Maybe you are looking for

  • CKF in BEx Query Designer

    Hello, I have following scenario in Query Designer: There is only one characteristic Material in row and 3 calculated Key figures in column Price (Current Year), Price (Current Year -1), Price (Current Year -2). The User gives the current year as Inp

  • [Lenovo IdeaPad S10-3t] Waking up from suspend not working properly

    Hi, I'm having some issues with getting suspend to work on my S10-3t. I tried pm-utils and the s2ram script (with about any combination of options as my machine is not on the whitelist) and always get the same behaviour: Suspending seems to succeed b

  • Error while configuring consumer provider

    Hello expert, M new SRM consultant working in my first implementation project, i m getting an eroor while configuring consumer provider THROUGH SOAMANAGER> CONFIGURATION like dis: SRT Framework exception: Error in WSDL access: Exception occurred in c

  • Catalog content missing after upgrade to 11.1.1.6.6

    We recently applied the patches to upgrade OBIEE from 11.1.1.6.0 to 11.1.1.6.6. But after the upgrade, all of the catalog contents went missing. I can still see My Folders and Shared Folders, but nothing under them. I still have all of the subject ar

  • Remove / Update files loaded into a personalised table

    Hello All, I have a table in my database which holds pdf documents that i have uploaded using mime types, id's etc from the htmldb_files table. I am doing this using file browse then writing the file to my own table ( approvals ). I need to be able t