What does "in-house application" mean? How to translate it? - translation

I have problem with translating this sentence:
"Running in-house systems means that you can
leverage your existing security system for purposes of authentication, authorization, and so forth" - from Pro C# 2010 and the .NET 4 Platform
Google translate doesn't help me with this.
I don't want to translate it to my language, but I want explanation, the best with some examples.

Software written and used within the same company.

In-House systems means applications that have been written internally in a company.

I think it means that if you build your own system as opposed to purchasing something, you can integrate your own login process (use single sign-on).
For example, if you purchase XYZ and WidgetCo, you have to have a separate login for each application. If you build your own, you can reference AD or whatever your login process is.

As Clifford said, it can be software written and used within the same company, but it also means when you buy the license of an app produced by another company, and then use it on your own app servers. So you don't have a monthly subscription, you are buying the app ONCE, and start using it on your own, for as long as you need it.

Related

How to add an assignment tab in Microsoft Teams without having Education license

I am developing desktop application using Microsoft Graph API. Application needs to write feedback for a specific assignment on Teams. The problem is that I don’t have an Assignment tab in Teams and I can’t test the application. Does anyone know how I can solve this?
If you’re working for a software company, you can choose to become a Microsoft Partner. The cheapest way is by buying the Action Pack which costs $400 if I’m correct.
Once you’re a Microsoft Partner, you can go to demos.microsoft.com and request a Demo tenant for testing applications (be sure to pick the education demo tenant)
If it’s for a brief test, and you can figure out my e-mailadres (see it as a quest, you should be able to). I can maybe provide you with an temp account for a few days.
You would require a Teams Education License in order for using Assignment Tab. Here are the further details.

Need advice on syncing data between iOS devices in one app

I built an in-house app for selling tickets and checking-in students to our High School dances. At the moment the app can scan a QR code with the student's information and add their name to either a "Sales" list or "Check In" list. Then the app can export these lists to a CSV file and we compile all the data.
App works perfectly as expected. NOW I want to be able to sync data between multiple devices so that every device will see an up to date Sales and Check in list. The check in list is most important because then our faculty chaperones can all see who has arrived to the dance in real time. I figured I would need to build a server to hold all the data as opposed to on the individual devices like I am doing now (CoreData). Can anyone please give me guidance or advice as to where to go from here? I am using Swift and developing for iOS 10.
I would just answer the general approach to tackle this problem since the implementations would largely be depending on many factors (what database technology is available, the platform of the server, etc.)
You are absolutely right, you need a server to hold the data. Technically speaking, it is a database that holding the data. Thus, you need a database running on your server (there are tons of selections here: Maria DB, SQL Server, Mongo DB, etc.).
Next, you need to build a web service on top of the database so that the iOS app can interact with the database (add/delete/update/read rows). Web service is a very common layer in full-stack application since you normally don't access the database directly.
Finally, you need to guard your web service with some sort of authentication. I.e. you don't want any random person out there to be able to access your web service without permission. There are many implementations out there to secure your web service and you should be able to google that easily.
Firebase might be the easiest solution. Its pretty simple to setup, and its pretty simple to set up data persistence when you go off line. I'm big on trying to stick with the built in Apple services, but Firebase is hard to beat for simple apps.
Take a look at CloudKit, or perhaps Firebase or Azure, as services that will provide a back end server for you, and give you a tested SDK to build against.

White labelling Enterprise iOS application

I had developed 3 applications for my client. Now he wants to distribute it to other organizations (doing same business). Other firms will have minor data and image set changes, other functionalities are same. What is the best approach for distributing this 3 application with the other firms?
1) One solution I think is to upload this 3 application to each firms apple enterprise account.
Prons:
UI and functionality can be changed for each apps depends on business
changes.
Will have different server and APIs. So data security can be increased.
Cons:
Need to maintain different source codes.
As firms number increases applications also increases, which can be a form of spamming appStore
with similar applications.
2) Another solution is to upload this 3 application to one account and is distributed among other firms. Need to check any legal issue in doing this. By this server will maintain different database for different Companies and user registered with this company will link to the corresponding database. All other calculation and logic will be handled by the server. iOS application switches image set w.r.t company.
Can I do this by any other approach or which one is the best one. The main idea is to give a contract to another firm by creating a set of users having an extendable validity date and this is maintained by my client.
Thanks in advance and any thought on this is appreciable.
The best solution to this is Volume Purchase Program for Business
provided by Apple. It provides you with a functionality called Custom B2B apps for iOS. You can read the details in this document.

Creating my own sdk to be used with other iOS apps

I have released an app in app-store. It shows the visual IVR navigation sequence of different customer care and connects the call to appropriate option. The first screen is collectionView where it shows all the customer cares. On selecting any customer care it opens visual Ivr navigation sequence for that customer care. Now I want to build it as a SDK which can be integrated with other iOS apps.
For e.g.:
Suppose ICICI bank wants to integrate it with their app.So I want to build it in a way such that they can easily integrate it in their app as a SDK. Also instead of showing all the customer care, it will just show the visual ivr navigation sequence of ICICI bank only.
Any help will be appreciated.
I suggest you create a libraries .a more than an SDK as the MVC structure used by the bank app may be complex and hence a isolated control and interfaces to use the features will be more helpful.
Lets say in your above example you can expose features like
1) Configuring the amount of services for call centers
2) CRUD Feature for the services exposed.
3) Delegates and Protocol methods for callbacks and datasource handling.
4) Execution reports and analytics, etc...many more things you can expose and keep library growing.
Hope that answers your question.

Anonymous contact form iOS app

I currently work at a school and have an idea to create an app that allows students to contact a grown up (for example, the principle) anonymously through an app. The app would quite simply consist of a contact form. I am trying to find out the best, and easiest way to achieve this without setting up servers with a separate API. Does anyone have a suggestion on how to achieve it? Is there any way to set up an e-mail form with a pre set recipient and a built in sender-account? Please guide me in the right direction.
You would need to implement an SMTP client. You can use open source code like skpsmtpmessage
It's likely that their example app could be your solution.
Your biggest problem will be the deployment. You definitely need to pay an $99/y developer account and add all the students device ID's to your account (with a maximum of 100 devices/y) or register all of them as beta tester (I don't know the limitations).
Probably this isn't doable so easily, as it seems you don't have iOS developing experience so far. Maybe you can find something on the app store that works with self hosted databases. But you definitely need to host some kind of webApp/API.
You may want to give Appygram a try to handle the back-end if you are able to set up the contact form itself. While it's a separate hosted API, at least you don't have to build/manage it.
Appygram is a free web service that would allow you to configure all the details such as which adults could be contacted, their point(s) of contact (i.e. email address), and it would process and send all the submissions for you. All your app needs to do is send a form post request.
A nice thing about having this information outside of the iOS app itself is that you can change the contact details on the fly without requiring an update to the iOS app itself. Whether you use Appygram (which, since I contribute to it, I am slightly biased toward!) or something similar, I would say that since this is for students, I would recommend a solution that would allow you to update your configuration without requiring app updates.
Finally, I'd second what Julian said. The challenge here could be with deployment. One possible alternative would be to make this a mobile-friendly web page accessible only via student login or on the school network (or both). Would probably be easier development-wise and wouldn't require installs nor the hurdles that Julian described with device registration, etc. And, Appygram would still work with this setup as well.
Good luck!

Resources