Crystal Reports :: How To Use Fiddler To Monitor WCF Service In Detail
May 7, 2015"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 Replies"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 RepliesActually i am creating 1 sofware in which i need to print bill. On that bill my page header (company's name) is constant & on Report footer (companys rule & some more data) is also constant. & my Detail section is varying. On bill if data is short, my footer goes upside.
I need to fixed my detail section so that position of detail section will be maintained.
or
I need to fixed my footer section so that position of footer section will be maintained.
now which is the solution form above 2? . and how to implement?
I have a current scenario where I have a master detail report for a single certain record in table in format
Record 1
detail 1
detail 2
detail n
Currently I have 2 details section with Record data in 1 section and a subreport in other section (details)
Now I want to have report for all records in table like
Record 1
detail 1
detail 2
detail n
Record 2
detail 1
detail 2
detail n
and so on.
How do I structure my report to have master details for all the records in the table ?
This is my image: - Plz checkout http://tinypic.com/r/dzxpa0/7
From the above image, i have one group header, Detail A and Detail B in my report.The detail Item and Header is merged and showing one detail A and Detail B item.But, I need the report to look like this ....
Detail A i have placed
S R
Pieces --- Header
I-VI 3/5
5 --- Details Items
VII-VIII 5 6
--- Details Items
VII-VIII 1/4 0.6-0.8
--- Details Items
Detail B i have placed
CustomerName DateOfIssue Article
John 3/7/2011
Nero
John 3/7/2011
Ne
John 3/7/2011
Co
I am new in crystal reports. I want to show main detail relationship in crystal reports like this
Main Records
CustomerID CustomerName ContactNo City
1 Shaiwal 7388898### Varanasi
Detail Records
CustomerID OrderID Quantity UnitPrice
1 1 50 500
1 2 30 1000
1 3 60 700
1 4 80 5000
I need to produce a report that will calculate values based on previous record field value and current record field value Can I store a field value say in a variable and then on the next detail line record have it accessed so I can say subtract current field value - previous field value from previous detail line? Where can I define this globial variable ?
View 5 RepliesI just started playing around with crystal reports. I created a report crystareport1.rpt and from the data base fields section I dragged and dropped empid, empname into details section. I want the report to show
empid empname
1 a
2 b
3 c
Like this . But now it is displaying
empid empname
1 a
empid empname
2 b
empid empname
3 c
Like this how can i get the desired out? One more thing on the button click I wrote
Response.Redirect("~/CrystalReport1.rpt");
But I am unable to open the report what should I do to see the report?
Order Table
Order No Date Product Qty Customer
A101 10-Oct-2010 Mac Book 10 John
A102 10-Oct-2010 I-Phone 25 Smith
A103 10-Oct-2010 I-Pad 40 Kallis
Here Order No is primary key
Order Detail Table
Order No Date Product Qty Customer Batch No
A101 10-Oct-2010 Mac Book 03 John B01
A102 10-Oct-2010 I-Phone 05 Smith B02
A103 10-Oct-2010 I-Pad 10 Kallis B03
A101 10-Oct-2010 Mac Book 02 John B04
A102 10-Oct-2010 I-Phone 07 Smith B05
A103 10-Oct-2010 I-Pad 15 Kallis B06
Here Batch No is primary key
The above table is just a sample table.
I have more than 1000 Order in my table. And for each Order there are at least 12 Order Detail is available in my Order Detail Table. It uses to take long time on loading the report for the first time. So, I thought to select Top 20 records from Order table. I have used the below query in crystal report command
Select Top 20 O.OrderNo, O.Product, O.Date, O.Qty,OD.Unit,OD.Rate from Order O
inner join Order Detail OD on O.OrderNo = OD.OrderNo
1. After execution of above query, I would like to know whether all the records from Order Detail Table will be checked during execution (OR) only matching Top 20 records of Order Table will be checked in Order Detail Table and executed?
2. How to use stored procedure in Crystal Report command?
3. What are the steps I need to take, to load Crystal report fast during first time page load?
Is 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
Why 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 RepliesWhat's up with difference between generic handler (ashx) and window communication foundation (wcf)? What their purpose?
View 1 RepliesTry to do the following .Have a service (MVC) that i run locally, so it goes like URL...The MVC looks like this:
Code:
[HttpPost]
public XElement MovieDetails([FromBody] MovieRequest MovieRequest)
{
return _movie.getMovieDetails(MovieRequest.movieid);
}
How do I call the movie id number from fiddler?I am trying it like this:
Or even like [{"MovieRequest":"1"}]
or <MovieRequest>000001</MovieRequest>
or <MovieRequest>000001<MovieRequest>
or <MovieId>000001</MovieId>
and i get this BS
I'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.
Iam working on a banking web application developed in asp.net 3.5 and MS SQL Server 2008.My problem is to create reports including some pre-formatted reports,summary reports and some detail reports.I want to know what is the best technique to create these reports.I don't want to use third party reporting tools as they have to be configured on the web server and some times they takes lot of time in generating reports due to their complex structure.Since its a web application having large recordsets so i need a consistent solution keeping in mind the performance and complex nature of the reports which might be demanded by the banks.Can anyone help me please in this regard?
View 2 RepliesI 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 Replies