Integrate Report Bulder With .net Application

Oct 30, 2007

How should i integrate Report Builder with my .net application.

Currently I am using ReportViewer Class to integrate Regular Reports.
But in that we need to pass both


reportViewer.ServerUrl = "https://SERVERURL/ReportServer/Pages/ReportViewer.aspx?%2fFOLDER%2f";
reportViewer.ReportPath = "REPORT NAME";

reportViewer.Toolbar = com.mitchell.services.workbench.carr.ReportViewer.multiState.True;

reportViewer.Parameters = com.mitchell.services.workbench.carr.ReportViewer.multiState.True;

reportViewer.SetQueryParameter("Company","Company Name");



ReportSecurity rs = new ReportSecurity();

reportViewer.SetQueryParameter("ReportData",Server.UrlEncode(rs.Encrypt(m_sCompCode + "_" + m_objUserInfo.UserID)));

string str = reportViewer.Url;

and passing the str value in my iframe of application
above code is working fine for regular reports

But how should i integrate REPORT BUILDER

Any web tutorial from where i can get good help.

View 1 Replies


ADVERTISEMENT

Integrate Report Manager In An Asp.net Application

Feb 22, 2007

I thought I can probably find out how the report manager works and create a similar application so that I can define my own things in there.

Looks like there is no sample where I could get a lead. Now I have decided if I can include the report manager in a new aspx page in my application and disable the stuff which is not required by the user to look at it.

I can definitely include the report manager url in the Iframe but how do I disable the stuff from the report manager.

Please help, I am having real hard time.

Thanks in advance.

View 1 Replies View Related

[urgent]window Application Integrate SQL Report Service

Apr 24, 2008

i am new for SQL server report service, i have a project that need to generate report and integrate or shown on my window application,
so i have a few questions as follows:


1) do i need to add web reference ( report ) to my window application?.
2) how can i preview and print .rdl report within my window application?
3) how to automatically printer report? can this be done by within a store procedure or trigger or in window application?


ps: view reprot manager, ---- http://localhost/reportserver$SQLEXPRESS
ask me name & password? what name should i type in sa? or Administrator or ?



many thanks,

C




View 4 Replies View Related

How To Integrate Reportbuilder With A .Net Web Application?

Oct 12, 2006

How to integrate reportbuilder with a .Net web application?

View 1 Replies View Related

How To Integrate SQL Server Business Intelligence Tool Into ASP.Net Web Application

Jan 10, 2007



How to integrate SQL Server Business Intelligence Tool into ASP.Net web Application.
Anybody can send the answer for above one it is great help for me, just I want to open this tool through >net application and I can able to create some reports from there.

View 3 Replies View Related

Integrate SSRS With Report Viewer

Oct 25, 2007



Hi All,



I'm going to use report viewer to view the SSRS reports that I create. I have created bunch of reports. But I can publish only one report on report viewer. How can I publish more than one reports there just like on report manager. Can I view those reports just clicking links of each reports? How can I make links?
When I use reportview in visual studio it allows me to create only one report and when I dploy it straightaway it brings up the report in web form, but not the link like we see on report manager.
Is there anyway I can create links for each reports?

Or in other words, I want to integrate report server and report viewer. But I dont have a very good idea about report viewer.
So please can anyone explain the basic steps?

Thanks

View 1 Replies View Related

Deploying A Report Services Application To The Local Host; Error:A Connection Could Not Be Made To The Report Server

Feb 23, 2007

I installed SQL reporting services 2005 and successfully configured reporting services.After designing the report using Bussiness Intelligence Studio, i tried to deploy my reporting services application to the localhost , I got the below mentioned error :

TITLE: Microsoft Report Designer
------------------------------

A connection could not be made to the report server http://localhost/ReportServer.

------------------------------
ADDITIONAL INFORMATION:

The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version. (Microsoft.ReportingServices.Designer)

------------------------------

The request failed with HTTP status 404: Not Found. (Microsoft.ReportingServices.Designer)

Can anybody provide a solution for this issue....

Thanks in advance

Nirupa

View 4 Replies View Related

Connect A Report To An Application Database

Aug 3, 2006

