[flexcoders] Any folks from WebService Fx SDK team here?

2008-05-27 Thread Igor Costa
I need to talk with someone from SDK team in part of WebServices.

Is that possible?

-- 

Igor Costa
www.igorcosta.org


Re: [flexcoders] Any folks from WebService Fx SDK team here?

2008-05-27 Thread Josh McDonald
Good luck with that, although I've been poking around in their source a lot
recently, and I know Web Services can be... frustrating in Flex, so if you
post your question I might be able to help :)

-J

On Wed, May 28, 2008 at 8:40 AM, Igor Costa [EMAIL PROTECTED] wrote:

   I need to talk with someone from SDK team in part of WebServices.

 Is that possible?

 --
 
 Igor Costa
 www.igorcosta.org
  




-- 
Therefore, send not to know For whom the bell tolls. It tolls for thee.

:: Josh 'G-Funk' McDonald
:: 0437 221 380 :: [EMAIL PROTECTED]


RE: [flexcoders] Any folks from WebService Fx SDK team here?

2008-05-27 Thread Alex Harui
If your post contains keywords like WebService, DataSevices, fill(),
SOAP, etc, they usually see it and respond.

 

 

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Josh McDonald
Sent: Tuesday, May 27, 2008 3:58 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Any folks from WebService Fx SDK team here?

 

Good luck with that, although I've been poking around in their source a
lot recently, and I know Web Services can be... frustrating in Flex, so
if you post your question I might be able to help :)

-J

On Wed, May 28, 2008 at 8:40 AM, Igor Costa [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote:

I need to talk with someone from SDK team in part of WebServices.

Is that possible?

-- 

Igor Costa
www.igorcosta.org http://www.igorcosta.org  




-- 
Therefore, send not to know For whom the bell tolls. It tolls for
thee.

:: Josh 'G-Funk' McDonald
:: 0437 221 380 :: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  

 



Re: [flexcoders] Any folks from WebService Fx SDK team here?

2008-05-27 Thread Josh McDonald
Maybe they just don't like me :)

Either way, if we have the actual question in the group, it's definitely
more likely to get answered!

On Wed, May 28, 2008 at 9:03 AM, Alex Harui [EMAIL PROTECTED] wrote:

If your post contains keywords like WebService, DataSevices, fill(),
 SOAP, etc, they usually see it and respond.






  --

 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Josh McDonald
 *Sent:* Tuesday, May 27, 2008 3:58 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* Re: [flexcoders] Any folks from WebService Fx SDK team here?



 Good luck with that, although I've been poking around in their source a lot
 recently, and I know Web Services can be... frustrating in Flex, so if you
 post your question I might be able to help :)

 -J

 On Wed, May 28, 2008 at 8:40 AM, Igor Costa [EMAIL PROTECTED] wrote:

 I need to talk with someone from SDK team in part of WebServices.

 Is that possible?

 --
 
 Igor Costa
 www.igorcosta.org




 --
 Therefore, send not to know For whom the bell tolls. It tolls for thee.

 :: Josh 'G-Funk' McDonald
 :: 0437 221 380 :: [EMAIL PROTECTED]
   




-- 
Therefore, send not to know For whom the bell tolls. It tolls for thee.

:: Josh 'G-Funk' McDonald
:: 0437 221 380 :: [EMAIL PROTECTED]


Re: [flexcoders] Any folks from WebService Fx SDK team here?

2008-05-27 Thread Igor Costa
So.

Anyway.

Is there any plan on fixing bugs on WebService code generator for support
Weblogic webservice generator?

I did a test with .Net ws and works smooth but with Weblogic isn't working
properly.

I have the real situation.

On server I have Weblogic 9.2.2 publising DataServices and using a
translated version of their soap 1.1, But with so many tests I can't get
working. Why? I believe is related to schema that WebServices of Their
implementation works.

For example I did extended the AbstractWebservice to try a way to work. Just
a CRUD example and for somehow works only for list and filter, Operations
like delete, create or edit doesnt work and Flex give's me a #2032 that's to
me doesn't mean anything.

That's why I would like any folks from Adobe to expose all source code and
could help to implement a way to support the WebLogic Webservice SOAP
format.

Regards
Igor

On Tue, May 27, 2008 at 8:03 PM, Alex Harui [EMAIL PROTECTED] wrote:

