WCF / ASMX :: Price Share Of Reliance Close At 4pm?
Sep 13, 2010
i am a share thader and a develpoer i want a web service which can give me opening and closing price of a particular company.i use the side www.moneycontrol.com for share threading.threading start at 9amand cloase at 4pm.so on this time a webservice shold give me at what price shareof reliance open at 9am and at what price share of reliance close at 4pm.is it possible and at 4 pm in closing time of share market price of reliance share is 400Rupee.so how i can determine with the help of web service
View 3 Replies
Similar Messages:
Aug 30, 2010
I need to get a share price of a company in stock market from this site, [URL] I need to show it in my Webpage in a Webpart
View 1 Replies
Jul 13, 2010
how to consume a webservice from Brazilian Correios (kind of USA Fedex).
The Web Service address is [URL]
The instructions says that I need to use the method CalcPrecoPrazo and send those parameters listed below (I already filled the variables with the correct content to help you use that webservice).
Dim nCdEmpresa As String = ""
Dim sDsSenha As String = ""
Dim nCdServico As String = "41106"
Dim sCepOrigem As String = "87047130"
Dim sCepDestino As String = "80610320"
Dim nVIPeso As Decimal = 1
Dim nCDFormato As Integer = 1
Dim nVIComprimento As Decimal = 20
Dim nVIAltura As Decimal = 30
Dim nVILargura As Decimal = 30
Dim nVIDiametro As Decimal = 0
Dim sCdMaoPropria As String = "N"
Dim nVIValorDeclarado As Decimal = 0
Dim sCdAvisoRecebimento As String = "N"
The result will be send by the parameter RESULTADO.SERVICOS in a array format.
View 3 Replies
Jan 4, 2011
I want to pass some values to price method of provided webservice, but the parameter schema is like this:
[Code]....
how I must send the price parameter value? in array or as a class?
View 1 Replies
Jan 7, 2010
I'm building an application, my client wants me to create new control using AJAX. This control should look like thisThis control includes price(dolars and cents) and when user clicks on specific price(suppose 95 dolars and 33 cents) this price should jump inside to textboxs(one for dolars and one for cents)Does anybody have a clue how to implement this control creation??
View 4 Replies
Feb 27, 2011
I wrote small wcf service. Its working fine. I have one doubt if i want to share the address in lan to other person so he can consume the service of mine he can build the application. how can he access the service in local lan.
View 1 Replies
Mar 7, 2011
I have a web application that uses Windows Authentication, not forms, and has identity impersonate = true.
From an .aspx page, the following code can create a folder on a network share successfully but fails in my .asmx page.
dirPolicyFolder.CreateDirectory(ConfigurationManager.AppSettings("PolicyApplicationsPath") & strFolderName
I have confirmed that the same user is logged in both examples, permissions on the parent folder are set correctly, and the logged user has propper right to do this.
If I change the path to a local one, the asmx page can create the folder.Why would this fail when running in the .asmx page?
View 3 Replies
May 9, 2010
we are using WCF web service. My job is to create the client WCF service.
Sample 1
try
{
Serviceclient client = new Serviceclient();
client.GetOrders();
[code]...
Which the best place to close the connection. Is it in Server side or Client side?
View 2 Replies
Sep 14, 2010
i want to store openings and closing of the share market ...
how i will possible and how i can fetch these openings and closings.
View 1 Replies
Jun 21, 2010
I'm trying to create a partial .ascx control for login functionality. Is it possible to have it not rely on posting back to the host's controller? How can a situation like this be resolved with as little cupling as possible between the login view/controller and the host controller?
View 13 Replies
Jun 10, 2010
I need a code to have the ability to share my news on social networks.My site structure is in Asp.net and vb.net.
View 1 Replies
Jun 29, 2013
I am showing thumbnail images in dataList on a page of my website. When i click on any image they open in big size. How i will share(Facebook). that particular big size image. My code is given below:
<script type="text/javascript">
var CurrentPage = 1;
function GetImageIndex(obj) {
while (obj.parentNode.tagName != "TD")
obj = obj.parentNode;
var td = obj.parentNode;
[CODE]..
View 1 Replies
Dec 16, 2010
I have website which runs multiple threads. When user close the browser but threads are still running. How to kill/stop all thread in asp.net on browser close.
View 2 Replies
Mar 4, 2011
I have an ASP.NET MVC application that attempts to read a file in using a filestream and File.OpenRead().
When the path to the file is a share on the same workgroup, and I give access to NETWORK SERVICE for the share, this works perfectly as desired.
However, when the path to the share is a UNC path to a remote share within the LAN, with read permissions open for "Everyone", the "File.OpenRead()" method throws an exception saying "Could not find a part of the path".
In my test cases I'm debugging locally with the ASP.NET MVC app being given a UNC path to the computer that it's actually running on. It's a share on my C drive, being "Shared" with permissions to "Everyone" for read access.
Is there something in IIS that needs to be configured? If I try to impersonate, in this context, the impersonation doesn't matter because NETWORK SERVICE was the user trying to access the files when it worked for a share in the same workgroup.
View 2 Replies
Feb 5, 2011
I have a web page with paypal. In the page user add items to list then buy it. when user add item to list i block that item in stock until user buy or delete that item.Now my problem is when user add item in the list and then close the broswer from IE close button , the item get blocked. I want to rollback the added items when user close the browser from IE button.
View 2 Replies
Jul 15, 2010
Im new to ASP.net.Im currently developingecommerce website which is a wholesale website. According to requirements user can see the price only after log in to website.Eg:http://www.simplywholesale.co.uk /offer.116009.shtmlto develop this with with ASP.net
View 3 Replies
Jan 15, 2011
I have to display price for a product in the format of $1,949.00
Present iam displayng like this $1949.00.Using the following code
protected string fool(object x)
{
return "$" + Convert.ToDouble(x).ToString("0.00");
}
View 3 Replies
Feb 6, 2011
I have a repeater using paging (see code below) I want to be able to offer a button that sorts the results by price and one for alphabetical order. I'm not sure how to achieve this with my current system. Would it just be a case of altering the sql select statement on click?
Private Sub BindRepeater()
Dim dv As DataView
dv = CType(SqlDataSource3.Select(DataSourceSelectArguments.Empty), DataView)
PagedResults.DataSource = dv
PagedResults.AllowPaging = True
PagedResults.PageSize = 9
PagedResults.CurrentPageIndex = CurrentPage
lnkBtnNext1.Visible = Not PagedResults.IsLastPage
lnkBtnPrevious1.Visible = Not PagedResults.IsFirstPage
Repeater1.DataSource = PagedResults
Repeater1.DataBind()
doPaging()
End Sub
[Code...]
View 4 Replies
Nov 21, 2010
Say i have a Laptop for 600.00. Say i change it to $650.00. How do shopping carts handle that? Like do they store the price in the cart or the item? How do they make sure they get the price they wanted but not bill the customer the new change without asking them? Or do most store them in both?
I was thinking maybe i could store it in both.So if the current price is over the cart price for a item, don't remove it/bill them from their cart. Then after, tell them what was billed/email a receipt for the items that didn't change that was billed(say they had more then one item) and remove it from the cart. For the items that did change, say something like "Items left in cart due to price change, check if you still want to buy the items at the new price." So leave the items that changed in the cart but update the price in the cart.
I don't think the language should matter. Guess this is more of a logical type question. Do most shopping carts do it this way or is there a better way?
View 3 Replies
Feb 2, 2010
I have a catalog that hase standard pricing now i need to increase this to 5% for each product. this is the way i bind the data:
Price:<%#Eval("Price",
"{0:c}")%>
View 3 Replies
Mar 11, 2010
declare @FinallyGrandTotal float
declare @total float
set @total = 45.3699
set @FinallyGrandTotal = @total
in the above code ther is a total price 45.3699
I want add to FinallyGrandTotal this but with just 2 letters after the dot
that mean @FinallyGrandTotal = 45.3699
45.36 and not 45.3699
View 4 Replies
Jan 15, 2011
I am dislplaying the products on the grid and i need to sort the items based on Price
o price: low to high
o price: high to low
View 10 Replies
Jan 29, 2011
i am working through the MvcMusicStore Tutorial Version 2.0 from 1/12/2010. I do have an issue with the EDIT Screen. When trying to save an album i get the error "The field Price must be a number". The value of the Price was not changed, it contains e.g. 8,99. I donīt know where this error comes from and what i need to do to avoid this error.
View 4 Replies
Dec 3, 2010
i have a scenario where i have to remove the invalid character from price using c# code.i want the regular ex to remove the character or some thing good then this.
For Ex- my price is
"3,950,000 ( Ex. TAX )"
i want to remove "( Ex. TAX )" from the price.my scenario is that. i have to remove the any character from string except number,dot(.), and comma(,)
View 7 Replies
Jan 18, 2010
I have a page in my asp.net website which has a label that shows the price. I have used an Eval and used {0:c} to format the price, however the price is shown in $, can anyone let me know how to change this to Ģ sign rather $.
View 2 Replies