I added a database named appdata to the app_data folder to hold temporary application data.  I want to show this data in a report.  I created a dataset and an object to select the data.  I then created an report.fdlc and a report.aspx with a ReportViewer on it pointing to the dataset object.  If I right click on the report.aspx and View in Browser, it work perfectly.  But when I upload it to the server I get and browse to it I get (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified).  The server does allow remote connections.  So I am thinking it's my connection string of the fact that the server doesn't have Sql Server Express.?
Here's my connection string.  What am I missing here?
<add name="appdataConnectionString"
connectionString="Data Source=.SQLEXPRESS;AttachDbFilename=|DataDirectory|appdata.mdf;Integrated Security=True;User Instance=True"
providerName="System.Data.SqlClient" />
 

View 1 Replies View Related

Parameters Ignored, Render Report From VB .Net Application

Feb 21, 2007

I seem to be unable to pass parameters from a VB .Net application to Reporting Services.

Before I added the parameters to the query, I got all the rows back. So I know the application is basically working. Now that I have added the parameters, I get nothing.

I thought the SetExecutionParameters function would help, but my syntax is wrong and it fails.

I would appreciate any hint as to what step I am missing.


Report setup:

Parameters

Name Value
@Report =Parameters!Report.Value
@Corp =Parameters!Corp.Value
@Dept =Parameters!Dept.Value

Query conditions

WHERE Report = 'BudgetVarianceSummary'
AND PeriodEnd = CONVERT(DateTime,CONVERT(char,GETDATE()- DATEPART(day,GETDATE()),112))
AND Report = @Report
AND Corp = @Corp
AND Dept = @Dept


VB Code snippet:

Dim reportPath As String = "/FinancialReports/BudgetVarianceSummary"
Dim format As String = "PDF"

' Prepare report parameter.
Dim parameters(3) As ParameterValue
parameters(0) = New ParameterValue()
parameters(0).Name = "Report"
parameters(0).Value = "BudgetVarianceSummary"
parameters(1) = New ParameterValue()
parameters(1).Name = "Corp"
parameters(1).Value = "10"
parameters(2) = New ParameterValue()
parameters(2).Name = "Dept"
parameters(2).Value = "7255"


Dim execInfo As New ExecutionInfo
Dim execHeader As New ExecutionHeader()
Dim SessionId As String
Dim extension As String = ""

rs.ExecutionHeaderValue = execHeader
execInfo = rs.LoadReport(reportPath, historyID)

'This line of code fails
'rs.SetExecutionParameters(parameters, "en-us")

result = rs.Render(format, devInfo, extension, encoding, mimeType, warnings, streamIDs)

View 1 Replies View Related

Submitting Report Requests From .NET Application

Feb 13, 2007

Hi,

One of my client want to shift his reporting to SSRS. He wants to submit his report requests to SSRS. He wants the report should run at the reporting server side (not on client system) and output should be exported to a folder on server.

I am some what successful in submitting the report requests using subscriptions. But I have no idea to retrieve the requests from SSRS with the execution status.

I have to display all submitted reprot requests with execution status (success or fail) in a data grid and user selects one report to see the out file. Where can I get this information?

And how can I create a subscription that runs immediatly after submission. (without any delay)?

Help me please!!!

Thanks in advance, Gouri Sankar

View 4 Replies View Related

How Can Deploy Report With Asp.net Application For Remotely Access

Feb 28, 2007

hi,

how can i publish my RS2005 reports with asp.net(2005) application.I am trying by creating virtual directory ,the aspx page runs but it is unable to access reports from report server

Is there any article on how can i deploy report with asp.net so that i can access report using aspx page remotely



pls suggest me

View 1 Replies View Related

How To Hook Reporting Services Report To A VB6 Application.

Nov 20, 2007

I have an existing vb6 application which used Crystal reports .dsr inside the vb application for the forms. Now I need to change to Reporting services reports. I haven't worked in VB before. I am looking for some guidelines as to how to hook up the Reporting Services reports to vb6 application.

Any ideas or links will be appreciated.

Thanks in advance

View 4 Replies View Related

Report Server Direct Connect From ASP.NET Application

May 9, 2007

OK, I am not a programmer, but administrate the Report Server and its security. The .NET programmers want to connect direct to Report Server using WEB.CONFIG settings (see below).



