WCF / ASMX :: Send Output Of Web Service From Xml As An Attachment To An Aspx Page?

Apr 8, 2010

i have designed a web service which would create 2 csv files on the system. I want to send the links to the location of the files as an url attachment over the aspx page.

like : http://myserver/download.aspx?file1=C: empimage1.png&file2=C: empimage2.png

the output from the asmx web service is : [Code]....

where xx.xx.xxx.xxx is the ipaddress. this is the whole output i get from the webservice.

how do i get the aspx page to send the attachment in the format i mentioned above? I have added an asp website to the project and added the webservice as a web reference to this but i do not know how to get the location from the xml output file of the webservice result.

View 2 Replies


Similar Messages:

Web Forms :: Export ASPX Page To PDF And Send It As Attachment In Email

Sep 13, 2012

I want to send aspx page via email. So i converted it into pdf. The problrm is the pdf is getting created before the data is saved. So when i open the pdf my testboxes are empty. Below is the code am using. Also I want to send the pdf file as attachment.

protected void SendMail() {
var userName = "anusha-4.n-4@cognizant.com";
var toAddress = YourEmail.Text.ToString();
const string Password = "Mypassword123#";
string subject = YourSubject.Text.ToString();

[Code] .....

View 1 Replies

WCF / ASMX :: Unable To Retrieve The Attachment From Soap Message Returned From SAP XI Service

Oct 28, 2010

I am trying to get attachment from the SAP XI Web Service which is returning the following soap response..

--SAP_db9e7598-e284-11df-9fcf-001125a6de68_END

View 1 Replies

WCF / ASMX :: Calling A Web Service On A Remote Server From A ASPX Page (website Project VS2005)?

Aug 30, 2010

I am maintaining a web site project in VS2005 and have to call a new web service on a remote server. I've done add web reference, and created the .wsdl and .discomap files in the app_webReference folder. When I try to create a object representing the web service in the code ( wsnamespace.serviceName ws = new wsnamespce.serviceName(); ) the code wouldn't compile.

The web site project is already calling other web services. When I right click on the type representing the web service and "go to definition" it takes me to a proxy class (derived from of course SoapHttpClientProtocol) in the metadata. I think this is what's missing for the new web service i'm trying to call. Have I missed any steps?

View 1 Replies

Finding Tutorials About Asmx Service With Xml Input And Output?

Jan 20, 2010

I need to write an asmx service that takes the xml file as input and also gives an xml as output which are validated using an xsd..

I was trying to read about the services that accept xml inputs and return xml outputs.. but all in vain, I couldn't find a proper tutorial and sample codes to work on..

Can anyone give some links to some nice tutorials and samples with asmx services accepting xml data and returning xml data..

View 5 Replies

WCF / ASMX :: Return Dynamic / When Returns To Aspx Error At Aspx(no Exception Gets Caught At  @ Service)?

Feb 9, 2011

In our project WCF service is acting as our BLL.

i had scenario where i had to fill list of object class without knowing its type see code:

Added contract

[OperationContract]
dynamic GetReferenceTableData(string tableName);

method in service:

public dynamic GetReferenceTableData(string tableName)
{
try
{
dynamic tableData = ReferenceTableDAL.GetReferenceTableData(tableName);
return tableData;
}
catch (Exception ex)
{
throw;
}
}
method at DAL(ReferenceTableDAL):
public static dynamic GetReferenceTableData(string tableName)
{
Database db = DatabaseFactory.CreateDatabase(Flags.ConnectionStringKey);
DbCommand dbCommand = db.GetStoredProcCommand("USP_GETTABLEDATA");
dynamic objDynamic = null;
if (tableName.ToLower() == "a")
{
objDynamic = new List<A>();
}
else if (tableName.ToLower() == "b")
{
objDynamic = new List<B>();
}
else if (tableName.ToLower() == "c")
{
objDynamic = new List<C>();
}
try
{
db.DiscoverParameters(dbCommand);
dbCommand.Parameters["IN_TABLENAME"].Value = tableName;
DataSet dsTableData = db.ExecuteDataSet(dbCommand);
if (tableName.ToLower() == "a")
{
foreach (DataRow dataRow in dsTableData.Tables[0].Rows)
{
objDynamic.Add((A)dataRow);
}
}
else if (tableName.ToLower() == "b")
{
foreach (DataRow dataRow in dsTableData.Tables[0].Rows)
{
objDynamic.Add((B)dataRow);
}
}
else if (tableName.ToLower() == "c")
{
foreach (DataRow dataRow in dsTableData.Tables[0].Rows)
{
objDynamic.Add((C)dataRow);
}
}
}
catch (Exception ex)
{
throw;
}
return objDynamic;
}
@ Aspx
try
{
using (DataServiceRef.DataServiceClient petService = new DataServiceRef.DataServiceClient())
{
dynamic tableData = petService.GetReferenceTableData(tableName);
//tableData is null ,exception
}
}
catch (Exception ex)
{
throw;
}

There is no exception at dal or service end when i debug list gets filled ok but when returns to aspx error at aspx(no exception gets caught at @ service) but exception at aspx i.e:

Message:The underlying connection was closed: The connection was closed unexpectedly.
Stack Trace: at System.Net.HttpWebRequest.GetResponse()
at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)

