[flexcoders] Web service error. Request and response implement different soap version?

2005-07-15 Thread Aldo Bucchi
Hi all, I am calling a very simple webservice via the flex proxy. I keep getting the following fault string: Request implements version: http://schemas.xmlsoap.org/soap/envelope/ Response implements version looks like something pretty specific any ideas on what might be wrong? Thanks, Aldo

[flexcoders] Re: Web service error. Request and response implement different soap version?

2005-07-15 Thread Aldo Bucchi
OK, never mind I just read the traffic and the web service is returning a http 500 error ( with an html'ed message ). That is, of course, not a valid soap response. Thanks, -Aldo On 7/15/05, Aldo Bucchi [EMAIL PROTECTED] wrote: Hi all, I am calling a very simple webservice via the flex

[flexcoders] WebService: unsupported encoding exception

2005-07-15 Thread Aldo Bucchi
Hi all, I was getting a lot of 500 errors when calling some webservices ( weblogic portal 814). After looking at the server logs it looks like the xml request that the flex proxy sends comes in an unsupported encoding. Any thoughts on how to fix this? Thanks! the server side stack trace:

[flexcoders] Using Run-as for web services

2005-07-15 Thread tony_lic
Hi, I tried using a particular web service which when i run gives the followin error message. Flex proxy and the specified endpoint do not have the same domain, and so basic authentication can not be used. Please specify use- custom-authentication or run-as for services not located on the

[flexcoders] Re: Second retrieval not working - anyone help ?!

2005-07-15 Thread jamiebadman
Thanks; that was it... doh! --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: In your getInvoiceItems method you call getSapInvoiceItemData (note lower-case SAP) but in your RemoteObject you declared it as getSAPInvoiceItemData (note upper-case). Since it's working on

[flexcoders] getting data to a webservice from a tree node

2005-07-15 Thread cnewroth55
how does one get data from a selected tree node to a parameter in a web service? I have a tree and tried doing the selectedItem. call but it doesn't pass the data up to the webservice; here is the webserice call; mx:WebService wsdl=http://127.0.0.1:8300/components/getTechPOCUserID.cfc?wsdl;

[flexcoders] Re: getting data to a webservice from a tree node - fix found (sort of)

2005-07-15 Thread cnewroth55
well, i searched the archives and found this, which works, but i do get a 'warning', Changes to unknown property, UserBemsID, will not be detected here is what I used to pass up to WS from Tree... {tree1.selectedItem.attributes.UserBemsID} now, can anyone tell me why i get the warning?

[flexcoders] Re: Validating Arguments

2005-07-15 Thread Nikmd23
Ohhh, ok. Well that makes sense then. I was hoping I was doing something wrong, but if not I'll just post that bug and hope that Flex 2.0 has it (A) fixed and (B) that it is here soon! Thanks Matt! Nik -- Flexcoders Mailing List FAQ:

[flexcoders] Flex Enhancement Requests

2005-07-15 Thread Rick Bullotta
Matt: Whats the best official way to get enhancement requests into the queue? Through the bug reporting system? Thanks! Rick Bullotta VP, Manufacturing Applications Solutions Mgmt. SAP Labs, LLC http://www.sap.com/manufacturing -- Flexcoders Mailing List FAQ:

[flexcoders] Re: SWF and Flex SSL confusing situations

2005-07-15 Thread kaibabsowats
You should be able to keep the SWF as http and the remoting calls as https without a problem. The only disadvantage is that your users will not see the secure icon in their browser. Since the content on the page will not all be https. Does this mean that the client will not see the SSL

[flexcoders] Re: SWF and Flex SSL confusing situations

2005-07-15 Thread kaibabsowats
Thanks for your answers I appreciate it! Fourth Situation: Regular Flash Player 7 SWF is loaded over http. It loads a Flex application using the Loader class and a https url. Is the Flex application considered https? And to double check if the loaded Flex application has remoting

[flexcoders] Re: NumericStepper change event executes on startup

2005-07-15 Thread Devin Holloway
Thanks Matt. --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Definitely a bug in NumericStepper. Only suggestion I can make is that you put a little hack in that ignores the first change event and only acts on subsequent ones. Matt

[flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Stacy Young
Minor annoyance here but I cant seem to get the text of a textinput field to highlight properly. Its as if the setFocus occurs before the textinput value is set so the cursor is just placed at index 0 of the field. Also tried explicitly selection the text in the field using setSelection

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Stacy Young
p.s. only occurs when displayed for the first time. (textinput sits in a viewstack). Tried changing the creationPolicy to all, no effect. When the viewstack is flipped back to show the field again later, the setFocus works as intended. Ack! From: flexcoders@yahoogroups.com

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Philippe Maegerman
maybe add creationComplete = "this.setFocus()" on the field itself From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stacy YoungSent: vendredi 15 juillet 2005 17:49To: flexcoders@yahoogroups.comSubject: RE: [flexcoders] onFocus, setSelection not highlighting

[flexcoders] Odd behaviors with List controls

2005-07-15 Thread Devin Holloway
I've been noticing a lot of odd behavior with the List and TileList controls. The application I'm working on is located at: http://default.devinholloway.com/flex/capoeira/ You should see the list of titles on the left hand side. If you scroll the product list all the way down, you'll see an

Re: [flexcoders] Flex Enhancement Requests

2005-07-15 Thread Tarik Ahmed
Yup, the wishlist url. http://www.macromedia.com/cfusion/mmform/index.cfm?name=wishform I also heard PayPal'ing Matt as a 'gift' can help boost the priority of an enhancement. :) Rick Bullotta wrote: Matt: Whats the best official way to get enhancement requests into

[flexcoders] combobox change listener

2005-07-15 Thread Robert Brueckmann
I have a combobox that has a change listener that triggers a function to refresh the contents of a tree component. If the user uses the mouse to select the item from the combobox, the tree refreshes with the new content beautifully. If the user selects the combobox with the mouse but then hit a

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Stacy Young
Tried that too, no dice. :( From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Philippe Maegerman Sent: Friday, July 15, 2005 12:07 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] onFocus, setSelection not highlighting textinput

RE: [flexcoders] Re: getting data to a webservice from a tree node - fix found (sort of)

2005-07-15 Thread Tracy Spratt
First, I think you should use selectedNode, not selectedItem. I also think you should put your data in the data object and then use the TreeDataProvider API: tree2.selectedNode.getData().UserBemsId. Perhaps you can get at the id the way you have it if you do:

RE: [flexcoders] Flex Enhancement Requests

2005-07-15 Thread Tracy Spratt
Yes. http://www.cflex.net/showfaq.cfm?Object=faqchannelID=1faqtype=defaultfields=defaultValues=#Question385 Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rick Bullotta Sent: Friday, July 15, 2005 11:04 AM To:

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Philippe Maegerman
mx:TextInput id="myTI" creationComplete="Selection.setFocus(myTI);"/ Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stacy YoungSent: vendredi 15 juillet 2005 18:11To: flexcoders@yahoogroups.comSubject: RE: [flexcoders] onFocus,

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Philippe Maegerman
If you want the focus every time the current Viestack container is shown you can trigger the focus on the 'show' event of the container: ?xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"mx:LinkBar dataProvider="vs"/mx:LinkBarmx:ViewStack

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Stacy Young
Im not sure what u mean exactlynot browser related though. This is within an application. a) User selects item in a tree control b) Based on selection a datagrid is populated c) The first item in the grid is auto selected d) This in turn toggles a viewstack to show the appropriate

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Stacy Young
Thanks for the effort Philippe but that also fails. (the first time) From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Philippe Maegerman Sent: Friday, July 15, 2005 12:54 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] onFocus,

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Robert Brueckmann
Stacy, I was having the same exact problem when my application loaded for the first time because I wanted the cursor to default and the caret be blinking in the username field of the login section so the user, when going to my site, didnt have to explicitly click their mouse in the

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Stacy Young
Thanks Robert, problem is the focus is already on the flash movie. Theres user interaction prior to the event in question taking place. (although I gave it a shot anyway ;-) The field is receiving focus as intended, just the text contents of the textinput field is not selected as it

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Robert Brueckmann
Ohguess I didnt read your original email closely enoughsorryand youre saying that youve also tried using something like: this.createTextField(myText_txt, 99, 10, 10, 200, 30); myText_txt.text = this is my text; Selection.setFocus(myText_txt); Selection.setSelection(0, 3); Where

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Stacy Young
Yep, on my second attempt. Seems the root problem is Selection is executing before the textinput is registering that it has a valueagain, only on the first time this container is viewed. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Robert

