In BIRT, is it possible to setup a connection profile which accepts the username/password as a parameter?
With a standard data source, I can use the "Property Binding" tab to set a report parameter to be used as the username an password. However, when I create a data source for a connection profile, I do not see a "Property Binding" tab. I also do not see any way to edit an existing data source in a connection profile or how to get to more options for the data source (when it is part of a connection profile).
Screenshot of the Property Binding tab which is available for non-Connection Profile Data Sources:
Screenshot of the Create Data Source for Connection Profile - no property binding tab :(
U can edit exsisting connection profile.
Select Menu Window-Show View->Others->Data source explorer...Now u can view existing profiles.right click and take properties of corresponding profile,here u can edit username and password
Related
I'm using TortoiseGit 2.10.0.2. I wrote an Issue Tracker plugin based on the sample programs in C#. Everything works OK except for configuration. On the Setup Issue Tracker Config screen, there is a field called "Provider parameters" where I can manually enter a configuration string. Appendix B of the manual describes the HasOptions and ShowOptionsDialog interfaces for entering the parameters with a GUI instead of a raw string. The appendix says this interface is called when the user clicks the "Options" button. However, there is no "Options" button on the Issue Tracker Config screen.
If I use the Issue Tracker Integration screen to add my plugin to a specific Git directory, the "Options" button is present and works. But I don't want to have to set this up every time a repository is cloned.
How to I get the "Options" button to show on the Setup Issue Tracker Config screen?
You can store the provider UUID and the params to .tgitconfig (i.e., called "project" on the settings page; the config keys are name bugtraq.provideruuid, bugtraq.provideruuid64 and bugtraq.providerparams). Then you can commit this file and the settings are always used.
There is, however, no "Options" button available there - the values need to be entered manually.
cf. https://tortoisegit.org/docs/tortoisegit/tgit-dug-settings.html#tgit-dug-settings-hooks-issuetracker-config
I have a question similar to this one, but I am using VS 2008 and an Oracle database (with Oracle SQL Developer). How do I get rid of the report credentials in VS? Thank you.
One of the easiest ways to get rid of this is to supply a username and password for the database in question on the reporting server. The URL is usually something like http://localhost/reports. Usually, users created for this type of connection have minimal read-only rights needed for the specific report. The disadvantages to this type of connection is that it's a one-user-fits-all situation. But because of the error message you are getting, it appears that your wish is to supply a specific user name and password rather than use Windows security--which is just fine.
To get here, click Security from the report drop-down list on the main page. Then, click the Credentials stored securely on the report server. Then, here's an issue that get's lots of folks--click the Apply button at the bottom to save the changes. Sometimes the Apply button is not visible and you need to scroll down to click it.
Now, if you're accessing your report through ReportViewer in VS then the following link may provide some help:
http://www.sql-server-performance.com/2012/accessing-ssrs-reports-report-viewer-web-page/
Alternately, you can create or add to a web.config file:
https://msdn.microsoft.com/en-us/library/microsoft.reporting.webforms.ireportservercredentials.aspx
p.s. based on our chat, try adding the following to your web.config connection string--if you have one(with the respective user name and password)--if, indeed you're using Oracle's ODP.net:
providerName="Oracle.ManagedDataAccess.Client" connectionString="User Id=oracle_user;Password=oracle_user_password
http://www.oracle.com/technetwork/topics/dotnet/downloads/odpnet-managed-nuget-121021-2405792.txt
I have not figure out how to solve this from the database. What I did was, comment out this line of code from the XML of the report:
<Prompt>Specify a user name and password for data source XXX</Prompt>
If you have the correct credential info in the <value> tag, your report should be loaded with username and password parameters without problems.
I am using PuTTY for logging in to Solaris/Linux servers.
Under Sessions → Logging, we see 'Session Logging' settings. I am not able to save the settings for permanent use.
Isn't such feature available or am I wrong somewhere?
PS: I want to save the log file path, 'All session output' as a 'forever setting'.
It works fine for me, but it's a little tricky :)
First open the PuTTY configuration.
Select the session (right part of the window, Saved Sessions)
Click Load (now you have loaded Host Name, Port and Connection type)
Then click Logging (under Session on the left)
Change whatever settings you want
Go back to Session window and click the Save button
Now you have settings for this session set (every time you load session it will be logged).
I always have to check my cheatsheet :-)
Step 1: right-click on the top of putty window and select 'Change settings'.
Step 2: type the name of the session and save.
That's it!.
Enjoy!
To set permanent PuTTY session parameters do:
Create sessions in PuTTY. Name it as "MyskinPROD"
Configure the path for this session to point to "C:\dir\&Y&M&D&T_&H_putty.log".
Create a Windows "Shortcut" to C:...\Putty.exe.
Open "Shortcut" Properties and append "Target" line with parameters as shown below:
"C:\Program Files (x86)\UTL\putty.exe" -ssh -load MyskinPROD user#ServerIP -pw password
Now, your PuTTY shortcut will bring in the "MyskinPROD" configuration every time you open the shortcut.
Check the screenshots and details on how I did it in my environment:
http://www.evernote.com/shard/s184/sh/93ebf08f-fde2-4dad-bccf-961c98fb614b/983d2ff8f2d1e6184318825d68b0b829
This is a bit confusing, but follow these steps to save the session.
Category -> Session -> enter public IP in Host and 22 in port.
Connection -> SSH -> Auth -> select the .ppk file
Category -> Session -> enter a name in Saved Session -> Click Save
To open the session, double click on particular saved session.
I have a data source that I use for creating reports in my programme. I've recently changed the connection string to the table adapters created by the wizard(ConString1), because I wanted to make that connection string available to every other class that needs to use it. So basically. I deleted the application setting created by the wizard(ConString1) and entered in my own application setting(ConString). Once debugging began all the code that still refered to the now non existent connection string(ConString1), I changed to the available one(ConString). That is in the code the debugger picked up. The program works fine.
Now my problem is this, when I select a table adapter and take a look at its properties, the Connection string is still set to the old connection string name, the connection string value itself is given as "Unable to find connection ". This is prohibiting me from adding new tables to my reports.xsd file.
I also keep getting an error when trying to create a new datasource.
Error : Could not load type Microsoft.VisualStudio.DataDesign.SyncDesigner.SyncFacade.SyncManager.
Right-click on the data-set xsd, select "Open With..."
Select "XML (Text) Editor" and click OK.
Modify as needed, and be careful.
Be careful.
I am looking to create a Web Performance test that can be bound to a CSV file with usernames and passwords so that I can run concurrent tests with different users. How do I modify a recorded WebTest in order to accomplish this?
Have you checked out Walkthrough: Adding Data Binding to a Web Performance Test (CSV File)?
Once you have added the csv file as a datasource to the webtest,
right click on the webtest.
select "properties"
set the username property to the
correct datasource field
set the password property likewise