<appSettings>
<add key="ConnectionString" value="Server=bpatlqddwatlqddw01;Database=MP2_NET_STAGE;Integrated Security=False;User ID=MP2_Net;Password=xxxxx;Persist Security Info=false"/>

<add key="LogPath" value="\bpga030wde01wwwroot$MP2_NetLogs"/>
<add key="Url" value="http://bpga030wde01/MP2_Net/" />



What do I need to do to ensure their dynamic reports can run against my Report Server? What kind of rights do I assign the "MP2_Net" (above) login? All of this is outside the IIS-Report Server security environment? Do I assign rights via SQL Mgr? I cannot find any doco on this process.



View 2 Replies View Related

Is It Possible To Create Report Subscriptions From A Windows Application

Nov 29, 2007

from with in an application using the report view can you puase a report that is taking a long time to complete and then at a latter date resume where you paused the report.

View 6 Replies View Related

Best Practice For Report Projects Related To Application Solutions

Feb 20, 2007

Hello Reporting Services Gurus!

I'm about to start on my first reporting services project, but before I mess it up, I'm looking for some guidance on how best to achieve my mission. Here's what I'm looking to achieve:

I have a datacentric application (SQL Server 2005 Express w/ Advanced Services backend) in which I want to build about 50 "canned" reports for the end users. I want to build the reports utilizing server mode so I can take advantage of some of Reporting Services advanced features. I'm not sure what the best practice would be to build the reporting services project. Is it better to include the report project as another project within the application solution? Or, should I build the report project independent of the application solution? What are the pros and cons of doing it either way? How does including the report project build if it's included in the application solution? How would a ClickOnce deployment deploy the report project to the report server?

My ultimate goal would be to have an "off-the-shelf" software solution that includes an installation package consisting of the application project and report project. Is it even possible due to the Reporting Services architecture to achieve an install in this manner with ClickOnce, Windows Installer, or Installshield? Or, is building the report project indepedent of the application project and deploying the reports to the report server "manually" (i.e. deploy within the report server project) the only solution?

Any help would be greatly appreciated!

Tony

View 1 Replies View Related

Passing Parameter From Asp.net Application To Reporting Services Report

Jul 9, 2007

Hi,

There is a .net application which has a screen with four options(text boxes)

Each of these should take to reports generated by SQL REp Services

This is the requirment

The School selected in the App should be passed on to the report

How should I pass the parameter in my report

so that when user selects a link or text box report for that particular school number is displayed



Thanks

sowree

View 3 Replies View Related

401 Unauthorized Access When Calling Report Server From ASP.NET Application

Feb 11, 2008

I receive the following error when i call report server web service from an asp.net application:

"The request failed with HTTP status 401: Unauthorized."



Here are the IIS logs on the reporting services server. When i open IE and browse to the web service i provide my user credentials and i can access the web service just fine. However when i call the web service via my asp.net application it looks like my credentials are not being passed??

Browsing web services via internet explorer.

2008-02-11 21:26:13 W3SVC1836052065 HQSQLDEV1 10.69.21.140 GET /Reports/images/16fold.gif - 8080 triwestdbloom 10.69.21.140 HTTP/1.1 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+WOW64;+SV1;+.NET+CLR+2.0.50727;+.NET+CLR+1.1.4322) 10.69.21.140:8080 200 0 0 15

Call from ASP.NET App

2008-02-11 21:26:13 W3SVC1836052065 HQSQLDEV1 10.69.21.140 GET /Reports/images/16fold.gif - 8080 - 10.69.21.140 HTTP/1.1 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+WOW64;+SV1;+.NET+CLR+2.0.50727;+.NET+CLR+1.1.4322) 10.69.21.140:8080 401 1 0 0

Here is my code:


RSWebService.ReportingService rs = new RSWebService.ReportingService();

rs.Credentials = new System.Net.NetworkCredential(@"triwestdbloom",

"blah", "triwest");



//rs.PreAuthenticate = true;

//Get all folders

RSWebService.CatalogItem[] allItems = rs.ListChildren("/", false);

//Get only folders not hidden to the user.

List<RSWebService.CatalogItem> visibleItems = new List<RSWebService.CatalogItem>();

foreach (RSWebService.CatalogItem item in allItems)

