Custom webapps

I have a custom webapp where users can turn on /off blog posts via their tag name.  This works fine, however how would I get the count of how many posts are associated with each tag?
I'm using this syntax to display a list of tags in a side bar, but the count is not shown. 
{module_webapps id="Tags" filter="all"}
I've tried adding a custom field to my webapp, but the counter just counts how many tag names there are, not how many actually tags are associated with each tag name.  I thought I could use something like:
{module_webapps id="Tags" filter="all", {module_blogtaglist, theCount}}
but that doesn't work. 
Any insights would be helpful.

hi Steve,
According to your description, I think the VM is the best choice for your scenarios. You can dispatch each VM to one web application. VM could have the auto-scaling feature on Azure Platform, please refer to this page(http://azure.microsoft.com/en-us/documentation/articles/virtual-machines-manage-availability/
). But If you wants to use Azure website, base on my experience and understanding, you may need use the basic/standard mode to host your customer's web application. For some features , free mode don't support custom domain name, and shared mode have limit
of some features, please refer to this official documents(http://azure.microsoft.com/en-us/pricing/details/websites/ )
For your latest question, currently Azure don't have the Billing API to monitor the each service and items usage on Azure. But if you use VM, you can calculator the every VM or website size and running time to got the cost(http://blogs.technet.com/b/learningittogether/archive/2014/10/27/using-rest-api-from-powershell-to-get-additional-azure-vm-status-details.aspx).
Regards,
Will 
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.

Similar Messages

  • Selling Custom WebApps?

    Greetings,
    I've got a simple question, with an answer surprisingly difficult to find. We've created an application that customers will deploy as a web app. The web app bundles up our proprietary code, along with the customers modifications. This is typically licensed
    on a per-CPU basis.
    Now in Azure it's simple enough to provide a VM for customers to spin up and, I assume, with the correct arrangements in place, MS will bill the customer on our behalf for the hours used.
    Is there a way for us to sell instances of our web app? Given the ease of deployment and scalability, we'd like to charge users on a per-hour basis.
    I understand the challenge here: from an Azure perspective I think that a web app is just dropped into a container of sorts and executed on the infrastructure. There is nothing special about our web app vs any other. It's exactly the simplicity of deploying
    and scaling a web app from a customers perspective that makes it difficult for us to keep track of their usage.
    Any ideas? We can't really use APIs because the customer will customize the web app API depending on their problem domain. VMs are tested, but don't give the customer the elastic scalability. Perhaps there's a way for us to embed some kind of tracking or
    usage report?

    hi Steve,
    According to your description, I think the VM is the best choice for your scenarios. You can dispatch each VM to one web application. VM could have the auto-scaling feature on Azure Platform, please refer to this page(http://azure.microsoft.com/en-us/documentation/articles/virtual-machines-manage-availability/
    ). But If you wants to use Azure website, base on my experience and understanding, you may need use the basic/standard mode to host your customer's web application. For some features , free mode don't support custom domain name, and shared mode have limit
    of some features, please refer to this official documents(http://azure.microsoft.com/en-us/pricing/details/websites/ )
    For your latest question, currently Azure don't have the Billing API to monitor the each service and items usage on Azure. But if you use VM, you can calculator the every VM or website size and running time to got the cost(http://blogs.technet.com/b/learningittogether/archive/2014/10/27/using-rest-api-from-powershell-to-get-additional-azure-vm-status-details.aspx).
    Regards,
    Will 
    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.

  • WebApp Custom Fields with Liquid

    With the liquid rendering engine tags in webapps have changed.
    For instance in the list layout I could display the name of the webapp item by using the following tag: {tag_name_nolink. With liquid I can use: {{name}}
    But for custom webapp fields what is the liquid equivalent?
    Example:
    I have  a tag called "Reserved by". I can output that tag using: {tag_Reserved by}. With the liquid how would I render the same tag?
    Am I missing something?
    Lynda

    From
    http://docs.businesscatalyst.com/dev-assets/reference#!/liquid-reference/index.html
    "To see the list of Liquid output tags you can use at any given point you
    can use the {{this | json}} tag, this basically outputs all the tags that
    are available on a particular layout, page or template. Take a look at
    http://docs.businesscatalyst.com/developers#!/beta/getting-started-with-liquid!available_t ags
    article for the exact steps on how to use the {{this | json}} tag."
    M: 0415 193775
    E: [email protected]
    W: www.twoblokeswithapostie.com
    S: mariogugi
    On Sun, Oct 19, 2014 at 3:06 PM, Lynda Spangler <[email protected]>

  • Host Custom client from TES server?

    I am working on a custom webapp client for Cisco Tidal Enterprise Scheduler that will let me quickly view running jobs, restart jobs, etc. (similar to the iOS app offers).  The intent is to only show the features that I want and need quick access to.  My plan is to write everything in HTML5 and Javascript (no server side scripting).  I've quickly realized that my XmlHttpRequests and Ajax requests to the TES REST API are failing because of the Same Origin Policy enforced by browsers which prevents cross site scripting.  I am currently developing locally on my personal machine and so the requests are originating from outside of the TES domain.
    Is it possible to host my custom web client from the Tidal Server itself, and is this likely to fix the cross site origin issues I am having?  Does anyone have advice regarding this issue?  I am relatively new to Tidal and appreciate any help regarding this.

    Thanks for your input. Yeah, the article has been there for quite sometimes. That's why I am a bit sceptical about using it. The strange thing is that there has not been any updates about this topic since then (searched in google and not many web pages are mentioning this thing). I am wondering whether it is a good choice to change the code or not.

  • Pass details into Custom Element

    Hi,
    I've begun to create a Custom Element which I have based off of the Flash example that comes with the Ravenna Hosting example site.
    My Custom Element creates and passes back some HTML just as the Flash example but I need this HTML to be editable (i.e. I need to pass it back into the Custom Element when a user wants to make changes). As it stands at the moment (and as per the Flash example) the code already present is lost and the form simply replaces the HTML each time it is opened.
    I've searched the forum and the iDoc Reference Guide but am unable to find any functions or the like in order to achieve this - has anyone done this or can point me in the right direction please?
    Thanks

    Since a custom element (Passero, this is a SS Custom Element, described in the standard Site Studio Admin Guide) is just an hcsp, you can have that page do just about anything you want. Might I suggest overriding the JS command that sends the content back to the parent window? For example, make that JS open a final popup with the code you need to be able to edit before exiting.
    This is the first thought that came to mind so it may not be the best or most elegant. However, custom elements give you so much flexibility that you should be able to give your users the options they need with a little idoc and javascript. To some degree, I've built custom webapps using just the custom elements and it can work well (assuming that's what the use cases call for).

  • Custom Chart Type

    <p>Hello,</p><p>We have a particular visualization need to be integrated into Webi. We were hoping to get our visualization working in a similar fashion as the built-in charts in Webi. Is it possible to define our own new ChartType and get it integrated into the Webi interface? Or do we have to build a custom webapp that integrates the Report Engine and other components, duplicating some of Webi&#39;s functionality? Has anyone done anything like that? </p><p>Thanks,</p><p>  -Benjamin DeVore<br /> </p>

    <p> </p><p>There&#39;s no way to define a custom chart type in Webi, but I&#39;m assuming that you already have a chart engine for that.  Does it create images?  One thing you can try is to create images of the chart you need using your engine, then inject the image into a database, and have Webi report off that.</p><p>TUeda </p>

  • Web App Datetime - display if date is in the future, hide past dates

    I have added a custom webapp field called "Start date" and set it to Datetime. NOw I would like to display the list item only if that datetime field happens in the future. I can't wrap my head around the logic of it. Does anyone have a clue?
    List layout:
    {% if  {{this.items[0].["start date"]}} < Globals.Site.DateNow %}
    <b>{tag_counter} - {{name}}</b>
    <ul>
        <li>
    Starts: {tag_start date}
        </li>
        <li>
    Ends: {tag_finish date}
        </li>
         <li>
             {tag_website}
        </li>
    </ul>
    {% else %}
    <!-- Item not displayed -->
    {% endif %}

    Hi there,
    Firstly you do not need to do the double liquid braces when your already inside liquid tags (The {% ones)
    Here is a doc guide on using dates with date now to help:
    Developer reference
    In terms of a web app you can replace all those tag_ tags with liquid variants.

  • WebElements in JRC?

    Hi all,
    We have our own custom webapp running under JBoss and delivering some Crystal Reports thru a viewer based on JRC. Some of my reports developpers would like to add WebElements function in some reports and I'm first of all wondering if WebElemens  could be enable in the JRC so that it would work in my webapp in JBoss.
    Thanks for your help, regards,
    Nicolas

    You can refer to those links for information about the WebElements:
    https://boc.sdn.sap.com/node/255
    https://boc.sdn.sap.com/node/1372
    Cheers

  • Player Registration Web App?

    Hello,
    Does anyone know if it is it possible to create a web app that would list all players' names who have registered on a secure zone page for others to view?
    I have a friend who needs to list players' names who have registered so others can see their name after they have registered online through their BC site.
    Any info/ideas would be greatly appreciated.
    Thanks!

    Hi,
    This can be acomplished, here's one way to do it:
    - Include both the secure zone registration form and a customized webapp item input form (that only submits the item name) (you'll probably want it hidden) on the same page.
    - Make sure you enable webapp item submission to be made anonimously.
    - Use something like this to copy the name from the secure zone form to the webapp item input form:
            var first = document.getElementById('CLFullName');
                second = document.getElementById('ItemName');
    first.onkeyup = function () { // or first.onchange
      second.value = first.value;
    - Submit both forms (One way to acomplish this would be to use a variation of the answer provided here, suitable to your preferences)
    Once the submission is made, the webapp item is created, so now it's just a matter of listing all webapp items on a page, from the module toolbox.
    Hope this helps,
    Kind Regards,
    Alex

  • Help : Calling a Servlet.doPost from a HTML Form (404 Error !!!)

    All
    I trying to make a call to a doPost method of a servlet from the doGet method of the same servlet.
    The call is made from an HTML form, so
    *<form name="input" action="servlet/deleteAlertPage" method="post">*
    ======================================================================
    The web.xml file entry is as follows:
    *<servlet>*
    *<servlet-name>deleteAlertPage</servlet-name>*
    *<servlet-class>bsp.perceptive.custom.webapp.deleteAlert.deleteAlertPage</servlet-class>*
    *<load-on-startup>0</load-on-startup>*
    *</servlet>*
    *<servlet-mapping>*
    *<servlet-name>deleteAlertPage</servlet-name>*
    *<url-pattern>/deleteAlertPage</url-pattern>*
    *</servlet-mapping>*
    So when I run my Servlet from my JDeveloper, I do see the “doGet” method getting executed successfully and I see my HTML from appearing on a browser page.
    As soon as I press the submit button, where I want the “doPost” method to get executed, I get the following error:
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    *10.4.5 404 Not Found*
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead.
    The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource
    is permanently unavailable and has no forwarding address.
    Any ideas ? Is my Servlet Setup and Execution Correct ?
    Any help is appreciated.
    My JDeveloper Version is the latest release :
    About
    Oracle JDeveloper 11g Release 1 11.1.1.2.0
    Studio Edition Version 11.1.1.2.0
    Build JDEVADF_11.1.1.2.0_GENERIC_091029.2229.5536
    Copyright © 1997, 2009 Oracle and/or its affiliates. All rights reserved.
    IDE Version: 11.1.1.2.36.55.36
    Product ID: oracle.jdeveloper
    Product Version: 11.1.1.2.36.55.36
    Any help and advice is greatly appreciated.
    Regards
    patrice

    John
    I got it to work !!
    I had to place the application name in the action value also I had to change the port number, from 8080 to be 7101.
    However
    It was not that straight forward, because when I created my web Application I gave it the application Name of "BSPCustPerWebApps" and Project Name of "BSPCustPerWebApps"and this is reflected in my JDeveloper folder structure: "....\mywork\BSPCustPerWebApps\BSPCustPerWebApps\src\bsp\perceptive\custom\webapp\deleteAlert"
    now when I run my Servlet initially I noticed that Browser URL is saying : http://localhost:7101/BSPCustPerWebApps-BSPCustPerWebApps-context-root/deleteAlertPage
    which means that the web application is : BSPCustPerWebApps-BSPCustPerWebApps-context-root
    so I changed my action value to be
    action="http://localhost:7101/BSPCustPerWebApps-BSPCustPerWebApps-context-root/deleteAlertPage"
    and that worked.
    Weblogic must have created/defauled the application name using the application name and project name that I gave duriung the servlet creation.
    Is there a way of changing the application name to be something shorter and more meaningfull ?
    Also I did not want to hard code the server name, port etc in the action value, so again is there way of making this to be derived ?
    Do you know how to access the WebLogic Console ? , considering I have only installed JDev, which has an embedded weblogic server.
    Thanks for your help.

  • IE9 file upload using Open UI5

    Dear Experts,
    I am uploading a file from client to SAP ECC via Netweaver gateway. I have accomplished this using HTML5 for modern browsers. But i am facing challenges with legacy browsers that do not support HTML5.
    Example: IE9, few versions of IE10.
    Please clarify on below doubts.
    1.Does UI5 support uploading file to Netweaver gateway server from IE9 browser?
    2.Also is it integrate/Extract file upload plugin js files(ONLY) from UI5 into a custom webapp which is already using Jquery + HTML5 + Cusom CSS?
    Please suggest.
    Any help is appreciated.
    Regards
    Prabaharan

    Hi Nel,
    Check the below forum discussion.
    Upload Files into Database
    rgds
    s

  • Random timeout with digital sign, DocumentManagerClient.java:329

    hey guys,
    Not sure if any one of you have similar experience. We are running Livecyle.ES 8.2.1 and so far we use this for signing PDF files only for a government agency.We use EJB endpoint.
    Our application is a custom webapp which use Livecycle Java AIP. The problem we see is on and off, we see this exception during sign PDF.
    2009-04-04 10:37:50,420 ERROR [STDERR] Apr 4, 2009 10:37:50 AM com.adobe.idp.DocumentManagerClient requestRemotePassivation
    SEVERE: DOCS001: Unexpected exception. See the stack trace for details.
    org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 208 completed: Maybe
        at com.sun.corba.se.impl.logging.ORBUtilSystemException.connectionAbort(ORBUtilSystemExcepti on.java:2372)
    And this error is raised from,
    com.adobe.idp.DocumentError: org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 208 completed: Maybe
        at com.adobe.idp.DocumentManagerClient.requestRemotePassivation(DocumentManagerClient.java:32 9)
        at com.adobe.idp.Document.passivate(Document.java:1069)
        at com.adobe.idp.Document.passivate(Document.java:1012)
        at com.adobe.idp.Document.getInputStream(Document.java:1524)
    The interesting this about this error is, documents get signed before and after this error, are just fine. This problem used to last about 1 minute and gone. And this happens only in our PROD env . I dont see this in my DEV or TEST. The tricky thing is, in PROD, we connect to a hardware signature profile, rather than a normal scenario, not sure if related.
    My guessing is that the document do get signed on the server side, and then somehow when client request it, it is gone or something.
    Well, i am stomped. Really appreciate if anyone of you can share some insight.
    Thanks.
    -ying

    Well, after a week's test I have a walkaround for this problem, I changed code to use SOAP endpoint instead of EJB. I have to do this for another reason.
    My application is a webservice running under another JBoss instance. Before, I have to restart JBoss, each time, if Livecycle get bounced. This, I guess has to do with ServiceFactory cached javax.naming.InitialContext. Once Livecycle get bounced, the InitialContext get obsolete. The good part of using a SOAP endpoint is, I dont need bounce my JBoss any more.
    After I made the switch, this old random timeout problem seems like going away. I still not fully understand the reason. One thing is a fact that for EJB, I have to get permission to open 1099 port through firewall (two of them). But, for SOAP, 8080 also need be opened. I am not a network kind of person, maybe HTTP is treated differently?
    Well, well, as long as I dont see the problem, I let it go ...
    -ying

  • How to prepopulate value in webapps input fields or for any custom fields in for any other forms?

    How to prepopulate value in webapps input fields or for any custom fields in for any other forms?

    What do you want to populate the form with?

  • Custom home screen icon for a webapp.. just like Google - How?

    I noticed that when you add Google to your home screen it displays a custom icon.. not an image of the website like other sites. I am trying to figure out if there is a way to do this for my own webapps. I searched through the Google.com source code but didn't find anything that appeared to have anything to do with that icon.
    Hopefully this is possible for developers. Right now most of my icons are all white and its hard to distinguish which is which without reading the text below it.

    Found it on the iPhone web dev page..
    iPhone and iPod touch allow a user to save a WebClip bookmark to your site on their Home Screen.
    To specify a bookmark icon for all pages of a web site, place a PNG image named "apple-touch-icon.png" at the root directory of your web server - similar to the "favicon.ico" for site icons.
    To override the site bookmark icon on a specific web page, insert a <link> element similar to <link rel="apple-touch-icon" href="/customIcon.png"/> within the <head> element of the page.
    The bookmark icon dimensions should be 57x57 pixels. If the icon is a different size it will be scaled and cropped to fit.
    Safari will automatically composite the icon with the standard "glassy" overlay so it looks like a built-in iPhone or iPod application.

  • Integrating a legacy custom tag with facelets webapp

    Hi
    I have an external custom tag ( a handler that had extended javax.servlet.jsp.tagext.TagSupport ). I am trying to use that custom tag in my .xhtml file(mine is facelets webapp). Please see the xhtml content below
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:tGrid="http://java.pershing.com/tGrid">
    <tGrid:gridFields viewname="view1" isDefault="true" fields="Symbol,Quantity,Security Description,Account Type"/>
    </html>
    The problem here, the tag handler class is not getting invoked, i do not get the HTML content from it.
    I understand like we need to add 'taglib.xml' file as below, and register as config files in servlet context param.
    <tag>
    <tag-name>gridFields </tag-name>
    <handler-class>
    xyz.Grid
    </handler-class>
    </tag>
    I have collected the attributes and kept as TagAttribute in Grid handler class..
    But how could i invoke the custom handler class that had implemented TagSupport and start its own life cycle.
    Please help me out.
    Thanks
    -vijay

    Okay. so we cannot use any legacy custom tags and we need to duplicate the code into a new facelets handler class and add into tablig.xml file. is my understanding correct.?
    By the way, JSTL tags like <c:out> <c:if> are being identified by facelets view handler. How this cud have been supported by it?
    Thanks
    -vijay

Maybe you are looking for