Display data from another web application

Hello

I hope than to display data from my application 'team' on my 'articles' approx. basically display image of the author, email etc., which comes from the app TEAM. I know that this is possible.  I use the data of the src field extract the name of the authors, but of course this provides only a link. Are there tutorials - what can anyone tell me? Thank you.

So does that mean as a concrete response by using the system of normal with BC, is tag that you insert this code for your team web app {module_webapps, 123456, i, {tag_author_id}} on your layout displayed products app page.  ID tag of the author is a field set up in the articles web app and a field of the data source to connect to your team application.

Tags: Business Catalyst

Similar Questions

  • How can I dynamically pull in data from a Web application to a native or hybrid application sold in the Apple/Android/Windows store?

    I built a few hybrid and native apps using the API of Wordpress, and now I need to make an app that has its roots in a site of BC.  I need to make an API call from a native application or hybrid in the webapp (name, image, content and llink) points.

    Sorry for the slow response, BC events no, other things such as CRM and other items Yes, just look to the top of the developer reference:

    The developer reference

    Where's the API V3:

    BRITISH COLUMBIA. Next - access all the data of British Colombia: output JSON everywhere, more REPOSENT API

  • Is it possible for me to show some web app from a web application in Details view of another web app?

    Is it possible for me to show some web app from a web application in Details view of another web app?

    -relationship (one) 1-1 with a point of web application and another through custom field data source is an option.

    -Display of the elements of the same classification is another.

    Apart from that, British Colombia has really bad interconnection.

  • I need to display a search form web app, inside the detail of another web application view. Anyone know

    I can't seem to get a search form web app to work within another page of detail web app. Anyone know if this is possible?

    I can view a list of web app; and the search engine works on a standard page. but when I try to load it into another web application details page, I get an error: "page not found". In this case, regarless of whether if I put {module_searchresuts} on the same page as the form or if I redirect the results to a different page.

    Does anyone have any suggestions?

    Thank you, but I needed to get the search form and the results of the Web A app to show inside the detail for the Web App B model... Apparently is not possible. I finished by simply using an iFrame - inase anyone who crosses the same question

  • Import data from another browser - only a few favorite IE9 are transferred in bookmarks. Solution HTML - HTML file all Favorites OK, but same result

    Win7 / IE9: use for the first time. Example: A folder of Favorites has 4 entries HTML - only 2 transferred. Some have none transferred - empty folder. Others have correct random + some disappeared persons.

    All of Monday
    I can see the full list of favorite IE9 HTML in HTML file on desktop with Firefox-> new tab-> open file-> open
    .
    In the desktop HTML file, there are 37 files IE9 with no more nesting 3 deep in all of a high. They are all correct wrt favorite IE9.

    All records albums + deeper nests are copied in FF ok. Random content. Copied content works ok

    7 unassigned to IE9 HTML web sites best records are also copied <-these 7 copy on FF and work well

    Example: First file in the list of IE9 has no nesting., IE9 has 4 entries - Firefox has only 2. What other method of reproduction is used.

    BTW - please let know us how I can delete entire list of bookmarks in Firefox button to try again with a clean list of bookmarks

    I'll uninstall Firefox and start over with a clean copy and use the HTML only method to try to transfer IE (files. I'll bring result.

    BTW, I'm in the United Kingdom at the time of UK - where delays to answer - need to sleep sometime!

    Tuesday night

    Hello

    I uninstalled Firefox. Re installed and loaded with favorite IE9 to HTML file.

    All seem to be copied correctly

    First time that I started using the "import data from another browser. Partial is copied.
    Then I tried 'Import HTML file' without deleting any favorite had been copied. Always partial copied.

    Everything seems fine.

  • Exception during consumption of huge data from a web service.

    Hello

    I m developing an application to receive data from a Web Service and retain the data received on the device.

    App is developed for OS 4.3.0

    The Web Service call is made using Ksoap. The Code receives the data from the web service, analyzes the data and stores it in an object. This object is then persisted on the device. The data are essentially the coordinates. It takes the number of contacts required as input and passes it to the Web Service. The Web Service then returns the requested number of records

    The code works if I ask data of up to ~ 600 cases. If I specify more than 600 cases, it throws the following exception

    Chain rg.xmlpull.v1.XmlPullParserException:unexpected type (position: TEXT entity request in T...@1:24 in java.io.InputStreamReader@1f87d1b4)

    When I debugged using Eclipse, this exception is thrown on this statement ht.call (soapAction, envelope);

    Would it be because of a time-out? OT is because the Analyzer is not able to analyze huge data?

    Given that this exception occurs on the declaration of ht.call, I guess the problem is with the web service call and not with the code for persistent storage.

    I have included the code here... Is could someone please show me what the problem is?

    C ode to call Web Services

    public Vector getWebData(String count)
        {
    
       Vector personsVectorto = new Vector();
        try
        {
        StringBuffer receivedContent = new StringBuffer();
        String serviceUrl = "........";
        String serviceNamespace = ".....";
        String soapAction = ".........";
    
       SoapObject rpc = new SoapObject(serviceNamespace, "GetContactsList");
            //rpc.addProperty("listSize", "5");
            rpc.addProperty("listSize", count);
         SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
    
            envelope.bodyOut = rpc;
    
            envelope.dotNet = true;
            envelope.encodingStyle = SoapSerializationEnvelope.XSD;
            HttpTransport ht = new HttpTransport(serviceUrl);
            ht.debug = true;
    
            ht.call(soapAction, envelope); // This is where thexmlpullparser exception occurs
    
     Object obj = envelope.getResponse();
            SoapObject soapResult = (SoapObject)obj;
    
                for(int i=0; i < soapResult.getPropertyCount(); i++)
    
                {
                  PersonDTO personto = new PersonDTO();
               SoapObject choice = (SoapObject)soapResult.getProperty(i);
                if( choice!=null)
                {
                    for(int j = 0; j < choice.getPropertyCount(); j++)
                    {
                      receivedContent.append(" Reading Property Number" + String.valueOf(j) + " Value = " + choice.getProperty(j).toString());
    
         if (j==0) personto.setElement(1,choice.getProperty(j).toString());
        if (j==1) personto.setElement(2,choice.getProperty(j).toString());
        if (j==2) personto.setElement(3,choice.getProperty(j).toString());
        if (j==3) personto.setElement(4,choice.getProperty(j).toString());
        if (j==4) personto.setElement(5,choice.getProperty(j).toString());
         if (j==5) personto.setElement(6,choice.getProperty(j).toString());
         if (j==6) personto.setElement(7,choice.getProperty(j).toString());
          if (j==7) personto.setElement(8,choice.getProperty(j).toString());
         if (j==8) personto.setElement(9,choice.getProperty(j).toString());
       if (j==9) personto.setElement(10,choice.getProperty(j).toString());
                    }
                }                 
    
                personsVectorto.addElement(personto);
                //storepersistentobject(personsVectorto);
            }
    
            }catch(org.xmlpull.v1.XmlPullParserException ex2)
            {
                String bah1 = ex2.toString();
                Dialog.alert("String: " + bah1);
                String bah2 = ex2.getMessage();
                Dialog.alert("Message: " + bah2); 
    
            }       
    
            catch(Exception ex){
                String bah = ex.toString();
                Dialog.alert("Response: " + bah);
    
                }
    
                return personsVectorto;
        }
    

    Thank you

    Hi Philippe,.

    First Question: Print server response

    Yes - I think for you too in fact just print the answer you'll have to do a regular HTTP call to the server and print it like this:

    StringBuffer sb = new StringBuffer();

    int thumb;

    HttpConnection httpConn = (HttpConnection) Connector.open (url);

    httpConn.setRequestMethod (HttpConnection.GET); or by POST depending on your needs

    in = httpConn.openInputStream ();

    While ((thumb = in.read ())! = - 1).

    {

    SB. Append ((Char) inCh);

    }

    System.out.println ("server response:" + sb.toString ());

    Try and see if you get a request too large entity. Note: you should probably put your SOAP request in GET or POST http request.

    Second Question: Is zipping required?

    This is how I chose to do for my particular needs that transfer me a large amount of data and the compression algorithm seems to keep all my data well below 40 k. However, it is not the only way, you could actually make several requests and get data piece by piece, but I don't know if it works well with SOAP responses. Depending on the type of Network Setup Blackberry you have, you can also set this limit to be higher (I think a maximum of 1 024 Ko for BES).

    Third Question: Timeout Logging

    For wait times, usually the exception you get should indicate that there was a timeout, but if you are suspicious that it's a timeout check your web service and see.

    Hope that helps!

    R

  • How to fill a ComboBox with data from a Web service

    I have a simple application that contains a DataGrid control that gets its data from a web service. I prefer to put these data in a ComboBox instead of a DataGrid control. My web service returns objects.

    Someone has an idea how to do?

    < mx:DataGrid id = dataProvider = "{ws.getProjects.lastResult"dgProjects"}" > "
    ... < mx:columns >
    ... < mx:DataGridColumn dataField = "projectID" headerText = "ID of project" width = "100" / >
    ... < mx:DataGridColumn headerText = "Project name" dataField = "projectName" / >
    ... < mx:DataGridColumn headerText = "Doc UNID" dataField = "docUNID" visible = "false" / >
    ... < / mx:columns >
    < / mx:DataGrid >

    Exactly what I needed.

    Thank you very much!!!

  • I think that my safari is infected with the virus, he on redirect keeps me from another Web site each time that I click my mouse or press a key on my keyboard... Help!

    I think that my safari (Yosemite) is infected by the virus, he on redirect keeps me from another Web site each time that I click of my mouse or press a key on my keyboard... Help!

    I can't seem to download the print screen, here, anyway, it starts the LINK share appears every time it redirect:

    -"ps4ux.com/click? h = Ax722bagzrmWM3RP_5wPSvP63fG7dqaJCNo55LiVexxUaivPBxSeS7A3C2V4-bO...» »-

    middle part is hidden by «...» »

    the last part is:

    -"ttp: 3% a % 2F % www.apple.com%2F 2F & rt = 46 & date_sid = 50fc88582b4e8512b3e35e56351a22a3" in a new tab.

    Run etrecheck to go to etrecheck.com and see what is running under the hood.

  • I couldn't add the Favorites of internet explore because "important data from another browser" are gray

    I tried to import favorites to internet explore, but I find the tab 'import data from another browser' was grey (not active)

    Make sure that you are not Firefox running in permanent private browsing mode.

    To view the history settings and cookies, choose:

    • Tools > Options > privacy, choose the setting Firefox will: use the custom settings for the story of
    • Uncheck the box: [] "always use the navigation mode private.
  • I want to import my IE Favorites but "import data from another browser" is grayed out and is not an available choice.

    Following the instructions of Firefox to open the library - import & backup tool - the drop down choice for "Import data from another browser" this choice is grayed out and unavailable. I don't know how to import my IE Favorites.

    Make sure that you are not Firefox running in permanent private browsing mode.

    To view the history settings and cookies, choose:

    • Tools > Options > privacy, choose the setting Firefox will: use the custom settings for the story of
    • Uncheck the box: [] "always use the navigation mode private.
  • When you try to import the bookmarks, the ability to import data from another browser is not active in the import and backup from the tap in the history. So, how to import bookmarks on my file?

    I followed the instructions of Firefox to import bookmarks/favorites to Internet Explorer. It does not work because the import data from another browser is not active in the import tab and backup in the history. The instructions read to use this tab, but does not work because it cannot be selected.

    Make sure that you are not Firefox running in permanent private browsing mode.

    To view the history settings and cookies, choose: Tools > Options > privacy, choose the setting Firefox will: use the custom settings for the story of

    • Uncheck the box: [] "always use the navigation mode private.
  • If I remove all the data from the Web site it will also remove all my passwords?

    If I remove all the data from the Web site it will also remove all my passwords?

    It will not erase your saved in the Keychain passwords, but you need to connect back to all Web sites (like this one) that require you to log in.

  • Retrieven data from a Web server...

    Hello, I need get data from a Web site, I'm developing it with XMLHttpRequest.

    I have this code (copy of an example in the area of the developer) and if I connect via browser work perfectly but if I compile my .cod and run Simulator not working.

    I have 3 options in my code, 2 are local file and 1 is for file server, a file local do not problem, but with the file of the server do not work.

    Any can help me? Best regards!

    My code is:

    XMLHttpRequest example
       


       


           
    onClick = "updateContent ("http://www.mysite.com/version.asp ")" / > HTML ""

           
    onClick = "updateContent ('data.xml')" / > XML

           
    onClick = "updateContent ('data.txt')" / > text

           
    onClick = "updateContent ('unknown_file.txt')" / > no that there is no file
       


       

    Finally, I have the solution:

    I paste the code if it is useful for someone:

    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.DTD">


        XMLHttpRequest example
       
       


       


           
    onClick = "updateContent ("http://www.mysyte.com/dat/data.xml ")" / > HTML ""

           
    onClick = "updateContent ('data.xml')" / > XML

           
    onClick = "updateContent ('data.txt')" / > text

           
    onClick = "updateContent ('unknown_file.txt')" / > no that there is no file
       


       


  • DISPLAY DATA from a REMOTE database

    I use Cold Fusion 5 and Oracle 8i (DB).

    You want to DISPLAY DATA from a REMOTE database.

    I'm familiar with synonyms and links to the database. I've set up a link of database
    access to the machine as the correct user (owner of the procedure). I can run

    "Select * from table1@machine1" and works well in SQLPLUS.

    But when in CF call for select statement the error above is Occur-> ORA-02041: customer database did not begin a transaction


    no idea...? Please

    Using ODBC or native drivers? If ODBC, what version? According to Metalink, Oracle ODBC has a bug that has been fixed in 8.1.5.5.0 the description of the attached problem resembles yours.

    Phil

  • How can I insert data from another table into a table containing a timestamp column

    How you insert data from another table in a table if the target table contains a timestamp column. I tried to set the default value of GETDATE() column in the target table, but it does not work.


    I use MS SQL

    Sorry, I managed to get around this by inserting null as the value

Maybe you are looking for

  • Install a new OS on a new ssd

    Currently, I bought a new hd OCZ SSD for my macbook mid2010. I installed the macos via cd, but when I try to install the new yosemite that it downloaded but just restarted and installation of yosemite, I try to install but said left 23mins and stops

  • iTunes Library 2 700 Albums, 800 gbs - thoughts?

    Run the latest version of the iTunes software with 2 700 albums, 800gbs of music (85% ALAC, 15% MP3) pointing to a Seagate 2 to external hard drive (with a backup of drive hard exact mirror).  So far, performance, was fantastic, very fast and very ef

  • What is nhybernate?

    What is nhybernate?

  • Response frequency (simplified answer)

    Hi guys, I would like to use this method (this appears as an example vi) to determine the frequency response of my system with my input signal (no answer: square wave) I'll first need to "pull" the impulse response. Can someone explain what 'pull' me

  • Where can I download the file endec.dll

    My computer always asks an endec.dll file. Where can I download this file without having to download another registry cleaner or antivirus software or buy software of any kind? I'm willing to pay for the specific file I need. I just don't want all ot