{

Response.Write(item.Name.ToString());

}

Any ideas?

View 2 Replies View Related

How Does The Report Builder Application Communicates With The Reporting Server

Apr 17, 2007

Can any body please explain that "how does the Report Builder application communicates with the reporting server".
Does it use web service for that, or does it connect to it directly ?
If it use webservice then where is it situated and what is it's name.
Please explain a bit ?

View 1 Replies View Related

Keep Multiline Textbox Formatting (tabs) From Application In Report

May 1, 2007

We have multiline text box of datatype ntext, and users will use tabs to format the data for better readability.



How can we keep this formatting in SSRS 2000? Right now, it simply goes away and resembles nothing like the application.



Thanks!

View 1 Replies View Related

Reporting Services :: Application That Uses Report Builder To Edit Templates

May 1, 2015

I have an application that uses SQL Report Builder to edit templates.  When I go to add a dataset to add a custom field to the report, I get a permissions error (screenshot Error).  When I check the credentials for the shared datasource, they are all grayed out, so I can’t verify the credentials being used (screenshot Error 2).  According to SQL Management Studio, the user credentials have the right permissions.  The weird thing is, I can access the datasets and shared datasource embedded in the report just fine.  I just get a permissions error whenever trying to create a new dataset.

View 2 Replies View Related

How To Integrate The SP2 Into The Installation

Nov 11, 2007

I want to integrate the service pack 2 into the SQL2005 Installation,so I can easily setup SQL2005+sp2 next time

give me some solutions,Thanks~

View 1 Replies View Related

How Do I Integrate With SourceSafe Or TFS-VC?

Apr 24, 2006

Where can I find information about how to integrate a SQL 2005 database with either SourceSafe or Team Foundation Server Version Control?

I would like to have database changes for tables, views, stored procs, etc. under source control. Is this even possible?

View 3 Replies View Related

Integrate VSS With SQL 2005

Jan 4, 2007

Is there a way to compare a script in Visual source safe with sql 2005 stored procedure without scripting out the stored procedure from sql? I usaually script out a stored procedure from sql to a .sql file and compare it with a script in VSS and I was wondering if anyone know a faster way to compare SPs in production server with VSS. I am using sql management studio and also added all SPs to VSS thru management studio. Thanks.



View 6 Replies View Related

Integrate Micosoft Project Into MS SQL

Dec 6, 2007

 hi all, would like to ask for help...is anyone know how save the ms project into database, is it possible to save it into MSSQL.i am just a new beginner..thanks in advanced.-Myra- 

View 8 Replies View Related

Integrate In SQL Server 2000

Feb 5, 2006

I want to integrate tool in SQL server 2000.
Ex. add more the approximate search or fuzzy search to get well results.

please show me, what do?

View 1 Replies View Related

Integrate Sub-querying Into Queries

Oct 14, 2014

I should start to integrate sub-querying into my queries to make them run more efficiently and faster.Below is a query that I use often as a template, often just modifying the day, order and truenumber. how to set up a sub-query for this.

select "betatest", order, age, gender, geo, count (1), count (distinct rdz.id)
from analytics1 rdz
join analytics_2 alvds on (rdz.id = alvds.id)
left outer join analytics3 spd on (alvds.zipcode = spd.zip)
where day >= '2014-08-01'
and day <= '2014-09-30'
and order = 317228536
and truenumber = 540192016
group by "betatest",order,age, gender,geo;

View 7 Replies View Related

How To Integrate SSIS And SSAS

Jun 12, 2007

Hi, all,

Some of you may have done this, but how do you integrate a Integration package with Analysis Services?

Within my vs solution, I have a SSIS package and a SSAS, which will build a simple cube.

At the end of SSIS, it can email, log, or exec another SSIS pkg, etc. but I did not find out a way to fire off the SSAS part.

Thanks!

View 7 Replies View Related

How To Integrate Sql Queries Into Sharepoint

Mar 28, 2008

Hi All,

i have written so many queries in sql 2000/2005 and now i have to integrate them into sharepoint which i have never done..can anyone guide me how it can be done? or where i have to post this question?
the correct forum?

any help would be appreciated.
thanks

View 1 Replies View Related

When Will SQL Everywhere Integrate To The Windows Kernel?

