<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: WebSphere Adapters 6.0.2 Labs (Spanish)</title>
	<atom:link href="http://jj.gbtopia.com/blog/2007/02/11/websphere-adapters-602-labs-spanish/feed/" rel="self" type="application/rss+xml" />
	<link>http://jj.gbtopia.com/blog/2007/02/11/websphere-adapters-602-labs-spanish/</link>
	<description>Jorge Juan's Blog</description>
	<lastBuildDate>Sun, 02 Nov 2008 23:30:59 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Global Access &#187; WebSphere Adapters PoT, Santiago, Chile</title>
		<link>http://jj.gbtopia.com/blog/2007/02/11/websphere-adapters-602-labs-spanish/comment-page-1/#comment-9617</link>
		<dc:creator>Global Access &#187; WebSphere Adapters PoT, Santiago, Chile</dc:creator>
		<pubDate>Sun, 26 Aug 2007 00:12:13 +0000</pubDate>
		<guid isPermaLink="false">http://jj.gbtopia.com/blog/2007/02/11/websphere-adapters-602-labs-spanish/#comment-9617</guid>
		<description>[...] I just got back a week ago from Santiago, Chile. I went to teach the WebSphere Adapters PoT that I created earlier this year. It was my first visit to the southern hemisphere, and quite a long flight. Santiago is a nice city, similar in several ways to Mexico City (unfortunately including the pollution). Since it&#8217;s almost winter down there it was a bit cold, but bearable. In my free time I got to visit several historic sites mainly in downtown Santiago, and an area called Barrio Bellavista, but couldn&#8217;t visit any museums. I also visited some nicer neighbourhoods called Vitacura and Providencia. Continuing with my subway photo series, I took a few pictures of Santiago&#8217;s &#8216;metro&#8217; which is quite modern compared to others on my &#8220;series&#8221;. [...]</description>
		<content:encoded><![CDATA[<p>[...] I just got back a week ago from Santiago, Chile. I went to teach the WebSphere Adapters PoT that I created earlier this year. It was my first visit to the southern hemisphere, and quite a long flight. Santiago is a nice city, similar in several ways to Mexico City (unfortunately including the pollution). Since it&#8217;s almost winter down there it was a bit cold, but bearable. In my free time I got to visit several historic sites mainly in downtown Santiago, and an area called Barrio Bellavista, but couldn&#8217;t visit any museums. I also visited some nicer neighbourhoods called Vitacura and Providencia. Continuing with my subway photo series, I took a few pictures of Santiago&#8217;s &#8216;metro&#8217; which is quite modern compared to others on my &#8220;series&#8221;. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jjgb</title>
		<link>http://jj.gbtopia.com/blog/2007/02/11/websphere-adapters-602-labs-spanish/comment-page-1/#comment-1956</link>
		<dc:creator>jjgb</dc:creator>
		<pubDate>Fri, 16 Mar 2007 02:27:27 +0000</pubDate>
		<guid isPermaLink="false">http://jj.gbtopia.com/blog/2007/02/11/websphere-adapters-602-labs-spanish/#comment-1956</guid>
		<description>I&#039;ve faced a similar situation with a customer that handled XML files without namespaces. What I did to work around that problem was use a Message Driven Bean to add a namespace to the XML file received as a JMS message. As far as I know, there&#039;s no way to do it with just the API, since all Business Objects rely on namespaces. If you need to convert the output instead of the input, I would suggest using a Java component to serialize the message and place it on a JMS queue. This most probably alters your current process design, but in the case of my customer it worked perfectly.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve faced a similar situation with a customer that handled XML files without namespaces. What I did to work around that problem was use a Message Driven Bean to add a namespace to the XML file received as a JMS message. As far as I know, there&#8217;s no way to do it with just the API, since all Business Objects rely on namespaces. If you need to convert the output instead of the input, I would suggest using a Java component to serialize the message and place it on a JMS queue. This most probably alters your current process design, but in the case of my customer it worked perfectly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://jj.gbtopia.com/blog/2007/02/11/websphere-adapters-602-labs-spanish/comment-page-1/#comment-1818</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Mon, 12 Mar 2007 16:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://jj.gbtopia.com/blog/2007/02/11/websphere-adapters-602-labs-spanish/#comment-1818</guid>
		<description>Hi,
thanks for your posting. I dont know spanish, but by just looking at the screen shots, I have found these labs very usefull.
my question is, how can we convert an XML to BO. I have found some samples that convert  BO to XML and XML to BO, but they all have namespaces. we can not force customer to use WID namespaces, so I am talking about converting a XML without namespace.
for instance converting below XML to BO is easy : 
&lt; ?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;customer xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:asbo=&quot;http://FFTest/com/wbi/asbo&quot; xmlns:=&quot;http://mycompany.com/ns&quot;&gt;
&#160;&#160;&lt;name&gt;TestCustomer&lt;/name&gt;
&#160;&#160;&lt;address&gt;lablablab&lt;/address&gt;
&#160;&#160;&lt;country&gt;USA&lt;/country&gt;
&lt;/customer&gt;
but how can I convert the below XML :

&lt; ?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;customer xmlns:=&quot;http://mycompany.com/ns&quot;&gt;
&#160;&#160;&lt;name&gt;TestCustomer&lt;/name&gt;
&#160;&#160;&lt;address&gt;lablablab&lt;/address&gt;
&#160;&#160;&lt;country&gt;USA&lt;/country&gt;
&lt;/customer&gt;

I don&#039;t want to manually add the namespaces and convert to BO. is there any way using WID API convert it to BO ?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
thanks for your posting. I dont know spanish, but by just looking at the screen shots, I have found these labs very usefull.<br />
my question is, how can we convert an XML to BO. I have found some samples that convert  BO to XML and XML to BO, but they all have namespaces. we can not force customer to use WID namespaces, so I am talking about converting a XML without namespace.<br />
for instance converting below XML to BO is easy :<br />
&lt; ?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt;<br />
&lt;customer xmlns:xsi=&#8221;http://www.w3.org/2001/XMLSchema-instance&#8221; xmlns:asbo=&#8221;http://FFTest/com/wbi/asbo&#8221; xmlns:=&#8221;http://mycompany.com/ns&#8221;&gt;<br />
&nbsp;&nbsp;&lt;name&gt;TestCustomer&lt;/name&gt;<br />
&nbsp;&nbsp;&lt;address&gt;lablablab&lt;/address&gt;<br />
&nbsp;&nbsp;&lt;country&gt;USA&lt;/country&gt;<br />
&lt;/customer&gt;<br />
but how can I convert the below XML :</p>
<p>&lt; ?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt;<br />
&lt;customer xmlns:=&#8221;http://mycompany.com/ns&#8221;&gt;<br />
&nbsp;&nbsp;&lt;name&gt;TestCustomer&lt;/name&gt;<br />
&nbsp;&nbsp;&lt;address&gt;lablablab&lt;/address&gt;<br />
&nbsp;&nbsp;&lt;country&gt;USA&lt;/country&gt;<br />
&lt;/customer&gt;</p>
<p>I don&#8217;t want to manually add the namespaces and convert to BO. is there any way using WID API convert it to BO ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
