I am using QuickBooks web connector and i am trying to get company data. For that I created a service which is communicating with web connector and getting all the data.
What i tried so for:
I am selecting .qwc file using web connector. Just for testing am quiring only customer data and storing into notepad.
i am using asp.net application. From that application i will give the option to select to the end user: like
Customers 2.vendors 3. items like check boxes. Based on the selection i have to get the related data using web connector.
MY problem is : how can i intercat my application to web connector...how can i get the data what end user is selcted from asp.net application.
Let me know if question is clear or not ....
Related
I have an mvc 4.0 system that uses other system's web api service. The problem is that sometimes the service returns ~11,000 records, and the web page gets stuck and unable to show all of them.
How can I solve this problem? If the data was stored in my database, I would try to implement paging, but that's not the case.
How to save Open Office 365 mail body in database using ASP.Net MVC and SQL Server. I have to extract specific mails and want to store them in SQL Server .Any code sample will help .
It seems you have got the mail information . If not , please refer to this demo which uses the Office 365 APIs client libraries to demonstrate basic operations against the Calendar, Contacts, Mail, and Files (OneDrive for Business) service endpoints in Office 365 from a single-tenant ASP.NET MVC 5 application.
To save the related information into your database , you could use Entity Framework in MVC which eliminates the need for most of the data-access code that developers usually need to write.You could click here for tutorial about how to use EF6 in MVC5. Check Entity Framework Development Workflows to choose between Code First, Database First, and Model First . If you have created table contains email body related columns, using EF database first is an effective way .
When creating a Sharepoint 2013 App project in Visual Studio you get a project that can be deployed and debugged against a Sharepoint Server.
In that application you have access to a lot of Sharepoint Specific REST API functions that work with the Sharepoint Specific Data (User information, documents, lists, etc.). But what if I now want to add domain specific functionality that is backed by a specific Database that only contains those domain specific structure and data?
Do I have to set up the asp.net MVC application on an IIS myself and authenticate the calls to the API myself or is there a way to let the API reside in the Sharepoint Web App Domain and be deployed side by side with the Sharepoint App itself?
Or is it even possible to extend the Javascript- and REST API of that specific Sharpoint Installation?
I haven't found a way to add an asp.net MVC web api project to the SharePoint IIS site. I think you need access to the application_start event to set up route rules so that makes it difficult. You can deploy your own wcf or asmx services to the layouts directory. Or you can cheat and create an aspx page that returns JSON data.
I would create my own asp.net web api on a different web application (and domain). You can use CORS to allow cross-site scripting from SharePoint to your custom api. If you go with this approach, the api and SharePoint will have to leverage the same identity provider. So SharePoint's NTLM is no longer an option.
• I am using asp.net . I have to integrate quick books data into my asp.net application.
• In silverlight application using com objects am able to connect to QB and getting the data from that By selecting Company name from .
• But I have to do all this stuff from the iis. So using com objects it is not possible to get the data com object.
So I have chosen Web connector.
My requirement is :
I will select the company database from User interface
After that I have to get the data like : customers ,vendors.
That data I have to import into my database.
But using Web Connector : that has different scenario…
I have to select first .qwc file using this we are calling web services. From there we will get the data.
Is it possible to call the web connector through the coding…..calling web service from there…
Or is there any other solutions without selecting .qwc file
Is it possible to call the webconnector through the coding
No, the Web Connector calls your web service, not the other way around.
It can be scheduled to poll your web service every X minutes.
Or is there any other solutions without selecting .qwc file
To use the Web Connector, you go through a one-time setup process of installing the .QWC file. You only have to do that once. After you've done that, there's nothing else necessary on the end-user side of things.
I want to fetch user data from web site administration tool for managing users in my application. Is it possible to set table in SQL Server 2008 by using Model?
I want to display the user information in table.
Thanks.
The purpose of using the Membership API is that you access the data via the API. This abstracts the Membership system from the physical implementation, so the implementation can change without your app caring.
If you want the list of users, then do this:
var users = Membership.GetAllUsers();
Users is a MembershipUserCollection, which you can then use to access the data and populate your UI.