RE: [flexcoders] Flex Enhancement Requests

2005-07-15 Thread Matt Chotin
I also heard PayPal'ing Matt as a 'gift' can help boost the priority of an enhancement. :) I wish J -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] No Service is Known...

2005-07-15 Thread charlespaz1
I'm hoping someone here can help, or at least lead me in the right direction. I'm running integrated ColdFusion6.1/Flex1.5 on RHEL and on WindowsXP for testing. On Windows everything is working fine. On Linux I can't get it to recognize ANY remote services. I get the following error: Service

RE: [flexcoders] Flex Enhancement Requests

2005-07-15 Thread Rick Bullotta
So do we.. J From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin Sent: Friday, July 15, 2005 2:19 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex Enhancement Requests I also heard PayPal'ing Matt as a 'gift' can

[flexcoders] Re: getting data to a webservice from a tree node - fix found (sort of)

2005-07-15 Thread cnewroth55
well, using a hint from Tracey, this is what finally worked, but i do have to go back in and restructure my xml...no bigie... *** This worked, and removed the error, and passed the data to my WS call correctly *** UserBemsID{tree1.selectedNode.getData()}/UserBemsID

[flexcoders] How to use setTextFormat?(Text Editor)

2005-07-15 Thread Bruno Martins
I'd like build a Text Editor but the TextArea don't accept setTextFormat method. I try to create a TextField end bind the htmlText property to TextArea.htmlText and apply the TextFormat in the TextField component. But this simple example returns: undefined var my_txt:TextField = new

