Sunday, January 2, 2011

HTC Thunderbolt, Samsung SCH-i520 LTE phone show up in Verizon's system

HTC Thunderbolt in Verizon systemSamsung SCH-I520 LTE device

Verizon's New Year's resolution? Android LTE phones. And lookie at what just popped into its system -- SKUs for the HTC Thunderbolt (aka ADR6400) and that Samsung SCH-i520 LTE device, and dummy units to go along with them. The former basically is the Desire HD with a cool kickstand and speaker underneath, with Verizon's new 4G data. The Sammy device? We'll just have to see what gets unearthed at CES next week, won't we? Thanks, lk!

HTC Thunderbolt, Samsung SCH-i520 LTE phone show up in Verizon's system posted originally by Android Central

Sponsored by Android Cases and Accessories


Source: http://feedproxy.google.com/~r/androidcentral/~3/mQ3CFdxL5cE/htc-thunderbolt-samsung-sch-i520-lte-phone-show-verizons-system

Transaction Systems Architects Total System Services Tns Tibco Software

Blog Post: EDI Tutorial 3 Video :: BizTalk Server 2010 :: Create Send and Receive Ports

The video is available at http://msdn.microsoft.com/en-us/biztalk/video/gg153512.

This is the third video of the BizTalk Server 2010 EDI tutorial. In the last video, we created trading partners and business profiles. This video demonstrates how to create receive ports and send ports required for exchanging messages between the trading partners.

I am pasting the transcript of the video here to increase the search hits.

************************************************************************************************************************************

This is the third video of the BizTalk Server 2010 EDI tutorial.  In the last video, we created trading partners for Fabrikam and Contoso. We also created business profiles for Order System and Procurement System. In this presentation, we will create receive ports and send ports required for the EDI application.

Like we saw in the first video of the EDI tutorial video series, the business scenario uses three ports:

  • A receive port with an EDIReceive pipeline to receive EDI messages from Procurement System,
  • A send port with a custom send pipeline to map the message from Procurement System into a format required by Order System, and then send the EDI message to Order System, and
  • A send port with an EDISend pipeline to send an acknowledgement message back to Procurement System.

In this video, we will create these three ports.

The video contains the following procedures:

  • Create a receive port to receive purchase order message from Procurement System.
  • Create a send port to send the purchase order message to Order System.
  • Create a send port to send the acknowledgement to Procurement System.

Create a Receive Port to Receive Purchase Order Message from Procurement System

Before you start creating the ports, you must make sure you create all the ports in the EDISolution application because this is the application under which you deployed the artifacts required for the EDI application?. Let?s start with creating the receive port?. This is a one-way receive port? Name it ReceiveEDI_fromTHEM_A? Receive port is a container for receive locations. In this scenario, we only need one receive location? Name the receive location fromTHEM_4010_850? This receive location uses the File adapter?The File adapter has some properties?we need to specify a folder for the File adapter, so it knows where to poll messages. This is the folder where the Procurement System drops the request messages. The folder is C: drive?.. Program Files?..Microsoft BizTalk Server 2010?.. SDK?.. EDI Interface Developer Tutorial?.. ProcessEDI_TestLocations?.. Scenario A?.. fromTHEM. This folder is created when you install BizTalk Server? The file mask is TXT files because the EDI message that Procurement System drops to the file folder will be in text format?. You can set the retry count and retry interval. By default, it?s five retries with a five-minute interval.

The receive handler is BizTalkServerApplication. BizTalkServerApplication is a default host that the BizTalk Server installer creates. A host is a logical container. You assign BizTalk artifacts to a host, such as what we just did when we assigned the receive location to the host. A host has host instances. Each host instance is a BizTalk Server run-time process on BizTalk Server.

We also need to specify a receive pipeline for the receive location. A receive pipeline is for preprocessing messages, things like decoding, decryption, translation, validation, and party resolution. The request message from the Procurement System is an EDI message. So you must specify the EDIReceive pipeline for the receive location.

Save the receive port and receive location. Enable the receive location.

Create a Send Port to Send Purchase Order Message to Order System

