check your settings in the project first, make sure its looking at
your CF 8 install. I will see if I can narrow it down (I am not using
8 at the moment)

On 7/11/07, Sophek Tounn <[EMAIL PROTECTED]> wrote:
Clint,

Thanks for your presentation, sorry I had to leave early, I live an hour
away. Anyway I'm having trouble doing the remote object thing, I'm using CF8
on my local machine, running in port 8501, I have a project call flexdemo
under the wwwroot folder.

Here is the xml that comes with CF8, How to I modify this to enable it to
work on my project.? Thanks in advance.

<?xml version="1.0" encoding="UTF-8"?>
<services-config>

    <services>
        <service-include file-path="remoting-config.xml" />
        <service-include file-path="proxy-config.xml" />
        <service-include file-path=" messaging-config.xml" />
        <service-include file-path="data-management-config.xml" />
    </services>

    <security>
        <login-command
class="flex.messaging.security.JRunLoginCommand "
server="JRun"/>
        <!-- Uncomment the correct app server
        <login-command
class="flex.messaging.security.TomcatLoginCommand"
server="Tomcat"/>
        <login-command class="
flex.messaging.security.WeblogicLoginCommand"
server="Weblogic"/>
        <login-command
class="flex.messaging.security.WebSphereLoginCommand"
server="WebSphere"/>
        -->
        <!--
        <security-constraint id="basic-read-access">
            <auth-method>Basic</auth-method>
            <roles>
                <role>guests</role>
                <role>accountants</role>
                <role>employees</role>
                <role>managers</role>
            </roles>
        </security-constraint>
        -->
    </security>

    <channels>

        <!--  CF Based Endpoints -->
        <channel-definition id="my-cfamf"
class="mx.messaging.channels.AMFChannel ">
            <endpoint
uri="http://{server.name}:{server.port}{context.root}/flex2gateway/";
class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <polling-enabled>false</polling-enabled>
                <serialization>

<instantiate-types>false</instantiate-types>
                </serialization>
            </properties>
        </channel-definition>

        <channel-definition id="cf-polling-amf"
class="mx.messaging.channels.AMFChannel">
            <endpoint uri="http://{
server.name}:{server.port}{context.root}/flex2gateway/cfamfpolling"
class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <polling-enabled>true</polling-enabled>

<polling-interval-seconds>8</polling-interval-seconds>
                <serialization>

<instantiate-types>false</instantiate-types>
                </serialization>
            </properties>
        </channel-definition>

        <channel-definition id="my-cfamf-secure"
class="mx.messaging.channels.SecureAMFChannel">
            <endpoint uri="https://{
server.name}:{server.port}{context.root}/flex2gateway/cfamfsecure"
class="flex.messaging.endpoints.SecureAMFEndpoint"/>
            <properties>
                <polling-enabled>false</polling-enabled>
                <serialization>

<instantiate-types>false</instantiate-types>
                </serialization>
            </properties>
        </channel-definition>

        <!--  ColdFusion specific RTMP channel -->
        <!--
        <channel-definition id="cf-rtmp"
class="mx.messaging.channels.RTMPChannel">
            <endpoint uri="rtmp://{ server.name}:2048"
class="flex.messaging.endpoints.RTMPEndpoint"/>
            <properties>

<idle-timeout-minutes>20</idle-timeout-minutes>
                <serialization>

<instantiate-types>false</instantiate-types>
                </serialization>
            </properties>
        </channel-definition>
        -->

        <!--  Java Based Endpoints -->
        <!--
        <channel-definition id="java-amf"
class="mx.messaging.channels.AMFChannel">
            <endpoint uri="http://{
server.name}:{server.port}{context.root}/flex2gateway/amf"
class="flex.messaging.endpoints.AMFEndpoint"/>
        </channel-definition>

        <channel-definition id="java-secure-amf" class="
mx.messaging.channels.SecureAMFChannel">
            <endpoint
uri="https://{server.name}:{server.port}{context.root}/flex2gateway/amfsecure";
class="flex.messaging.endpoints.SecureAMFEndpoint "/>
        </channel-definition>

        <channel-definition id="java-polling-amf"
class="mx.messaging.channels.AMFChannel">
            <endpoint uri="http://{
server.name}:{server.port}{context.root}/flex2gateway/amfpolling"
class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <polling-enabled>true</polling-enabled>

<polling-interval-seconds>8</polling-interval-seconds>
            </properties>
        </channel-definition>

        <channel-definition id="java-rtmp" class="
mx.messaging.channels.RTMPChannel">
            <endpoint uri="rtmp://{server.name}:2036"
class="flex.messaging.endpoints.RTMPEndpoint"/>
            <properties>

<idle-timeout-minutes>20</idle-timeout-minutes>
            </properties>
        </channel-definition>
        -->

        <channel-definition id="java-http" class="
mx.messaging.channels.HTTPChannel">
            <endpoint
uri="http://{server.name}:{server.port}{context.root}/flex2gateway/http";
class="flex.messaging.endpoints.HTTPEndpoint "/>
        </channel-definition>

        <channel-definition id="java-secure-http"
class="mx.messaging.channels.SecureHTTPChannel">
            <endpoint uri="https://{
server.name}:{server.port}{context.root}/flex2gateway/httpsecure"
class="flex.messaging.endpoints.SecureHTTPEndpoint"/>
        </channel-definition>
    </channels>

    <logging>
        <target class="flex.messaging.log.ConsoleTarget"
