Hi all,
Thank you for helping me, I finally got it working,
I did put: http://207.xxx.xxx.xxx:Port#/flex2gateway/
I did have the same problem, but here is what I 've done after that:
1- Remove --services=C:\CFusionMX7\wwwroot\WEB-INF\flex\flex-
enterprise-services.xml
2- reBuild the app.
3- put: C:\fds2\jrun4\servers\default\flex\WEB-INF\flex\flex-
enterprise-services.xml
4- reBuild the app.
5- Remove: C:\fds2\jrun4\servers\default\flex\WEB-INF\flex\flex-
enterprise-services.xml
6- reBuild the app.
7- put back the original compiler argument: --services=C:\CFusionMX7
\wwwroot\WEB-INF\flex\flex-enterprise-services.xml
8-  reBuild the app.
and it worked....!!!  


--- In [email protected], "angelosalsa" <[EMAIL PROTECTED]> 
wrote:
>
> Hi Jason, 
> Thank you for you inputs,
> Ok here is what I did:
> I put this in the flex-enterprise-services.xml file
> <endpoint 
uri="http://207.AndTheRestOfTheFixedIP:8701/flex2gateway/"; 
> class="flex.messaging.endpoints.AMFEndpoint"/>
> then I tied it locally its still fine, but from a remote location I 
> am still getting the same thing I was getting before, the app loads 
> and the hour glass loads with no data or errors...!!
> 
> Angelo
> 
> --- In [email protected], "Jason Y. Kwong" <inlineblue@> 
> wrote:
> >
> > Please remember that your Flex application runs locally on the 
> user's
> > computer.  Sure, the user is able to download the SWF via
> > http://www.mydomain.com:8701, but because the IP address is hard-
> coded into
> > the SWF, it will try to access IP address 192.168.1.103 when it 
> runs.  That
> > IP address will not resolve because it's local to your LAN (or it 
> might even
> > resolve to a machine on his LAN, which will really confuse 
> matters).  Unless
> > I'm missing something, I really think you should put "
> > http://www.mydomain.com:8701/flex2gateway/"; in your
> > flex-enterprise-services.xml file.  That way it'll resolve to 
your 
> machine
> > from anywhere.
> > 
> > On 4/6/06, angelosalsa <angelosalsa@> wrote:
> > >
> > > Hi Jason,
> > > Yes it is a Linksys, you see when someone calls up on my domain,
> > > example:
> > > http://www.mydomain.com:8701/test.html
> > > that DNS is to my Static IP, then forwarded from the router to 
> open
> > > that port to the 192.168... IP to IIS 6.0, inside the test.html 
> there
> > > are few calls to Webservices and RemoteObjects which will 
access 
> the
> > > http://192.168.1.103/components/mycomponent.cfc?WSDL.
> > > Locally everything works fine, but from the net no data gets 
> loaded,
> > > but no error shows up anywhere....!@
> > >
> > > Angelo
> > >
> > >
> > > --- In [email protected], "Jason Y. Kwong" 
<inlineblue@>
> > > wrote:
> > > >
> > > > An IP address like 192.168.1.103 is a local IP address 
assigned 
> by
> > > a router
> > > > (most likely a Linksys, right?).  An outside machine (not on 
> your
> > > LAN) won't
> > > > be able to see your machine via that IP.
> > > >
> > > > At least that's my take on the situation...
> > > >
> > > > On 3/28/06, angelosalsa <angelosalsa@> wrote:
> > > > >
> > > > > Hi all.,
> > > > > 1st issue:
> > > > > My remoteobjects and webservices work fine from my local 
> server
> > > but
> > > > > when I try to access the site from the outside world, I get 
> only
> > > the
> > > > > hourglass loading with no errors but nothing shows,
> > > > > My crossdomain is in both 
C:\Inetpub\wwwroot\crossdomain.xml 
> and
> > > > > incase C:\CFusionMX7\wwwroot\crossdomain.xml, here is what 
the
> > > > > crossdomain file look like.
> > > > > <?xml version="1.0"?>
> > > > > <!DOCTYPE cross-domain-policy
> > > > > SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-
> > > policy.dtd">
> > > > > <cross-domain-policy>
> > > > > <allow-access-from domain="*" />
> > > > > </cross-domain-policy>
> > > > > My local host is running on http://192.168.1.103:8701 and 
the
> > > > > flexenterprise-services.xml has this:
> > > > > <endpoint uri="http://192.168.1.103:80
> > > {context.root}/flex2gateway/"
> > > > > all my components and services are in
> > > > > C:\Inetpub\wwwroot\CFIDE\components\...
> > > > > any ideas?
> > > > > 2nd issue:
> > > > > My Application have many components on right hand of the 
App. 
> I
> > > have
> > > > > an Accordion that has a TabNavigator and in the 
TabNavigator I
> > > have
> > > > > a component that search the database for employees, right 
now 
> the
> > > > > result is bind to a TileList with a listItemRenderer, in 
that
> > > > > component 'detail State', what i want to do is: insted of 
the
> > > result
> > > > > getting back to the TileList, I would like to bind this
> > > > > ArrayCollection to another component 'empDetails.mxml' 
> DataGrid
> > > > > which is on the mainApp as <ns1:empDetails />
> > > > > I played around with loose coupling but on my matter it 
doesnt
> > > look
> > > > > like it would work unless I can make the ArrayCollection as 
a
> > > public
> > > > > object MAYBE!
> > > > > Right now this is how I am getting back the results:
> > > > > --empSearch.mxml--
> > > > > <mx:ArrayCollection id="searchResults"
> > > > > source="{mx.utils.ArrayUtil.toArray
> > > (EmployeeService.search.result)}">
> > > > > </mx:ArrayCollection>
> > > > > Also played aroung with Calling component but I couldnt 
> figure out
> > > > > how to pass the results to dataProvider in 
> the 'empDetails.mxml'
> > > > > 3ed issue:
> > > > > using the Tree, how would I call other components in a 
> ViewStack
> > > to
> > > > > view?
> > > > > Thanks
> > > > > Angelo
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > > Flexcoders Mailing List
> > > > > FAQ:
> > > http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > > > > Search Archives: http://www.mail-archive.com/flexcoders%
> > > 40yahoogroups.com
> > > > > Yahoo! Groups Links
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > --
> > > Flexcoders Mailing List
> > > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > > Search Archives: http://www.mail-archive.com/flexcoders%
> 40yahoogroups.com
> > > Yahoo! Groups Links
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> >
>









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to