Flex Without VC?

Hi Experts,
I have got two questions for you.
1. Can I use Flex without VC? for example, is it possible to use flex with WAD 3.x?
2. Can I use VC without Portal, we don't have portal installed? Can anyone please explain me how VC works.
Any pointings will definitely be rewarded.
Points Gauranteed.
Please help.
--Ragu

Hi Raguraman,
Q1.
VC useing Flex as the One of its Compilers to Get its Runtime Output.
Like these are WebdynPro and Xgraph.
Q2.
Without portal you can not open a VC and Work on it .
Because VC server is installed on Portal server and it gets its contents from the Portal only Like Backend and Users
If above Explainantion did not claear your doubts reply again .
I will expalin Clearly
Regards,
Govindu

Similar Messages

  • Basic Soap requests in Flex (without WSDL)

    Hi,
    I have just started to use Flex, so everything is really new
    to me.
    I am meant to write a Flex application that requests data
    from a Java SOAP service which is currently written by a colleague.
    We do not have a WSDL specification (yet), as the content
    format is not yet agreed on and might be extended frequently (Also,
    the Service will only ever be used by my flex app)
    Unfortunately I could only find SOAP tutorials for Flex that
    use WSDL.
    It would be great if anyone could give me some ideas on how
    to get started on using SOAP within Flex without the WSDL part.
    Thanks a lot in advance.

    Yes I think your app will perform better using remote objects, there's 
    a great app to test that named Census you can get it and do your own 
    tests or play with it on James Ward's blog.
    Sincerely,
    Michael
    El 22/04/2009, a las 12:24, ijmarrero <[email protected]> escribió:
    >
    We are developing a middle sized application using Flex and Axis 
    Webservices. On the client side we AS code generated using Flex 
    Builder 3.0 and the WSDL. On the server side we have Java  code 
    generated with Axis 1.3 using the same WSDL. The problems occurs 
    when the server sends a 290Kb response to the Client. Flex spends 10 
    seconds (obtained from mx.rpc.* log facility) in deserialing this 
    SOAP message. My question is:
    >
    ¿Could I improve the performance of the deserialization?
    >
    Due to the fact that this is an unaceptable delay and that we have a 
    code of 70.000 lines ¿what choices we have? ¿Should we use remote ob
    jects?
    >
    Thank you
    >

  • Flex without anti-aliased font in IDE

    Hi
    In Flex 3 running on Mac OSX 10.5.4 is it possible to make
    the font in the IDE more bitmap looking (ie without text
    smoothing/anti-aliasing)? Staring at small anti-aliased fonts all
    day seems to be harder on my eyes!
    Thanks in advance
    H

    i already do have anti-aliasing turned on. black text on a white background is anti-aliased as expected. i'm trying to use white on black and the difference, while subtle, is there. since i sit in front of a terminal and program all day, i want a font and display combination that is easier on my eyes than what i'm seeing now. i'll go back to black text on light background for now, but in the long run i prefer the opposite style.
    iMac Mac OS X (10.4.7)

  • Flex, Printing / Create PDF  without Server?!?

    Hi,
    after some days of searching a printing solution for flex without using a server or using a second languag (Java), I found the following solutions:
    www.alivepdf.org
    and
    www.bentbit.com
    Is there something else out there?!?!?
    I can not understand why Adobe, the "mother" of PDF, does not have a nice solution for it?!?!?!
    Cheers!
    mz

    It would probably be a good idea to explain why the solutions you've found are unsuitable.

  • Can Tour de Flex run without internet connection

    Hi
    I have installed TourDeFlex.air, but unfortunately it requires internet connection to browse the components.
    Do you know if it is possible to run Tour de Flex without internet connection?

    From an earlier post by Nicolas Mertens:
    "here's what I got from Customer Services about this problem:
    [Help] files are located in the following location:
    C:/Program Files/Common Files/Adobe/Help/en_us/InDesign/6.0. Also
    from that location, you can launch the file 'index.html' and this
    should direct you to *the online help that you would access through
    the program itself.*"
    I found that the files are not at that location, but at C:/Program
    Files/Common Files/Adobe/Help/en_GB/InDesign/6.0 (this is in Windows
    Vista, by the way). "
    Yours would presumably be at [the German equivalent of
    ..]/de-DE/InDesign6.0, or whatever your locale is (AT, CH...)
    Noel

  • How to display pdf file in flex application

    hi,
    I am Ibran, I am using Flex4.5, in that i want to display a pdf file like images.
    How can i do it please anyone tell me.
    I have used navigateToURL(url),but this was going into navigation and i can't see my textfield and buttons.
    So without this  navigateToURL(url) how can i display a pdf file in flex without navigation so that i can see my textInputs and buttons.

    Flash does not have the ability to load/display/manipulate PDF files, so you can't open it directly in the flex application.  With clever HTML and javascript, you can make it appear that it is in the same window, but it will actually be in a separate window/div in the browser.  And yes, this has always seemed absurd to me that Adobe doesn't support PDF's......
    Mark

  • Load a PDF and Print it Without User Seeing the PDF

    I have a client who has a need to allow users via a web browser to print PDFs wihtout gaining direct access to them.  Ignoring all the flaws in this logic , I am new to Flex and am having difficulty determining if this is possible.  So, here are the details:
    1) This is a web browser application.
    2) The files reside on a server.
    3) The user will view a list of available PDF files in their browser.
    4) There will be a print icon next to each one.
    5) When they click on the print icon we need to pull in the PDF from the server and initiate a print, all without the user seeing the PDF.  So once they click the print icon the next thing they see is thier browser's print dialog box.
    I have 1-4 done, I just need help with the most important one, #5.
    So, can Flex (without AIR) load a PDF in without displaying it and print it?
    I am using Flash Builder 4.6, if it matters.
    Thanks in advance for any input.

    Well, that's going to be difficult. Before everything else, a silent printing in general, is not what Browser is all about. A print dialog is thrown by the browser when a user selects a print option. Same thing if an application is trying to print using built into it conventional methods of printing - you get Print dialog. It gets even harder if you want to print PDF files silently. You will need to make sure that a file is available to print in case it's generated on the fly. The following code will print your PDF without dialogs to a selected (var printer) printer:
    var WshShell = new ActiveXObject("WScript.Shell");
    var fs = new ActiveXObject("Scripting.FileSystemObject");
    var fi = "AcroRd32.exe /N /T " + '"c:\\temp\\' + "filename" + '" ' + printer;
    WshShell.Run(fi, 0, false);
    As you notice, the file is on the local system. Or you can try printing over the network.
    This code will be a part of a JS function in your html wrapper. You will call this function from Flex using ExternalInterface.
    AcroRd32.exe is an Adobe free PDF reader.  I would suggest starting from the end - have a file on the local system and working on everything esle.
    HTH

  • Flash migration to Flex

    Hey there,
    Is there anyway to migrate existing applications built in Flash to Flex without having to rewrite everything over again? I've heard something about the Flex Component Kit that says it allows you to build Flex components in Flash but that doesn't sound like what I am looking for.
    Thanks!

    If you build a pure as3 project you can migrate it easily. But if you 
    don't you can embed the compiled flash app within a Flex app using 
    SWFLoader for instance.
    Sincerely,
    Michael
    Sent from my iPhone
    El 17/07/2009, a las 11:43, Tereno10 <[email protected]> escribió:
    >
    Hey there,
    >
    Is there anyway to migrate existing applications built in Flash to 
    Flex without having to rewrite everything over again? I've heard 
    something about the Flex Component Kit that says it allows you to 
    build Flex components in Flash but that doesn't sound like what I am 
    looking for.
    >
    Thanks!
    >

  • How Open source Flex looks to a mid level developer

    Here is my response to a post Matt made on a blog:
    THe whole post:
    http://blog.simb.net/2009/01/19/take-flex-back-for-the-community/
    @Matt
    1st off thanks, now my input:
    The crux of your criticism seems to be that the process that we use for decision-making is closed its certainly not how we feel
    Unfortuntly, this seems like a case of bad commuication by Adobe and the Flex team. If notable community experts get the impression of closed doors, then *certainly* the rest of us get this impression as well.
    but there has been very little participation from the community so far
    Im a solid dev, and not an expert but I can contribute in things such as testing and low level optimization; But, the Adobe open source site is a galactic disaster and discourages me from getting invloved. It has so many webpages that just go around in circles - filled with text that is verbose, this frustrates me to a great deal. As opposed to somehting straight foreward like:
    http://framework.zend.com/download/latest
    or
    http://code.google.com/p/papervision3d/
    Everything is here and easily notable. I avoid the seamingly endless pages and confusion. If I want to get to the Flex dev mailing list I have to register, then choose the lists, add the lists to my account. go though my account prefs read some directions.. then set up some other preferences..jeeeezzzz. If I want to submit a feature request I am directed to create another login for some Bug and Issue management? HUH? I thought I was submitting a featue request.
    Right on papervisions google HOME page I see Getting started > Papervision3D Mailing List.
    Next when I finially do get to Flex SVN, this trunk. is nothing like I have seen.what IS all this stuff and where do I go to learn about it? There are countless subfolders filled with things I vaguely understand and if I want to learn what it is. where do I go? Is there even a src folder?
    Here is a classic example.
    Flex trunk Read Me:
    http://opensource.adobe.com/svn/opensource/flex/sdk/trunk/README.txt
    vs.
    Zend Trunk Read me:
    http://framework.zend.com/svn/framework/standard/trunk/README.txt
    *What* is the Flex team thinking with this?
    I just spent 5 minutes or so twirling through all these SVN directories and Adobes website and I am clueless. I feel like the project is unessarily complex and disorganized - even if it isnt. This just convinced me to delete my Flex sdk bookmark on my SVN client.
    Adobe just lost one potential contributor to Flex SDK.
    We have another idea that were bouncing around that I hope to share in a week or two but wont get into now.
    Saying stuff like this is what gives people the impression of closed. Why not post these ideas the Flex team has? Even if it is stupid or incomplete
    Thats the whole point.

    Wow, thanks for your response. This is great.<br /><br />I now understand that I had a combination of prejudice and ignorance  <br />when regarding Adobe Open Source. Perhaps my ignorance on these  <br />particulars is something that other devs encounter ( that whole  <br />perception thing ).   I have chatted with people who consider the Flex  <br />SDK and Flex Builder... not the same... but fused together so much  <br />that it'd be just crazy to try and use one with out the other   When I  <br />mention using Flex without Flex Builder.... people get that glazed  <br />over look in their eyes....( FYI I'm a FDT man, but am keeping a close  <br />eye on the new Flex Builder )<br /><br />I'll use Zend as an example ( it's the best that I can come up with )  <br />but I feel like there is a difference between the open source  <br />framework and Zend Studio ( commercial software ). Anyway, I'm really  <br />excited about how you've responded to all this.  I have more ideas,  <br />but Ill sit on them and think it through and get ready for next weeks  <br />meeting.<br /><br />Thanks,<br /><br />Alan<br /><br /><br />On Jan 23, 2009, at 1:31 AM, Matt Chotin wrote:<br /><br />> A new message was posted by Matt Chotin in<br />><br />> General Discussion --<br />>  How Open source Flex looks to a mid level developer<br />><br />> I've delayed responding to this because frankly I'm not sure what to  <br />> say for much of it.  The first thing I have to point out is that  <br />> many of the things you mention are related to Flex Builder and not  <br />> the Flex SDK, which is the part that is open source. So things like  <br />> the FB features, and NDA as part of its prerelease program, etc are  <br />> part of the commercial offerings from Adobe, not the Flex SDK.   <br />> Every build of the SDK has been available from the open source site,  <br />> the MAX issues were for commercial products.<br />><br />> The roadmap for Flex 4 has been posted on the Gumbo page now for a  <br />> while, we don't put up specific dates because we don't know specific  <br />> dates, and as we get closer to feeling certain on a date we've put  <br />> it up.  I think that having dates up that constantly change is  <br />> counter-productive.<br />><br />> We use a code name because you never know if another version is  <br />> going to jump into the middle or what could happen, locking in on a  <br />> version number is often just setting yourself up for confusion  <br />> later.  Plenty of other projects use code names too, the idea that a  <br />> code name denotes secrecy is frankly ludicrous.<br />><br />> Regarding your question about 1000 developers and 80% wanting to go  <br />> in a different direction: if 80% of our customers think we should  <br />> move one way, don't you think it'd be pretty silly as a company to  <br />> go against them?  Adobe as a company, and the Flex team as a product  <br />> team, are very focused on delivering our customers value.  If we  <br />> fail to deliver value, not only is our free open source product not  <br />> used, but our paid products aren't used as well.  The things that  <br />> you sometimes run into are long-term vision vs. short-term pains,  <br />> and that may be where some aspects of open source vs. closed  <br />> differ.  The Adobe team has a long-term vision of Flex, which we  <br />> have tried to share and get feedback on, and we make decisions based  <br />> on that vision while taking into account the short-term needs of  <br />> developers.  I think this is a pretty reasonable approach overall,  <br />> and you as a Flex/Flash developer have probably benefited from it.<br />><br />> I'm sorry you feel like Adobe is getting the only benefit of open  <br />> source and you aren't, we certainly believe that we've put pieces in  <br />> place to allow for everyone to benefit, and will continue to take  <br />> suggestions on how we can improve.<br />><br />> Matt<br />><br />><br />> On 1/21/09 7:54 AM, "Alan Klement" <[email protected]> wrote:<br />><br />> A new message was posted by Alan Klement in<br />><br />> General Discussion --<br />>  How Open source Flex looks to a mid level developer<br />><br />> Matt, your right.  The Adobe Open Source site does have sufficient   <br />> resources, but the perception I had , as a developer interested in  <br />> getting invloved,  was that the information was either not there,  <br />> incomplete, or difficult to find.  The perception to me is that  <br />> Adobe is not serious about 'Open Source" - even if it is, the  <br />> perception I have is that it isn't.<br />><br />> I don't mean disrespect, but I don't take "Adobe Open Source"  <br />> seriously.   To illustrate my point I'll use this ( albeit a bit  <br />> extreme ) example:<br />><br />> Suppose the Flex community consists of 1000 devoted developers.    <br />> 80% of these developers decide to take the sdk into a direction they  <br />> feel it needs to go.  This decision, regardless if it's 'good' or  <br />> not, renders it incompatible with other Adobe products, namely Adobe  <br />> Catalyst. WIll Adobe accept the community's decision?<br />><br />> When Adobe can answer 'yes' to that question, I will take Adobe's  <br />> commitment seriously.<br />><br />> And there are so many other things t! hat send me red flags.<br />><br />> - Why is the new name of Flex not public, and why am I, as others,  <br />> breaking NDA to talk about the renaming process with other Flex devs?<br />> - What business is NDA doing in an 'Open' project.<br />> - Why is Adobe tight lipped about a release for Flex 4?  Where is  <br />> the roadmap?   https://wiki.mozilla.org/Releases .<br />> - Why are new features in Flex Builder not public?  Adobe asks 'what  <br />> do you want', but never tells us the results of these polls and what  <br />> features it is actively working on.<br />> - Why are there builds of Flex 4 passed out at MAX, but unavailable  <br />> to non-attendies. Had I *paid* to go to MAX, I'd have Flex 4...<br />> - You mentioned that there wasn't a 'budget' to make it easier for  <br />> devs to submit feature suggestions? Set up a google mailing list,  <br />> that'll cost you 0 dollars.<br />> - What is the term 'budget' doing in open source.  If Adobe won't do  <br />> something, ask the community to chip in.<br />> -Who are the other Adobe Flex devs? I can go to other open source  <br />> projects and see the names and contact info of other devs. Why  <br />> aren't THEY posting their opinions on this message board?<br />> _Why all the 'codename' garbage.  'Codename' denotes secrecy.<br />> - and on and on....<br />><br />> To me, Adobe looks like they want all the benefits of an open source  <br />> project, but none of the consequences.   Being open source means  <br />> releasing a degree of control over the software.  Hell, Richard  <br />> Stallman is still trying to convince people to change 'Linux' to  <br />> 'Linux-GNU'.<br />><br />> I would like to help, but I just don't think my efforts would be  <br />> seriously considered.  I work all day developing Flex applications  <br />> and front end Flash web sites. I don't want to then spend my free  <br />> time to be engrossed with a project's red tape ( Adobe policies ) -  <br />> only to have my efforts to be blown off.<br />><br />> Sorry guys, it just looks like a win-win for Adobe and a lose-lose  <br />> for me.<br />><br />> ________________________________<br />> View/reply at How Open source Flex looks to a mid level developer <a href=http://www.adobeforums.com/webx?13@@.59b790da/2 <br />> ><br />> Replies by email are OK.<br />> Use the unsubscribe <a href=http://www.adobeforums.com/webx?280@@.59b790da!folder=.3c060fa1 <br />> >  form to cancel your email subscription.<br />><br />><br />><br />><br />> ------------------------------------------------------<br />> View/reply at <a href=http://www.adobeforums.com/webx?13@@.59b790da/5><br />> Replies by email are OK.<br />> Use the unsubscribe form at <a href=http://www.adobeforums.com/webx?280@@.59b790da!folder=.3c060fa1 <br />> > to cancel your email subscription.

  • How to display transformed XML in flex? xslt processor w/o javascript?

    I have a tree view with a list of links. upon clicking the links it will display its contents in an iFrame.
    some of the links in my tree are, google.com, yahoo.com, and 2 xml files, 1 of which i have transfromed into html using xsl.
    google, yahoo and the xml file which i have not transformed display successfully in the iFrame. however the xml which i have transformed does not display anything. is there another way to display html in flex? or is there a way to display a transformed xml to html in flex.
    also is there another way to to use an xslt processor in flex without having to use javascript?

    In jsp page set content type to text/xml
    <%@ page contentType="text/xml" %>

  • Server/Data Push Form Java to Flex.

    Hi All ,
       In my application ( Flex3 + Java Struts) i am using RPC (HttpService) calls only . Recently i read the article about
      DATA PUSH FROM JAVA TO FLEX WITHOUT PAGE REFRESHING USING SERVER PUSH.
    Can anybody tell me more about this , how to use this in my application.
    Thanks in Advance....

    Did not worked that much with those but I know there are some embedded example
    that comes along with the blazeDS download.
    The DB is embedded but you can have a rough idea. alsoe there are some
    turtorials and odcs for both of them, Google is your friend. Also google for
    James Ward's blog and Christophe Coenraets, they have posts about this.
    C

  • Calling RFC in Flex

    Hi All ,
    I need to call the Remote Function module Directly in Flex without using the Web service .
    Is t possible ? If Yes then how can we call the RFC's in Flex Coding .

    Hi Everybody,
      Could somebody reply to this thread. We also have the same kind of requirment.
      Does anybody have idea on how to call RFC'S in flex builder witout using webservices?
      Please guide us.
    Regards
    Sireesha.

  • VC without Portal

    Hi Experts,
    I have got two questions for you.
    1. Can I use Flex without VC? for example, is it possible to use flex with WAD 3.x?
    2. Can I use VC without Portal, we don't have portal installed? Can anyone please explain me how VC works.
    Any pointings will definitely be rewarded.
    Points Gauranteed.
    Please help.
    --Ragu

    Hi Raghu,
    You can instal  VC on O4s Portal .
    There is no extra thing you can do to  Work on VC with O4s Portal.
    Just give like this Url to open your VC:http://<Hostname>:<Portnumber>/VC
    Ex.http://pwdf2825.wdf.sap.corp:50000/VC
    Before doing this makle sure all Require software is installe don ur Desktop i.e Adobe Flash Player ,SVG View and XML Parser.
    And User with which ur opening should have VC Role.
    Regarding NW7.1 is still in Development stage and i think SAP Not yet released into Market.
    Kindly come back to me if u have still Problems.
    Regards,
    Govindu

  • External JS from AIR with Flex?

    Hi,
    I wonder if this is possible. I have a AIR application built
    using Flex, I would like to apply syntax highlight within the flex
    application - but my actionscript experience is very limited.
    My question:
    I've used JavaScript syntax highlighting scripts before
    (shjs) - I would like to use this package inside my Flex
    application. Is this possible, can I load and use external
    JavaScript files inside Flex/Air apps?
    I see this can be done using Flex in a Browser (flex without
    AIR) with the 'ExternalInterface API' - is this currently available
    for AIR or is there any other method available to do this?
    To me this is a huge factor for the success of Flex inside
    AIR. I have a huge range of JavaScript libraries I've built over
    the years, it would really suck if I had to rewrite everything in
    ActionScript.
    Any ideas??

    Hi,
    With AIR, you don't need to worry or think about
    ExternalInterface. AIR comes in built with webkit. Just use the
    mx:HTML control to load your html page containing the javascript
    and you will be able to make JS calls from your Flex side.
    But do note that there are limitations to what sort of JS can
    be run within the HTML control. Especially around "eval". Take a
    look at
    http://livedocs.adobe.com/flex/3/html/help.html?content=security_4.html#1091782

  • Webservices with Flex

    Is there any way to consume webservices from flex without
    using LCDS or FDS. Thanks in advance

    Hi,
    You don't need LCDS/FDS/BlazeDS to consume a web service. All
    you need to do is to use the WebService component.
    Hope this helps.