level="Error">
            <properties>
                <prefix>[Flex] </prefix>
                 <includeDate>false</includeDate>
                <includeTime>false</includeTime>
                <includeLevel>false</includeLevel>
                <includeCategory>false</includeCategory>
            </properties>
            <filters>
                <pattern>Endpoint.*</pattern>
                <pattern>Service.*</pattern>
                <pattern>Configuration</pattern>
                <pattern>Message.*</pattern>
            </filters>
        </target>
    </logging>

    <system>
        <manageable>false</manageable>
        <!--
        <redeploy>
            <enabled>true</enabled>
            <watch-interval>20</watch-interval>
            <watch-file>{context.root}/WEB-INF/flex/services-
config.xml</watch-file>

<watch-file>{context.root}/WEB-INF/flex/proxy-config.xml</watch-file>

<watch-file>{context.root}/WEB-INF/flex/remoting-config.xml</watch-file>

<watch-file>{context.root}/WEB-INF/flex/messaging-config.xml</watch-file>

<watch-file>{context.root}/WEB-INF/flex/data-management-config.xml</watch-file>
            <touch-file>{ context.root}/WEB-INF/web.xml</touch-file>
        </redeploy>
         -->
    </system>

</services-config>




On 7/11/07, Clint Tredway <[EMAIL PROTECTED]> wrote:
> Thanks Mike, I appreciate that. I have been using Flex since 1.0 and I
> love it for application development.
>
> I downloaded Model-Glue Flex this morning and will be giving it a run
> through and I will blog on my opinion once I go through it.
>
> On 7/11/07, Mike Kelp <[EMAIL PROTECTED]> wrote:
> >
> >  Man, wish I could have made it to last night's CFUG.
> >
> >  Congrats on the preso Clint, sounds like you did a great job. I've been
> > doing Flex for a while now, but I wish I could have seen the way you do
> > things because you never know what you can learn from eachother.
> >
> >  Anyway, wanted to express my wishes for being there and have subscribed
to
> > your blog for future knowledge you share.
> >
> >  Clint may have shared this at his presentation, but thought I would
link
> > his sites here since i just searched them up, and found them on Dave
Shuck's
> > blog haha.
> >
> >  website: http://grumpee.instantspot.com
> >  rss: http://grumpee.instantspot.com/blog/rss.cfm
> >
> >  Mike.
> >
> >  Michael Sumner wrote:
> >
> >
> >
> > Clint – really informative presentation last night I look forward to the
> > sample files.
> >
> >
> >
> > I thought of a couple of things on the way home.
> >
> >
> >
> > I have a simple app that is flash form submission by our vendors and was
> > thinking about flash remoting for this section, could I basically put
Flex
> > in on that "page" the other pages are informational or are only
submitting
> > one change.  This form for PO approval my need to be submitted 10 – 20
times
> > and though I like some of the things I get with the flash form the
reload is
> > a drag.
> >
> >
> >
> >
> >
> > 2.  Have you seen any Flex shopping carts and would that be a good
choice?
> >
> >                 We are looking to install a cart in order to sell
overstocks
> > to our members and most of the carts we are looking at do not seem to
fit
> > the bill.  The vendor for our ERP package has a eCommerce package but
with
> > its software, IBM WebShere , MS SQL CPU licensing and a new server (need
> > this anyway) it's a 30K – 35K investment.
> >
> >
> >
> >
> >
> > Again, thanks for the presentation .
> >
> >
> >
> > Michael Sumner
> >
> > Nations Best Sports
> >
> > 817-788-0034 ext 244
> >
> > 817-788-8542 fax
> >
> >   ________________________________
> >
> > _______________________________________________
> > Reply to DFWCFUG:
> >   [email protected]
> > Subscribe/Unsubscribe:
> >  http://lists1.safesecureweb.com/mailman/listinfo/list
> > List Archives:
> >  http://www.mail-archive.com/list%40list.dfwcfug.org/
> >   http://www.mail-archive.com/list%40dfwcfug.org/
> > DFWCFUG Sponsors:
> >  www.instantspot.com/
> >  www.teksystems.com/
> >
> >
> > _______________________________________________
> > Reply to DFWCFUG:
> >   [email protected]
> > Subscribe/Unsubscribe:
> >   http://lists1.safesecureweb.com/mailman/listinfo/list
> > List Archives:
> >
http://www.mail-archive.com/list%40list.dfwcfug.org/
> >   http://www.mail-archive.com/list%40dfwcfug.org/
> > DFWCFUG Sponsors:
> >   www.instantspot.com/
> >   www.teksystems.com/
> >
> >
>
>
> --
> http://grumpee.instantspot.com/blog
>
> _______________________________________________
> Reply to DFWCFUG:
>   [email protected]
> Subscribe/Unsubscribe:
>   http://lists1.safesecureweb.com/mailman/listinfo/list
> List Archives:
>     http://www.mail-archive.com/list%40list.dfwcfug.org/
>   http://www.mail-archive.com/list%40dfwcfug.org/
> DFWCFUG Sponsors:
>   www.instantspot.com/
>   www.teksystems.com/
>


_______________________________________________
Reply to DFWCFUG:
  [email protected]
Subscribe/Unsubscribe:
  http://lists1.safesecureweb.com/mailman/listinfo/list
List Archives:
    http://www.mail-archive.com/list%40list.dfwcfug.org/
  http://www.mail-archive.com/list%40dfwcfug.org/
DFWCFUG Sponsors:
  www.instantspot.com/
  www.teksystems.com/




--
http://grumpee.instantspot.com/blog

_______________________________________________
Reply to DFWCFUG:
 [email protected]
Subscribe/Unsubscribe:
 http://lists1.safesecureweb.com/mailman/listinfo/list
List Archives:
   http://www.mail-archive.com/list%40list.dfwcfug.org/
 http://www.mail-archive.com/list%40dfwcfug.org/
DFWCFUG Sponsors:
 www.instantspot.com/
 www.teksystems.com/

Reply via email to