Web Services - Webservice/asmx/ashx/whatever Programming??

Mar 25, 2011

I need to build a proxy (maybe a bad description) that receives an XML file from a 3rd party, saves it, sends it on to another 3rd party, gets the response back and passes that back to the original 3rd party. Let's call that entire process a "unit".Should I use a webservice? A Generic Handler? Something else?

I might have to do 20 "units" per second, but I know that each "unit" may span 30 seconds to a minute each, so really, I mean that I need to be able to have 1200 of these "units" running at the same time, in all varying stages of the process that I described above.As far as the file saving goes, I eventually want to put this into a database, but I would imagine that writing the file is quicker than actually saving the data into a database, so I'll just have another process that isn't nearly as time critical as this grab the files and insert them into the DB at its own convenience.

The "app" will only consist of 1 page and it will be running under SSL. This will likely be the only thing on this server at any given time to ensure that this little process is not a bottleneck.What in .Net would be a good (fast and scalable) way to go about this? I don't have any effective limit on what I would need as far as hardware goes -- so I can get a screaming machine if it would guarantee no bottlenecks.

View 2 Replies


Similar Messages:

WCF / ASMX :: Can Start Windows Services Remotely Using Webservice

Feb 10, 2011

how to start or stop the windows services of a remote system.

now what i need to know is, is there any possibility such that the windows services can be start or stop by using webservices.

suppose i have created a webservice in remote system which will keep on monitering the status of windows services present in that machine. now i will create a client service which will sends the service(windows service) name and action to be performed(that is starting or stopping the service).so is it possible to do in such a manner.

View 3 Replies

JQuery :: UI Autocomplete Not Passing Correct Querystring To Ashx Webservice?

Dec 29, 2010

Setup: I have a RadioButtonList with two listitems (One Street, the other Schools). These define what type of search I want. I textbox with associated autocomplete. First you select which search to complete, and then start typing and the autocomplete will make . Autocomplete goes out to ashx webservice which pulls a list from the database.

I have tested the webserver and it works properly, so I'm thinking the problem is with my jQuery UI autocomplete. <div id="divSelectOne" style="padding:8px 3px 8px 3px; border-bottom:1px dotted #cccccc; background:#f9f9f9;"> <span style="font-weight:bold; color:#369;">Select One:</span><br />
<asp:RadioButtonList ID="radSelect" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Text=" Street, City, Zip or Subdivision" Value="Street" Selected="True"></asp:ListItem>
<asp:ListItem Text=" School" Value="Schools"></asp:ListItem>

[Code]....

View 2 Replies

Web Forms :: Difference Between Using ASHX And ASMX

Feb 27, 2011

What the exact difference and complete between using ASHX and ASMX. What is the difference between them when using them to communicate with your database from Javascript.

View 1 Replies

WCF / ASMX :: Passing Variable From Dropdownlist.selectedvalue To Asmx Webservice

Nov 10, 2010

On my page I have a dropdown for country.

On my asmx service I want to get the value of the dropdownlist to filter the next input which will be state/providence.

My code on the asmx:

[Code]....

I want to add another clause to the WHERE statement to restrict Country = @Country so I will need to get that value to the web service.

View 2 Replies

WCF / ASMX :: Bulk Insert Data Into Asmx Webservice?

Feb 24, 2011

I have datatable consist of 20 records and i want to bulk insert into sqlserver through the asmx webservice. Can anybody guide to me or provide Sample BusinessLogic and webservice code.

View 1 Replies

Web Services - Authentication Problem Between Webforms App And A Webservice?

Mar 4, 2011

I got a ASP.Net webforms app which is using Forms authentication. It needs to authenticate against a webservice which uses windows authentication (+ impersonation).

I've tried (amongst other things) to supply credentials by using:
service.Credentials = new NetworkCredential(myUserName, thePassword, theDomain)

The problem is that I get 401 from the webservice no matter what I try.

View 2 Replies

Web Services - Fast Segmented Downoad Of File Through Webservice?

Mar 15, 2010

Im doing this project where i need to download files through a webservice (images, videos). The download MUST go through an existing webservice. The existing webservice was made when there were no need to upload and download files but the project has changed and now we need to do It through a webservice.Right now I have implemented the download as a method that returns a byte[], I open a streamreader and resds the entire file into a byte[] and returns it to my method. This is working file on small files <~1Mb, above it takes too long time. I want to show some progress (e.g. when the user downlaods a 20Mb video) which i cannot do right now. And i want to make it download much faster (is a strategy to use multithreading and several threads that downloads a part of the file?). It is within a WPF application i need to do this.

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

WCF / ASMX :: How To Use Web Services

Jul 17, 2010

i want to know, how to use the web services in asp.net project

View 2 Replies

ASMX :: Books For Web Services, And WCF

Jul 28, 2010

I need a book or two to get a good understanding of web services, starting from very basics, and going upto WCF. I've been using c# for 2 years and have intermediate level of experience with the language.