Maybe you are looking for

  • Stable Firmware for WRVS4400N with working IPv6

    Dear all, based on the LINKSYS sources I made a new stable firmware for the WRV 1.1.07.C.27.1 (download) - August, 27 – 2009 – the AUGUST - day release  with following new features & fixed issues:  + OPENSWAN fixes from 2/18/2008 for the NAT-T bug +

  • Load Jar and access a class in jar at run time

    I need help from you. How to load a Jar and access a class in the jar at run time? When i try the following code it works fine while running in Java (Jdk1.5).If iam running the same code in servlet,ClassCastException occurs. Error Message : ClassCast

  • Problems with symbol characters in WIKI using plaintext authentication

    Hi! I have a Lion Server with Wiki service enabled, and using plaintext to authenticate against third provider LDAP server (Oracle/SUN ldap server). The authentication fails if the password has a at least & character inside (I do not test another sym

  • File change for highest level page home page

    file change for highest level page home page When I got these files I would type server/mywork/bkb These files are in the server under the folders mywork/bkb When I type server/mywork/bkb The my index page would show up That's fine. Now, I created a

  • Exception condition CONFIG_NOT_FOUND raised in opportunity page

    Hi Experts,                 I am getting an exception in opportunity page as follows : The following error text was processed in the system MCD : Exception condition "CONFIG_NOT_FOUND" raised. The error occurred on the application server gsusapdp03_M