Author Archive

Java Envy

I meet with a lot of our users in my role at Rogue Wave, and one of the things that I’ve heard from a few people lately is the term “Java envy”.  When I ask what they mean by that, they’re not referring to the language itself.  C++ developers like the control they have over memory usage and predictable performance.  What they’re talking about are the multitude of developer tools that are available for Java development. Rogue Wave has always strived to be the leader in providing C++ products and tools to make developers more productive.  One of our products, HydraEnterprise, continues that goal.  HydraEnterprise provides the ability to create, orchestrate and deploy services to a runtime.  It can create web services, as well as native C++ and Java services, BPEL, data access and others.  It also comes with some developer tools that make doing all those tasks much easier.  The tools are Eclipse plug-ins that allow you to create services within an easy to use GUI, taking advantage of the editors within Eclipse.  You can create WSDL files, generate service wrappers, orchestrate the workflow between services and deploy to the runtime very quickly.  If you would like to see this demonstrated, we have an online tutorial series where one of our sales engineers will create and deploy a C++ service in under 30 minutes.  Send an email to tutorial@roguewave.com indicating your desire and you will receive an email with the details for the next demonstration.

See the original post here: 
Java Envy


Amaya Also for RDFa

Irène Vatton has just announced the availability of the latest Amaya version, namely Amaya 11 . (For those who may not know what Amaya is, it is an open source (X)HTML browser and editor in one.) The interesting point in this release for Semantic Web users is that Amaya “understands” RDFa . What this means is that, when using the RDFa DTD (which is one of the DTD-s that Amaya offers for any new document), Amaya knows about all the RDFa attributes (i.e., @about , @resource , etc), i.e., one can use the usual user interface features of Amaya to add and edit them.

See the rest here: 
Amaya Also for RDFa


Adding a Google Sitemap to your WordPress Blog

sosinternetbusinesshelp.com Adding a XML Google sitemap plugin to your WordPress Blog

http://www.youtube.com/v/c9oDmSsOVfY&f=videos&app=youtube_gdata

Read the original here:
Adding a Google Sitemap to your WordPress Blog


SaaS Architecture and API Trends Webinar

Next week I will be participating in a Dr Dobbs webinar on SaaS.  The specific topic is about how SaaS platforms are evolving and what are emerging key architectural models for secure, reliable and interoperable SaaS APIs. The webinar is scheduled for: Broadcast date: Tuesday, December 16th, 2008 Broadcast Time: 1 PM ET / 10 AM PT / 18 GMT The registration page is available here at this link . I look forward to hearing from you at the webinar.  However, if you miss the live event you can access the webinar replay on demand through the registration page link listed above.

See the original post here:
SaaS Architecture and API Trends Webinar


Homogenous vs. heterogenous multi-core: hardware strategies (Part 2)

In the first installment of this post, I discussed the move that all of the major computer hardware vendors have made toward multi-core CPUs, and the resulting Multi-core Dilemma .  I then summarized their strategies in two categories: homogenous and heterogenous. In Part 2, I’ll talk about pros and cons of each approach and some things to think about as you plan your parallel strategy

Original post:
Homogenous vs. heterogenous multi-core: hardware strategies (Part 2)


Performance Comparison of Singleton, XML, and TVP Inserts : SQL Fool

SQL Server Blog by Jason Massie on Sun, 7th Jun 2009 12:13 pm. Recent Highlight: Performance Comparison of Singleton, XML , and TVP Inserts Tell me what you’re thinking… and oh, if you’ve enjoyed the post, please consider …

Read more from the original source:
Performance Comparison of Singleton, XML, and TVP Inserts : SQL Fool


Java + Multi-core

Avik Sengupta from Lab49 wrote an interesting Guest View in the latest SDTimes about recent additions to Java to improve support for programming to multi-core hardware.  When I started talking about the Multi-core Dilemma a few years ago the conventional wisdom in the Java community still held that we wouldn’t have to do anything different  – that Java would take care of it for us.  I even touched off a nice little flame war with a posting on The Server Side… As Avik points out, Java does provide a powerful threading model that helps with multi-core, “ but in practice it may not be so easy. “  With the addition of the concurrency package and the new fork/join, the tools for parallelism in Java are greatly improved

Read more:
Java + Multi-core


Removing a child from a parent by passing instance name as string

Following is a code to remove a child from a parent by passing it’s instance name as a string and parent as a display object import fl.controls.Button; //———– Draw a graphics on the stage ———- var t:Sprite = new Sprite(); t.name = “testSprite”; t.graphics.lineStyle(1,0×0000ff); t.graphics.beginFill(0xff0000); t.graphics.drawCircle(0,0,50); t.graphics.endFill(); addChild(t); t.x =100; t.y = 100; //———– Remove Child Function ————– function removeChildWithRef(spriteName:String, parentObj:*){ var t:DisplayObject = parentObj.getChildByName(spriteName); parentObj.removeChild(t); } //————- Add  a Button to Stage ———— var tBtn:Button = new Button(); tBtn.label = “Remove Circle”; tBtn.x = 50; tBtn.y = 170; tBtn.addEventListener(MouseEvent.CLICK,onClick); addChild(tBtn); //———— Capture Click Event ————- function onClick(evt:MouseEvent){ removeChildWithRef(”testSprite”,this); } Posted in Actionscript 3.0, AIR, Flash CS3, Flash Player, Flex Tagged: remove child by passing instance name as string, remove child from parent, remove child from stage

Visit link:
Removing a child from a parent by passing instance name as string


Replicating click Event on a MouseOver event in Flex Accordion

The following code is solution to a problem where you need to make the accordion component’s MouseOver event to behave like a click event. The code will work only in the case if you have not given the names to the AccordionHeader explicitly. Check the solution out here <?xml version=”1.0″?> <mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml”> <mx:Script> <![CDATA[ public function onMouseOver(evt:MouseEvent):void{ var strName:String = evt.target.name; var strLen:int = String("_header").length; if(strName.indexOf("_header") > -1){ accordion.selectedIndex = int(strName.substr(strLen,strName.length)); } } ]]> </mx:Script> <mx:Panel title=”Accordion Container Example” height=”90%” width=”90%” paddingTop=”10″ paddingLeft=”10″ paddingRight=”10″ paddingBottom=”10″> <mx:Label width=”100%” color=”blue” text=”Select an Accordion navigator button to change the panel.”/> <mx:Accordion id=”accordion” width=”100%” height=”100%” mouseOver=”onMouseOver(event)” > <!– Define each panel using a VBox container

Read the original:
Replicating click Event on a MouseOver event in Flex Accordion


Enabling Handcursor on a MovieClip having dynamic TextField in AS3

You can enable the hand cursor on a MovieClip by defining the following statement MovieClip.buttonMode = true; However the solution does not work in-case you have a dynamic textField in that movieclip. To enable hand in this case you have to additionally write the following statement MovieClip.mouseChildren = false; The reason is that the mouseChildren property determines whether or not the children of the object are mouse enabled. If an object is mouse enabled, a user can interact with it by using a mouse.

More:
Enabling Handcursor on a MovieClip having dynamic TextField in AS3




The news,articles,images etc. on XML Developer India  are selected automatically through a software process, please follow each article's attributed link to see the original content. This news site is powered by Wordpress. Incase of any objection or question please Contact Us...

Our Sevices

News