What's the integration architecture of this app?

 i
would like to ask whether MS Sharepoint is message oriented or middleware oriented application?

No. SharePoint can be used for many things but it is not built for doing any type of pub/sub messaging as you would see in products like MSMQ or MQSeries. You can use Microsoft Azure App Fabric for these types of applications.
Blog | SharePoint Field Notes Dev Tools |
SPFastDeploy | SPRemoteAPIExplorer

Similar Messages

  • What is the best architecture for such app ?

    Each user will have independent block with info.
    For example
    - picture with info
    - timetable
    - favorite books
    He can show or hide each block.
    Some block can be obsolete in the future.
    Another block can be added in the future.
    First idea is put every info in user table.
    public class User
        public int UserId {get;set;}
        public string UserName {get;set;}
        //First block info
        public byte[] Image {get;set;}
        public string Deskription {get;set;}
        public bool IsInfoEnabled {get;set;}
        //Second block info
        public int TimeTableId
        public int TimeTableName
        public bool IsTimeTableNameEnabled {get;set;}
    So I get table which will be growing up in width ( i mean columns ).
    But I don't like to delete columns from these big table.
    That's why I decided to move all content block to separate table.
    Second idea :
    public class User
        public int UserId {get;set;}
        public string UserName {get;set;}
        public int InfoBlockId {get;set;}
        public int TimeTableBlockId {get;set;}
    public class InfoBlock
        public int InfoBlockId {get;set;}
        public byte[] Image {get;set;}
        public string Deskription {get;set;}
        public bool IsInfoEnabled {get;set;}
    public class TimeTableBlock
        public int TimeTableBlockId {get;set;}
    In second way scalability is better, but I will get more queries through numerous tables.
    What is the best way ? If you have your additional idea share it!
    My .NET Blog with projects and feedback.
    Since May 30, 2014 I am waiting for Microsoft fix
    these 2 bug. If you know how to speed them up, please help

    As your question is about architecture..
    The first question is: Do you want to follow a Code-First or Database-First design.
    Then you may choose the appropriate forum. From your post, I guess, it's Code-First. So take your wording as an outline. Thus you need a User class and blocks. As blocks can have different types, we need some polymorphism here. Thus it could be an IBlock.
    So that your concrete types derive from it:
    Instead of an interface it could be also an abstract base class:

  • My requirement is to update 3 valuesets daily based on data coming to my staging table. What is the API used for this and how to map any API to our staging table? I am totally new to oracle and apps. Please help. Thanks!

    My requirement is to update 3 valuesets daily based on data coming to my staging table. What is the API used for this and how to map any API to our staging table? I am totally new to oracle and apps. Please help. Thanks!

    Hi,
    You could use FND_FLEX_LOADER_APIS.UP_VALUE_SET_VALUE to upload them from staging table (I suppose you mean value set values...).
    You can find a sample scripts if you google around.
    What do you mean "how to map any API to our staging table" ?
    You should do at least the following mapping (which column(s) in the staging table will provide these information):
    - the 3 value sets name which you're going to update/upload (I suppose these are existing value sets or which have been already created)
    - the value set values and  description
    Try to start with something and if there is any issues the community could then help... but for the time being with the description of the problem you have provided, that's the best I can do...

  • Hi when i open my application folder, all the application is shown in trash folder. when i click the application it says this app is in trash first move it out. and when i try to open through finder go it says this file doesn't exist. can some1 plz help?

    hi when i open my application folder, all the application is shown in trash folder. when i click the application it says this app is in trash first move it out. and when i try to open through finder> go it says this file doesn't exist. can some1 plz help? how can i put all my application through application folder?

    Something really odd is going on. In your first screen shot, I noticed that the Applications folder does not have the proper icon displayed in the side bar. Also, in the title bar it lists it as Applications 08-59-29-909.
    Not sure where it's picking up that odd name, unless it's because it's still truly within the Trash folder.
    Try this. In the Finder > Preferences > General > turn on "Always open folders in a new window". (I have a feeling you have the default setting with this off).
    Now, in Finder > Go > move down and open the Applications Folder from there. Now open the folder where you see all your applications that you show in your screen shot, select all, and move them to this true appliactions folder.
    This is what you should properly seeing (but with different apps listed):
    See how the Applications folder has the icon of the letter A shaped with a pencil, ruler & pen.

  • Can't log in message "what is the username associated with this smartphone​"

    When I attempt to login to app world, I enter my email address and pw, and the it gives me a popup for - "what is the username associated with this smartphone".  How do I find out what to enter here?  (I don't remember what I may have used in the past).  
    Also, how can I be sure that I am using the right email address to login?  I've tried my other emails and I get stopped before this screen since it doesn't recognize the email.
    THanks for your help

    How can you do a security wipe if you cannot get past the blue BlackBerry ID login page?

  • What are the best Voice to Text app's for use in classroom?

    What are the best Voice to Text app's for use in classroom?

    Hi I did download the software you suggested which you mentioned in in our iphone.
    However the This did not happen to my text
    "text it will appear a botton "Talk" and you're going to have a Text-to-Speech."
    I have to hold my finger on the taxt and it says copy and next word is text. so the text needs to behightlighted each time till the end, which is difficult to do. why does the "talk" appear on the bottom?
    What do I need to do for that to appear?
    Thank you in advance for the rplies.

  • What are the best Voice to Text app's for use in business meetings?

    What are the best Voice to Text app's for use in business meetings?

    Hi I did download the software you suggested which you mentioned in in our iphone.
    However the This did not happen to my text
    "text it will appear a botton "Talk" and you're going to have a Text-to-Speech."
    I have to hold my finger on the taxt and it says copy and next word is text. so the text needs to behightlighted each time till the end, which is difficult to do. why does the "talk" appear on the bottom?
    What do I need to do for that to appear?
    Thank you in advance for the rplies.

  • What is the correct architecture for retrieving several complex decision reports

    The project that I am currently working on is required to save decision reports for several complex outputs.  These outputs are needed for each person entity contained in the request. All of the person entities are joined via relationships and the more people that are sent in the request, the more complex the decision reports become.
    We are using the determinations server and it is called as a web service.
    The determinations server starts having performance issues when the requests contain 6 people entities and times out when the number of people get to around 10.
    Checking the response size for a 10 person request with the complex decision reports yields a response size of around 40mb.
    What is the correct architecture to still have the traceability of what happened by having a copy of the decision report for each run without impacting system performance?

    Has anyone else encountered this issue?

  • My 4th gen 32gb iPod touch recently crashed for more than 12 hours during which time it was completely unresponsive. This is not the first time it has crashed but by far the longest time it has been unresponsive. What are the likely causes of this?

    I don't regularly use any apps beyond Windows Live, Facebook, Skype etc. but app crashes are becoming frequent and this recent blackout was disturbing. What are the potential causes of this and how can I avoid them in the future?

    it's weird , your device is not jailbreraked and it crashes? my device is jailbreaked and i almost have the same problems.
    look, to avoid these problems:
    1- dont open too much apps , and if you do , close them by multitasking menu.
    2-try sometimes to turn off and on your device , its like refreshing ( called "respringing" in jailbreaked devices.
    if you have the same problem , see an apple specialist.
    plz mask as helphul question.
    thanks.

  • What’s the best practice for this scenario?

    Hi,
    My users want the ability to change the WHERE and/or ORDER BY clause at runtime. They may define user preferences on each screen ( which is bind to a view object). They want to see the same records based on WHERE/ORDER BY defined on the last visit. That is why I keep the users preferences and load the screen based on that, using :
    View.setWhereClause(...);
    View.setOrderByClause(...);
    View.executeQuery();
    This works good when only one user working with the application but faced low performance when more than one user working with the application.
    What are the points to increase the performance and what is the best practice for this scenario?
    Thanks for your help in advance.

    Sung,
    I am talking only about 2 users in my testing. I am sure i missed something but could not recognize that.
    This page is my custom query page including a tag to instantiate app module in stateful mode at the top <jbo:ApplicationModule..> and a tag to instantiate data source <jbo:Datasource...> and release tag at the bottom <jbo:ReleasePageResources..> and some java code in the middle(body). The java code constructed the query statement and then fires the query to set the view object based on the query statement using the above methods.
    So, I am facing very slow performance(speed) when two clients load this page at the same time. Looks like the entire application locks for others when one client load this page and fire the query. i realized the battle neck is where executeQuery() is executing.
    what do you think.
    Thanks in advance for your comments.

  • I just bought a new iPad air and have not been able to download kindle app to read my books. When I type kindle on my iPad app page, kindle app does not appear. What do I do to get this app into my iPad air?

    I just bought a new iPad air and have not been able to download kindle app to read my books. When I type kindle on my iPad app page, kindle app does not appear. What do I do to get this app into my iPad air?

    Hi norlowski,
    Do you already have the Kindle app downloaded to an iPhone or another iPad? Do you have "Automatic Downloads" turned on under Settings>iTunes & App Store for Apps on your iPad?
    You might want to try touching and holding the Kindle App option in your Purchased list, and when it highlights, let go, and it will go to a a detail page for the app with another "Open" option on it. See if it will open from there.
    If you do have Automatic Downloads turned on on the iPad, turn it off, and then go back to purchased to see if the Kindle is still showing as "Open".
    Post back with results!
    Cheers,
    GB

  • I rent a movie on iTune, dowloading on my ipad2, the movie stop reading from chapter 10, and an alert inform me when i try to Start the movie that i cannot read it. What is the issue for solve this problem?

    I rent a movie on iTunes stores, downloading it to my iPad2, but during the movie, the reading stop from capter 10 to End. I try to restart it, but an alert message inform me that i cannot read the movie. What is the issue for solve this problem? The movie is still located on apps movie, but i cannot read it. Please help.

    Having the same problem. Watched 25 minutes of a rental and it stopped with the message"unable to load video"
    Using current version IPad mini.
    Ios7 is  HUGH PIECE OF CRAP!!!!

  • What are the integration points of SCM with SRM?

    Hi Friends
    What are the integration points of SCM with SRM
    Regards
    Raj Kumar

    please check whether this helps..
    [http://help.sap.com/saphelp_erp2005/helpdata/en/index_srmaddon.htm]
    [http://www.sap.com/industries/highered/pdf/BWP_Self-Serv_Proc.pdf]
    [http://www.sap.com/solutions/business-suite/srm/index.epx ][http://www.ies.state.pa.us/srm/cwp/view.asp?a=3&q=197102&srmNav=%7C]
    karthick

  • What r the integration tools used in SAP

    Hi all,
    Please let me know What r the integration tools used in SAP

    BAPI - These are published programs which is used to upload data i
    nto SAP system.
    BADI - This is a program enhancement technique. SAP pr
    ovides BADI openings in the standard programs. You need to search for the s
    uitable BADI as ur requirement and then do the coding and plug in the progr
    am.
    IDoc (for intermediate document) is a standard data structure for electronic data interchange (EDI) between application programs written for the popular SAP business system or between an SAP application and an external program. IDocs serve as the vehicle for data transfer in SAP's Application Link Enabling (ALE) system. IDocs are used for asynchronous transactions: each IDoc generated exists as a self-contained text file that can then be transmitted to the requesting workstation without connecting to the central database. Another SAP mechanism, the Business Application Programming Interface (BAPI) is used for synchronous transactions.
    Afrasyab

  • I am using my friend's I-Mac. This I-Mac is registered with my friend's name. What is the procedure to transfer this I-mac system to myname?

    Hi,
    I am using my friend's I-Mac. This I-Mac is registered with my friend's name. What is the procedure to transfer this I-mac system to myname?
    Regards,
    Prasanna
    ([email protected])

    We would need some basic information first - what OS version is on this Mac now and which version did it come with originally?
    If it has an OS version on it which was purchased at the app store, your friend needs to wipe the drive completely and reinstall the original system using the install disks it came with. You can only sell or give a Mac if it has the same system installed it originally came with; if it has been upgraded, the disk needs to be wiped or you will wind up with a pirated OS and will never be able to reinstall.
    So, please furnish the information needed and inform your friend that s/he needs to wipe the drive and reinstall the original system.

Maybe you are looking for

  • I dont want to lose my Unlimited data plan :(

    I been a VZN customer going on five years now, probably nothing compared to some of the other customers on here. I currently own a iPhone 4, my plan that i have is a 900min, unlimited data and text. I know since back in June, Verizon was ending the u

  • ERROR upload: Error in uploadXMLFiles after upgrading from 10.2.0.4

    After upgrading from 10.2.0.1 to 10.2.0.4 on a newly installed Oracle server, I could not use dbconsole any more. It would not display the login page at http://myserver:1158/em. I tried different browser IE, FireFox, and Chrome. It is the same. Then

  • How to revive a dead 9600/300 and 8500/120 Powermac

    I now have a 9600/300 and a 8500/120 Powermac. Both ran perfect when I bought them used for a day after I updated their system software to 8.6 for many hours. After shutting them down both would not restart (completely dead). I did the usual procedur

  • Mail 5.3 Rules export and import to new laptop problem

    I was using Lion 10.7.5 and Mail 5.3 and had alot of rules setup. I now have a new laptop.  All my mailboxes transferred over but not the Rules.  Please let me know how to export from old laptop and transfer to the new laptop. Thanks and I look forwa

  • Please help with videos not being displayed

    I bought two videos at videohive. All i have to do is put my photos at the placeholders and render the videos. I did with three other videos and all went fine. but these two that i bought today are being displayed like this: http://www.andybrain.com/