Embedding an Application in webpage

In my project I had to serve a windows/destop application (Example: Adobe Photoshop) on a web page. And the client shall use that and save the output in a location either on the server or his local system. Is there any way solve this problem..I know that in Microsoft world we have OLE concept, do we have any thing similar to that in Java?

you need to server photoshop applications in a browser? well, anyhow you would do it (if it's possible at all): java has nothing to do with this.

Similar Messages

  • Embedding Flex applications inside a portlet question

    I'm trying to embed a Flex application within a Java portlet on my WLP 10.3.2 portal. I'm able to display the Flex app in the portlet but now I'm trying to access data. Does anyone know of any documents that cover how to access Flex data from a portlet and how to access portlet data from the embedded Flex application?
    thanks

    When you mentioned you integrated Flex App inside a Portlet, are you using like iFrame tag or Browser Portlet where in iFrame tag you specify the Flex app url like that. If so, then you will not be able to share any data/information between this iFrame portlet and the actual other real portlets.
    If these Flex app has something like JSR based Flex portlets, then you can integrate them in WLP more easily. Another option is to consume these Flex Portlets as remote portlets using WSRP on WLP Side and the producer will be Flex Portal App (with flex portlets).
    See if this link helps: http://livedocs.adobe.com/livecycle/es/sdkHelp/programmer/lcds/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=wsrp_1.html
    Ravi Jegga

  • Setting intital data in Workspace embedded Flex Application

    I created 2 processes, one has an embedded Flex application in it. My first process has an output of type XML that is passed to the 2nd process using events. I have attached an Event Message Template to the Event so i can drill down into the data schema. I am able to receive and see the XML data in the receiving process. My Flex application is set to data type Form and has its own schema associated. What I am trying to do using the SetValue service is set some of the values in the Flex schema to the values of the XML data received from the first process.
    My Flex application has an "initialDataHandler" function that receives a DataEvent event from LC Workspace. Using the SetValue service and drilling down into the schema doesn't seem to set the DataEvent event data of the Flex App.
    Does anybody have any ideas on how to set the initial data of the Flex App so the data will be pre-populated when a user opens up the application?
    Thanks,

    Mike,
    I double checked with engineering and this cannot be done. I though that creating a custom render service would work, but it wont since it has to return a document variable and we can only change the data of a swf when its in a Form variable. And there is no way to go from Form to document variable because one contains the content and the other one is only a pointer.
    You can define default data on the variable settings under Default Data, but this data is essentially hard coded, which is not ideal.
    Youre only option at this point is to populate from the formInitData event in the swf form which can call a database or a web service.
    Engineering will make that Default Data a variable in a next release of the product which should get you across this problem but nothing to help us now.
    Sorry for the confusion.
    Jasmin

  • Pause workflow until embedded applescript application is complete

    I have a multi-step automator workflow that has an embedded "Launch Application" step that calls an applescript application that I've written.  The application goes through a list of URLs.  I don't want the workflow to start with the next step until my application has cycled through all the URLs.  Currently, I have hard coded a pause into the workflow, but I'm looking for something more precise (if I set the pause too long, it results in unnecessary delays, if I set it too short, my workflow gets messed up).
    I'm assuming there is some way to modify my application and/or the workflow to send a complete status that can trigger the next step in my workflow.

    Or get the 3rd party action called, Wait for Finder Items.
    This should work.

  • Using Team Foundation Server 2013 for Embedded windows application development

    Can I use Team Foundation Server 2013 to develop an application for an Embedded Board with WEC7 or WEC2013? Does it have all the features of the ultimate edition? For example, can I debug the application when it is running on the embedded board?

    Hi Davidlsar,
    If the source code of your project is created and managed by Visual Studio or Eclipse, then you can work with TFS 2013 since you can connect to team project in TFS via Team Explorer and then do the management. If you want to develop an application with a
    client machine which OS is WEC2013, you have to confirm whether you can install Visual Studio and use corresponding features on WEC2013.
    For the debugging problem, you might open a new thread in embedded forums for a better response. Thanks for your understanding.
    Best regards, 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Passing correct image-file path in flashVar from jsp into embedded Flex application

    I have an application that embeds an image viewer, written in
    Adobe Flex within a jsp page running in a J2EE application on
    Tomcat 5.5. The Flex code is a one-line modification of the
    application displayed at (
    http://www.adobe.com/devnet/flex/samples/fig_panzoom/).
    The image viewer is founded and loaded in the output to the
    screen, but I cannot get the Image Viewer to display the image
    correctly, even though I succeed when either I run the .swf from
    the command-line or from an HTML page.
    My webapp is called FRSApp. The directory structure is, under
    FRSApp:
    myTest.html
    jsp/catalog.jsp
    pan_zoom_files/images/map.jpg
    The JSP code is thus,
    code:
    <%@ taglib prefix="mm" uri="FlexTagLib" %>
    <mm:mxml
    source="../pan_zoom_files/FIG_PanZoom_for_jsp.mxml" >
    <mm:flashvar name="myVar"
    value="/FRSApp/pan_zoom_files/images/map.jpg"/>
    </mm:mxml>
    the code within PanZoom.mxml is,
    private var _imageURL:String =
    Application.application.parameters.myVar;
    <ns1:ImageViewer
    id="imageViewer"
    imageURL="{ _imageURL }"
    bitmapScaleFactorMax="5"
    bitmapScaleFactorMin=".05"
    width="100%" height="100%"
    x="0" y="0"/>
    I have tried other paths to the image file, including
    images/map.jpg [required by command-line execution of .swf]
    pan_zoom_files/images/map.jpg [required by HTML page
    (myTest.html) that embeds the .swf file]
    I have succeeded in loading image viewer embedded in the jsp
    page when the image path is hard-coded in the mxml file, by means
    of the following code:
    <div id="swf-id" class="swfcontent"><embed
    type="application/x-shockwave-flash"
    src="../pan_zoom_files/FIG_PanZoom_for_jsp.swf" id="swf-id"
    name="swf-id" bgcolor="#ffffff" quality="high" wmode="opaque"
    height="480" width="772"></div>
    <script type="text/javascript">
    // <![CDATA[
    var props = new Object();
    props.swf = "../pan_zoom_files/FIG_PanZoom_for_jsp.swf";
    props.id = "swf-id";
    props.w = "772";
    props.h = "480";
    props.ver = "9";
    props.wmode= "opaque";
    var swfo = new SWFObject( props );
    registerSWFObject( swfo, "swf-id" );
    // ]]>
    </script>
    The error is either a "failed to load image" generated by the
    Image Viewer code, or a Flex system error message, resembling a
    null-pointer exception:
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference.
    at FIG_PanZoom_for_jsp()
    at _FIG_PanZoom_for_jsp_mx_managers_SystemManager/create()
    at mx.managers::SystemManager/initializeTopLevelWindow()
    at mx.managers::SystemManager/docFrameHandler()
    Any ideas are greatly appreciated!!

    Solved the problem. I had made several mistakes. One of them
    was to pass in the J2EE context path when what was needed was the
    fully qualified image url:
    http://localhost/FRSApp/pan_zoom_files/images/earth-map_small.jpg.
    The second mistake was to assume the flashvar variable could be
    picked up by initializing Action Script in the the mxml file,
    designated by <mx:script> tags. No, the flash variable will
    only be visible within the <mx:Application>
    </mx:Application> tags.

  • Embedding skype into a webpage

    HI
    Not sure if this is the right board.
    I am wondering if it is possible to get the skype application to open within a web page
    I have created a button for a site that launches the skype app separately which works fine, but I want to be able to have the interface embeded within a page
    Is this possible?
    Many thanks
    Edward

    Hi Edward,
    No. It's not possible to embed a "Skype widget" into your website. As you already discovered you can use Skype URIs to open the Skype application on the user's device.
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • Server Error in '/' Application. - WEBPAGE WON'T OPEN??!

    when i'm connected to the internet, every website seems to work fine, except on one site, which up until this last week has always been fine.
    the page comes up with this:
    Server Error in '/' Application.
    Runtime Error
    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
    Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    </system.web>
    </configuration>
    Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
    </configuration>
    I have no idea what that means and no idea how to sort it out.
    Any ideas?
    i book g4   Mac OS X (10.4.8)  

    the webpage is www.myspace.com
    it is only when i enter my login details will it say all the error details.
    and im using safari, which i have always used.
    i dont know why it would have changed as this site had been added to my bookmarks and always been the same?!
    thanks

  • Embedding WebLogic Application Server 10.3

    Are there any whitepapers or information related to embedding WLS Server into an application? Our software is used by varying sized companies and it would be beneficial for us to embed the appserver and database server within our installation routine and not expose the management to the smaller end user shops. I guess I am just looking for some information to get me started so I understand complexities involved. Right now we are just reselling under the ASFU agreement and install and configure the appserver separately (though through silent installs, JMX, JSR-88). Embedding would save time for our implementation teams as well as minimize overhead and decision making on the part of the end user :)

    I believe there is an entire team at Oracle dedicated to assisting ISV's with bundling WebLogic Server. I strongly recommend that you contact your local account team.
    http://www.oracle.com/us/corporate/contact/index.htm
    If you need assistance finding out who that is email me at my username @oracle.com and let me know where you are located and what type of application you have.

  • Installing and Running Air application from webpage

    Hello ,
    I am trying to run the air application from web page and its working fine in my system. (http://localhost:8080/examples/test1.html)
    if i try to run the same air application from another system's webpage by pointing the url to my system's IP Address,(http://lpAdres of my system:8080/examples/test1.html) its showing error "The application could not be installed because the installer file is damaged. Try obtaining a new installer file from the application author"
    Air Application version are . Flex3.6 sdk and Air2.7 sdk & runtime
    Any of you know what could be the problem.
    please help em to resolve this issue asap.
    its very urgent requirement

    Hi, Jeff;
    Make sure you have compiled your application as 32 bit, and not "any cpu".
    See this document for some more info: [64|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/10d5fa88-2013-2c10-c9a5-f11963607d4e&overridelayout=true]
    Regards,
    Jonathan
    Follow us on Twitter u2013 http://twitter.com/SAPCRNetSup

  • Developing Windows Embedded Compact Application (installation issues)

    I want to develop an application for a device running Windows Embedded Compact 7
    I have downloaded the Application Builder for Windows Embedded Compact 2013 (VSEmbedded_AppBuilder.exe) from here and installed it on my machine
    I am following the instructions from
    this page which says that there should be a "Windows Embedded Compact" node within the New Project dialog box. There isn't
    Additionally, if I launch VSEmbedded_AppBuilder.exe I get a window that only gives you the option to Repair or Uninstall and displays no information other information other than the fact that it is the Application Builder for Windows Embedded Compact 2013
    that you are trying to run
    I have tried repairing and uninstalling and it doesn't help. I have also tried restarting my pc between installing and opening visual studio. Doesn't help either
    What am I missing here?
    I'm running Visual Studio 2012 Professional on a Windows 7 machine. All I want to do is build an application for my Windows Embedded Compact 7 device
    Thanks

    You say that your device is running Compact 7
    You downloaded a Visual Studio plug in for Compact 2013
    You provided links to Compact 2013 documentation and tools
    Since your device is running Compact 7, it would make sense to target your app to run on Compact 7 - if you target Compact 2013, your app
    will not run.
    You will need to install Visual Studio 2005 or 2008 - which one depends on what you plan to do.
    Take a look at
    http://embedded101.com/Blogs/SamuelPhung/entryid/211/Compact-7-Getting-Started-Part-4-Develop-Managed-Code-Application
    Take a look at
    http://embedded101.com/Blogs/SamuelPhung/entryid/216/Compact-7-Getting-Started-Part-5-Develop-Native-Code-Application
    Take a look at http://embedded101.com/Compact7
    Take a look at
    https://msdn.microsoft.com/en-us/library/jj838858(v=winembedded.70).aspx 
    Take a look at CTacke's answer in
    http://stackoverflow.com/questions/24241978/developing-net-compact-framework-apps-in-post-2008-visual-studio
    Bruce Eitman (eMVP) Senior Engineer Bruce.Eitman AT Eurotech DOT com My BLOG http://geekswithblogs.net/bruceeitman Eurotech Inc. www.Eurotech.com

  • How can I use the CFDAQ6004.dll in a embedded c++-application?

    Hi,
    I´m working on a reaserch project and I´m trying to write a embedded c++-aplication which reads from values the Compactflash Card CFDAQ6004 of NI. Can I use the cfdaq6004.dll to read from? If yes, how to?
    I hope anyone has a solution for me
    Best regards, Homi!

    Hi there,
    I know this post is very old but i guess many guys visit it when reading the topic or by googling about CFDAQ6004 driver. Unfortunately CFDAQ6004.dll is very low level driver that support several functions dealing directly with CF6004 card such as ATTset and ATTget... etc. as one can view in any PE explorer for Windows CE. After a month of testing and analysis, i have successfully write a dll based on CFDAQ6004.dll to open, configure, read, write analog/digital data from/to CF6004 card. The new library was given a name CF6004LIB.dll the following is comparison between my dll and daqmxbase driver:
            New Dll                                                                                     DAQmxbase driver
    1. Can be used inside any programming environment                        Can only be used inside Labview
        inc. eVC++ , VC++ .net, VC# .net, VB .net
    2. Support fully dynamic task configuration                                       Only static configration possible (dynamic task can be done with modified VIs)
    3. Remove a lot of overhead by accessing CF6004 directly                Puts a lot of overhead passing through GUI, objects, controls, ...etc.
    4. Support full error detection                                                           Some errors can not be catched
    5. Full sampling rate can be achieved 200 kS/sec                               system dependent (max. 130 kS/sec in hp ipaq 211 PDA)
    6. Support contiuous/limited sampling                                               continuous sampling is possible but at reduced rate`
    7. small in size < 10 kB                                                                    Minimum program size 600 kB
    Also, I have written some modified VIs for CF6004 including reduced (specifically used for CF6004 card ) VIs and dynamic task configrable VIs.
    Bye
    Jaf

  • Macbook pro running slow to open applications and webpages?

    About two days ago i noticed a small lag on my macbook pro but since then it has gotten much worse. I've done all the system updates and still no luck. Everything from the browser to the applications is lagging any ideas???

    Look here for possible solutions:
    http://www.thesafemac.com/mpg/
    Ciao.

  • Flash Catalyst CS5 resizable application with webpage zoom?

    Hi guys,
    I've come back to Catalyst cs5 after a long while of not using it and am wondering if it is possible to create something and make it resizable?
    I seem to remember reading a while back about a way to do it in flash builder but can't for the life of me find the discussion again.
    What I have is a basic photo gallery with thumbnails on the side and one large image that changes when you click the thumbnail. All this is great on a standard webpage but when you zoom in on the web browser with CTRL and + or zoom out with CTRL and -  the SWF stays the same size. I'd like to be able to make it so the SWF resizes with the zoom so people with trouble seeing can view it bigger.
    Does anybody have any idea how I can do this, if it is possible? (Baring in mind I can't upgrade to Catalyst 5.5)
    Thanks,
    Gareth

    Hi,
    That really helped me out!
    I was playing around with importing all different file types to see what would crash Flash Catalyst and it appears to just be .flv files, because it imports images, mp3s, and swf files and .f4v video files with no problems. Hey, at least now I can continue importing videos as long as they are .f4v's!
    Would still be helpful to figure out why it doesn't like .flv's though...
    The step are: File>Import>Video/Sound File...Dialogue box opens, I choose any .flv file (include files which seemed to work fine before) and the program just quits itself giving me the error report window. When I use .f4v files no such problem occurs...
    Will send you a yousendit link containing one of the guilty .flv files now - this is a .flv file I used in creating a page with flash Catalyst just days ago before it decided it would no longer import them.
    Thanks for your help so far
    Adam

  • Embedding external application in SAP through ABAP

    Hi All,
    I wanted to know that can we embed external application in a subscreen through ABAP.
    Thanks in advance,
    Points to helpful replies.
    Regards,
    Bharat Mistry.

    Hi Bharat,
    SAP did a lot in Terma of integration of programs running on the frontend. They have some intefaces with SAP office; I'm not too familar with them.
    What you want, is connected to the subject "Desktop Office Integration (BC-CI)".
    See the link
    http://help.sap.com/saphelp_47x200/helpdata/en/e9/0be775408e11d1893b0000e8323c4f/frameset.htm
    for more information on this.
    SAP propvides a good pdf explaining a lot. You can find at help.sap.com; foro Additional Information->Print Files->SAP R/3 Release 4.6C->English->PDF Index->Desktop Office Integration (BC-CI): data/pdf/BCCIOFFI/BCCIOFFI.pdf
    This is not the latest version because SAP does not provide the new documentation in the form of print files, but it is good.
    Yo could have your Excel running in a subscreen will full data connection to the ABAP program. Any many tgings more.
    Depends on what you want and what you need.
    Regrads,
    Clemens

Maybe you are looking for

  • Jam packs showing in finder but not in loop browser

    Hi, i've got all the jam packs installed and showing up in the library under the audio folder but they do not show in the loops browser of Logic 9.1.3. Does anybody have an idea on how I can get them to "sync"up with the loop browser or import them i

  • T430s fingerprint reader fails in both windows 7 (64 bit) and ubuntu.

    Hi,  I have 4 months with my new t430s, and so far so good, I created a partition to instal ubuntu and I was able to have the finger print reader work in it.  The last week I left the laptop's battery to drain completely, but I did not notice it... I

  • How to give the parameter in a single line

    hi, i am working on reports, i have declared the parameter as radio button, how to have the radio button in a single line. somethink like this radiobutton1, radiobutton2, ....

  • Can't Erase Damaged SD Card

    A Few months ago I bought an micro sd card with an adaptor and filmed a movie on it. About a month ago it became unreadable, presumable from removing it without ejecting it. Now the card doesnt seem to show up on card recovery software. it shows up o

  • Problem Mapping FTP to IDoc

    Hi well i have following incoming structure: <?xml version="1.0" encoding="UTF-8"?> <ns0:MT_EPOSYS xmlns:ns0="http://XXX">    <EPORecordSet>       <EPOFileHeader>          <BDKDNR>0000007531</BDKDNR>          <BDART>T</BDART>          <TEXT>Bestellun