WCF / ASMX :: Passing UserToken?

Nov 30, 2010

I have the .asmx web service written in .NET 2.0 .This service uses the WSE 3.0 .for authentication.This service checks the request header (header contains teh Uer name and pwd) and validate against the database.after validating gives cal to the actual method.everything works fine in frtamework 2.0.Now i have created the project.Added the proxy of the service into the project(proxy is created using svcutil.exe)but I am not able to pass the user credentials to the service.//Comment: Set the Username Token Information.'

View 4 Replies


Similar Messages:

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 :: Passing SessionID Using Web Service?

Jan 27, 2011

I'm running a WebMethod when a user clicks a link and I want the service method to have access to the clients SessionID but when I try to initialise a new string it returns a null value.

So to clarify(an example):

[WebMethod]
public string myMethod()
{
string s = Session.SessionID.ToString();
//rest of method here...
}

string s is returning null value. The code works fine on a postback and the method works without SessionID but I really want/need to be able to use a callback and need to be able to use the SessionID

View 4 Replies

WCF / ASMX :: Passing File To Webmethod?

Mar 23, 2011

I have some javascript that calls different web methods likeso

[Code]....

That's all fine & dandy but now i need to call a web method and pass it a file!

This is my current JS code

[Code]....

Now it jumps straight away to OnUploadFailed without ever going to the webmethod

View 2 Replies

WCF / ASMX :: Passing SoapHeader To Java Web Service

Feb 23, 2011

I have web service (.NET 2.0), in this i have added proxy class of my client's web service. Client's web service is in Java. I have to pass SOAP requet in following format

<soap:Envelope xmlns:soap="[URL]xmlns:xsd="[URL]xmlns:xsi="[URL]instance">
<soap:Header>
<AuthenticationToken xmlns="[URL]
<Username xmlns="[URL]XXX</Username>
<Password xmlns="[URL]YYY</Password>
</AuthenticationToken>
</soap:Header>
<soap:Body>
</soap:Body></soap:Envelope>
for this i have written following code but it's giving error as "Request must include authentication token"
-- code start--
public class WebService : System.Web.Services.WebService {
public WebService () {
//Uncomment the following line if using designed components
//InitializeComponent();
}
public MyHeader AuthenticationToken = new MyHeader();
public MyHeader MyHeader
{
get { return AuthenticationToken; }
set { AuthenticationToken = value; }
}
[WebMethod]
[SoapHeader("AuthenticationToken")]
public string HelloWorldTest1()
{
AuthenticationToken .Password = "username";
AuthenticationToken .Username = "password";
ClientWebServices s1 = new ClientWebServices();
string soapbody="";
string res=s1.addmethod(soapbody);
return res;
}// end of method
} //end of service class
public class MyHeader : SoapHeader
{
public string Username;
public string Password;
}
-- code end--

View 1 Replies

WCF / ASMX :: Passing Custom Headers To A WCF Request

Feb 10, 2011

I have the following code:

[Code]....

And on the server I do the following:

[Code]....And it's always null as if the header was never added to the request.

View 3 Replies

WCF / ASMX :: Passing UTF-8 Encoded String To SOAP?

Oct 6, 2010

I am using a third party Web Service. I am passing a string to a function in that service, that string, which i am reading from a UTF-8 text file. The problem it that the string contain some non ASCII characters.

Now if i save that text file to ANSI format, read it in a string and pass that string to Service then it works smoothly but with UTF-8 encoded string the service throw exception [Code]....

NON ASCII characters UTF-8 encoding SOAP

I am using ASP.NET.

Third party sevice is in java. I also tried it by making a web service in .net, but there was issue there too.

View 1 Replies

WCF / ASMX :: Passing Multiple Parameters To A Web Method?

Dec 15, 2010

I am creating a Web Service, which will be used by a client to send data to our Database.The client will be sending close to 30 fields that will be updated to our table. If I write a Web method, I will need to have all these 30 fields as parameters to that method. Is there a better way than sending all of them as parameters?

View 3 Replies

WCF / ASMX :: Passing Parameters To Webservice Method?

Nov 13, 2010

i have the following method, however i want to pass methods to it, i know how to do it the usual way, however when it comes to Webservices/API's what is the correct way to do it. Here is my method so far;

[Code]....

View 1 Replies

WCF / ASMX :: Passing A Web Service To A Method In Class Library?

Mar 23, 2011

I have a web service called service1. Is it possible to pass the parameter related to the service to a class library so for e.g.

