[flexcoders] Connecting Remote SQL and Flex as UI

2009-09-07 Thread Suresh G
Hi All,
Thanks a lot for your answers My Main need is...

I have remote SQL server need to connect using flex and give the output in
various charts...

For which i found flashbuilder 4 is easy but i am blank... i thought if i
can generate a WSDL file then it would be easy to bind in flashbuilder ie.
flex builder 4

Thanks
Suresh


Re: [flexcoders] Dot NET or JAVA example to give output as WSDL

2009-09-07 Thread Suresh G
Hi All,
Thanks a lot for your answers My Main need is...

I have remote SQL server need to connect using flex and give the output in
various charts...

For which i found flashbuilder 4 is easy but i am blank... i thought if i
can generate a WSDL file then it would be easy to bind in flashbuilder ie.
flex builder 4

Thanks
Suresh

On Sun, Sep 6, 2009 at 12:25 PM, Sam Lai  wrote:

>
>
> If you are developing the .NET web service using the standard method,
> it would have generated a WSDL for you which is accessible at the web
> service URL (ends with .asmx).
>
> As far as I know, SQL server does not do web services natively (maybe
> with the Data Services component...).
>
> 2009/9/6 Suresh G >:
>
> >
> >
> > My Dear Coders,
> > I am a newbie in coding, good in designing.
> > I need one help, i wanted to connect Microsoft SQL server, finally i am
> able
> > to connect with a  dotnet web service and return as XML, but how to
> connect
> > a SQL server so that i get the output as WSDL  please help me
> > Any other method or suggestion is always welcome. Need an output of WSDL
> > after connecting SQL
> > Suresh
> >
> >
> >
> >
>
>  
>


[flexcoders] Dot NET or JAVA example to give output as WSDL

2009-09-05 Thread Suresh G
My Dear Coders,
I am a newbie in coding, good in designing.

I need one help, i wanted to connect Microsoft SQL server, finally i am able
to connect with a  dotnet web service and return as XML, but how to connect
a SQL server so that i get the output as WSDL  please help me

Any other method or suggestion is always welcome. Need an output of WSDL
after connecting SQL

Suresh


[flexcoders] Flex SQL connection

2009-09-03 Thread Suresh G
Hi Friend

I am now new to flex i am trying to connect to remote sql DB can you please
share the code and help me.

Since i saw in pune flex group you have mailed u are able to do the remote
call, but i am tryin it for last one week i could not do it

Please help me


Suresh


Re: [flexcoders] Re: sizing dinamically the screen

2009-02-19 Thread Suresh G
Hey See the easiest thing is to replace the x and y with 100% values

say for eg now ur app width is 1024 enter
100%

On Tue, Feb 10, 2009 at 8:55 AM, Amy  wrote:

>   --- In flexcoders@yahoogroups.com ,
> Gustavo Duenas LRS 
> wrote:
> >
> > thanks Amy, but it seems when I try to tell the document in Js
> about
> > the new size, that
> > it is not doing the resize, Example is trying to do the sizing in
> the
> > document for vista and
> > others like
> >
> > document.width = screen.availWidth;
> > document.height= screen.availHeight;
> >
> > those arguments work in theory but it seems they are not working
> in
> > Vista or XP...
> > I don't what else to do, actually I have an odd error in the
> > application:
> >
> > TypeError: Error #1009: Cannot access a property or method of a
> null
> > object reference.
> > at lrsAd/resizerFlash()
> > at lrsAd/___Application1_creationComplete()
> > at flash.events::EventDispatcher/dispatchEventFunction()
> > at flash.events::EventDispatcher/dispatchEvent()
> > at mx.core::UIComponent/dispatchEvent()
> > at mx.core::UIComponent/set initialized()
> > at mx.managers::LayoutManager/doPhasedInstantiation()
> > at Function/http://adobe.com/AS3/2006/builtin::apply()
> > at mx.core::UIComponent/callLaterDispatcher2()
> > at mx.core::UIComponent/callLaterDispatcher()
> >
> > this is the flash windows that appears now in my browser.
> >
> >
> > //code for the application:
> >
> > creationComplete="resizerFlash()"
> >
> > here is the code in the flex:
> >
> >
> > //importamos los datos para el external interface//
> > import flash.external.ExternalInterface;
> >
> > //funcion para usar la external interface//
> > public function resizerFlash():void{
> >
> > var h:int;
> > var w:int
> >
> > if (ExternalInterface.available){
> >
> >
> > h= ExternalInterface.call( "movieHeight");
> > root.stage.height = h;
> > w=ExternalInterface.call( "movieWidth");
> > root.stage.width = w;
> > trace(h);
> > trace(w);
> > }
> >
> >
> > }
>
> Set your Application width and height to 100%. Then, when javaScript
> resizes the Object and/or Embed tag (NOT the document), then the
> Application will resize itself appropriately.
>
> You may want to do some basic experimentation and/or research on
> DHTML. That's beyond the scope of this forum.
>
>  
>