0
votes
0answers
41 views
How to do Interceptors / Handlers in JAX-WS RI without using annotations?
We are using the Sun RI for JAX-WS (2.1.4) and we have a need for orthogonal web service endpoint interceptors (authentication, extracting SOAP headers for context, etc). Apparentl …
0
votes
1answer
34 views
How can you handle cross-cutting conerns in JAX-WS without Spring or AOP? Handlers?
I do have something more specific in mind, however:
Each web service method needs to be wrapped with some boiler place code (cross cutting concern, yes, spring AOP would work grea …
2
votes
3answers
92 views
call an eventhandler with arguments
Visual Studio 2008, C# 3.0.
I have a method below which calls an event handler. I would like to pass the two arguments received by the method to the event handler.
I would like …
0
votes
1answer
18 views
Microformat (hCard, hCalendar) parsing services
I'm about to write my own .ashx handler to receive hCard data and return a properly-formatted VCF file and - when I get around to it - to handle hCalendar events as well. I know t …
1
vote
2answers
68 views
http handler compression over iis
I found this article http://archive.webproasp.com/webproasp-27-20080620CompressingWebResourceaxdtoReduceYourWebsiteSize.html
and it explains how to compress axd files (and js file …
0
votes
3answers
110 views
What’s the difference between making a handler w/ ashx/axd and using something I made up myself in ASP.NET?
This is probably very simple but it's really confusing me. When I implement the IHttpHandler, I create a handler and then register it like so in the web.config:
IIS6 Portion:
< …
0
votes
1answer
61 views
event handlers javascript
I have some handlers to resize a box, I want to move the box according to the handle that was selected. What would be the best way of implementing this within the loop
for (var j …
2
votes
2answers
186 views
How can I make a Windows Explorer file preview screen in WPF?
I'm working on an application that will have attachments, and I would like to create a type of display like in windows Explorer, where you choose a "Details" view, and also show th …
0
votes
4answers
2k views
How to add event handlers to composite panels in GWT 1.6
This is probably a really simple thing, but I don't know how to implement the following.
package mods.client.resultSelector;
import com.google.gwt.event.dom.client.MouseDownEven …
0
votes
2answers
65 views
Do you use a query handler? If so, what tasks does it perform for you?
Several months ago my work deployed an in-house function that wraps the standard, php, mysql_query() function with additional options and abilities. A sample feature would be some …
2
votes
4answers
884 views
Data disappearing after ItemUpdate in Sharepoint with Office 2007 documents
I have a simple event handler with a ItemAdding event that changes a column value that I need in the ItemUpdated method. After uploading a word 2007 document (*.docx, *.pptx or xls …
4
votes
2answers
208 views
Is there an actual difference in the 2 different ways of attaching event handlers in C#?
In C# is there any real difference (other than syntax) under the hood between:
myButton.Click += new EventHandler(myMemberMethod);
and
myButton.Click += myMemberMethod;
?