Service1.service ws = new Service1.service();
Service1.UserDetails ud = null;

now if I call a method that exists in a class and pass ud. Cam i do that because I am trying to do this and I am getting an error. Do i need to add a web

reference to this service in the class library My method call is like this

authenticateUser.Authenticate(ud, UserName);

and in the class libary I have

public void Authenticate( Service1.UserDetails ud , string UserName)
{
}

View 3 Replies

WCF / ASMX :: Exposing Data Contract Without Passing As Input Or Output Parameter For Any Operation Contract?

Sep 21, 2010

I have a method in wcf which returns stream of custom object. I need to deserialize this stream at client side, but my custom class which is exposed as data contract is not visible through client proxy. When I add a dummy operation contract which returns the custome object I am able to get this custom class. I dont want to write this dummy method as there are many such custom classes.

Is there any way to expose data contract without writing any operation contract that returns or accepts data contract type object?

View 1 Replies

WCF / ASMX :: Passing Value From Web Application To Windows Application?

Aug 17, 2010

I have a web page where I used a gridview and a button.When selecting rows in the grid and click on the button another windows application fires.I need to pass the values of the selected rows to the windows application.

Rightnow I'm saving the values in an xml file and fetch the values in the windows application.But this is not practical when creating xml files with random numbers(Scan125.xml,Scan7867.xml,etc).

View 1 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

WCF / ASMX :: IIS Memory Increasing For Each Client Request In Asmx Web Service?

Nov 8, 2010

A customer reported that our asmx web service is continually increasing in memory (mem usage as well as private bytes). We are able to reproduce the problem in our lab with Windows 2003 Server SP2 (fully patched) on some of the machines. The customer is using Windows 2008.

We created a Hello World web service targeting the 2.0 framework built under VS2005 SP1 and a test client that continues to call it. The memory increases steadily - approximately 40K per client request. If the test app is paused, the memory remains the same. When it is closed, the memory drops. Explicit calling of GC.Collect does not drop the memory.

We have run the memory profiler on the service and the leak is all native memory. We have uninstalled/re-installed the Framework on one of the machines but no difference. To our knowledge all of the security and IIS settings are not modified. We have compared app pool, default web site and virtual directory properties to machines that have no problem and they are identical.

View 11 Replies

WCF / ASMX :: How To Call Asmx Web Service In A .net App From Classic Asp App Js File

Mar 17, 2011

I have a .net app developed in .net 4.0 version. And I implemented an asmx web service in this. Now I want to call one of the webservice method in another classis ASP application java script function.

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

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 :: Use MS Chart Control In .asmx

Apr 2, 2010

Can I use the concept of the MS Chart Control in a web service page? Basically I want to send some data to my web service then create a graph, save the image and send the image URL back to the calling device so it can be displayed. How can I accomplish this?

View 7 Replies

Passing A Value Through A Querystring?

Apr 27, 2010

Im having problems passing a value through a querystring that is split by a '&' eg :

?value=Apples & Pears

Only the "Apples" part is being picked up by response.querystring("value"). I have other values which are split by a space eg:

?value=red shoes which I can successfully extract "red shoes".

View 5 Replies

C# - What Is Passing Parameters To SQL

Jul 9, 2010

In this answer to my question of how to insert data into SQL Server he mentioned passing parameters instead of string concatenation like I currently have.

Is this really necessary for security? If so, what exactly is passing parameters? When i google it I get a lot about stored procedures. Is that what I want, I do not know about stored procedures....yet.

EDIT:

Ok, here is what I got. It seems to update the database correctly and eventually I will change the hard coded ints to inputs from a label. confirm if how I did this is not vulnerable to any sql injection or hacks.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Security;
using System.Data;
using System.Data.Sql;
using System.Data.SqlClient;
public partial class Stats : System.Web.UI.Page
{
public SqlDataReader DataReader;
public SqlCommand Command;
string queryString = ("INSERT INTO UserData (UserProfileID, ConfidenceLevel, LoveLevel, HappinessLevel) VALUES (@UID, @CL, @LL, @HL);");
//string queryString = ("INSERT INTO UserData (UserProfileID, ConfidenceLevel, LoveLevel, HappinessLevel) VALUES ('a051fc1b-4f51-485b-a07d-0f378528974e', 2, 2, 2);");
protected void Page_Load(object sender, EventArgs e)
{
LabelUserID.Text = Membership.GetUser().ProviderUserKey.ToString();
}
protected void Button1_Click(object sender, EventArgs e)
{
//connect to database
MySqlConnection database = new MySqlConnection();
database.CreateConn();
//create command object
Command = new SqlCommand(queryString, database.Connection);
//add parameters. used to prevent sql injection
Command.Parameters.Add("@UID", SqlDbType.UniqueIdentifier);
Command.Parameters["@UID"].Value = Membership.GetUser().ProviderUserKey;
Command.Parameters.Add("@CL", SqlDbType.Int);
Command.Parameters["@CL"].Value = 9;
Command.Parameters.Add("@LL", SqlDbType.Int);
Command.Parameters["@LL"].Value = 9;
Command.Parameters.Add("@HL", SqlDbType.Int);
Command.Parameters["@HL"].Value = 9;
Command.ExecuteNonQuery();
}
}

