Crystal Reports :: Difference Between Generic Handler (ASHX) And WCF Web Service
Sep 27, 2013What's up with difference between generic handler (ashx) and window communication foundation (wcf)? What their purpose?
View 1 RepliesWhat's up with difference between generic handler (ashx) and window communication foundation (wcf)? What their purpose?
View 1 RepliesI have created .ashx which implemented IRequiresSessionState, so I can create session variables in that ashx, it worked in IE, but doesn't work in Firefox.When access this session variable from other pages it's NULL.
View 1 RepliesI've created a Web application (VS2008) that contains a single Generic Handler (handlername.ashx) and a web.config. I've also added a Web Setup project to use for deployment that uses the primary output from the Handler project. Install works without any errors and all the referenced DLLs are installed in the target location, with one issue. It doesn't install the ASHX file or the web.config.
Publishing the web app to the target location works as expected (includes both DLLs and the ASHX/Config files).
Is there something specific I need to do for the Web setup to include the ASHX/Config files?
im now using FancyUpload (flash upload) to allow user to upload files in a small project. I use Generic Handler to handler in server when user uploads his file, but i'm getting error: Can't get session in Generic Handler (.ashx) when using Firefox or Chrome etc except IE I read so many solution and finally found out that Flash has some bug that can't send cookie in Firefox or Chrome except IE, Maybe i can check the session in Flash before it's start to send the file to the server or check session in Generic Handler before save it
View 2 RepliesI am new to MongoDB and have a perfect place in mind to use it. However, it's only worth it if I can make the queries from JavaScript and return JSON.
What's the easiest way I can implement a generic service/handler in asp.net/c# that would allow me to interact with mongodb via JavaScript? I understand JavaScript can't call mongodb directly, so the next best thing is what I'm looking for.
I am tring to call external web service through generic handler ,post some example code for the call webservice from generic handler .
View 1 RepliesIs there any way to start another service i.e i have a one service named XYZSERVICE using this service i want to start another service i.e PQRSERVICE...
How can i do this ???
When i run the application locally it works fine but when i publish it n access from it it gives the error asEither the Crystal Reports registry key permissions are insufficient or the Crystal Reports runtime is not installed correctly.
View 2 RepliesI am creating a website with a secure login, here I have users who register for my web site with their Credentials. When the user finishes the registration process & logs in to his/her account, there is a button called activate. Unless they click the activate button, they can't progress. Upon clicking the button, an activation code is sent to the mobile no(as a sms), which the user has given during registration.. I am using net framework 3.5, asp.net,C# and SQL Server 2005, I am doing this with web service, I have got my web service, but its not that accurate.. here i am using web service from .. [URL] .. here i want to know how to send sms in asp.net using web service?
View 1 RepliesI was told to build a rest web service using asp.net so does the code below represent the same
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
[Code] ......
I have create one service.cs for insert record I want to call Service.asmx on button event i.e. when I click on button then insert the record in database
View 1 RepliesMy web service Return Files bytes Correctly .service Code is as Follows...
[WebMethod()]
public byte[] Download_Files_From_Database1(string File_ID)
{
try
[Code]....
when i hit url it gives required Output.but not using in above code
"HTTP data inspector Fiddler." what is the use of this and give me any article for how to use fiddler to monitor wcf service in detail
View 1 RepliesWhy it is not working?
internal static int AddCatalog(string name, Guid key, string userName) {
HttpClient client = new HttpClient();
client.BaseAddress = new Uri("http://localhost:25169/ScopraAdminRESTService.svc/");
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
[Code] ......
I have been creating asp.net application for accessing data from multiple service references, is it possible to access it with same namespace in Reference.cs file
View 1 RepliesI'm new to Visual Studio.NET . I need to integrate the crystal reports into an ASP.NET application. I generated Crystal report with the help of crystal report XI developer edition(Stand alone version and NOT from the one which comes from visual studio).
How to integrate this report with the web application.
We have quite a few reports which were developed earlier in Crystal Reports 8.5. We are now planning to use these reports in our web application developed in VS 2008 (C#).
What dlls are needed for calling 8.5 in the application and how should they be added to the application while shipping it to the client?
They are also struggling to get the code running. Would also need the code to call the report with parameters.
I am facing problem in MIGS(Mastercard Internet Gateway Service) 3rd party Integration in ASP.NET.
View 1 RepliesHow can we consume a web service using asp.net out put in json formate?
View 1 RepliesI am trying to implement webservice authentication using SOAP Header. how to provice single authentication which applied to all the methoads of webservice.
Example :
public class Service:System.Web.Services.WebService
{
public AuthSoapHd spAuthenticationHeader;
public Service()
[code]....
On this sample it has only one method and based on the username and password mataches it provides access. As like this there are plenty of web methoad's in my webservice and i don't want to check the username and password on all the methoads. instead i wanted to checkonce and provide access to all the methods.
I have already generated crystal reports but i've made them static. but now i want to make the user to select the criteria for generating the reports. for eg., in one of them i want to show monthwise data so user should be able to select the month and year and that would be passed as parameter and compared to the existing data. provide me with proper exact code that can be used for giving parameters in such a report using C#.
View 3 Repliesi want to remove the data and tags from wsdl file using asp.net with c#.. Am already uploading the wsdl file and displaying the content into text box.. I used this code for upload the file..
string str = "C:Documents and SettingsEGCDesktopprakash.wsdl";
StreamReader objstream = new StreamReader(str);
TextBox1.Text = objstream.ReadToEnd();
know diff between exporting in microsoft excel(97-2003) and microsoft excel(97-2003) data only.
View 1 RepliesWhat is the difference between generic and non-generic collection?
View 1 RepliesI am create a simple report in visual studio 2008 by using crystal report. when I am run locally its work fine but when i copy web site and run this report its show following error.
Server Error in '/xyz' Application.
Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. review the specific error details below and modify your configuration file appropriately. Parser Error Message: Could not load file or assembly 'CrystalDecisions.CrystalReports.Engine, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.
Source Error:
[Code]....
[Code]....