Sep 16, 2006

One of the biggest problems today is that damn slow file system and windows registry, the NTFS file system is good when you work with a small amount of files, and once you have more files, it becomes slower and slower.
And the same applies to the Windows Registry.
It would be wonderful if the SQL Server 2005 everywhere edition is provided as a low level Windows Kernel API, so instead of using a prehistoric NTFS file allocation table for the file system, Microsoft will use the sql server to store the list of files and folder.
I am not talking about the data itself, it can stay as it is today, do not repeat the insane WinFs mistake for the third time, just the list of files and folders, the registry entries, the event log, etc, all the things that are based on an outdated slow prehistoric legacy code, just have them in the SQL Server Everywhere Edition, and the performance will skyrocket, just every other application running under windows will improve.
If this happens, things like Slow VS.NET issues, Slow Windows Vista RC1, and other slow Microsoft products will just become faster again.
Well, just a wish, perhaps we need 10 additional years until the microsoftians get it :-)

View 4 Replies View Related

How To Integrate ADO In A Windows Service

Jan 11, 2007

The problem is integrating an ADO connection into a Service in C#. The peculiar thing is that the same thing works well in an application but throws a problem in the Service i.e. the Service doesnt want to start...

The problem is at establishing the connection - but the same thing works just fine in an Windows application.

string MySqlConnString = "SERVER=N16\SQLEXPRESS; TRusted_connection=yes; database = EventTrack2007";

MySqlConnection = new SqlConnection();

MySqlConnection.ConnectionString = MySqlConnString;

MySqlConnection.Open();

Thank you!

View 9 Replies View Related

How To Integrate Reporting Services With ASP.Net

Jun 16, 2006

Hi

My current situation is how to integrate my application written in asp.net to link to my report server's report ?

as by default anonymous user can access my report server's report without any authentication. how to configure to make the report server by using form authentication before access the reports?

 My Application Configuration

Web application (Vb.Net) - http://192.168.1.18/mobiFO 

Reporting services - http://192.168.1.19/reportserver/reports/mobiforeport

DBMS - MS SQL Server 2005 developer edition + Reporting Services 2005 SP1

 

Thanks for your help.

anything can email me at jack0726@yahoo.com

 

View 22 Replies View Related

Netware Logins And How To Integrate Into SQL 2005?

Mar 17, 2008

I was wondering if anyone could help me with this. I am currently working on a project for reporting on a new acquisition the company have made. Unfortunately, the people I have to give access to the SQL Server are using Netware for authentication.

Is there any way to allow these people to log into SQL Server without having to create a SQL authenticated user for each of them?

Thanks

View 7 Replies View Related

Integrate WSS 3.0 And Reporting Services With Kerberos - Help Need

Mar 12, 2008

Hi,

For last 2 days, I'm struggling to integrate WSS 3.0 with SP1 with SQL Server 2005 Reporting Services with SP2 with Kerberose authentication.


And finally I'm stuck

At the moment I've got 2 issues, one is when "Set defaults" on Central Administration site, second is when I'm trying to browse the reporting server for report €“ using Report Viewer webpart configuration (when selecting "Report").

Before I will go futher with errors message, here is my configuration:

WSS 3.0 with SP1 and Reporting Services Add-in:
Computer: SharePoint02 | SharePoint02.led.local
Portal url: http://sharepoint02 | http://sharepoint02.led.local
Admin url: http://sharepointadmin02 | http://sharepointadmin02.led.local
Portal App Pool: LEDSPContentPool
Admin App Pool: LEDSPConfigAcct

SQL Server 2005 with SP2, Reporting Services with SP2, WSS 3.0 with SP1 Front End:
Computer: SharePointDB | SharePointDB.led.local
Front End Portal url: http://sharepointdb | http://sharepointdb.led.local
URL to reporting services: http://sharepointdb/SPSReportServer | http://sharepointdb.led.local/SPSReportServer
Front End App Pool: LEDSPContentPool
Reporting Services App Pool: LEDSPConfigAcct
Report Server Service Account: LEDSPConfigAcct
SQL Server Account: LEDSPConfigAcct

I know I should have separate account.