View 3 Replies

Controls :: Export Page To PDF And Send As Email Attachment?

Feb 24, 2014

I have the following code to convert page to pdf 

Protected Sub btnExport_Click(sender As Object, e As EventArgs)
Response.ContentType = "application/pdf"
Response.AddHeader("content-disposition", "attachment;filename=TestPage.pdf")

[Code].....

But i want the file to save in the particular folder....

and send to an mail...

View 1 Replies

WCF / ASMX :: Best Way To "ensure" That A Web Service Is Only Called From AJAX On A Specific ASPX Page?

Oct 26, 2010

I have an ASPX page which hosts a Custom Control. That custom control needs to call an ASMX web service. I would use a PageMethod, if the fact that I'm calling from within a Custom Control didn't preclude that. I'm looking for some guidance on the most effective way to try and lock down the ASMX call such that it will only succeed for my users calling it from my ASPX page - and not for anyone trying to call it from elsewhere. I've seen various ideas around session variables and so on.

View 5 Replies

Web Forms :: How To Convert Html Page Into Pdf Format And Send Same Pdf As A Attachment

Aug 31, 2010

how to convert html page into pdf format & i have to send that same pdf by attachment.

View 1 Replies

WCF / ASMX :: Send Large DataTable From WCF Service?

Jan 10, 2011

I am trying to send System.Data.Datatable from a WCF service, to a C# Windows Forms application. When I execute, I get follwowing message:The maximum message size quota for incoming messages (65536) has been exceededThe datatable I am trying to send can get quite large. What would be the best approach to send the DataTable across without hitting message size limit, or in other words, what are ways around this problem?

View 2 Replies

WCF / ASMX :: Create A Web Service To Send Emails?

Oct 19, 2010

i am thinking to create a Web Service to send emails ,this is the first time i am using web service

View 1 Replies

WCF / ASMX :: Web Service That Will Receive Xml Request And Send Xml Response?

Aug 23, 2010

I am trying to create a web service that can do the following functionality:

Request XML

[Code]....

How can I create web service to do this.

View 1 Replies

WCF / ASMX :: Creating .Net Web Service To Send Multiple XML Files

Apr 27, 2010

I have to define a web method which will fetch XML documents from another web service based on the list of projects from the database. Now I need to send these XML documents in different SOAP envelopes. XML documents can be more than one.

View 1 Replies

C# - How To Send Json Data To Asmx (from Aspx) Using Jquery

Jun 21, 2010

i built contact form in aspx 3.5 and i'm using jquery to send it to web service (asmx).the web service need to return success or error code. the problem is that at the web method i get only single value and not array. I'm kind of new in ajax and i tried a lot of solutions but without any results.. please if you can only explain me the principle of what to do it also be good..this is the client side:

