Re: [flexcoders] Re: HTTPService in components

2006-07-20 Thread Tom Chiverton
On Wednesday 19 July 2006 07:34, mcmcbrianfarrell wrote:
 Many thanks to all for their help.

That's OK - the compiler errors are not always as clear as they could be about 
what is wrong and how to fix it, especially when the error is in the fomat of 
your MXML.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



 Yahoo! Groups Sponsor ~-- 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM
~- 

--
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/
 





[flexcoders] Re: HTTPService in components

2006-07-19 Thread mcmcbrianfarrell
Tom,

Absolutely right. I had the line outside of the first container 
object. As soon as I moved it within my first box it worked fine.

Many thanks to all for their help.






 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

--
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/
 





[flexcoders] Re: HTTPService in components

2006-07-18 Thread mcmcbrianfarrell
Following your advice I put the following:

?xml version=1.0 encoding=utf-8?
mx:HTTPService id=usrRequest 
xmlns:mx=http://www.adobe.com/2006/mxml; url=usr.xml 
useProxy=false /

These are the top 2 lines of the component. And now I get the error:

Encountered mx:HTTPService at line 2






 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~- 

--
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/
 





Re: [flexcoders] Re: HTTPService in components

2006-07-18 Thread Tom Chiverton
On Tuesday 18 July 2006 12:00, mcmcbrianfarrell wrote:
 Encountered mx:HTTPService at line 2

That's probably because you can't use HTTPService as the top-most thing in the 
file.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~- 

--
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/
 




RE: [flexcoders] Re: HTTPService in components

2006-07-18 Thread Andrew Trice
What exactly are you trying to do?  Tom's right, you can't have a
HTTPService as the root of a component. You could put the HTTPService
inside of a Canvas, Panel, etc...  

If you only want the HTTPService, with extended functionality, you might
want to try creating an AS class that extends the HTTPService class.

-Andy

_
Andrew Trice
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Blog: http://www.cynergysystems.com/blogs/page/andrewtrice
Email: [EMAIL PROTECTED]
Office: 866-CYNERGY 
 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Chiverton
Sent: Tuesday, July 18, 2006 8:59 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: HTTPService in components

On Tuesday 18 July 2006 12:00, mcmcbrianfarrell wrote:
 Encountered mx:HTTPService at line 2

That's probably because you can't use HTTPService as the top-most thing
in the 
file.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England
and Wales under registered number OC307980 whose registered office
address is at St James's Court Brown Street Manchester M2 2JF.  A list
of members is available for inspection at the registered office. Any
reference to a partner in relation to Halliwells LLP means a member of
Halliwells LLP. Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and
may be confidential or legally privileged.  If you are not the addressee
you must not read it and must not use any information contained in nor
copy it nor inform any person other than Halliwells LLP or the addressee
of its existence or contents.  If you have received this email in error
please delete it and notify Halliwells LLP IT Department on 0870 365
8008.

For more information about Halliwells LLP visit www.halliwells.com.




--
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/
 





[flexcoders] Re: HTTPService in components

2006-07-17 Thread mcmcbrianfarrell
--- In flexcoders@yahoogroups.com, Carson Hager [EMAIL PROTECTED] 
wrote:

 Can you include the errors here?  Without them, it's a bit hard to
 figure out what might be going on.
  

Carson,
My code is:

?xml version=1.0 encoding=utf-8?

 mx:HTTPService id=usrRequest url=usr.xml useProxy=false /

...which is at the top of the file and the error I get is:

The prefix mx for element mx:HTTPService is not bound.






 Yahoo! Groups Sponsor ~-- 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~- 

--
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/
 




RE: [flexcoders] Re: HTTPService in components

2006-07-17 Thread Andrew Trice












Is that all of your code? If so, you need
to include the namespace on the root node of the component.



mx:HTTPService xmlns:mx=http://www.adobe.com/2006/mxml

id=usrRequest url=""
useProxy=false / 







_

Andrew Trice

Cynergy Systems, Inc.

http://www.cynergysystems.com



Blog: http://www.cynergysystems.com/blogs/page/andrewtrice

Email: [EMAIL PROTECTED]

Office: 866-CYNERGY













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of mcmcbrianfarrell
Sent: Monday, July 17, 2006 9:19
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
HTTPService in components











--- In [EMAIL PROTECTED]ups.com,
Carson Hager
carson.hager@... 
wrote:

 Can you include the errors here? Without them, it's a bit hard to
 figure out what might be going on.
 

Carson,
My code is:

?xml version=1.0 encoding=utf-8?

mx:HTTPService id=usrRequest url=""
useProxy=false /

...which is at the top of the file and the error I get is:

The prefix mx for element mx:HTTPService is not bound.






__._,_.___





--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






Re: [flexcoders] Re: HTTPService in components

2006-07-17 Thread Tom Chiverton
On Monday 17 July 2006 14:19, mcmcbrianfarrell wrote:
 My code is:

 ?xml version=1.0 encoding=utf-8?

 The prefix mx for element mx:HTTPService is not bound.


You haven't got the namespace (xmlns:...) declared.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



--
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/
 




RE: [flexcoders] Re: HTTPService in components

