0
votes
0answers
8 views
Calling biztalk pipeline component from .NET C#
Hi All,
Currently decryption/encryption and signature validation is implemented in my BTS application by using custom pipeline component which internally uses pipleline assembly t …
3
votes
15answers
756 views
Benefits of using short-circuit evaluation
boolean a = false, b = true;
if ( a && b ) { ... };
In most languages, b will not get evaluated because a is false so a && b cannot be true. My question is, would …
1
vote
3answers
75 views
C# Stream Design Question
I have an appliction right now that is a pipeline design. In one the first stage it reads some data and files into a Stream. There are some intermediate stages that do stuff to the …
3
votes
1answer
134 views
Parallel pipelining
(fileNameToCharStream "bigfile"
|>> fuse [length;
splitBy (fun x -> x = ' ' || x = '\n') removeEmpty |>> length;
splitBy (fun x -> x = '\n') keepEmpty |>> …
0
votes
1answer
124 views
Importing Maya ASCII to game
I am currently working on creating an import-based pipeline for my indie game using Maya ASCII .ma as source format and my own format for physics and graphics as output. I'll keep …
0
votes
1answer
88 views
How do I set BTS.Operation in a custom pipeline?
Up until now I've only been using orchestrations in my BizTalk application and it's been working fine so far. But now I want to convert some of the unnecessary orchestrations to pu …
0
votes
1answer
115 views
How can I test client pipelining in java?
Can anyone suggest a simple setup of a servlet in java that supports pipelining?
(It is for unit testing, so simplicity is better than scaleability).
0
votes
0answers
5 views
Adding Connection to PipelineComponent
I am writing a custom PipelineComponent for SSIS, and need to access a connection as defined within the package connection manager. I have tried using the AcquireConnections method …
1
vote
1answer
82 views
Non-blocking HTTP requests in object-oriented PHP?
I have a PHP client application that is interfacing with a RESTful server. Each PHP Goat instance on the client needs to initialize itself based on information in a /goat request o …
0
votes
3answers
118 views
Is it possible to use the pipeline operator to call a method on a returned object?
Is it possible to call a method on a returned object using the pipeline infix operator?
Example, I have a .Net class (Class1) with a method (Method1). I can currently code it like …
1
vote
2answers
81 views
Best way to stop Firefox pipe-lining from messing up my stats
I've noticed that my pageview counts are being messed up by the pipe-lining feature in Firefox. People who visit using Firefox with pipelining enabled count two (or more) times fo …
1
vote
1answer
22 views
IIS 7 Applications and asp.net - newbie question
Just getting started on a project to migrate from win 2003 iis6 to win 2008 / IIS7, and after reading the MS documentation and also various articles I am a little confused, as it s …
3
votes
3answers
141 views
Efficient XSLT pipeline in Java (or redirecting Results to Sources)
I have a series of XSL 2.0 stylesheets that feed into each other, i.e. the output of stylesheet A feeds B feeds C.
What is the most efficient way of doing this? The question reph …
2
votes
3answers
144 views
C# -Pipeline Style event model
In ASP.NET Web Apps , events are fired in particluar order :
for simplicity Load => validation =>postback =>rendering
Suppose I want to develop such pipeline -styled event
…
9
votes
6answers
2k views
How do you determine if WPF is using Hardware or Software Rendering?
I'm benchmarking a WPF application on various platforms and I need an easy way to determine if WPF is using hardware or software rendering.
I seem to recall a call to determine …
