<?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: WebService(Error)-     Security error accessing url in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/webservice-error-security-error-accessing-url/m-p/3091485#M733269</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sriram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before answering to your query. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you are only 15 posts old in SDN here is some of basic forum manners expected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. do not delete/modify your orginal question after getting an answer&lt;/P&gt;&lt;P&gt;2. when you get an answer for your question, atleast let  the other member know whether his solution worked or not or atleast a simple thanks&lt;/P&gt;&lt;P&gt;3. if you find the answers helpful/solved your problem you can choose to award points to the answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you will follow this in the future and have a wonderfultime in SDN community.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="636871"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="635116"&gt;&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cooming to your current query. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it looks like you need crossdomain.xml, search this forum with key word "crossdomain" you will find the answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Durairaj Athavan Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Nov 2007 19:18:24 GMT</pubDate>
    <dc:creator>athavanraja</dc:creator>
    <dc:date>2007-11-21T19:18:24Z</dc:date>
    <item>
      <title>WebService(Error)-     Security error accessing url</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/webservice-error-security-error-accessing-url/m-p/3091484#M733268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am try to call  Webservice from SAP to Flex Its Giving &lt;/P&gt;&lt;P&gt;Error  &amp;lt;b&amp;gt;faultCode -Security error accessing url and Channel.Security.Error &amp;lt;/b&amp;gt;  Plz  any ideas?&lt;/P&gt;&lt;P&gt;My Code is ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"&amp;gt;&lt;/P&gt;&lt;P&gt;	&amp;lt;mx:Script&amp;gt;&lt;/P&gt;&lt;P&gt;		&amp;lt;![CDATA[&lt;/P&gt;&lt;P&gt;			import mx.rpc.events.ResultEvent;&lt;/P&gt;&lt;P&gt;						&lt;/P&gt;&lt;P&gt;			[Bindable]&lt;/P&gt;&lt;P&gt;			private var wordBack:String;&lt;/P&gt;&lt;P&gt;			[Bindable]&lt;/P&gt;&lt;P&gt;			private var abapWSDL:String = "http://xyz2160.wdf.sap.corp:51380/sap/bc/srt/rfc/sap/ZWS_ZVENDFUN?sap-client=400&amp;amp;wsdl=1.1";&lt;/P&gt;&lt;P&gt;			&lt;/P&gt;&lt;P&gt;			private function wsHandler(event:ResultEvent):void&lt;/P&gt;&lt;P&gt;			{&lt;/P&gt;&lt;P&gt;				wordBack=String(event.result);	&lt;/P&gt;&lt;P&gt;			}&lt;/P&gt;&lt;P&gt;			&lt;/P&gt;&lt;P&gt;			private function faultHandler(event:mx.rpc.events.FaultEvent):void&lt;/P&gt;&lt;P&gt;			{&lt;/P&gt;&lt;P&gt;				mx.controls.Alert.show(event.fault.faultCode,);&lt;/P&gt;&lt;P&gt;				mx.controls.Alert.show(event.fault.faultString,);&lt;/P&gt;&lt;P&gt;			}&lt;/P&gt;&lt;P&gt;		]]&amp;gt;&lt;/P&gt;&lt;P&gt;	&amp;lt;/mx:Script&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	&amp;lt;mx:WebService id="wsData"&lt;/P&gt;&lt;P&gt;		wsdl="{encodeURI(abapWSDL)}"&lt;/P&gt;&lt;P&gt;		result="wsHandler(event)"&lt;/P&gt;&lt;P&gt;		fault="faultHandler(event)"&amp;gt;&lt;/P&gt;&lt;P&gt;			&amp;lt;mx:operation name="Zvendfun" result="wsHandler(event)"&amp;gt;&lt;/P&gt;&lt;P&gt;				&amp;lt;mx:request xmlns=""&amp;gt;&lt;/P&gt;&lt;P&gt;						&amp;lt;Lifnr&amp;gt;{word1.text}&amp;lt;/Lifnr&amp;gt;				&lt;/P&gt;&lt;P&gt;				&amp;lt;/mx:request&amp;gt;&lt;/P&gt;&lt;P&gt;			&amp;lt;/mx:operation&amp;gt;&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;	&amp;lt;/mx:WebService&amp;gt;&lt;/P&gt;&lt;P&gt;		&lt;/P&gt;&lt;P&gt;	&amp;lt;mx:Label text="&lt;SPAN __jive_macro_name="wordBack"&gt;&lt;/SPAN&gt;"	fontSize="40"/&amp;gt;&lt;/P&gt;&lt;P&gt;		&lt;/P&gt;&lt;P&gt;	&amp;lt;mx:TextInput id="word1"/&amp;gt;&lt;/P&gt;&lt;P&gt;	&amp;lt;mx:Button label="Send Data" click="wsData.Zvendfun.send()"/&amp;gt;&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;&amp;lt;/mx:Application&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know where i am wrong in  my code,&lt;/P&gt;&lt;P&gt;has anyone developed any applications with Flex using the WebService (WSDL) If so any chance you might pass it on so I can use for testing?&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2007 10:22:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/webservice-error-security-error-accessing-url/m-p/3091484#M733268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-21T10:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: WebService(Error)-     Security error accessing url</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/webservice-error-security-error-accessing-url/m-p/3091485#M733269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sriram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before answering to your query. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you are only 15 posts old in SDN here is some of basic forum manners expected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. do not delete/modify your orginal question after getting an answer&lt;/P&gt;&lt;P&gt;2. when you get an answer for your question, atleast let  the other member know whether his solution worked or not or atleast a simple thanks&lt;/P&gt;&lt;P&gt;3. if you find the answers helpful/solved your problem you can choose to award points to the answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you will follow this in the future and have a wonderfultime in SDN community.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="636871"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="635116"&gt;&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cooming to your current query. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it looks like you need crossdomain.xml, search this forum with key word "crossdomain" you will find the answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Durairaj Athavan Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2007 19:18:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/webservice-error-security-error-accessing-url/m-p/3091485#M733269</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-11-21T19:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: WebService(Error)-     Security error accessing url</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/webservice-error-security-error-accessing-url/m-p/3091486#M733270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 04:24:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/webservice-error-security-error-accessing-url/m-p/3091486#M733270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T04:24:38Z</dc:date>
    </item>
  </channel>
</rss>