If your post contains keywords like WebService, DataSevices, fill(),
 SOAP, etc, they usually see it and respond.






  --

 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Josh McDonald
 *Sent:* Tuesday, May 27, 2008 3:58 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* Re: [flexcoders] Any folks from WebService Fx SDK team here?



 Good luck with that, although I've been poking around in their source a lot
 recently, and I know Web Services can be... frustrating in Flex, so if you
 post your question I might be able to help :)

 -J

 On Wed, May 28, 2008 at 8:40 AM, Igor Costa [EMAIL PROTECTED] wrote:

 I need to talk with someone from SDK team in part of WebServices.

 Is that possible?

 --
 
 Igor Costa
 www.igorcosta.org




 --
 Therefore, send not to know For whom the bell tolls. It tolls for thee.

 :: Josh 'G-Funk' McDonald
 :: 0437 221 380 :: [EMAIL PROTECTED]
   




-- 

Igor Costa
www.igorcosta.com
www.igorcosta.org


Re: [flexcoders] Any folks from WebService Fx SDK team here?

2008-05-27 Thread Josh McDonald
With Flex 3, the source code is all included, and it's pretty nice and clean
too. It takes some debugging single-stepping to get a handle on what's going
on in the XML and SOAP codec classes, but I managed to diagnose and fix a
bug in the encoder in about 6 hours work and I'm no flex ninja yet, so you
should be able to figure out where it's going wrong with a little patience.

BTW, 2032 often means your service is returning a SOAP fault. By default
(and probably the standard) this is a http/500 response, which the browser
discards before telling the Flash plug-in about it so your app will never
get the result. Sucks, but that's the way it is. If you put a filter on the
web server to change 500 to 200 when coming from a SOAP request you may get
more useful information in the FaultEvent.

Also, I can't recommend the Charles web debugging proxy highly enough. It's
saved me countless hours debugging weird bugs in our XSDs, as well as in
Flex's encoder. You'll be able to see exactly how Flex thinks the request
should be formed, and also exactly what it is your server is sending back.

If you can create a (small) soapUI project that exhibits your problem (ie
.net can connect but Flex cannot) and post a link to it here (as opposed to
an attachment which is poor form on lists), you'll also improve the chances
of somebody at least telling you what the problem is.

-J

On Wed, May 28, 2008 at 9:38 AM, Igor Costa [EMAIL PROTECTED] wrote:

   So.

 Anyway.

 Is there any plan on fixing bugs on WebService code generator for support
 Weblogic webservice generator?

 I did a test with .Net ws and works smooth but with Weblogic isn't working
 properly.

 I have the real situation.

 On server I have Weblogic 9.2.2 publising DataServices and using a
 translated version of their soap 1.1, But with so many tests I can't get
 working. Why? I believe is related to schema that WebServices of Their
 implementation works.

 For example I did extended the AbstractWebservice to try a way to work.
 Just a CRUD example and for somehow works only for list and filter,
 Operations like delete, create or edit doesnt work and Flex give's me a
 #2032 that's to me doesn't mean anything.

 That's why I would like any folks from Adobe to expose all source code and
 could help to implement a way to support the WebLogic Webservice SOAP
 format.

 Regards
 Igor


 On Tue, May 27, 2008 at 8:03 PM, Alex Harui [EMAIL PROTECTED] wrote:

If your post contains keywords like WebService, DataSevices, fill(),
 SOAP, etc, they usually see it and respond.






  --

 *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Josh McDonald
 *Sent:* Tuesday, May 27, 2008 3:58 PM
 *To:* flexcoders@yahoogroups.com
 *Subject:* Re: [flexcoders] Any folks from WebService Fx SDK team here?



 Good luck with that, although I've been poking around in their source a
 lot recently, and I know Web Services can be... frustrating in Flex, so if
 you post your question I might be able to help :)

 -J

 On Wed, May 28, 2008 at 8:40 AM, Igor Costa [EMAIL PROTECTED] wrote:

 I need to talk with someone from SDK team in part of WebServices.

 Is that possible?

 --
 
 Igor Costa
 www.igorcosta.org




 --
 Therefore, send not to know For whom the bell tolls. It tolls for thee.

 :: Josh 'G-Funk' McDonald
 :: 0437 221 380 :: [EMAIL PROTECTED]




 --
 
 Igor Costa
 www.igorcosta.com
 www.igorcosta.org
 




-- 
Therefore, send not to know For whom the bell tolls. It tolls for thee.

:: Josh 'G-Funk' McDonald
:: 0437 221 380 :: [EMAIL PROTECTED]