View 7 Replies

Passing More Then One Value With The Querystring With The Same Id?

Mar 7, 2011

I have a datalist that I want to list the Products that are comming from the Querystring. It works like this: Default.aspx/?ProductID=1
I get 1 product like I want.But I want to add more products like this Default.aspx/?ProductID=1,15,25 and get three products back. How do I make that to work?

<asp:DataList ID="DataList1" runat="server">
<ItemStyle VerticalAlign="Top" />
<ItemTemplate>
<a href="../Product/Default.aspx?ProductID=<%#Eval("ProductID") %>">
[code]...

View 1 Replies

Passing IDs Between Web Applications?

Jul 14, 2010

We have several web applications that create a shopping cart, save it to a database, then redirect to a centralized web application to process and accept payment for the shopping cart. Right now, we are using GUIDs for the shopping cart IDs and passing those GUIDs in the querystring to the payment application. We are using GUIDs so that a user cannot easily guess the shopping cart ID of another user and simply plug that ID into the URL.

Now, using GUIDs in the database is bad for indexing and using GUIDs in the URL does not truly prevent a user from accessing another cart. However, using passing integers around would make it too easy.

What is the best and most secure way to pass the IDs from the individual applications to the centralized payment application?

I know that some people may say, "Who cares if someone else wants to pay for someone else's shopping cart?" However, we have the same concern when passing IDs to the page that displays the receipt and that page includes the customer's name.

View 4 Replies

Passing A Wildcard Value As An URL?

Jan 10, 2011

My students are working on an ASP.net VB application for a Web Programming competition and we are having problems with a page where we want an URL string to return all values from our database.

Here is the page:

[URL]

If you use the jobs by category menu on the left side, if you select a job category (ie retail) it will pull up all the jobs from that category. By using a query in the URL like this:

[URL]

What we need is the URL that would show all jobs regardless of the category. I'm not sure how to do this with asp.net VB. I'm sure it's probably not all that hard, we just don't know the syntax to make it happen.

View 24 Replies

C# - Passing A 'var' Into Another Method?

Mar 28, 2010

I am probably totally missing the point here but....

How can I pass a 'var' into another method?

(I am using linq to load XML into an Enumerable list of objects).

I have differernt object types (with different fields), but the final step of my process is the same regardless of which object is being used.

XNamespace xmlns = ScehmaName;
var result = from e in XElement.Load(XMLDocumentLocation).Elements(xmlns + ElementName)
select new Object1
{
Field1 = (string)e.Element(xmlns + "field1"),
Field2 = (string)e.Element(xmlns + "field2")
};
var result2 = Enumerable.Distinct(result);

This code will vary for the different type of XML files that will be processed. But I then want to iterate though the code to check for various issues:

foreach (var w in result2)
{
if (w.CheckIT())
{
//do something
}
}

What I would love is the final step to be in a method in the base class, and I can pass the 'var' varible into it from each child class.

View 3 Replies

Passing An ID Between Pages?

Feb 22, 2011

I have a Default.aspx page in which I have bind a Grid. In the Grid is a button named Details.

I also have a Details.aspx which has a GridView. If I click the button that exist in Default.aspx, there appears an Details.aspx page which appears empty.

When click the Detail button of a specific row, there appears the details of that button clicked. I am not understanding on how to pass the ID to Details.aspx.

Details.aspx

<asp:GridView ID="DetailsGridView" runat="server" BackColor="White" AutoGenerateColumns="false"
BorderColor="#DEDFDE" BorderStyle="None" BorderWidth="1px" CellPadding="4" DataKeyNames="ID"
ForeColor="Black" GridLines="Vertical">
<FooterStyle BackColor="#CCCC99" />

[Code]....

View 2 Replies







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