We also need two send ports. The first send port is to send the purchase order message to Order System? Create a new static one-way send port? Name it toOrderSystem? it uses the File adapter?the folder for the File adapter to drop messages is C: drive?.. Program Files?..Microsoft BizTalk Server 2010?.. SDK?.. EDI Interface Developer Tutorial?.. ProcessEDI_TestLocations?.... Scenario A?.. toOrderSystem? The file name is messageid with the TXT file extension. The MessageID is a macro. You can find a list of available macros from the BizTalk help file?.. You use the TXT extension because Order System expects the EDI messages in a text format?.. The send handler is BizTalkServerApplication, and the send pipeline is SendOrderFilePipeline?.. SendOrderFilePipeline is a custom pipeline to transform the purchase order message from Procurement System into a format expected by Order System. You deployed this pipeline to the EDISolution application when you deployed the Visual Studio project in the first video of this series??.

In real world scenarios, there could be large number of ports in a BizTalk Server application that are used to send and receive business messages. So, there has to be a mechanism to ensure that the send port transfers only the relevant messages. In this scenario, the send port you are creating should only transfer purchase order messages that come from Procurement System. To achieve this in your BizTalk Server application, you can add filters to the send port.?. Because the purchase order message from Procurement System comes through the receive port you created earlier, you can add a filter based on the name of the receive port?.. The name of the receive port is promoted on the message by using message context properties?. Before we proceed with creating the send port, let us understand message context properties and how it helps route messages.

Let us assume that two separate receive ports, X and Y, receive incoming messages. After passing through the receive port, and before being published to the MessageBox database, BTS.ReceivePortName message property is promoted on both the messages. The value of the property is set to the name of the receive port through which the message is routed. The messages are then published to the MessageBox database. Now, a send port, which is only interested in the messages that come through receive port Y, can set a filter to pick only messages that have BTS.ReceivePortName context property set to Y. The relevant message is then picked up by the send port. For more information on message context properties, see http://go.microsoft.com/fwlink/?LinkId=200991.

Now, coming back to the send port configuration, you must add a filter based on the message context property for the receive port name, which is BTS.ReceivePortName?.. You can do so from the Filters tab of the Send Port Properties dialog box?. In this scenario, the acknowledgement message that is published in the MessageBox database would also have the same receive port name set. So, you should add another filter to make sure the send port does not pick the acknowledgement message?. An EDI acknowledgement message has a specific message type (shown on your screen??) that is also promoted as a message context property, which is called BTS.MessageType?. So, you should add a filter to make sure the send port does ?does not ? pick the messages of that type?. Also, make sure you used the AND operator for grouping both the filters?..

The send port also needs to make sure that the purchase order message coming from Procurement System is mapped to the schema of the message expected by the Order System. ?..To do so, you must also add the map as part of the send port configuration.?..You can do so from the Outbound Maps tab of the Send Port Properties dialog box?? In the first video, we saw that the map, Inbound4010850_to_OrderFile, is part of the Visual Studio EDI solution and is deployed under the EDISolution application?? Save and start the send port.

Create a Send Port to Send the Acknowledgement to Procurement System

The second send port is to send the acknowledgement message back to Procurement System ? create a new static one-way send port? Name it toTHEM_997? The send port uses the File adapter? the folder is C: drive?.. Program Files?..Microsoft BizTalk Server 2010?.. SDK?.. EDI Interface Developer Tutorial?.. ProcessEDI_TestLocations?.... Scenario A?.. toTHEM_997 ? The file name is messageid with the TXT file extension ? specify the send handler? Because the acknowledgement message is essentially an EDI message, select EdiSend as the send pipeline? For this send port, we need to make sure that it only picks the acknowledgement messages? To do so, we will again set a filter on the BTS.MessageType property, just like we did for the last send port we created. The only difference is that for this send port, we will set a filter such that the port ?does? pick the acknowledgement message?? Save and start the send port.

This concludes the third video of the BizTalk Server 2010 EDI tutorial. In the next video, we?re going to show you how to use BizTalk Server Administration console to create the trading partner agreement between Procurement System and Order System. Thank you for watching.

************************************************************************************************************************************

Source: http://blogs.msdn.com/b/nitinme/archive/2011/01/02/edi-tutorial-3-video-biztalk-server-2010-create-send-and-receive-ports.aspx