Service Principals (SPContentPool):
Registered ServicePrincipalNames for CN=SPContentPool,CN=Users,DC=LED,DC=LOCAL:
HTTP/sharepoint02
HTTP/sharepoint02.led.local

Service Principals (SPConfigAcct):
Registered ServicePrincipalNames for CN=SPConfigAcct,CN=Users,DC=LED,DC=LOCAL:
HTTP/sharepointdb
HTTP/sharepointdb.led.local
MSSQLSrv/sharepointdb.led.local:1433
HTTP/sharepointadmin02.led.local
HTTP/sharepointadmin02

Reporting add-in is activated, I'm able to specify the report server (http://sharepointdb.led.local/SPSReportServer) and to grant permission.

1) FIRST ISSUE
However when I'm trying to set the defaults for Reporting Services from Central administration I'm getting following error:

The target location you specified is not supported by the report server. A report definition (.rdl), report model (.smdl), resource, or shared data source (.rsds) file must be located within a library or a folder within it. ---> The target location you specified is not supported by the report server. A report definition (.rdl), report model (.smdl), resource, or shared data source (.rsds) file must be located within a library or a folder within it.

Reporting Server error message is:
w3wp!library!1!03/12/2008-12:15:23:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ContainerTypeNotSupportedException: The target location you specified is not supported by the report server. A report definition (.rdl), report model (.smdl), resource, or shared data source (.rsds) file must be located within a library or a folder within it., ;
Info: Microsoft.ReportingServices.Diagnostics.Utilities.ContainerTypeNotSupportedException: The target location you specified is not supported by the report server. A report definition (.rdl), report model (.smdl), resource, or shared data source (.rsds) file must be located within a library or a folder within it.
w3wp!library!1!03/12/2008-12:15:39:: Call to GetDataSourceContentsAction(http://sharepoint02.led.local/lrs/Reports/SHAREPOINTDB.rsds).
w3wp!library!5!03/12/2008-12:15:49:: Call to GetDataSourceContentsAction(http://sharepoint02.led.local/lrs/Reports/SHAREPOINTDB.rsds).
w3wp!library!1!03/12/2008-12:15:52:: Call to GetDataSourceContentsAction(http://sharepoint02.led.local/lrs/Reports/SHAREPOINTDB.rsds).
w3wp!library!1!03/12/2008-12:15:55:: Call to GetDataSourceContentsAction(http://sharepoint02.led.local/lrs/Reports/SHAREPOINTDB.rsds).
w3wp!library!1!03/12/2008-12:16:07:: Call to GetDataSourceContentsAction(http://sharepoint02.led.local/lrs/Reports/SHAREPOINTDB.rsds).
w3wp!library!1!03/12/2008-12:16:59:: Call to GetDataSourceContentsAction(http://sharepoint02.led.local/lrs/Reports/SHAREPOINTDB.rsds).
w3wp!library!1!03/12/2008-12:17:11:: Call to GetPermissionsAction(http://sharepoint02.led.local/lrs/Reports/TestSharepoint.rdl).

This error message then repeats few times, usually always after:
w3wp!library!5!03/12/2008-11:18:16:: Call to GetSystemPropertiesAction().

2) SECOND ISSUE

When the I'm trying to add Report Viewer (I'm logged as Portal administrator) and then select the report from web part settings, I'm getting:
Server was unable to process request. ---> The request failed with HTTP status 401: Unauthorized.

When I'm looking at the Event log in SharePointDB I see Anonymous login:

Event Type: Success Audit
Event Source: Security
Event Category: Logon/Logoff
Event ID: 540
Date: 12/03/2008
Time: 12:13:07
User: NT AUTHORITYANONYMOUS LOGON
Computer: SHAREPOINTDB
Description:
Successful Network Logon:
User Name:
Domain:
Logon ID: (0x0,0x12C0209E)
Logon Type: 3
Logon Process: NtLmSsp
Authentication Package: NTLM
Workstation Name: SHAREPOINT02
Logon GUID: -
Caller User Name: -
Caller Domain: -
Caller Logon ID: -
Caller Process ID: -
Transited Services: -
Source Network Address: 10.192.65.67
Source Port: 1705


For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.

Is there any chance to solve these issues? What did I done wrong?

I would really appreciate any help!

Cheers,
Jakub G

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved