ReportViewer Cannot Find Data Source Remotely?

Feb 12, 2010

this is the first time I have tried this so I am probably missing something that is staring me right in the face.

I have an ASP.NET page where the user fills in a request which then emails a PDF rendered from a ReportViewer instance.

It all works fine when I run it locally through the ASP.NET localhost but when I try and run it of the webserver it fails with the following message:

An error has occurred during report processing.Cannot create a connection to data source 'DataSource1'.

I can preview the report via the web based report manager via http://servername/reports which works without any problem and using the report editor in VS2005.

I suspect it is something to do with the credentials but I am at a loss. The data source is set with a username and password but this is saved within the datasource.

View 1 Replies


Similar Messages:

Using Object Data Source In 4 ReportViewer?

Nov 22, 2010

I think I'm getting mad here...I thought this should be super simple, but I just can't figure out how to do that.This is what I'm trying to do:I want to create an rdlc report using the ReportViewer control in ASP.NET 4 (VS 2010), and, as its datasource, use a class with some properties.I tried everything I can think of, but I just can't figure this out. All the docs I found state that the object should appear in the DataSource pane of the website, but I can't make it appear there.I would like the fields of the class to appear in the report desiger so I can use them - but I can't do that either.Using the designer, I can only define new dataset - I don't want to use dataset, but business objects!So - how can I do that? Do I have to use some kind of DataSource control? How can I make the report designer know about the business object?

View 2 Replies

How To Change Data Source In Reportviewer Control

Mar 17, 2011

I have a reportviewer (Microsoft.ReportViewer.WebForms) control on my page. All my reports use one data source. I want to be able to let my reports run on a different database when started from my UAT enviroment. So the location of the reports is the same, but the data comes from a different db. I cannot seem to find how this is done, is it even possible?

EDIT: They are server reports on SQL Server . I know you can set the dataset programmaticaly but I just want the reports to point to a different db and leave the rest of the report intact.

View 2 Replies

C# - How To Use Wcf Service As Data Source For ReportViewer Control

Dec 19, 2010

How can I use a web service (WCF) as the data source for a reportviewer . I create web application in that i want use .rdlc ( dont want .rdl) so i write wcf service . How to link wcf service into reportviewer to display data in rdlc.

View 1 Replies

SQL Reporting :: Dynamically Changing The Path / Data Source For A Reportviewer?

Nov 12, 2010

I have a reportViewer control and I dynamically setting the report path and dataset in the page load event if it is not a post back. This first report displays without issue. However, when I attempt to change the report path / dataset via the onChange event from a dropdown list I get the following error:

A data source instance has not been supplied for the data source "Summary_DataTable1".

This code works fine and the summary report is displayed the first time the page is loaded.

[code]....

View 6 Replies

SQL Reporting :: Webform Reportviewer Report Can't Find Subreport?

Jan 28, 2011

My web form reportviewer control can't seem to find my sub report. When I debug, it gives an error message in the report that states the report can't be found at file path for the sub report. If I copy and paste the path out of the error into the address bar of windows explorer, the report opens right up. I am using VS 2010, the 4.0 framework, and windows 7.

View 1 Replies

How To Find Source Of Submit Using JavaScript

Apr 1, 2010

I have a form in which i have written onSubmit calling a javascript function. in that javascript function how can i check that who was the event generater ( i mean on which button click this even raised)..

Note: onsubmit function call is in form tag..

i am using JavaScript and asp.net

My code is like this:

[code]...

i dont want to change any functionality.. i have got a dropdownlist which is causing postback.. i want that when this dropdownlist raise post back either i should know that its raised by dropdownlist or that function should not be called by dropdownlist's postback

View 3 Replies

VS 2008 - Trying To Find Source Of Exception

Dec 20, 2011

My exception handler is written like so:

Code:
Try
LoggerWrite("EX - Message: " & Ex.Message.ToString, "ErrorLog")
Dim myDE As DictionaryEntry
If Ex.Data.Count > 0 Then
For Each myDE In Ex.Data
LoggerWrite(" EX DictionaryEntry: Key = " & myDE.Key.ToString & " Value = " & myDE.Value.ToString, "ErrorLog")

[code]....

The user is getting a 500 internal error occurred. What he is trying to do is create a datagrid. The error only happens when there are a lot of data used to build the grid. But why exactly is it too much data? And can I increase a buffer or set something in a config file to allow all the data? The data come from a web service.

View 11 Replies

Installation :: Cant Find Source Control Explorer?

Mar 23, 2010

how to get source control explorer in visual studio 2008 team edition.i followed this ... View > Other Windows > but i cant find source control explorerI have downloaded SVN .tortoise svn me how to use as well, any articles for that..

View 2 Replies

C# - Find The Most Efficient Way To Do Source Control In A Small Dev Environment?

May 14, 2010

I work in a group of 4 .Net developers. We rarely work on the same project at the same time but it does happen from time to time.We use TFS for source control. My most recent example is a project I just placed into production last night that included 2 WCF services and a web application front end. I worked out of a branch called "prod" because the application is brand new and has never seen the light of day. Now that the project is live, I need to branch off the prod branch for features, bugs, etc...

So what is the best way to do this?

Do I simple create a new branch and sort of archive the old branch and never use it again?

Do I branch off and then merge my branch changes back into the prod branch when I want to deploy to production?

And what about the file and assembly version. They are currently at 1.0.0.0. When do they change and why? If I fix a small bug, which number changes if any? If I add a feature, which number changes if any?

What I am looking for is what you have found to be the best way to efficiently manage source control. Most places I have worked always seem to bang heads with the source control system in on way or another and I would just like to find out what you have found that works the best.

View 6 Replies

Visual Studio :: Intellisense Can't Find The Source Files For BIN Referenced Assemblies

Mar 23, 2010

When I use Project Reference to add dependent assemblies to my C# library project, I can use the "Go To Definition" popup menu item to go to the source file of the class defined in the dependent assembly. That is one of the most useful features of VS for me. However, when I add dependent assemblies as BIN References (via the Browse tab of the Add Reference dialog), I only get the class definition generated from metadata of the dependenat assembly, not the source file.

I realize that intellisense can't find the source directory of the dependent assembly, but where can I enter the directories so intellisense would know? There is a "VC++ Directories" page in the Options->Projects and Solutions dialog, but that is only for C/C++ projects. There should be one for C# as well. The bigger mystery is when I put my project in the debugger, I can step into methods defined in the dependent assembly and see its source file. Why could the debugger find the source file but not intellisense?

View 2 Replies

Web Forms :: Storing Remotely Posted Data To Database?

Oct 29, 2010

I am writing an application in which a remote url web site ( says url1 that is sender) sends xml data to another web site (says url2 that is receiver) by using .NET WebRequest. On the receiver url2 if I use .NET Page.Response and .NET Page.Request to store posted/received xml data into an external text file, then the data is stored. However, if I store the received data into database, I do not see the data is stored into the database.

trouble shoot the codes so I can store such remotely posted data into database on the receiver side url2.

I host both url1 site and url2 site in my computer using IIS like [URL]

1/ Receiver page's codes that store remotely posted xml data into database do not work:

protected void Page_Load(object sender, EventArgs e)
{
Page.Response.ContentType = "text/xml";
StreamReader reader = new StreamReader(Page.Request.InputStream);
String xmlData= reader.ReadToEnd();
ProductNameSapce.ProductCollection.InsertReceivedProduct(xmlData).ToString(); // data is not stored ; the method is tested and works well with hard-coded data
reader.Close();
Page.Response.End();
}

2/ The version of the receiver page at url2 that stores into an external text file works:

protected void Page_Load(object sender, EventArgs e)
{
Page.Response.ContentType = "text/xml";
StreamReader reader = new StreamReader ( Page.Request.InputStream );
String xmlData= reader.ReadToEnd ();
StreamWriter s;
s= File.CreateText ( Server.MapPath(".")+@""+ Guid.NewGuid () + ".txt" );
s.WriteLine ( xmlData); // data is stored in an external text file
s.Close ();
reader.Close();
Page.Response.End();
}

View 10 Replies

SQL Reporting :: A Data Source Instance Has Not Been Supplied For The Data Source 'report2Dataset'

Jan 6, 2011

I recently started using SSRS 2010 and I didnt come across this issue in 2005 or 2008 versions of reporting services.

I have a report that drills down to child report1 and then that drills down to child report 2 but clicking a field in the report.

When I click on the link on the first report to go to the second report. I get this error message

"A data source instance has no tbeen supplied for the data source ''reprort2dataset"

I am not sure how to handle this error.

All reports run fine stand alone, but when I try to link them up I get that error.

I have a report viewer running the reports in an aspx page.

View 1 Replies

SQL Server :: A Data Source Instance Has Not Been Supplied For The Data Source 'dsOrders_tblOrdersReport'

Aug 4, 2010

Where and what am i missing?

this code produces some error:

DataSet ds = services.getOrdersReport(1, "", DateTime.Parse(System.DateTime.Now.Date.ToShortDateString()));
ReportDataSource datasource = new ReportDataSource("JMJ", ds.Tables[0]);
rv.LocalReport.DataSources.Clear();
rv.LocalReport.DataSources.Add(datasource);
rv.LocalReport.Refresh();

ERROR :

A data source instance has not been supplied for the data source 'dsOrders_tblOrdersReport'

'dsOrders_tblOrdersReport' -- name of the table designed in dataset.XSD

View 1 Replies

A Data Source Instance Has Not Been Supplied For The Data Source 'DataSet1'

May 14, 2010

I am getting the following error while i bind the dataset dynamically in reportviewer(Asp .net 4.0) . I have binded the dataset using stroedprocedure.

Error:A data source instance has not been supplied for the data source 'DataSet1'.

View 3 Replies

Web Forms :: If Label Property Is Set To Visible = "False", Then Can It Be Find In View Source Of Browser ?

Feb 18, 2011

I have a label1 in my aspx page, which property is set to visible = "False".

In the view source of the browser i cant able to find that label1.But using some other third party tool like "Burp Suite" etc ...

Can those label1 value could be seen or not using tools like "Burp Suite" etc ?

View 3 Replies

Configuration :: Error 1 Could Not Open Source File: Could Not Find File 'C:11-22 EstobjDebugCSAutoParameterize RansformedWeb.config'. 0 0 Test

Nov 24, 2010

I have built an ASP.NET (.NET v4) application in VS 2010. It is working just fine. But when I try to create deployment package (so I can deploy it in our test IIS 7.5 Server), it gives me error like this,

Error 1 Could not open Source file: Could not find file 'C:11-2 estobjDebugCSAutoParameterize ransformedWeb.config'. 0 0 test

Thing is in past, I had deployed the SAME application using the SAME method.

View 2 Replies

In "Configure Data Source" After Choose "Parameter Source :Control" All ControlIDs Are Duplicated?

Jan 5, 2010

I don't know it happen just to me or Others have the same situation too . All the time when i bind a DataControl to an ObjectDataSource in "Configure Data Source" wizard of ObjectDataSource,when i set parameter source as "Control" in "ControlId" DropdownList there are TWO Item of every control in the WebForm , while it make sense be one.

View 2 Replies

How To Receive An Image Remotely

Mar 18, 2011

I have a requirement to design an ASPX page to receive a binary image from a remote call. Basically, our client wants to send a POST request from their server to this particular page. This POST request contains some parameters, as well as an JPG image. How should I design this ASPX page to receive all these information? I need to convert the JPG image to byte[] array and save it to DB, together with the rest of the parameter values.

