Is "XML SCRIPT" alive yet? [closed] - asp.net

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I heard about in ASP.NET AJAX in Action book.

XML Script is the name given to more than one unrelated technologies., ref http://en.wikipedia.org/wiki/XML_Script
One is a way to transform XML, like XSLT. That one is dead, but Ajax in Action wasn't talking about that.
The one that you are asking about is a Microsoft technology that puts XML into a script tag with a type of "text/xml-script" that has a family resemblance to WPF.
It got at least as far as the MS-Ajax Futures 3.5 release, Ref: http://www.microsoft.com/en-us/download/details.aspx?id=22457 which is a beta/preview. I imagine it got killed in favor of work on silverlight which isn't just WPF-like syntax in a script tag but really is WPF syntax, and then the failure of MS-Ajax to compete with jquery probably led to MS not pushing forward Ms-Ajax anymore, including xml script. And now it looks like Silverlight isn't being developed any further either.

Related

The paradigm of annotations [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
I'm new to Symfony and I was really surprised when I saw that very important parts of program logic are "hidden" in the annotations. Or actually in PHP comments. I understand, these annotations are used by the libraries, but is not it a bad solution overall - couldn't it be made differently? What is the logic behind that? From my prospective they make the code hard to understand, they are not processed by atom (or can I install some plugin for this?..), and it's overall strange idea. No?)
All That configuration can be stored in php/xml/yml files.
From my experience the idea of annotation is very convenient.
For example, you look at controller , and you see route (link to call controller action), data passed ( Parameter Converter).
If it is done right, you have all the important data in one place, just above your code.
Processing annotation by IDE it's a different story.
Check if there is any atom plugin for this , or change IDE that can handle this.
Personally, i'm using phpstrom , and i don't have any issue with annotations

Communication between Different programs in Different Computers (C# or Python) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I'm building a program that I want to be able to exchange information with other programs running in another computer. I started using C# and a library called SimpleTCP. The main issue is that is too simple and only send and receive messages.
I'm looking for something that I can predetermine functions that one or the other can call from each other.
I looked on google and stack overflow but I was unable to find an appropriated subject to study, what should I be looking for to learn this? Thank you
The most complete protocol for what you want is gRPC. There is a learning curve but worth it in my opinion. https://github.com/grpc/grpc
There is a way but it's little bit different
Such programs like this written in tow different languages
You can make a center database between the both programs
In this situation it's very easy to communicate and receive ,send data
You can mysql ,oracl, mariadb or any Database you prefer

Can I write go library to be used from another languages? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm writing relatively small, but not simple networking library which is going to be used at least from C,java,python,ruby and C#. Is there a way to make go bindings to the other languages the way in can be done form C? If not is there other way?
Right now, you can't write libraries in Go that can be used in other languages. Go has a runtime environment that does a lot of things (like sheduling go-routines, collecting garbage) for you. This runtime environment is written under the assumption that it controls the whole program. This assumption does not hold if Go code would be used from inside another language, as the Go library cannot influence the binary that uses it.
I imagine that a JSON service would do what you describe.
Have a look at the json test for a simple example
It wouldnt matter what languages you used to set and get data from your app

Artem GoogleMap vs Subgurim GoogleMaps [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
I know that many of you don't like these "vs" topics/questions but I am planning to develop new project which will use Google Maps API and I am not sure which of these 2 controls(wrappers) to use.
1st GoogleMap Control by Velio Ivanov(Artem)
http://googlemap.artembg.com/
http://googlemap.codeplex.com/
2nd GoogleMaps by Subgurim.net
http://en.googlemaps.subgurim.net/
Both controls looks to be better choice than the rest, but I am not sure which actually is the best.
I am looking for quite easy, lightweight and at the same time powerful and well documented control.
Has anyone ever used both of them? Did you have any problems with either? Did you have hard nut to crack as I have?
I will be very grateful for any comparison, advantages, disadvantages, problems etc. which may help me to choose.
Well, I have been using the Artem Map Control for some time and it has been very easy to work with. Additionally, it IS open source and the Subgurim control is NOT. If you use the Subgurim control in free mode you are exposing your program to ad's as their page says:
- Only for non commercial applications. Fully functional. No
limitations. With messages and HTML code comments from
GoogleMaps.Subgurim.NET.
I am upgrading to v6 the Artem Map Control after I write this

Create report in ASPX.NET by passing value? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Can you please direct me to a tutorial or other resource for accomplishing the following:
Index page lists 50 states. Onlick of a state Y, the report page (report.aspx) will display info related to state Y, pulled from database.mdb, interspersed in HTML text.
I am not even sure what the terms and controls I need to be working with.
Thank you.
UncleJune
Do you know how to create the report? That is the first step. After that it is just a matter of passing the required parameter from one page to the next. Several methods can be used to do this: Response.Redirect/Request.QueryString, session variable, etc.
This tutorial might help you:
Using the ASP.NET 2.0 ReportViewer in Local Mode
Dynamic reports with Microsoft local report engine

Resources