|
Suppose I have the following (rather common) model
Client invokes web service request -> request added to server queue -> server invokes 3rd party app via web service -> 3rd party app notifies server that event processing is finished -> server...
Started by Alex on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
For example if your middle layer needs to be able to call methods in the web service that it doesn't yet.
|
|
Here we go again... what low-margin business could they possibly have now that they sell friggin' supercomputers!!! If they can't find margins even at this high end, then perhaps it's the management and corp strategy that is the issue.
Silicon Graphics...
Started by sgifanatic on
, 15 posts
by 9 people.
Answer Snippets (Read the full thread at nekochan):
Same issue that has bitten....
It's not the margin, it's the total net income, which is margin x sales (very roughly) .
|
|
Made a quick stupid video on my repo from KSFO to KOAK. Yes I used the same song they all have just to be lame lol. Its a good song anyway.
Started by Inverted on
, 12 posts
by 7 people.
Answer Snippets (Read the full thread at jetcareers):
Nice video man....
Thought to myself I wonder what song it was haha .
Lol, its such a fun airplane!!! I will always miss the 99 once I move on to bigger and better things .
Inverted Damn you, I hadn't been missing my 99 since the last day I buttoned her up .
|
Ask your Facebook Friends
|
Since LinqToSql has been replaced by the Entity Framework, is the Entity Framework out yet?
Started by Blankman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Entity Framework for .NET 3.5 is part of .NET 3.5 SP1. .
Yes
Linq to SQL is not going to be replaced but to answer your other question, Entity Framework V4 Beta 1 is available to MSDN subscribers .
|
|
What (not yet existing) iPhone apps do developers wish to get more productive?
Let's do some brainstorming ;-)
Started by Stefan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Like an iPhone version of scrumd.com ..
One that does scrum project planning.
Gives you free money*
*takes off joke hat*
Make a new calendar app with week view that looks good .
|
|
In jQuery I want to be able to select an element that does not even exist yet, how can I accomplish this?
I would like to select an element by their id when they are created.
Thanks.
Started by LB on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
That don't yet exist using .live(); but other than that, I don't think you've got much of a solution.
|
|
Which of the .NET 3.5 namespaces is the most underutilized yet contains some of the classes and methods considered "must-know" for every .NET developer?
Started by Scott on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
They....
They are fun, easy, powerful, and there is a lot of important things based on them .
Developers should not be intimidated by generics at all.
Some developers using .NET 3.5 are, unfortunately, still not familiar with:
System.Collections.Generic .
|
|
The title kind of says it all. What does this mean, and how can I get around it?
SELECT MySequence.CURRVAL FROM DUAL;
Result:
ORA-08002: sequence MySequence.CURRVAL is not yet defined in this session
Started by Doug on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Doug,
The real question is why you need the currval when you haven't used a nextval in your session? You can look at the column LAST_NUMBER of the USER... .
It turns out that you can't use CURRVAL until you have used NEXTVAL at least once in your session .
|
|
What is the best way in Perl to copy files to a yet to be created destination directory tree?
Something like
copy("test.txt","tardir/dest1/dest2/text.txt");
wont work since the directory tardir/dest1/dest2 does not yet exist.
What is the best way to copy...
Started by Chris N on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Use File::Basename qw/dirname/; use File::Copy; sub mkdir_recursive { my $path = shift; mkdir_recursive(dirname($path)) if not -d dirname($path); mkdir $path or die "Could not make dir $path: $!" if not -d $path; return; } sub mkdir_and_copy { my ($from... .
|
|
The not-yet-commons SLL package for Java provides an OpenSSL object with a method for password based encryption:
encrypt("des", password, data);
This method is said to be compatible with the OpenSSL C library. My question is, what is the OpenSSL C++ method...
Answer Snippets (Read the full thread at stackoverflow):
Not-Yet-Commons-OpenSSL's ciphers.
The EVP cipher functions look like the closest parallel.
|