2006-07-17 Thread Carson Hager





Technically you need to have quotes around the attribute 
value, but that's basically right. :)


mx:HTTPService xmlns:mx="http://www.adobe.com/2006/mxml"id="usrRequest" url="" 
useProxy="false" / 



Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Andrew 
TriceSent: Monday, July 17, 2006 6:56 AMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: HTTPService 
in components




Is that all of your 
code? If so, you need to include the namespace on the root node of the 
component.

mx:HTTPService xmlns:mx=http://www.adobe.com/2006/mxml
id="usrRequest" url="" useProxy="false" 
/ 




_
Andrew 
Trice
Cynergy Systems, 
Inc.
http://www.cynergysystems.com

Blog: http://www.cynergysystems.com/blogs/page/andrewtrice
Email: [EMAIL PROTECTED]
Office: 
866-CYNERGY





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of mcmcbrianfarrellSent: Monday, July 17, 2006 9:19 
AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: HTTPService in 
components




--- In [EMAIL PROTECTED]ups.com, 
"Carson Hager" carson.hager@... 
wrote: Can you include the errors here? Without them, it's a 
bit hard to figure out what might be going on. 
Carson,My code is:?xml 
version="1.0" encoding="utf-8"?mx:HTTPService 
id="usrRequest" url="" useProxy="false" /...which is at the 
top of the file and the error I get is:The prefix "mx" for element 
"mx:HTTPService" is not bound.


__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] Re: HTTPService in components

2006-07-17 Thread JesterXL





$10 says its his email client. Everytime I 
try to manually create xmlns, it forces them to hyperlinks.

- Original Message - 
From: Carson Hager 
To: flexcoders@yahoogroups.com 
Sent: Monday, July 17, 2006 10:11 AM
Subject: RE: [flexcoders] Re: HTTPService in components

Technically you need to have quotes around the attribute 
value, but that's basically right. :)


mx:HTTPService xmlns:mx="http://www.adobe.com/2006/mxml"id="usrRequest" url="" 
useProxy="false" / 



Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Andrew 
TriceSent: Monday, July 17, 2006 6:56 AMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: HTTPService 
in components




Is that all of your 
code? If so, you need to include the namespace on the root node of the 
component.

mx:HTTPService xmlns:mx=http://www.adobe.com/2006/mxml
id="usrRequest" url="" useProxy="false" 
/ 




_
Andrew 
Trice
Cynergy Systems, 
Inc.
http://www.cynergysystems.com

Blog: http://www.cynergysystems.com/blogs/page/andrewtrice
Email: [EMAIL PROTECTED]
Office: 
866-CYNERGY





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of mcmcbrianfarrellSent: Monday, July 17, 2006 9:19 
AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: HTTPService in 
components




--- In [EMAIL PROTECTED]ups.com, 
"Carson Hager" carson.hager@... 
wrote: Can you include the errors here? Without them, it's a 
bit hard to figure out what might be going on. 
Carson,My code is:?xml 
version="1.0" encoding="utf-8"?mx:HTTPService 
id="usrRequest" url="" useProxy="false" /...which is at the 
top of the file and the error I get is:The prefix "mx" for element 
"mx:HTTPService" is not bound.

 
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] Re: HTTPService in components

2006-07-17 Thread Carson Hager





Yeah I was just giving a coworker a hard time. 
:)


Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of JesterXLSent: 
Monday, July 17, 2006 7:30 AMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: HTTPService 
in components



$10 says its his email client. Everytime I 
try to manually create xmlns, it forces them to hyperlinks.

- Original Message - 
From: Carson Hager 
To: flexcoders@yahoogroups.com 
Sent: Monday, July 17, 2006 10:11 AM
Subject: RE: [flexcoders] Re: HTTPService in components

Technically you need to have quotes around the attribute 
value, but that's basically right. :)


mx:HTTPService xmlns:mx="http://www.adobe.com/2006/mxml"id="usrRequest" url="" 
useProxy="false" / 



Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Andrew 
TriceSent: Monday, July 17, 2006 6:56 AMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: HTTPService 
in components




Is that all of your 
code? If so, you need to include the namespace on the root node of the 
component.

mx:HTTPService xmlns:mx=http://www.adobe.com/2006/mxml
id="usrRequest" url="" useProxy="false" 
/ 




_
Andrew 
Trice
Cynergy Systems, 
Inc.
http://www.cynergysystems.com

Blog: http://www.cynergysystems.com/blogs/page/andrewtrice
Email: [EMAIL PROTECTED]
Office: 
866-CYNERGY





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of mcmcbrianfarrellSent: Monday, July 17, 2006 9:19 
AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: HTTPService in 
components




--- In [EMAIL PROTECTED]ups.com, 
"Carson Hager" carson.hager@... 
wrote: Can you include the errors here? Without them, it's a 
bit hard to figure out what might be going on. 
Carson,My code is:?xml 
version="1.0" encoding="utf-8"?mx:HTTPService 
id="usrRequest" url="" useProxy="false" /...which is at the 
top of the file and the error I get is:The prefix "mx" for element 
"mx:HTTPService" is not bound.



__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___