RE: [flexcoders] Re: Flash Player 8 Beta - found problem??!!

2005-07-15 Thread Abdul Qabiz
Hi, Can you please send the test file (mxml + swf) to me. I would like to see it... We tried compiling your code with Flex 1.5 and running the app in firefox and IE with Flash Player 8. I can't reproduce it... But I would like to see your file.. -abdul From:

RE: [flexcoders] Re: getting data to a webservice from a tree node - fix found (sort of)

2005-07-15 Thread Tracy Spratt
So did you do this?: node label=Aero Modeling (Subsonic) data=myUserBemsId / I think this would also have worked on your original xml: tree2.selectedNode.getProperty(UserBemsId) Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cnewroth55

[flexcoders] Dynamic RadioButtonGroup

2005-07-15 Thread jwaknitz
I am trying to dynamically create radio buttons within a radiobuttongroup (which is dynamically being created). This appears to work. But, when I try to get the data out of the dynamically created RadioButtonGroup, I get undefined. I can tell that the group exists because I can see that

RE: [flexcoders] Dynamic RadioButtonGroup

2005-07-15 Thread Stacy Young
Heres how Ive handled dynamic radios and value lists via mxml using a repeater The dataprovider used for the repeater is my list for the group. This is set dynamically based on the field in question. value is the current value of the field stored in the DBon each repeat it compares

[flexcoders] Another Selection Issue

2005-07-15 Thread Stacy Young
Wow, two glitches in one day mx:TextInput restrict=0-9. id=formItem width=125 / When I setFocus to this field and the length of the value is over 6 characters i.e. 2000.00, the text is only highlighted up until the first 0 after the decimal. Even tried explicitly

RE: [flexcoders] Re: SWF and Flex SSL confusing situations

2005-07-15 Thread Matt Chotin
Not sure if the client can see the certificate. For mixed http and https you will probably need to have a crossdomain.xml file available for the https server. Check our docs for details. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

RE: [flexcoders] Re: SWF and Flex SSL confusing situations

2005-07-15 Thread Matt Chotin
Flex app should be considered https and the loaded Flex app should call the https endpoints correctly. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of kaibabsowats Sent: Friday, July 15, 2005 8:11 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] combobox change listener

2005-07-15 Thread Matt Chotin
If Tracys suggestion doesnt work let us know. Does sound like a bug, one that weve probably already addressed in the Flex 2 codebase. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Friday, July 15, 2005 9:32 AM To:

[flexcoders] No Deserializer for List

2005-07-15 Thread Rajesh Jayabalan
Hi, I have a webservice which accepts a complex paramenter createRequest(MarketRequest marketRequest) where class MarketRequest { protected String mrId; protected String status; protected MRItem[] mrItems; I have getters and setters here } and MRItem is class MRItem { protected

[flexcoders] If I buy a flex license can I host other peoples apps on the license?

2005-07-15 Thread Clint Modien
Just a question I thought I'd kick out there to MM. -- 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] Help with loading of some SWF content in an mx:Image tag

2005-07-15 Thread cazzaran
I have a banner that I load into my Image tag, and this banner goes out to the server it came from to request a TXT file to load up some variables. The problem is that I want to be able to use as much client side as possible. Is there a way to override it loading these vars so I can put in my own