Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
4k views

C++ to UML ( Reverse engineer / Round-trip engineering )

I am looking for a tool that can reverse engineer C++ to UML (and vice-versa). However, the crucial requirement is that it can correctly parse method (member function) bodies so that dependencies are ...
6
votes
4answers
189 views

batch http requests

Does anyone know a standard way to batch http requests? Meaning - sending multiple http atomic requests in one round trip? We need such mechanism in our REST API implementation for performance ...
2
votes
2answers
114 views

Round-trip time of AJAX v. Web Sockets

I would like to ask if I should expect some different round-trip time (sending some information to the server and recieving a response) when implemented with web sockets (message) compared to a ...
2
votes
3answers
356 views

Are there any tools that make keeping the UML models in-sync with the code completely seamless?

UML Round-Trip Engineering tools with seamless synchronization? The Rational suite purports to do it. But it's so pricey and clunky at drawing (worse than the Rose days) that it's not in the reach of ...
2
votes
4answers
300 views

What are the effects of an “XML Roundtrip” on Word 2003 documents?

Saving a Word 2003 document to XML and then back results in a reduced file size, and probably more that I don't know about. A diff on the WordML of the new document against the old shows differences ...
1
vote
1answer
33 views

When using Entity Framework Generate Database From Model column naming doesn't match legacy database

I have a legacy database that I am trying to fit new code over and when I try and round trip the schema using Generate Database From Model, I am getting column name mismatches on some of the tables ...
1
vote
2answers
171 views

Which UML tool can really round-trip java code?

Many UML tools claim to do forward / reverse engineering of Java code. However, it turns out from prior experience, that few tools really work in this area. I haven't been doing Java projects for 3 ...
1
vote
4answers
2k views

Do good multiplayer/mmo client<>server games use latency within movement calculations?

There's a couple of questions here. Imagine I have client A who's going to send the following message to Server: "START MOVEMENT FORWARD". The server will not receive this message instantly, as ...
1
vote
1answer
92 views

Client copying from server to same server, without roundtrip?

This is inspired by Does File.Copy() from a network share to another share on the same machine copy the file over the network? Is it possible, in .NET, for a client to get the server to copy a server ...
0
votes
0answers
74 views

Modify the version info of a built .Net assembly

I was wondering if there is anyone knowing a better way to modify the version info of a .Net assembly of the one I am currently using. My current approach is the following one: I do disassemble the ...
0
votes
0answers
87 views

Flash catalyst and Flash Builder round tripping for complex applications

Can anyone give me some tips for round tripping between flash catalyst and flash builder for complex applications that uses components not supported in flash catalyst? Let's say I have built my ...
0
votes
1answer
72 views

logging round-trip load times of requests

I am using a testscript to measure the round-trip times of a test page. I dont need the measured time to be accurate, I just want the trend to be stable so i can see the increase in load times under ...
0
votes
2answers
311 views

jEditable: Display Option Text (and not Value) after submit

I'm using jEditable on a Select list. It works beautifully, except for the following issue. jEditable displays in place whatever a server posts back after a submit. That works great for text boxes ...
0
votes
3answers
234 views

Sharepoint Web performance optimization

We are running on SSL on following server topology: 1 ISA (SSL Terminate/cache/proxy+AD authentication) 1 Sharepoint 1 IBM DB2 Database as enterprise/corporate DB 1 MS SQL Server as ...
0
votes
1answer
29 views

Where can I view rountrip information in my ASP.NET application?

I'm playing around with storing application settings in my database, but I think I may have created a situation where superfluous roundtrips are being made. Is there an easy way to view roundtrips ...
0
votes
1answer
44 views

Need help with designing a query in ELinq

This is my query: Dim vendorId = 1, categoryId = 1 Dim styles = From style In My.Context.Styles.Include("Vendor") _ Where style.Vendor.VendorId = vendorId _ AndAlso (From si ...