Tagged Questions

Middleware and BPM products by Software AG, including Integration Server, Broker, myWebmethods Server.

learn more… | top users | synonyms

6
votes
1answer
1k views

ASP.NET WebMethod Returns JSON wrapped in quotes

I have an asp.net page with a WebMethod on it to pass JSON back to my javascript. Bellow is the web method: [WebMethod] public static string getData(Dictionary<string, string> d) { ...
5
votes
4answers
3k views

ASP.NET Web Forms jQuery AJAX Pass Multiple Paramaters to Web Method

I am calling a Web Method in the code behind with a Method Signature that has 4+ strings accepted. I am creating a params variable and using it to add all input fields I want to pass to the method. ...
4
votes
2answers
2k views

Programmatically call webmethods in C#

I'm trying to write a function that can call a webmethod from a webserive given the method's name and URL of the webservice. I've found some code on a blog that does this just fine except for one ...
4
votes
2answers
582 views

Adding Entity Framework entities (one-to-many) in JSON via ASP.NET WebMethod

I am currently working on a project utilising both the Entity Framework (the version packaged with the .NET Framework version 3.5 SP1) and lots of AJAX-based functionality, which I am implementing ...
3
votes
1answer
380 views

Send a JS Array = {} to C# (WebMethod)

Actually I have a Array declared on JS side like below: var benefArray = {}; var benefCount = 0; var benefNome = $('#txtBenefNome').val(); var benefDataNasc = $('#txtBenefDataNasc').val(); var ...
3
votes
3answers
968 views

Pass array of parameters to a web method

I would like to pass some parameters to a web method as an array. The web method's signature does not have the params keyword. I have a variable number of parameters (as the web method accepts) so I ...
3
votes
1answer
644 views

Error when passing quotes to webservice by AJAX

I'm passing data using .ajax and here are my data and contentType attributes: data: '{ "UserInput" : "' + $('#txtInput').val() + '","Options" : { "Foo1":' + bar1 + ', "Foo2":' + Bar2 + ', "Flags":"' ...
3
votes
1answer
125 views

What happens to orphaned/killed async AJAX WebMethod or PageMethod calls?

What happens behind the scenes if I make an AJAX PageMethod or WebMethod call from, say, "Default.aspx" and then I quickly navigate away to a different page, say, "Settings.aspx" before the initial ...
3
votes
2answers
557 views

How Can I Actually Use The JQuery Validation Remote Validation in ASP.NET Web Forms

I have searched everywhere, and I can't seem to find a solid example. Is anyone doing this? Can anyone provide and example of calling a remote validation using the JQuery validation plugin through a ...
3
votes
2answers
564 views

ASP.NET Client to Server communication

Can you help me make sense of all the different ways to communicate from browser to client in ASP.NET? I have made this a community wiki so feel free to edit my post to improve it. Specifically, I'm ...
3
votes
1answer
785 views

WebMethod return as String (without <?xml tag)

[WebMethod(EnableSession=true)] [ScriptMethod(UseHttpGet=true, XmlSerializeString = false)] public string RaiseCallbackEvent(string eventArgument) returning value started with <?xml. How can I ...
3
votes
1answer
232 views

What is the simplest way to interact between a SAP OMS and Websphere Commerce?

Would it be using a Websphere Adaptor for SAP or webmethods or something else?? Does something else need to be considered while opting for one of these??? The final system needs to be synchronous ...
2
votes
1answer
66 views

C# - Looking for WebService Security like Spring Security

Is there any way to secure Web Methods in c# like Spring Security Annotations? something like: public interface MyWebService { @Secured("ROLE_USER") public void delete(int cid); } Thanks ...
2
votes
1answer
119 views

How to get the body element form the jQuery.load() response?

HTML: <html> <head> <title></title> </head> <body> <div class="mainContainer"> dgdhgdhgd <div ...
2
votes
1answer
210 views

Why is a Delphi 2007 ASP.NET AJAX call returning [object Object]

Has anyone successfully used the AJAX-enabled ASP.NET Web Application wizard in Delphi 2007 to make ajax calls? If so, what's the secret to making it work. I ask for two reasons. First, what I have ...
2
votes
1answer
1k views

How acess session in webmethod?

can i use session values inside a Webmethod? ps: i used [System.Web.Services.WebMethod(EnableSession = true)] but i can't access Session parameter like in this example: link text ...
2
votes
1answer
338 views

google maps onclick event to cause partial postback of asp.net page c#

I have used jQuery to invoke an AJAX webmethod in c#. This webmethod runs a query and stores the resulting information in a session variable. I have a gridview that has an objectdatasource that uses ...
2
votes
2answers
328 views

Page method multiple callbacks

I'm calling a page method on mouse over of an image slider to show an image from a database. The problem is I'm getting multiple callbacks. Does anyone know how to resolve this issue? Code which I'm ...
2
votes
3answers
185 views

How do I avoid web method parameters using proxy classes?

I have a serializable POCO called DataUnification.ClientData.ClientInfo in a .NET class library project A. It's used in a parameter for a web service defined in project B: public XmlDocument ...
2
votes
2answers
787 views

How to get SessionID on a request where EnableSessionState=“False”

I want to be able to get the SessionID of the currently authenticated session in a WebMethod function where EnableSession = false. I cannot set EnableSession=true on this request, because another ...
2
votes
6answers
1k views

Drools project idea needed [closed]

I was asked to make some drools traning for my teammates. Just to show them how it can be used and how usefull it may be. To do this training I first have to learn Drools, and I figured that the best ...
1
vote
2answers
66 views

C# ASPX Errors - “'Sys' Is Not Defined” - Caused by “GET https://domain/ScriptResource.axd? 404 (Not Found)”

I have a asp:ScriptManager loading a javascript file which handles some WebMethods so I can dynamically update data in my website. The site works locally for me but when I put it on a different ...
1
vote
2answers
38 views

De serialising JSON in webmethods

Based on the following code... A user can come along and add as many 'outgoings' as they like via a separate function. I then add a new 'li' to the DOM and auto generate the txt ID <ul ...
1
vote
1answer
64 views

undefined value when calling server code from javascript in asp.net

I'm calling a server method from javascript. I've tested the server method and it works correctly. when I call the server method from javascript i get an undefined value instead of true of false. ...
1
vote
2answers
119 views

How to determine current user's authentication status via WebMethod

Is it possible to determine the current user's authentication status via a public WebMethod? Here's what I've got so far: [WebMethod] public bool IsAuthenticated() { return ...
1
vote
2answers
264 views

Update GridView from a WebMethod

I need help with something, it might be a bot complicated, from in side a js file i call a WebMethods that does somethings, one of the things it does it calls some function that are located in a class ...
1
vote
2answers
106 views

What's a good way to prevent web method abuse?

I've been reading a lot recently about using jQuery to call ASP.NET page methods (decorated with the web method attribute) directly, rather than using ASP.NET update panels for my ajax requirements - ...
1
vote
2answers
92 views

Postback a page based on webmethods result

How can I post back to a page based on result of WebMethod ? function AssignmentConditionsSaveAS_Clicked() { var txtConditionName = $('input[id$="txtConditionName"]').val(); ...
1
vote
1answer
244 views

Calling ResolveClientUrl within a static web method (ASPNet Web Forms)

I'm currently having trouble finding a way to call ResolveClientUrl within the context of a static web method inside of a ASP.Net Web Forms page. I'm using jQuery Ajax calls to interact with ...
1
vote
1answer
272 views

Cannot reach web method with Flexigrid call from aspx page

I implemented the followig web method (file Notes.asmx): [WebMethod(EnableSession = true)] [ScriptMethod(ResponseFormat = ResponseFormat.Json)] public object getNotesData () { ...
1
vote
1answer
357 views

WebInvoke with UriTemplate with empty strings

How does the WebInvokeAttribute and UriTemplate resolver behave when supplied with empty strings in placeholders at runtime? The documentation doesn't seem to cover this. In some inherited code, I'm ...
1
vote
2answers
1k views

How to call ASP.net web method with Array parameter from jQuery Javascript?

I have the following ASP.net web method: [WebMethod] public static string SaveUserNew(string id, string[] roles) { doStuff(id, roles); } I'm calling this code from jQuery Javascript code, but I ...
1
vote
3answers
439 views

Unable to call webmethod in autocomplete textbox

aspx page code: <ajax:ScriptManager ID="ScriptManager1" runat="server"> <Services > <ajax:ServiceReference Path="MyService.asmx" /> </Services> ...
1
vote
2answers
316 views

Hide asmx web methods conditionally in C#

How can I conditionally hide the web methods? I don't want to expose the web method if a flag setup in web.config is false. If it is true, then I will expose the web method. Meaning: The method ...
1
vote
1answer
270 views

jQuery blank result from WebMethod

I'm trying to run a webmethod via a jQuery which will query an SQL database based on the contents of a pair of cascading dropboxes. I've attempted to call the method and grab the results using various ...
1
vote
2answers
109 views

Webmethods - Can it host its own web services?

Webmethods Integration Server can integrate systems and orchestrate different web services from external systems on the network. My question is: Is it possible to create Java code running in ...
1
vote
1answer
269 views

Why is the current thread's CultureInfo not being used when parsing a DateTime parameter on a 'WebMethod' call in ASP .NET?

I have an ASP .NET Web Forms application that makes use of the 'WebMethod' attribute for making AJAX calls from jQuery. I'm dealing with trying to localize the application so I recently created a web ...
1
vote
1answer
606 views

ASP.NET 4 jquery ajax webmethod call

In ASP.NET 3.5 I had this javascript on a page (default.aspx): function getMoreNewsItems() { $.ajax({ type: "POST", url: "default.aspx/LoadNewsItems", data: "{}", ...
1
vote
0answers
192 views

Displaying WebMethod in IIS Logs when calling ASP.NET Web Services

Is there an easy pattern to working with ASP.NET Web Services to get the WebMethod (or some other identifier) to show up in the IIS logs? On our middle/web services/app server tier, most of our ...
1
vote
1answer
688 views

JQuery AJAX post to asp.net webmethod never getting called

I have a web method in one of my aspx pages: [WebMethod] public static string AddDebt(int userId, int type, string description, float amount) And in the aspx page I have the JQuery ...
1
vote
1answer
232 views

ASP.NET WebService how to make a struct be treated as a primitive type for WSDL and serialization

This isssue may have several aspects so please read through first. Suppose that you have a stuct with a few small ints that pack well into Int64 and while you want to use your struct as a type in C# ...
1
vote
0answers
154 views

Webmethod not working when webservice published on other server - same data gives “Object Reference Not Set to an Instance of an Object”

Could it be a difference in .Net setup on server? Both have .Net 3.5 SP1 I can see both webmethods when I use url with .asmx name. Failing on Invoke... public int ...
1
vote
1answer
346 views

WebMethods not sending ACK/FINISH to IIS Web Services calls

We've reproduced this one in Test, so I feel good about asking this question - not that I understand it or anything. ;-) WebMethods is connecting to an IIS Web Service (I'm the IIS guy, and the ...
1
vote
3answers
400 views

Use python decorators on class methods and subclass methods

Goal: Make it possible to decorate class methods. When a class method gets decorated, it gets stored in a dictionary so that other class methods can reference it by a string name. Motivation: I ...
1
vote
2answers
3k views

JQuery, ASCX and webmethods not seems to be working

I have a cascading dropdown (3 of them) Type, Categories and Sub Categories. Type loads first and upon selection of Type, Category load and selection of Category, Sub Category loads. Also i have 2 ...
1
vote
7answers
1k views

How to get the instance name of an object

I use the below code to write code to query a web method in a specified interval. now in the this.Poll function I have to do this.tmo = setTimeout(this.strInstanceName + ".Poll()", this.iInterval); ...
1
vote
2answers
1k views

Simple AJAX not working

I have this AJAX code, but it doesn't seem to throw the 'alert' method. Instead, nothing happens. I looked at it with Fiddler and got this error message: {"Message":"There was an error processing the ...
1
vote
2answers
953 views

How do I pass optional parameters into a WebMethod via JSON?

I have the following JSON class I am intending to use to perform management calls on my database asynchronously: <script type="text/javascript"> var CalendarManager = { ...
1
vote
1answer
216 views

How to update multiple labels in an WebMethod (Asp:net / Ajax)

I have around 20 labels to update. In relation to performance and padeload-weight, I choose WebMethods to realize it (Much smaller then updatepanel + timer). So, how to update a lot of values in the ...
0
votes
2answers
22 views

Pagemethod doesnt work from asmx file rather aspx any suggesion?

I am using simple json method for calling webmethod but it works with aspx file ie url: 'myclass.aspx/myfunction' but it doesnt work if I put same function in an asmx file and change url to asmx. ...

1 2 3