Missing falshservices gateway in CF8

I recently upgraded my development CF from 7 to 8. I use IIS
as server, not the built in
Realizeing that CF7 was still there, after much testing of
sites on CF8, I uninstalled CF7. I had copied the CFIDE folder
because it was in the inetpub/wwwroot tree and was afraid it might
get lost. The uninstall did remove that CFIDE folder; but, I copied
it back.
Now I'm noticing that anything that relies on flash remoting
isn't working. Some direct flash swfs and getting data into some of
the flash forms (cfform).
I tried a fla directly that uses flash remoting and got the
message:
Error opening URL '
http://localhost/flashservices/gateway'
My remoting components are still there in flash, but
somewhere I lost something critical. But, not sure what!
Appreciate any help!
Thanks
Keith

Additionally, we tried both of these methods to no avail:
http://www.mac-connect.com/winfrommac.php
http://www.mac-connect.com/macfromwin.php
SMB doesn't work from MAC to PC. And on the PC, the MAC does not show up on as a network node as in the previous post above.

Similar Messages

  • CFML Gateway in CF8

    I am getting the error below while try to run cfml gateway
    from CF8
    Error invoking CFC for gateway CreatePDF: An exception
    occurred when performing document processing.
    {ORIGINATORID={CFMLGateway},DATA={{MARKETNAME={Phoenix},USERID={258},ORIENTATION={portrai t},FILE={defaultEventLog},PRODUCTID={},FILENAME={ProfileVersion1.cfm?PropId=5039&marketId= 1&renttype=net&fomat=pdf&UserID=258&reporttitle=ProfileVersion1&orientation=portrait},SAVE FILENAME={258_ProfileVersion1_9_24_39.pdf}}},GATEWAYID={CreatePDF},GATEWAYTYPE={CFMLGatewa y}}.
    The cause of this exception was that:
    coldfusion.runtime.UndefinedVariableException: Variable CFEVENT is
    undefined..
    Please help me to solve this issue

    I am getting the error below while try to run cfml gateway
    from CF8
    Error invoking CFC for gateway CreatePDF: An exception
    occurred when performing document processing.
    {ORIGINATORID={CFMLGateway},DATA={{MARKETNAME={Phoenix},USERID={258},ORIENTATION={portrai t},FILE={defaultEventLog},PRODUCTID={},FILENAME={ProfileVersion1.cfm?PropId=5039&marketId= 1&renttype=net&fomat=pdf&UserID=258&reporttitle=ProfileVersion1&orientation=portrait},SAVE FILENAME={258_ProfileVersion1_9_24_39.pdf}}},GATEWAYID={CreatePDF},GATEWAYTYPE={CFMLGatewa y}}.
    The cause of this exception was that:
    coldfusion.runtime.UndefinedVariableException: Variable CFEVENT is
    undefined..
    Please help me to solve this issue

  • Siebel 8.1.1 on linux - server fails to connect to gateway after stop/start

    I have a very stubborn symptom in my environment, with Siebel SIA 8.1.1 [21111] on OEL 5 2.6.18.
    Everything will be working fine after initial install, then I stop the Siebel Server and Gateway, start the services again and the Siebel Server fails to start. The NameServer.log complains that the server cannot connect to the gateway configuration store, and that the login password is incorrect. However it was just working minutes prior. Once it fails like that I can fiddle with it all day and still the Siebel Server will not start.
    I have tried a number of suggestions found, verifying the odbcsql command works, verifying the memory files *.shm is not still in the admin directory, making sure all approp. processes are closed after stopping the siebel server, recreating the gateway and siebel server services, rebooting the vm.
    The symptom and log messages never change. Once in a while for no apparent reason the siebel server will start again but sure enough if I stop it, it won't come back up.
    I have a couple of environments that I have worked with and tried things but both experience the same symptom.

    Good one. For reference its detailed in      
    [Siebel CRM 8.1.1 DataDirect License file IVSE.LIC is missing from Gateway Name Server (Doc ID 751784.1)|https://metalink3.oracle.com/od/faces/secure/km/DocumentDisplay.jspx?id=751784.1&h=Y]

  • CF8 DirectoryWatcher Gateway Doesn't Run When I Overwrite a File

    I've set up a Coldfusion Directory Event Gateway on my site (Win2K3 server, CF8 Ent).  The DW monitors an FTP directory where my users upload a batch of 5 PDF files each week.  The files are named file1.pdf, file2.pdf and so on.  When my DW gateway sees an addition or a file change, it copies the file to a new location, reads the PDF's meta data and uses that to rename the file and then add an entry to a database table for that file (the table entry gets used to populate a PDF archive list on a different page). In general this all works with a few exceptions.
    ISSUE 1: If I add a new file, the gateway sees it and calls my onAdd function (which actually just calls my onChange function). If I rename a file in that directory, the onChange event fires and my code runs.  However, if I upload a new file1.pdf file which overwrites the old file1.pdf, nothing happens. The new file is truly different and has a new modification date.  I read through the Java class and mod date is how the gateway determines a change.  Now, so far am not actually FTPing a new file in, but rather just coping it in from my local machine to the server directory via a mapping.
    I saw a solution for a similar issue which talked about setting up the onDelete event b/c the FTP will actually delete then add the file. Does this sound like a solution?
    ISSUE 2: I had a lot of CFM files that needed to be put into the archive, so I converted those to PDFs.  I then put all of them in my watch directory so my script would process them.  To my surprise, the script would only load 11 files at a time.  So after some tests to confirm the issue and the correct number of files, I then loaded my batch, 11 files at a time.  Any ideas why this would happen?
    My Specs again:
    Windows 2003 Server
    Coldfusion 8 Enterprise
    In my config file:
    checking my directory every minute (60000 milliseconds)
    only checking for .pdf extension
    Set an onAdd and onChange function call, but no onDelete
    my onAdd function simply calls my onChange function, passing
    in the CFEvent argument that it received

    We had the same problem here, and I agree that it is disappointing that the DW doesn't consider that a new file.  As far as a workaround, what I did was change the way our process dealt with incoming files entirely.  I used to handle the files as they came in, relying on Dave Ferguson's tricks for getting around files that were still being written to or otherwise locked (thanks, Dave!).  Now, instead of that, I only do one thing when a file is received: I rename it with a datestamp and write this to our db as the received filename so that the additional processes can be run on it.  That way, when that same filename is used by our client again, which is every time, the DW picks it up again as a new file.  I don't know if that helps or not, because it still means you lose the functionality that used to be inside the DW instead of a scheduled task, but at least you know when an actual new file is received, regardless of its name.  You may even be able to put your functions inside the onChange or onDelete if you keep the reference to the original filename, then have those do your work after the file is renamed and/or moved.  In our case, the DW also kept hanging every couple of days so we were missing very important files.  I ended up just restarting the gateway through code as the last piece of the scheduled task that runs every 30 mins to process the files.

  • Socket event gateway error in CF8?

    Having upgraded to CF8 with no code changes I am seeing a
    socket event gateway accept an xml message line by line and not the
    entire xml packet in one shot (each line is shown in the log
    separately). Passing a simple sentence with a return in it also
    becomes 2 events. This obviously causes problems, as the xml cannot
    be recognized and processed when it comes in line by line. The xml
    is coming from a daemon writen in Perl, and I can't immediately
    make any changes to it, as these requests are also sent out to
    other Perl systems, so any changes would have to be tested against
    them as well.
    I couldn't find anything online about this being a bug in
    CF8, has anyone else seen it?

    Hi,
    Remove this (And never put it in again)
    EXCEPTION
    when others then
    raise_application_error(-20001,'Error sending email.Error: '||sqlerrm);
    --Dbms_Put.Put_Line('Error sending email.Error: '||dbms_util.get_detailed_sqlerrm);This will tell you more about what is going on, such as giving you the location of the error.
    But 20999, is a user defined exception, are you putting objects into system schema?
    Regards
    Peter

  • SAP Business Workflow and SAP Netweaver Gateway - Missing extensible elements

    Hello,
    For a mobile project we use SAP Netweaver Gateway in order to retrieve information from workflows stored into SAP Business Workflow.
    We are able to retrieve standard informations for a workflow but custom fields added into "Extensible Elements" section are lost when exit SAP NG.
    We have checked the configuration of SAP NG (by 4 differents person) and it seems to be OK.
    Do you have an idea why the custom fields are lost during SAP NG processing ?
    Thanks in advance
    Best regards,
    Dominique

    Hi Dominique,
    FYI. SAP Fiori Approve Requests uses task processing service. This may help.
    How to display application data in SAP Fiori Approve Requests app
    Regards, Masa
    SAP Customer Experience Group - CEG

  • Gateway Documents are missing or are  not correctly linked

    Hi,
    When I go to this page:
    http://www.oracle.com/technetwork/database/gateways/index.html
    and I click on the different documents:
    ex: Database Gateways Features Overview (PDF)
    or Database Gateways Certification Matrix (PDF)
    I'm still routed to this page:
    http://www.oracle.com/technetwork/indexes/products/index.html
    and I can't get the requested documents.
    Thanks
    Regards
    Mireille

    This issue has been fixed.

  • Exchange Gateway; MIME.822 header missing

    Hello!
    The MIME.822 header is stripped after passing through the GW 7.x Exchange
    Gateway. As told in TID #3878409, this works 'as designed'! Unfortunately we
    need the MIME.822 header information for SPAM handling and other reasons
    (i.e. compliant e-mail archiving) in our local GW 7.0.2 system. Our (new)
    branch offices are running MS Exchange 2003 and we wouldn't like to migrate
    to Exchange. That's why we set up the GW 7.x Exchange Gateway (7.0.2) for
    e-mail transfer over a central exchange server which - so far - woks fine.
    The exchange server is also responsible for x-spam tagging and virus
    scanning.
    TID #3878409 is from June 2007 and reported to engineering. Did they solve
    the 'problem'? If not, we probably have to go the hard way (to exchange)!
    This couldn't be the intension of this 'feature'...
    Does anybody has some information?
    Thank you in advance!
    Marco

    There may be a hidden switch - contact Novell to find out if that's the
    case.
    >>> On 11/27/2007 at 12:07 PM, in message
    <[email protected]>,
    Marco Piesold<[email protected]> wrote:
    > Hello!
    >
    > The MIME.822 header is stripped after passing through the GW 7.x
    > Exchange
    > Gateway. As told in TID #3878409, this works 'as designed'!
    > Unfortunately we
    > need the MIME.822 header information for SPAM handling and other reasons
    > (i.e. compliant e-mail archiving) in our local GW 7.0.2 system. Our (new)
    > branch offices are running MS Exchange 2003 and we wouldn't like to
    > migrate
    > to Exchange. That's why we set up the GW 7.x Exchange Gateway (7.0.2)
    > for
    > e-mail transfer over a central exchange server which - so far - woks
    fine.
    > The exchange server is also responsible for x-spam tagging and virus
    > scanning.
    >
    > TID #3878409 is from June 2007 and reported to engineering. Did they
    > solve
    > the 'problem'? If not, we probably have to go the hard way (to
    > exchange)!
    > This couldn't be the intension of this 'feature'...
    >
    > Does anybody has some information?
    > Thank you in advance!
    >
    > Marco

  • Event Gateways missing from CF Administrator

    I see other people have had this issue but I have not seen a
    solution posted ...
    I do not have any "Event Gateway" options in my CF
    Administrator - nothing at all - no links on the left under Data
    & Services or anywhere else.
    Please ... any suggestions! Please!!!

    Only the Enterprise edition has the Gateway feature enabled.
    if you are running Standard Edition, you will not see links to
    Event Gateway, because they are not available.

  • Default Gateway Missing

    Hi Team,
    Good day.
    I do have a pair of nexus 5k that is connected via vpn and are running HSRP for our vlans.
    One of the Vlan is having issues where host connected to that vlan is not able to reach the HSRP ip address/the virtual ip.
    However the outage will last for 25 minutes, and I have figured it out that the arp table expires after 25 minutes and the Virtual ip is then pingable.
    The configuration is identical for all other vlans and the HSRP DOES NOT FLAP when this issue happen.
    The version we are running on is 5.1(3) N2 1.
    In short our host is not able to reach the HSRP IP Address. Please assist on this.
    Thanks
    Regards,
    Kanes.R

    Please forgive me for replying again; I had not thought at the time that replying to your own post might be more productive.
    My problem is similar (but static not DHCP addressing) and quite grievous since I am about 120 miles away; after reboot I cannot reach the server.
    I am running Windows Server 2008 R2 64 bit on a production server (web edition, Dell R300). This is a multi-homed server and each time I add an IP address (IPV4) to the machine all other (IPV4) IPs disappear after reboot (though they are visible in the network
    properties dialog). No IP responds even, even to pings, until I use the TCP/IP reset:
    netsh int ip reset resetlog.txt
    Then I have to manually type all the ips again in the TCP/IP advanced dialog. When I look at the
    'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{MY_ADAPTERS_GUID}\IPAddress'
    key, the only one present is the last one I typed. Thus when I reboot that will be the only IP on the machine (but the IP shown in the IPV4 network dialog will be completely blank).
    The default gateway is kept, however, so the machine actually can communicate if I remember the last IP I added. But so far this has happened 3 times and each time I have to hire an IP KVM device to work with the server.
    Would the changes you described above fix this problem? (or, at least, do you think they might _cause_ problems if I try them on this operating system?)
    I dread applying security patches because it will require a reboot and all sites will be down (except the last IP I added) until I reset the TCP/IP and re-enter the addresses (though now I have a script to do it more quickly, as long as I remember
    to keep my text list current).
    Thanks in advance for any help you can offer.

  • Gateway importing bapi_epm_so_get_list  ,   but so_id missing...

    Hi all
    I am trying to create sample application in gateway.
    service with $metadata working properply...
    example link
    Step-by-step guide to build an OData Service based on RFCs – Part 2
    while import bapi, i unable to see SO_ID node.
    any idea?

    This is structure

  • Configuring a Gateway via AXL/Soap, missing schema

    Hi All,
    I am attempting to configure a gateway in CUCM 8.6 via axl/soap but I am unable to find any information on the children of <vendorConfig></vendorConfig>.
    Has anyone been able to successfully obtain the XML schema for this or know how to obtain it?
    the cisco documentation from the link below dosn't include this.
    http://developer.cisco.com/axl/Files/AXLSoap_XGateway.html#Link21C1
    Cheers,
    Andrew

    For reference if anyone else requires them Vendor Config elements for a Cisco 2911 include:
    Cheers,
    Andrew

  • Missing flex2gateway?

    I have written just a simple test project that sends a request to a CFC, which queries my DB, and sends the results back my mxml page.
    I'm using Eclipse (4.2.1 Juno), and the Flex 4.6 SDK.  I have the CFEclipse plug in installed.  I hvae installed the developer version of ColdFusion 10 server, and am working in an instance I created (so the URL is localhost:8501)
    I wrote a build file:
      <!-- compile application -->
              <target name="compileApplication">
                        <echo>Compiling SWF To Deploy</echo>
                        <mxmlc file="${Src.dir}/main.mxml" actionscript-file-encoding="UTF-8"
                                  output="${Deploy.dir}/main.swf" debug="false" keep-generated-actionscript="true" services="${services.path}" context-root=" ">
                                  <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml" />
                                  <default-background-color>0xFFFFFF</default-background-color>
                                  <compiler.source-path path-element="${FLEX_HOME}/frameworks" />
                        </mxmlc>
                        <echo>Compiled SWF To Deploy</echo>
              </target>
    The page loads, but then I get the following error: Channel.Security.Error error Error #2048 url: 'http://127.0.0.1:8501/flex2gateway'
    Does anyone know what I'm missing?  I've looked thru all sorts of sites about eding the config files and opening my firewall.  I have compared my config files (messaging-config, remoting-config, and services-config) best I can to the exisitng ones that are working on the CF8 install we are replacing, and other than the new stuff in 10, I can't see any differences!
    Help!
    Jenn

    Anyone please!
    Flash forms display but the data is missing. Must be
    something with the security.
    The all CF8 services are running using Local System Account.
    I've just checked one of the production servers running CF7.
    The folder WEB-INF is not in the Inetpub\wwwroot\. It is just
    in CF7\wwwroot\, and there are no changes to XML files. The line in
    gateway-config.xml is still commented and the line in
    services-config.xml is still in the original state. The flash forms
    are working OK.
    Thanks,
    b.

  • Any one preparing for CF8?

    Hi guys,
    While looking at the CF8 Exam Guide, I could see that some
    topics havent been mentioned in the Exam Guide explicitly for
    instance the following topics were there on CFMX7 but not in CF8:
    1.6 ColdFusion forms(flash forms and XML/XSL forms)
    1.8 cfchart/cfchartseries
    cfreport
    4.1 Event Gateways
    So should we assume that the above-mentioned topics have been
    deleted from the scope of the exam?
    Also I tried to do a manual diff
    between the CF8 and CFMX7 exam guides to find out the new
    topics. Thought this might become useful for others who are
    planning for a CF8 exam before the CF8 exam guide is out. Here is
    what I got:
    8. Interacting with Remote Systems
    iii.Create and read Atom and RSS feedsby using
    <cffeed/>
    9.
    file()
    10. Tuning Application Performance
    iii. List and describe the use of <cfthread/> tag and
    the associated actions: join, run, sleep and terminate.
    11. Delivering and presenting information
    <cfpdf>
    <cfimage>
    <cftextarea richText="true">
    I would request all the guys to have a look and fill in if I
    have missed anything.
    Regards
    Dhrupadh

    Hi Dhrupadh,
    Check out the CF8 Exam Buster demo product to get a good feel
    of what topics
    are on the real ColdFusion 8 Certification exam, at:
    http://centrasoft.com
    CF8 Exam Buster has 384 questions designed to help you
    prepare for all
    aspects of the actual ColdFusion 8 certification exam. CF8
    Exam Buster
    allows you to take six different tests, 11 topic tests for
    your weak areas,
    and the ability to create random tests.
    All 384 questions have explanations and reference URLs to
    further aid your
    studies and build your ColdFusion knowledge.
    There is a DEMO version on the Centrasoft website
    http://www.centrasoft.com),
    which allows you to check out all the features
    of the program, plus one whole test.
    Read what people are saying about the Exam Buster product on
    our
    testimonials page (some early CF8 comments are already on
    there):
    http://centrasoft.com/cfbtestimonials.cfm
    If you're referring to Ben Forta's previous certification
    guides as the "CF8
    exam guide", I do not believe Ben is updating his guide for
    CF8. I could be
    wrong, but that's what I've heard.
    hth,
    Brian
    Brian Simmons
    [email protected]
    The ultimate Adobe ColdFusion 8 Certification testing tool:
    Check out CF8 Exam Buster at:
    http://centrasoft.com
    "Dhrupadh" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi guys,
    > While looking at the CF8 Exam Guide, I could see that
    some topics havent
    > been
    > mentioned in the Exam Guide explicitly for instance the
    following topics
    > were
    > there on CFMX7 but not in CF8:
    >
    > 1.6 ColdFusion forms(flash forms and XML/XSL forms)
    > 1.8 cfchart/cfchartseries
    > cfreport
    > 4.1 Event Gateways
    >
    > So should we assume that the above-mentioned topics have
    been deleted from
    > the
    > scope of the exam?
    >
    >
    > Also I tried to do a manual diff
    > between the CF8 and CFMX7 exam guides to find out the
    new topics. Thought
    > this
    > might become useful for others who are planning for a
    CF8 exam before the
    > CF8
    > exam guide is out. Here is what I got:
    >
    > 8. Interacting with Remote Systems
    > iii.Create and read Atom and RSS feedsby using
    <cffeed/>
    > 9.
    > file()
    > 10. Tuning Application Performance
    > iii. List and describe the use of <cfthread/> tag
    and the associated
    > actions:
    > join, run, sleep and terminate.
    > 11. Delivering and presenting information
    > <cfpdf>
    > <cfimage>
    > <cftextarea richText="true">
    >
    > I would request all the guys to have a look and fill in
    if I have missed
    > anything.
    >
    > Regards
    > Dhrupadh
    >

  • How to call an ebs  web service using the soa gateway

    Hi All,
    I installed Oracle E-Business Suite Release 12.1.1 Media Pack v4 (32bit) and now I wanna use the soa gateway to develop and integration and consume web services. I found the soa gateway/irep and I can browse through the existing services. But how can I call one e. g. using .NET?
    For .NET, I need an valid address (URL) to the services. How can I get such an URL.
    Example:
    I opened the integration repository, browsed to:
    Order Management Suite - Order Management - Sales Order - INBOUND: Change Purchase Order XML Transaction.
    I cannot find an address at this page which can be used in MS Dev Studio to call the service.
    If I click on "Generate WSDL" or try to open the WSDL under the "Web Service - Web Service Provider" section, I get an error message:
    Error
    SOA Provider Access resulted in exception 'oracle.apps.fnd.soa.util.SOAException: SystemError: Error while sending message to server. Server returned HTTP response code: 500 for URL: http://ebs1.tesis.de:8000/webservices/SOAProvider/EbizAuth?Generate=4283&soa_ticket=HKGsq9YYnoswMKFsHijTPQ..' when attempting to perform 'GENERATE'. Please contact your System Administrator
    What exactly does this error mean?
    Many thanks,
    Konrad

    You have to make sure every step in MOS Document ID 726414.1 that is applicable to your E-Business Suite 12.1.x release is performed. Enabling ASADMIN is just one of the steps. In spite of following all the steps in this Document you continue to get the error when clicking "Generate WSDL", please log a Service Request with Oracle Support.I will check all steps again. Maybe I missed one... Thanks!

Maybe you are looking for

  • Format over catalog file, tried to recover file but now corrupt?!

    I recently performed a format of my hard drive.  When doing this, I did not back up my catalog file from photoshop elements(I have pse 8.0).  I backed up everything else, and I do have all of the original full size photo files from my hard drive, ~11

  • STO Stock not going to receive

    Dear All, I have raised STO, created delivery and done PGI.   Now stock is in Transit whcih can be tracked sing MB5T. Due to accident this stock is not going to receive by receving plant.  How to handle this situtation as the stock will always shows

  • Profit center 1000/00000208A0 does not exist for 13.06.2008

    Hi All, My user encounter this problem when try to release to accounting for a billing via VF02 The actual profit center is 208A03 but the msg show is 208A0 Where should I check for this problem ? This is a new profit center. Thanks in advance. Janic

  • Data being retrieve from PL/SQL is "???"

    Hi, I follow the sample code shown in getting the data of PL/SQL using Java. Please see below: OracleCallableStatement stmt =(OracleCallableStatement)conn.prepareCall ( "begin ? := getEMpArray; end;" ); // The name we use below, EMPARRAY, has to matc

  • Ignoring a target field in LSMW processing

    Hi All,         Is there a way to ignore a particular target field and its mapping in LSMW? For example, if there are 10 target fields present in a target structure, I want to ignore say 2 fields based on a value in file for another field so only 8 t