Tagged Questions
2
votes
2answers
26 views
How to change the root tag name in xml
I need to change the xml root tag name from "string" to "TramaOutput". How to achieve this
Thanks in Advance
public string ToXml()
{
XElement element = new XElement("TramaOutput",
...
0
votes
0answers
7 views
how to Frame a webservice xml output and how to set attribute to xml tag
I need to write a web service(asmx) and the web service has to generate a output like the below mentioned xml. Iam new to web service i don't have any idea about how to frame the xml and how to set ...
0
votes
1answer
9 views
CORS ASP.NET webservice from javascript
I'm trying to figure out how to make a regular html page (with javascript) get data from a WebService which I created in Visual Studio using Asp.Net. My final project is going to have the WebService ...
0
votes
1answer
9 views
WCF Web Service BLL for single ASP.NET app simplest approach
What is the simplest effective approach for securing a WCF Web Service built to be a combined DAL/BLL consumed ONLY by a single small ASP.NET web app?
Background:
I am relatively a web development ...
0
votes
0answers
12 views
preserving CRs when passing data to a web service
Does anyone know if an XML Parser will strip CR from a datalist or an arraylist field, if passed to a web service? I am currently encoding and passing each record individually, to prevent the CR from ...
0
votes
0answers
13 views
mix hebrew and english field get grambled
I got a form which cointain lots of fields in hebrew and numbers.
One of the field cointain both english and hebrew letters.
In the reciever side the hebrew data turn up ok ,but the mix field ...
0
votes
2answers
37 views
How to send large data to web service?
I have a web service and I am sending a large string (approx. size is 700000 characters) as a argument. I am calling this web service from javascript (ScriptManager).
Problem is that when string ...
-2
votes
1answer
30 views
Data stores in JavaScript or Jquery?
I am developing a site which retrieve few lists (like country, product, industry) from share point using a soap call, and load the drop-downs. Later there are few filtration and reload of country ...
0
votes
0answers
13 views
Perl ASP.net Web Service
So I'm working on a web service to do some functions with user accounts. In the end, it's going to be changing passwords, but right now I'm just trying to get the basics nailed down. This is my first ...
0
votes
0answers
35 views
ASP.NET web service - How to change payload?
Is it possible to change a payload of a Ajax call to an ASP.NET web service?
I have a class like following:
public class Foo
{
public int ID { get; set; }
public string Name { get; set; }
}
...
0
votes
0answers
6 views
How to add matrix elements of Matrix in ASP.Net WebServices
Iam facing a problem in addition of elements of matrix in Web Service.I want to add all element of a row in a matrix. I need to do this :
Sum
2 5 3 10
4 5 6 15
5 7 9 21
my code in ...
-1
votes
2answers
42 views
send email with web service
I want to ask if any one know how to send email with web service?
I mean, I have a App, and I will ask the user for one mail and a message, and I will resend that message to the email that the user ...
1
vote
1answer
25 views
passing a utf8 encoded string to web service
Can I pass a UTF8 encoded string to a web service?
UPDATED:
Function EncodeToUTF(ByVal toEncode As String) As String
Dim utf8 As New UTF8Encoding()
Dim encodedBytes As Byte() = ...
0
votes
1answer
18 views
Passing file stream from WCF to asmx web service
I am trying to pass a file from WCF to asmx web service. I have added reference of asmx service in WCF project... when I call the function in web service it shows the error
cannot convert from ...
0
votes
2answers
13 views
result comes out from a webmethod used in another webmethod in ASP.Net Web Services
I have two Problem related with Web Services by using visual studio..
[WebMethod(Description = "Matrix")]
public decimal[] matrixMethod(decimal num1, decimal num2, decimal num3, decimal num4, decimal ...