<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Passing data from Adobe Flex to BSP Application in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-from-adobe-flex-to-bsp-application/m-p/6587148#M1435229</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a question.&lt;/P&gt;&lt;P&gt;if i try to put any character as ü,ß,ä, etc.... with the httpService in the request, it give me in the SAP XML Flow logic file another character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i try to put direct in the url this value with the same parameter, than no problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to define the XML file  with encoding=utf-8 or encoding=ISO-...&lt;/P&gt;&lt;P&gt;no result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can i specify the encoing of the request ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have an idee, why ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 May 2010 18:08:35 GMT</pubDate>
    <dc:creator>durnez_vincent</dc:creator>
    <dc:date>2010-05-21T18:08:35Z</dc:date>
    <item>
      <title>Passing data from Adobe Flex to BSP Application</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-from-adobe-flex-to-bsp-application/m-p/6587146#M1435227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I have developed one application that takes the input from user and give it back to SAP system.  If I need to receive the data from the SAP system it is fine I am able to read it from BSP  XML URL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont know how to send data from Adobe flex to SAP system... please tell me how can i utilize xml  to do that. I have one constraint that i cant use webservices for it and Flash Islands as well ... i am supposed to use only xml. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice me. if you can provide me any code will be more beninificial.  yes I know in the book developing reach internet application by Adobe Flex from SAP Press has this thing in example.  in last chapters.. under send method.  but i dont have access to that book as well if any body has that book... the example what is mention there could be most suitable to my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please reply me. your any help will be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Naeem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 19:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-from-adobe-flex-to-bsp-application/m-p/6587146#M1435227</guid>
      <dc:creator>naimkhans_babi</dc:creator>
      <dc:date>2010-02-10T19:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data from Adobe Flex to BSP Application</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-from-adobe-flex-to-bsp-application/m-p/6587147#M1435228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naim, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following information will help you &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the following is your bsp url &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://&amp;lt;myserver&amp;gt;:&amp;lt;port&amp;gt;/sap/bc/bsp/sap/zsample/service.bsp" target="test_blank"&gt;http://&amp;lt;myserver&amp;gt;:&amp;lt;port&amp;gt;/sap/bc/bsp/sap/zsample/service.bsp&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Flex application add the following code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &amp;lt;mx:HTTPService &lt;/P&gt;&lt;P&gt;        id="mySrv" &lt;/P&gt;&lt;P&gt;        url="http://&amp;lt;myserver&amp;gt;:&amp;lt;port&amp;gt;/sap/bc/bsp/sap/zsample/service.bsp";&amp;gt; &lt;/P&gt;&lt;P&gt;        &amp;lt;mx:request&amp;gt; &lt;/P&gt;&lt;P&gt;            &amp;lt;employeid&amp;gt;007&amp;lt;employeid&amp;gt; &lt;/P&gt;&lt;P&gt;            &amp;lt;deptId&amp;gt;7&amp;lt;/deptId&amp;gt; &lt;/P&gt;&lt;P&gt;            &amp;lt;empname&amp;gt;James&amp;lt;empname&amp;gt; &lt;/P&gt;&lt;P&gt;        &amp;lt;/mx:request&amp;gt; &lt;/P&gt;&lt;P&gt;    &amp;lt;/mx:HTTPService&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in the BSP application use the following method in the controller class to receive the data (if you are using MVC for the BSP) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD REQUEST-&amp;gt;GET_FORM_FIELD &lt;/P&gt;&lt;P&gt;    EXPORTING &lt;/P&gt;&lt;P&gt;      NAME  = 'employeid'   "&amp;lt;employeid&amp;gt; passed in the flex http request &lt;/P&gt;&lt;P&gt;    RECEIVING &lt;/P&gt;&lt;P&gt;      VALUE = l_employeid.  " value 007 will be received to this variable &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is similar to directly passing url parameters as below &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://&amp;lt;myserver&amp;gt;:&amp;lt;port&amp;gt;/sap/bc/bsp/sap/zsample/service.bsp?employeid=007;deptId=7&amp;amp;empname=James" target="test_blank"&gt;http://&amp;lt;myserver&amp;gt;:&amp;lt;port&amp;gt;/sap/bc/bsp/sap/zsample/service.bsp?employeid=007;deptId=7&amp;amp;empname=James&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank &amp;amp; regards&lt;/P&gt;&lt;P&gt;Anand.C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2010 14:52:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-from-adobe-flex-to-bsp-application/m-p/6587147#M1435228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-24T14:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Passing data from Adobe Flex to BSP Application</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-from-adobe-flex-to-bsp-application/m-p/6587148#M1435229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a question.&lt;/P&gt;&lt;P&gt;if i try to put any character as ü,ß,ä, etc.... with the httpService in the request, it give me in the SAP XML Flow logic file another character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i try to put direct in the url this value with the same parameter, than no problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to define the XML file  with encoding=utf-8 or encoding=ISO-...&lt;/P&gt;&lt;P&gt;no result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can i specify the encoing of the request ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have an idee, why ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 18:08:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-data-from-adobe-flex-to-bsp-application/m-p/6587148#M1435229</guid>
      <dc:creator>durnez_vincent</dc:creator>
      <dc:date>2010-05-21T18:08:35Z</dc:date>
    </item>
  </channel>
</rss>

