Annotation data for northwind odata service - sapui5

I am creating sapui application in sap web IDE.
I am trying to connect Northwind Odata service in IDE.
I am following this video
https://www.youtube.com/watch?v=PiaPIDNV9JU
I have created services and configure it in IDE. but in last step it is asking me to Choose annotation data from one of the sources listed below.
step 3:
strp 4:
What do I need to add in annotaion ?
Thanks in advance.

you don't need the annotation file.
Annotation files are only relevant when you are working with Smart Controls, for example a Smart Form:
https://sapui5.hana.ondemand.com/explored.html#/entity/sap.ui.comp.smartform.SmartForm/samples
As of today the how-to-guide to create annotations in the SAP Gateway or the ABAP CDS views are not released. Maybe more after the TechEd October 2015 in Las Vegas.

Related

Zend Framework 2 Db2

I have recently started development on a new application with Zend Framework 2 rc7 but I have been unable to find any reference to a DB2 Adapter.
does anyone know if there are plans to develop one?
So far I have written my own custom DB2 adapter extending many of the Zend Db classes but this is not as full featured as I would like it to be.
Thanks
See if it helps to use the adapter Pdo_Mssql with the option pdoType = dblib (http://fr2.php.net/pdo-dblib)
See http://framework.zend.com/manual/en/zend.db.adapter.html#zend.db.adapter.adapter-notes.pdo-mssql

Data Driven Framework - Selenium Webdriver

I am automating a web application testing using Selenium Webdriver(Java with JUnit) and I am quite familiar with Data Driven Testing. Now I want to build a Data Driven framework and I don't have any resources to start with.
Does anybody have idea how I could start with building framework and what are all the initial setup I need to make.?
Any suggestions would be appreciated. !!
Get start google with TestNG or JUnit then PageFactory and PageObject
You need to create Excel utility for Read and Write data in Excel sheet, Going forward you can manage it through Selenium.
Reference Link:
https://www.guru99.com/data-driven-testing.html
https://www.softwaretestinghelp.com/data-driven-framework-selenium-apache-poi/
http://toolsqa.com/selenium-webdriver/data-driven-testing-excel-poi/

Issue with adding sudzc.xcode framework to my application

I am using web service in my IOS application. Its all the WSDL calls. So i used Sudzc.com to generate all the service call Soap requests. Here my problem is how to add the generated sudzc.xcode framework to my application. Someone told me like we can add generated .xcode framework to our application. Can any one please suggest me.
Very simple, please follow the movy that is on the sudzc page. It helped me too.
Here a link to the movy:
http://sudzc.com/Tutorial/ObjC.mov
For automatic reference counting, select it from the dropdown.

ASP.NET MVC2 IoC: Looking for an example using CastleWindsor container that works with minimum config

I am looking for an example of how to configure an ASP.NET MVC2 project to use CastleWindsor container to do IoC.
I keep running into problems setting it up, and for every problem there seems to be a solution on-line, but in the end I make so many changes and end up with such a verbose setup to get IoC working using CastleWindsor, that I thought it best to ask this question.
I am looking for the minimum configuration required in the Global.asax page, the Web.config, and if required, what other changes and extension classes are required.
I am not looking to inject into actionfilters at this stage, so just the basics. Preferably not using XML files, but doing it in .NET programatically.
Thank you in advance...
This is as basic as it gets:
Start a MVC2 project from VS2010
Download MvcContrib for MVC2 (the one that says "extra binaries")
In your project, add a reference to (all these DLLs are included in MvcContrib):
Castle.Core.dll
Castle.DynamicProxy2.dll
Castle.MicroKernel.dll
Castle.Windsor.dll
MvcContrib.dll
MvcContrib.Castle.dll
In your Application_Start(), add these lines (and whatever namespaces are needed):
var container = new WindsorContainer();
container.RegisterControllers(typeof(HomeController).Assembly);
ControllerBuilder.Current.SetControllerFactory(new WindsorControllerFactory(container));

Ria Services Wizard with referenced Entity model problem?

Imagine this structure. A solution with the following projects
/Backend (RIA Silverlight client)
/Backend.Web (RIA Silverlight Host /
Service)
/Core (Utility includes)
/Frontend.Web (Front line MVC app)
A entity framework model built in /Core should be able to be seen in Backend.Web IF there is a reference. Which there is. Now, when the Domain Service creation wizard shows up, it is happy to find the Entity model, but it will not enable the "Generate associated classes for metadata" option.
The only solution seems to be putting the Edmx file into /Backend.Web - but that seems ugly to me :)
Thanks!
It woudl appear that this scenario is better handled with a "RIAServicesLibrary" as mentioned by #brada in his blog post on the topic.