I setup my XML/A connection using this link. I can connect to it through remote machines via SSRS and MS-Excel.
But when I am trying to create a XML/A connection in Jaspersoft Studio or iReport, It doesnt show the cubes at all. I am using SQL Server 2012 Enterprise, IIS 7, Jaspersoft Studio 5.2.0 and iReport 5.1.0.
I need more detail information but I don't have this problem, I think it's depend to user permission.
Related
I'm a contractor working remotely on a legacy ASP.NET application. I'm struggling to stand up a local instance of the project due to the error SQL Exception - SQL Server does not exist or access denied. I suspect this is because of the use of Windows Authentication for the SQL databases backing the project.
Before I launch into a lot more detail I'll ask my question: what are my options to pass Windows credentials to an SQL server in an ASP.NET project built on OSX?
I believe I've proven this is possible with some steps I'll detail below, but the actual implementation in an ASP.NET project is escaping me due to my inexperience with everything .NET, and the many-fold differences between my setup and the typical dev.
Standard Dev Setup
The devs I'm working alongside are using Windows machines housed in their corporate domain, running Visual Studio 2012. Because they're already logged into their machines with the appropriate credentials, the use of Integrated Security=SSPI in the SQL connection string "just works".
My Setup
I'm running a Mac Mini outside of their corporate domain, and using Visual Studio in conjunction with Mono to support the .NET Framework-based project. Passing the SSPI option won't work out of the box because I'm not connected to any Active Directory. That said, I do have valid credentials to log into their network.
What's worked so far
I've proven that a connection to their network resources is possible:
When logged into a virtual Windows machine, I can connect to a shared drive on that network with the credentials I was provided.
I then set up that same shared drive on my Mac Mini with those same credentials.
Using SQL Pro for MSSQL, I was able to connect to the desired database using my credentials.
As I understand it, what I'm looking for can be accomplished on Windows with Credential Manager, so bottom line I think I'm looking for the equivalent solution on OSX that plays nicely with ASP.NET project as compiled by Visual Studio.
I have set up an Oracle database on Amazon RDS and am attempting to build an asp.net webpage to access it. I am using Visual Studio 2013 and have the AWS Toolkit installed. I'm able to see my database instance in the AWS Explorer and can even modify it but I'm not able to add the database to the server explorer so I can utilize it from a webpage project.
If I right click on the database instance in the AWS Explorer and choose 'Add to Server Explorer...' nothing happens. When I open the DB Instances window and right click on the database the 'Add to Server Explorer...' option is greyed out.
I did try setting up a SQL Server database and was able to connect to that so I think it must be something specific about Oracle. I installed ODAC and it didn't help. I would be very appreciative for any advice you could offer.
Thank you.
You can't add an Oracle database to Server Explorer without the proper tools. Each database vendor provides different management capabilities and APIs. Server Explorer works with SQL Server out of the box because it already includes the proper integration provider.
You can download Oracle Developer Tools for Visual Studio from Oracle's site.
I'm currently trying to connect to a web server using Visual Studio 2010 (as I need to code several pages using ASP.NET) and have no idea how to. I've managed to connect to the SQL database to set up the tables but cannot actually see the files on the web server (under the Visual Studio 2010 IDE) so that I can work with both asp files on the web server and database.
So far I've managed to connect to the web server using WinSCP (following the instructions here via a VPN) but I cannot seem to connect to the same web server under Visual Studio 2010.
The server owner has provided information here but none of it seems to make any sense to me. Can anyone suggest some good tutorials? I'd really appreciate a helping hand.
For some reason I'm not able to install a separate SQL Server instance on my pc, but I do have Visual Studio 2010 installed. I want to use the built-in SQL server bundled with VS2010, but I'm not sure how to do that. Is it possible to create a database and tables to use in my ASP.Net apps with the built-in SQL server rather than installing a separate one?
Visual Studio 2010 does not have a built-in SQL server. However, a free version of Microsoft SQL Server called 'SQL Server Express' comes with it, it's an option when installing Visual Studio.
Because this version is free for anyone to download, it has some limitations, like for example: only one CPU can be used by the express version, the maximum size of a database is 4 GB (10GB in 2008 R2), it can only use up to 1GB of RAM and it doesn't have the 'SQL Server Agent' service.
Using SQL Server Express is very similar to using a full version of SQL Server. You just have to specify the data source (the SQL server's name) and authentication details in a connection string and you're good to go. More information about how to use this is available on MSDN.
Another option is 'SQL Server Compact', which is meant mostly for web databases (for use with ASP.Net). You can install it with Microsoft's 'Web Platform Installer'. You can find more information about SQL Server Compact on MSDN.
I'm deploying a small ASP.NET (framework 3.5) application in a Windows Server Web 2008 32 bits, IIS 7. The applications needs connection to an Oracle DB in another Server, using the tradicional DataAdapter, Oracle Connection, etc.
I´ve installed correctly the Oracle Client in the server (the server is another server´s client) and I´ve checked that this server has access to the server where the database is.
Even though my app isn´t able to connect to DataBase. The message says that Oracle components haven´t been found. It doesn´t find the OleDB Provider for Oracle or some dll.
¿Something I shluod know about permissions of the ASP.NEt users or something like this?
Some idea??
Thanks in advance.
Gus.
Check the path. It could be that the Oracle client directory is not on the path of the account that runs your ASPNET app.
Actually there are other steps you can go through, to verify the Oracle client install.
This article is old but may be helpful.