Cisco Systems Cognizant Tech Solutions Comcast Commscope

Make the New Year great with a better organized Inbox

Clean Up commandHi, I'm Roby Kurian, Product Manager for Outlook. I hope you enjoyed the holidays. Now that the holidays are over and the New Year is here, have you made your New Year's resolutions? I make New Year's resolutions almost every year. I have four resolutions for 2011 and one of those is to be better organized. I feel good about that particular resolution because I already have a good start. I managed all the unread emails in one of my largest folders. Let me explain my approach.

...(read more)

Source: http://blogs.office.com/b/microsoft-outlook/archive/2010/12/31/make-the-new-year-great-with-a-better-organized-inbox.aspx

Inventec Kddi Klatencor Koninklijke Kpn

Saturday, January 1, 2011

This is your brain. This is your brain on video games

Sure, you've probably seen countless scientific studies involving video games -- but have you have you ever wondered what your brain actually looked like while your playing video games? Well, feast your eyes on the image above. That's an MRI scan of New York Times writer Matt Richtel's brain that was captured while he played a simple driving game -- all in the name of science (and journalism), of course. As Richtel notes, however, that's just one example of the ways researchers are using such technology to "map the ethereal concept of attention," and scientists have turned up some other interesting findings as of late. Researchers at the University of Utah, for instance, have found that people's ability to juggle two tasks begins to drop off in their 30s and then sharply drops in their 40s, which contradicts earlier suspicions that people's ability to multitask only began to degrade when they're much older. Some other researchers are still suspicious of those findings, however, and Dr. Gazzaley of the University of California at San Diego is quick to point out that all of this research is still in the earliest stages -- he's expecting some more detailed findings next year when his team expands their tests and begin to incorporate EEG monitoring as well.

This is your brain. This is your brain on video games originally appeared on Engadget on Fri, 31 Dec 2010 20:51:00 EDT. Please see our terms for use of feeds.

Permalink   |  sourceNew York Times  | Email this | Comments

Source: http://www.engadget.com/2010/12/31/this-is-your-brain-this-is-your-brain-on-video-games/

Mobile Telesystems Nanya Technology Nii Holdings Nikon

App Launcher for Chrome is like a start menu for Web Store apps

If opening Google Chrome's new tab page just to fire up an app feels a bit too clunky for your liking, check out a new extension from Google itself: App Launcher.

Once installed, you'll have access to a drop down menu which lists all your apps in alphabetical order -- unlike previously reviewed AppJump Launcher, which doesn't appear to list them in any particular order. Google's offering also features built-in search -- which could be handy if you've been able to find a whole pile of apps you decided to keep installed. Keyboard navigation is supported as well, allowing you to arrow up and down and tap enter to launch.

The extension currently lacks an options screen -- which would be a great place for Google to slap in another missing feature: hotkey support.

Install App Launcher for Google Chrome

App Launcher for Chrome is like a start menu for Web Store apps originally appeared on Download Squad on Wed, 22 Dec 2010 12:00:00 EST. Please see our terms for use of feeds.

Permalink | Email this | Comments

Source: http://downloadsquad.switched.com/2010/12/22/app-launcher-for-chrome-is-like-a-start-menu-for-web-store-apps/

Grupo Iusacell Harris Hcl Technologies Hewlettpackard

Forum Post: 10264

I am preping for this class and can't find the Adventureworkslt2008r2 referred to in cmd files for the setup and the fix.  The scripts use this database and the cmd files try to copy it unsuccessfully.  What am i missing?  Any help would be appreciated...this certainly seems like it should be very simple. 

Source: http://borntolearn.mslearn.net/forums/cc/f/25/p/22162/62172.aspx#62172

Rackable Systems Quest Software Quantum Qlogic

The 10 Robots That Rocked in 2010

Did you know we received the word robot from the Czech word “robotnik” meaning slave? The word is fitting for the machines we’ve asked to endlessly compute algorithms for us and clean our floors. But exactly what a robot is has evolved from the days when robots were largely factory drudges. These days, robots can [...]

Source: http://feedproxy.google.com/~r/TheNextWeb/~3/oxGhkQ2tSWw/

Taketwo Interactive Software Syntel Syntaxbrillian Synopsys