Interact with third-party applications

Do anybody have a try to Interact with third-party applications when using CQ5?
I have some questions when I do that, when I use ajax to get data from my custom application,it always return error message,below is my ajax code:
function getMinisiteList(){
          var sendUrl="http://localhost:8088/innosite/minisite/home.json";
          $.ajax({
                    url : sendUrl,
                    type : "post",
                    dataType : "json",
                    success : function(data) {
          alert(data);
                    error : function(XMLHttpRequest,
                                        textStatus, errorThrown) {
                                   alert(XMLHttpRequest.status);
        alert(XMLHttpRequest.readyState);
        alert(textStatus);
I think my ajax request is Intercepted by CQ,is it right? How can I do that? Can anybody answer me?
thank you very much!

Is this a cross-site request? In other words, is JavaScript above being executed on localhost:8080? If not, you are likely running into a cross-domain browser security restriction.

Similar Messages

  • I am going to update my iOS from 10.6.8 to Mountain Lion. What problems will I face with third party applications? Alberto

    I am going to update my iOS from 10.6.8 to Mountain Lion. What problems will I face with third party applications? Alberto

    Are my applications compatible with Mountain Lion?
         See App Compatibility Table - RoaringApps.

  • Configure sap xi with third party application?

    Hi fredz,
    Can any pls explain with technical details and steps how do i configure sap xi with third party application and what type of connectivity and interfacing communication channel is preffered?
    Is there any option to web-services for interfacing between <b>SAP system-SAP XI system-Third party Application</b>.
    Pls be specific if and only if u have done this scenario.
    Regards,
    Ameet
    Message was edited by:
            Ameet Jassani
    Message was edited by:
            Ameet Jassani

    Hi
    <br>
    This is a very generic question. There are some getting started guides available in the main XI section on SDN, and also some step-by-step guides in the wiki section. A quick search will get you tons of information.
    <br>
    The choice of connectivity and interfacing communication channel is really dependent on the capabilities of the third party system.
    <br>
    Also, to get good results on this forum, please read the <a href="https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement">rules of engagement</a>
    <br>
    Regards
    Manish

  • Integration of SSO with Third Party Application

    Hello Colleagues,
    I have requirement where I have to integrate SSO with a third party application.
    After some R & D I found out that there is some one class "SSO2Ticket.java" which can do that or help in verify the ticket.
    Since I am new to this area, I am not sure how do I go ahead with the execution of this java file.
    Can somebody help me with this.
    Also, is there any documents which talks about SSO integration or about the above mentioned JAVA file.
    Best regards,
    Arvind

    Which type of 3rd party application is this, and which SSO authentication methods does it support?
    If you can find a common one, then that will be good for you.
    Specifically for non-SAP systems re-using the SAP LogonTickets, I know that you can extract the user name from the ticket. I think SAP even provides some verification tools here for external applications to verify the ticket?
    Currently there is much excitement about SAML 2.0 which is also worth taking a look into as well.
    Cheers,
    Julius

  • Realtime data integration with Third party application

    A customer wants to send data to a third party application when a user modifies some information on a business object (ie PO Amount, Employee Name etc). How can you trap this change as close to realtime as possible within SAP?

    In addition to Senthil's reply, it may also be possible to hook into a workflow event, provided such an event is raised.  Whilst I prefer the change pointer approach outlined by Senthil, it does enforce a delay between the "application event" itself and change pointer processing.
    To see if a workflow event is raised, in a non-production system, use transaction SWU8 to activate the workflow trace.  Next perform the update that you wish to trap.  Finally, use transaction SWU9 to display the workflow log.  Hopefully you'll see a workflow event raised for your update (for example a CHANGED event).
    This will allow you to perform either synchronous or asynchronous processing immediately (the norm is for workflow processing to be triggered immediately but asychronously).
    It would be great if all SAP objects supported a common event model, with BADI's for standardised events for create, change, etc.  Maybe one day, but not today...
    Cheers,
    Scott

  • Oracle Quality Itegration with Third party application

    We are trying to build the interface between EBS Oracle quality and third party application for Non conformances and dispositions.  Currently there is no business events or public APIs available for publishing  quality data out from EBS to third party. Please suggest the latest trends available for Integration of quality with external application using service base integration.

    Hello Sandeep,
    have you looked at these docs for Fusion Apps Financials / ERP Cloud?
    - Implementing Tax -- http://docs.oracle.com/cloud/latest/financialscs_gs/FAITX/toc.htm
    - Using Tax -- http://docs.oracle.com/cloud/latest/financialscs_gs/FAUTX/toc.htm
    The "Implementing Tax" contains a chapter about integrations with 3rd party providers. Is this what you are looking for?  If not, could you clarify what you mean by "integration with 3rd party applications"?
    Thanks,
    Oliver
    Fusion Apps Developer Relations
    https://blogs.oracle.com/fadevrel

  • Solution manager RCA with third party applications

    Hi,
    Our setup is fairly huge with several third party applications being used. For every business scenario there are 2 or 3 other applications  involved with SAP. If I configure RCA for BPM will the system be able to analyze the root cause of the issues related to the processes or performance related issues.SAP systems are on Mainframe with Z/OS and DB2 as Database.
    Regards
    Jas

    Hi,
    RCA allows third party integeration. RCA can identiy the issues and the area it lies.
    Rajeev

  • How Bridge communicates with third party applications?

    Hi,
    Is it possible to communicate between Adobe Bridge and a third party application using Bridge SDK?
    I want to learn how Bridge can communicate with other application? Bridge SDK have samples that explain how Bridge communicates with other Adobe applications like Photoshop and Indesign. Can anyone guide me or provide me a sample where Bridge communicates with a third party application?
    Thanks.

    As an example, this shows one way of getting a list of selected files from Bridge via Photoshop using C#
    using System;
    using System.Collections;
    using ps = Photoshop;
    namespace getBridgeFiles
        class Program
            static void Main(string[] args)
                ps.ApplicationClass app = new ps.ApplicationClass();
                String Code = "var fileList;"+
    "if ( BridgeTalk.isRunning( 'bridge' ) ) {"+
    "var bt = new BridgeTalk();"+
    "bt.target = 'bridge';"+
    "bt.body = 'var theFiles = photoshop.getBridgeFileListForAutomateCommand();theFiles.toSource();';"+
    "bt.onResult = function( inBT ) { fileList = eval( inBT.body ); }"+
    "bt.onError = function( inBT ) { fileList = new Array(); }"+
    "bt.send(8);"+
    "bt.pump();"+
    "var timeOutAt = ( new Date() ).getTime() + 5000;"+
    "var currentTime = ( new Date() ).getTime();"+
    "while ( ( currentTime < timeOutAt ) && ( undefined == fileList ) ) {"+
    "bt.pump();"+
    "$.sleep( 100 );"+
    "currentTime = ( new Date() ).getTime();"+
    "}}"+
    "if ( undefined == fileList ) {"+
    "fileList = new Array();}"+
    "fileList = decodeURI(fileList.toString());";
                String RC =  app.DoJavaScript(Code, null, null);
                ArrayList list = new ArrayList();
                list.AddRange(RC.Split(new char[] { ',' }));
                for (int index = 0; index < list.Count; index++){
                    Console.WriteLine(list[index]);
                Console.ReadLine();

  • Touch ID With Third-Party Applications

    Does anyone know if apple will ever integrate the Touch ID with any third-party applications?

    Basically this really wouldn't be up to apple. It would actually be up to the Third-Party developers if they want to intergrate the Touch ID to their appleications. And most likely, since Touch ID is only to unlock a device and for password on iTunes, i doubt it will intergrated in any other applications. See no reason for it to be

  • Form to interact with Third party tool

    Hello All
    I an working with Forms 10g. I want my form to interact third party tool which is installed on the client's machine. My aim is to use the form to pass search criteria to the third party tool and display the results on the form. Is it possible to acheive this with available code such as Webutil or any other? Are there any documents which describe how to acheive this?
    Thanks and Regards
    Kranthi

    is the communication with the other tool based on OLE2 or such techniques or is it as simple as host-command with parameters?
    In both cases webutil is the first approach for you. client_host and client_ole are packages and procedures, which gives you the power to work with the client-pc-applications.
    here is the link to further doc's
    http://www.oracle.com/technology/products/forms/htdocs/webutil/webutil.htm
    try it
    Gerd

  • Communication of Illustrator with Third Party Application (MFC).

    Hi all,
    I want to use illustrator's APIs into MFC application. How can I do this?
    I searched a lot and found that, it could happen using COM Interface of Illustrator Type Library.
    so I included Illustrator CS5 Type Library and import "ScriptingSupport.aip".
    When I build the project it will create a "scriptingsupport.tlh" which contains the Forward references and typedefs in Illustrator Namespace.
    I have created a window application in MFC containing a button.
    OnButtonClick I wanted to access Illustrator APIs but I am unable to do it. I have tried like this:
    Illustrator::_ApplicationPtr ptr;
    //some script.
    ptr->DoJavaScript(....);
    In this case I am not able to find out how to get instance of _ApplicationPtr in ptr variable.
    Please help me if anybody have any idea.
    Thanks in Advance...

    Which type of 3rd party application is this, and which SSO authentication methods does it support?
    If you can find a common one, then that will be good for you.
    Specifically for non-SAP systems re-using the SAP LogonTickets, I know that you can extract the user name from the ticket. I think SAP even provides some verification tools here for external applications to verify the ticket?
    Currently there is much excitement about SAML 2.0 which is also worth taking a look into as well.
    Cheers,
    Julius

  • CAPS compatability with third party application servers

    hi all,
    can anybody know what are various application servers are compatable with CAPS projects deployment. please let me know whether can i deploy a CAPS project in JBOSS application server. is JBOSS compatable wiht CAPS project? if yes, please let me clear what are the prerequisite we need to do to deploy a CAPS project in JBOSS application server.
    Thanks
    rss

    As per Sun Product Services: Unfortunately, no, that is not possible yet. JBoss is on our list of app-servers to support but it presently isn't supported. You should be able to use JCAPS Integration Server.

  • Really Apple? OSX 10.8.5 disables built-in camera functionality with third party apps such as Skype and Gmail video chat. I do not have time machine on my 2013 MB Air. How can I get back to 10.8.4?

    Really Apple?
    With the release OSX 10.8.5 Apple has once again showed its true colors, and continued its efforts to create a closed Apple system, which eliminates third party vendors, unless, one can only assume... they pay.
    Included in this OSX update is the disabling of the built-in camera to work with third party applications such as Skype and Gmail video chat. No surprise the camera works just fine with Apple apps such as Facetime and Photobooth.
    The answer I got on my call to AppleCare to ask for assistance in reinstalling 10.8.4, so that I may Skype again, was we can not do that. You can not go back unless you have a time machine bkup.
    Can anyone help me get back to to 10.8.4 on my 2013 MB Air?
    I do not have a time machine bkup as this computer is not used to store important documents.
    Thank you.

    Read this post: 10.8.5 Broke Camera Usage For 3rd Party Apps Like Skype
    Another: isight not recognized in Skype after 10.8.5 upgrade
    Don't panic. Skype simply needs to update its app.

  • Third Party Applications? What exactly are they?

    Right,
    I've read alot about the Blue Screen that appears when Upgrading to OSX Leopard. I am intending on upgrading tomorrow when my external hard drive arrives so I can Clone my 10.4.11 onto the external hard drive and upgrade the cloned version first but would like to know if I can check in advance for any of these' Third party App's'? and what exactly are they?
    Regards,

    A third party application is anything not made by Apple. It can also include products that Apple purchased fairly recently (some of those "Pro" apps) that weren't coded to Apple's specfications and haven't been well tested. Apple doesn't and shouldn't test their software with third party applications. It isn't their job to test other people's software. They probably make exceptions for things like Office and Photoshop, but that is a short list.
    Most third party applications will be fine. The ones you have to worry about are those that ask for your password when you install them. They can then install any sort of incompatible software.
    After you clone your hard drive, verify that you can boot from the external drive and all your data is there. If so, don't upgrade the external drive. Boot using the 10.5 DVD and immediately run Disk Utility and re-partition your internal hard drive to wipe it out completely. Then install Leopard. Do not use Migration Assistant. Re-install all your 3rd party applications that are 10.5 compatible. Be very careful about copying over from backup anything in a Library/Preferences folder. You can copy any preference file from a third party application back over - those are safe. Anything from Apple may have been upgraded. Only copy over the Apple files that you absolutely have to, such as your Mail folder and Address book file, for example.
    It sounds like a lot of work but it will only take a couple of hours.

  • Best practices for apps integration with third party systems ?

    Hi all
    I would like to know if there is any document from oracle or from your own regarding best practices for apps integration with third party systems.
    For example, in particular, let's say we need customization in a given module(ex:payables) need to provide data to a third party system, consider following:
    outbound interface:
    1)should third party system should be given with direct access to oracle database to access a particular payments data information table/view to look for data ?
    2) should oracle create a file to third party system, so that it can read and do what it need to do?
    inbound:
    1) should third party should directly login and insert data into tables which holds response data?
    2) again, should third party create file and oralce apps will pick up for further processing?
    again, there could be lot of company specific scenarios like it has to be real time or not... etc...
    How does companies make sure third party systems are not directly dipping into other systems (oracle apps/others), so that it will follow certain integration best practices.
    how does enterprise architectute will play a role in this? can we apply SOA standards? should use request/reply using Tibco etc?
    Many oracle apps implementations customizations are more or less directly interacting with third party systems by including code to login into respective third party systems and vice versa.
    Let me your know if you have done differently and that would help oracle apps community.
    thanks
    rrb.

    you want to send idoc to third party system (NONSAP).
    what kind of system is it? can it handle http requests
    or
    can it handle webservice?
    which version of R/3 you are using?
    what is the mechanism the receiving system has, to receive data?
    Regards
    Raja

Maybe you are looking for

  • How do I change the name of my calendar on my iPhone 5

    How do I change the name of my calendar on my iPhone 5

  • Transfer media to my lumia 720

    Hi. I have been trying to transfer videos and music from my laptop to my Nokia Lumia 720. Some end up playing while most don't, the ones that play end up multiplying themselves. And if I delete the duplicated they don't play. This happens to both mus

  • Can't start Final Cut even after re-install!!!

    I open FCP on either the Dock or the Application window it bounces in the Dock, seems to start up and crashes even before the FCP Banner comes up and shuts itself. I have deleted FCP and done a complete re-install and it still does the same. Can anyo

  • Dreamweaver 8 error message when applying command

    I need some help, I have a Mac OSX with system 10.4.8 When I used to use Dreamweaver MX 2004, I never used to have no problems when I used to save steps through the history option and apply them as a command. I removed all my extensions, and installe

  • No longer have airplay

    I no longer have airplay since upgrading to Yosemite. Anyone else with this issue? Any idea how to fix it? Thanks.