$(document).ready(function()
{
$("#submit").click(function(event)
{
[code].....

when i debug i see that the input parameter "name" contains only one string - i dont know how to get the full json string that i send to the service and contains all the form data - i want to desirialize it to string array or something like, and process it.

View 2 Replies

WCF / ASMX :: How To Call Php Web Service From .aspx Without Adding Web Preference

Jun 18, 2010

I have a following php web service (nusoap-server-struct.php):

[code]....

how to call php web service from .aspx without adding Web Preference

View 2 Replies

WCF / ASMX :: Create Web Service - How To Web Page Call Sales_Services.asmx

May 5, 2010

if i have the web application with many pages like add order page, edit order page, and delete order page actually they also interact with the Sql Server 2008 and i also create web service page call Sales_Service.asmx. i know just i need to put something like query into Web Method in Sales_Service.asmx but i have a lot of queries, i don't know which query i should put into it and how the web page call the Sales_Services.asmx

View 2 Replies

C# - Script Tag In ASPX Page Is Written Partially (output Stopped At Random)?

May 12, 2010

I have an aspx page where I put a script tag with .net "if" and "else".The problem is that the output gets cut at random points each time. Sometimes it's ok, sometimes I get cropped output.The code itself (Simplified example):

<body id="body" runat="server">
<form id="form1" runat="server">some HTML
<script type="text/javascript">

[code]...

View 1 Replies

WCF / ASMX :: How To Execute WebService Asmx Link From Default.aspx Page Link Using HTTPRequest And HTTPResponse

Nov 3, 2010

I have spent a couple of days on this one. I have an ASP.NET website that has Linkbuttons on

the Default.aspx page.. I added a WebService to the Website because later on the WebService will

subscribe to a Provider(Feed) of News, Sports and Weather and things like that. So when a Linkbutton

on the Default.aspx page is clicked it will connect to the link in the WebService which will load the News,

Sports or Weather onto the Default.aspx web page.

The problem is I can't get the LinkButton to execute the Link in the WebService. The link will call the page up

to where you see all of the Web References. But then if you want to execute one of those references you

have to click its link and the Invoke button that will follow. My questioh is how can the link on my Default.aspx

page execute the link in the WebService. Now I changed the LinkButton into an <a href> but I still can't execute

the link in the WebServices. I always use www.Microsoft.com as the link when testing and I wasn't sure about the return type

so I put "void" for an HTTPRequest, so below is the link from the Default.aspx web page and below that is he asmx file:

[code]....

View 2 Replies

Send Mail With An Attachment?

Mar 3, 2011

[Code]....

send a mail with an attachment in asp.net

View 1 Replies

C# - Send Pdf As An Attachment In Email?

Nov 23, 2010

My current application send an .rtf in an attachement. I wish to send pdf instead of that.Where in my code I should modify the same?

Below is my code

RichTextBox rtbReport = new RichTextBox(); //Creating instance of Richtextbox
AppResult objResult = null; //Object of Class
frmExaminationReport objReport = new frmExaminationReport(examinationID, ProviderID, PatientID, examType); // Object of Class
AddressBookDataTable dtAddress = null;
rtbReport.Rtf = objReport.RTF; // Entire Result is assigned to Richtext box class
frmMail objMail = new frmMail(); //Object of Mail Class
string directoryPath = Application.StartupPath + "\Temp"; //Creating directory
string tempFileName = "Report_" + DateTime.Today.Year.ToString() + DateTime.Today.Month.ToString() + ".rtf"; //Generating Name
FileStream fsReport = new FileStream(directoryPath + "\" + tempFileName, FileMode.CreateNew); // FileStream
fsReport.Write(ASCIIEncoding.ASCII.GetBytes(rtbReport.Rtf), 0, rtbReport.Rtf.Length); // Writing
fsReport.Flush();
fsReport.Close();
fsReport.Dispose();
objMail.MailSubject = examType + " Report"; //Mail Subject

Let me know if any inputs needed

View 1 Replies

MVC :: Send Email With Attachment?

Feb 28, 2011

I would like to send an email with attachement via form, and I can`t figure it out.

My View

[Code]....

My Controller

[Code]....

I get the FileNotFoundException, it is trying to search for the file name on the local machine insted of returning the user input, something like "C:\exemple.txt" .

I also use a jQuery Ajax email form, when I submit the form via ajax the fileAttachement is always null, is there any way around it ?

My Script

[Code]....

View 2 Replies

Send Memorystream As An Email Attachment

Mar 27, 2010

Im generating a PDF file. Normally I send this to the user using a .ashx file, where the user can directly download it from his browser (see that code below).

Protected Function getfile() As MemoryStream
Dim stream As MemoryStream = New MemoryStream
If document.PageCount > 0 Then
document.Save(stream, False)
'Context.Response.Clear()
'Context.Response.ContentType = "application/pdf"
'Context.Response.AddHeader("Content-disposition", "attachment;filename=TicketEZ_tickets_" + eventname + ".pdf")
'Context.Response.AddHeader("content-length", stream.Length.ToString)
'Context.Response.BinaryWrite(stream.ToArray)
'Context.Response.Flush()
Return stream
stream.Close()
'Context.Response.End()
End If

But now I want to send this file as an email attachment...how can I do that? I tried this, but that doesnt work...(Value of type 'System.IO.MemoryStream' cannot be converted to 'String')

Dim att As New System.Net.Mail.Attachment(getfile)
Msg.Attachments.Add(att)

View 9 Replies

Web Forms :: How To Send Mail With Attachment

Apr 27, 2016

I want coding for How to mail Send with attachment in using C# asp.net ....

View 1 Replies

Jquery - JSON Can Call Method In .aspx File But Not In .asmx (web Service) File

Jul 3, 2010

I am using JQuery & JSON (POST) to call webmethod. However I can call only webmethod located at aspx file but not in asmx file Below are sample codes

CustomValidate.asmx
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.ComponentModel
Public Class CustomValidate
Inherits System.Web.Services.WebService
'ACCESS VIA JSON
<System.Web.Services.WebMethod()> _
Public Shared Function AJAX_Test(ByVal date1) As Boolean...
Return True
End Function
End Class
Javascript: JQuery JSON
function isDates(source, arguments) {
var isValidDate;
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "CustomValidate.asmx/AJAX_Test",
data: '{date1: "' + arguments.Value + '"}',
dataType: "json",
async: false,
success: function(result) {
isValidDate = result;
},
error: function(httpRequest, textStatus, errorThrown) {
alert("status=" + textStatus + ",error=" + errorThrown);
}
});
arguments.IsValid = isValidDate;
}

It always return javascript undefined error. But if I put the AJAX_Test webmethod in aspx page and replace the url: "CustomValidate.asmx/AJAX_Test" to "mypage.aspx/AJAX_Test". It works fine.

View 1 Replies

Web Forms :: Unable To Send Mail With Attachment

Feb 26, 2010

I am getting following error .when i try to send a mail with attchment.

Event code: 3005 Event message: An unhandled exception has occurred. Event time: 2/26/2010 4:42:47 AM Event time (UTC):

[Code]....

View 6 Replies







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