View 1 Replies

How To Acess Microsoft Access Remotely

May 28, 2010

I am writing an application on my PC to insert record on a Microsoft Access database on another pc that has static ip address remotely.I can ping the remote address of the PC that I want to access without problems. The access database is in the folder c:inetpubwwwrootdb.mdb.

I have the code below but when I run it I am getting the following error:

error on ther server the object model couldnšt be found

OleDbException 0x800a2011
<%@ LANGUAGE = VB Debug="true" %>
<%@ Import Namespace="System.Data.OleDb" %>
<%@ Import Namespace="System.Net.Mail" %>
<%@ Import Namespace= "System.Web.UI.WebControls.Menu" %>
<%@ Import Namespace="System.Data" %>
<script Runat="Server" language="VB">
public sub button_click(s as object,e as EventArgs)
dim ssql as string
dim strconn,objconn,rs,dbcomm
Dim ds As New DataSet
Dim da As OleDbDataAdapter = New OleDbDataAdapter
objconn=new oledbconnection("Provider=MS Remote; Remote Server=http://196.45.161.123; Remote Provider=Microsoft.Jet.OLEDB.4.0; Data Source=\db.mdb;Persist Security Info=False")
objconn.open ()
dbcomm=New Oledbcommand("employee",objconn)
dbcomm.commandtext="insert into employee values ('mostafa',7,'tanzania')"
dbcomm.Connection = objconn
dbcomm.ExecuteNonQuery()
objconn.close ()
end sub
</script>
<html>
<Head>
</HEAD>
<BODY BGCOLOR="White" TOPMARGIN="10" LEFTMARGIN="10">
<form Runat="Server">
<asp:textbox id="t1" Runat="Server" text="type" />
<asp:button id="b1" Runat="Server" onclick="button_click" text="clickme" />
</form>
</BODY>
</HTML>

View 1 Replies

Display Control Only If Not Viewing Remotely?

Mar 30, 2011

Is there a way to show a control on a page ONLY if the page was requested over the local network?

View 2 Replies

C# - What Could Be Causing Different Behaviour Remotely On .net Site

Jan 25, 2011

I have a site that i have developed in asp.net. On debugging the site now hosted using iis7 i noticed a bug, i cannot reproduce this when i run it locally in vs, meaning i can't see the error. The bug occurs on the check box changed event of a devexpress check box. It connects to the database using devart.postgres sql component and linq. However, this is the same connection as anywhere else in the project. The same code works elsewhere in the project. The error i get is:

the requested name is valid, but no data of the requested type was found.

part of my code is in an if statement that checks if a textbox is blank if so it does not run the code within the if statement, interestingly enough if the text box is blank the code runs, so it must be in the if statement? i commented out all of the code and tried again and it still would not run. B

View 1 Replies

Configuration :: Is It Possible To Accessing Web Application Remotely

Sep 27, 2010

I have to Pc, A is Server and B is client ,On server machine windows server2003 And iis is installed.i have developed asp.net application on server machine and its is executing perfectly on server like [URL]

but this page is not accessing on client Pc (B)

how can i access this page or Application on pc B(client).

View 2 Replies

Configuration :: Can't Access Mvc Application Remotely

Sep 9, 2010

have deployed an mvc 2 app to a local iis server. It works fine when i go to http://localhost/MyApp. However when i insert my ip address in the place of localhost and try to go to it i get an 'oops google chrome can't connect'. I have all firewalls disabled. I can view the default web site at http://82.168.191.228, just not my mvc app at http://82.168.191.228/MyApp.

View 6 Replies

Configuration :: Access Database Remotely In .net?

Dec 17, 2010

I create a project in ASP.NET and my sql database and query procedure are stored at other system. i remotly access this file and i want to do access this database on my project

can it access from webconfig connectionString?

View 2 Replies







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