View 1 Replies

WCF / ASMX :: How To Distribute Web Services

Sep 21, 2010

Using ASP.NET 3.5 /C# / VS 2008.

I have written some web services that I want to make available to others by subscription. The subscribers need to use the service from a specific domain / IP address and also authenticate with a user Id and password.

What exactly should I distribute to the subscriber so they can use the services, while exposing the least about my code?How can authenticate a consumer of services without always passing an Id / password for each service?

View 3 Replies

WCF / ASMX :: Difference Between Web Services And WCF?

Feb 8, 2011

I learned from internet that webservices can be invoked only by HTTP whereas WCF can be invoked by HTTP,TCP,et., can i know the difference between them

View 4 Replies

WCF / ASMX :: How To Learn Web Services

Aug 6, 2010

These days I see that every other job posting requires LINQ and WCF. I have spent lot of time on LINQ, was fun to learn.

Now I want to move on to Web Services and WCF. After goggleing for some time, I am not sure either go for web services or WCF.

View 2 Replies

WCF / ASMX :: Host Web Services In IIS 5.1?

Mar 2, 2011

I've created Web Services in .Net 3.5 & Consumed those Web Services in a Client Web Application. Now i want to Host the WebService in IIS 5.1. I'm very new to .net, I'm using VS 2010, Wndows XP Service Pack 3, IIS 5.1;

View 15 Replies

ASMX :: WCF Services To Talk To Each Other?

May 5, 2010

I have a wcf dataservice that talks to a silverlight client and a wcf service library that talks to a chat client.How can i get the two services to talk to each other?

View 3 Replies

WCF / ASMX :: Impersonation For Web Services?

Mar 18, 2011

From my following code snippet:

ExchangeServiceBinding binding = new ExchangeServiceBinding();
binding.Credentials = new NetworkCredential(username, password);
binding.Url = "http://servername/ews/exchange.asmx";

The above web services throws Unauthorized Access Error (Error : 401) for newly created users.I would like to know how to impersonate this user for accessing this exchange web services.

View 1 Replies

WCF / ASMX :: End Point URL In Web Services?

May 12, 2010

What is End Point URL in Web Services?

View 1 Replies

WCF / ASMX :: Microsoft Dynamics GP Web Services?

Jul 7, 2010

Microsoft Dynamics GP is installed on my system..can I access GP web services?...If I can,how it is possible

View 1 Replies

WCF / ASMX :: Web Services Do Not Support Datareader?

Dec 25, 2010

why does web services do not support datareader? plz explain it ,it's urgent .

View 3 Replies

WCF / ASMX :: How To Communicate With Other Applications In Web Services

Nov 22, 2010

How to communicate with applications which build in lets say SAP,Java,Ruby or any other technology through web services

View 3 Replies

WCF / ASMX :: Starting Integration With Web Services?

Mar 25, 2010

I'm having my first experience with Web Services with .Net. I received from a client an integration manual to consume a web service they have.

In this manual I have the following information:

Request Interface: [URL]

Using SOAP request would return a XML Document with the response.

WSDL: [URL]

Request XML:

[Code]....

There's also XSD for the response XML.

Well, I'm having a little trouble trying to figure out how to consume this web service.

I found a topic here pointing to a MSDN article. There it says that I would have to add a Web Reference for this web service, but in my case this web service is external. Do I really have to add this reference to consume the web service? If yes how do I do that?

Next I have to create the XML Document that will be sent with the SOAP request. But here's a question. Searching on the internet I found mainly two types of request XML. I don't know wich one I should use.

The first one would be:

[Code]....

The second one is a XML file with soap:Body, soap:Header, soap:Envelope, etc.

Wich one should I create with my application in order to consume the web service? If it's the second one, how would look the XML for the data of the first XML?

And finally, how do I send the Soap request? As I said above, I found a MSDN article but it assumes I'm adding a web reference to the web service on my project and I belive that in my case I won't add this reference. So, how do I consume this web service?

I'm kind of lost here and really really soon I will have to estimate how long will take to develop the web service consume code.

View 3 Replies

WCF / ASMX :: How To Access Profiles From Web Services

Aug 22, 2010

I have a simeple web service set up to call from JAVASCRIPT. That works. Can someone tell me how to access profiles from a web seervice. I get arofileCommon could nt be found......I have included the following in the service but it doesn't seem to solve the problem:

View 1 Replies

WCF / ASMX :: Can Access Both Web Services And Database

Jan 4, 2011

Can we access a DB through Web Service?If yes wd u explain the difference with usual DB accessing with web page?

View 2 Replies

How To Make Web Services Secure In C# Both The Asmx And On WCF

Jan 25, 2010

How to make web services secure in asp.net both the asmx and on WCF. Currently we have web services and now are in process of converting them to WCF in some modules in our application. Now as upgradation is in process we like to incorporate security on the web services as we intend to open some of them to all our clients via web (they contain both asmx and WCF as well).

View 1 Replies







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