<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Oracle/Siebel CRM On Demand Integration Overview</title>
	<atom:link href="http://blogs.bungeeconnect.com/2008/03/28/oracle-crm-on-demand-integration-overview/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.bungeeconnect.com/2008/03/28/oracle-crm-on-demand-integration-overview/</link>
	<description>Feed for the Bungee Connect Developers Around the World</description>
	<lastBuildDate>Mon, 07 Sep 2009 05:15:16 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sreenath</title>
		<link>http://blogs.bungeeconnect.com/2008/03/28/oracle-crm-on-demand-integration-overview/#comment-999</link>
		<dc:creator>Sreenath</dc:creator>
		<pubDate>Fri, 10 Jul 2009 21:55:47 +0000</pubDate>
		<guid isPermaLink="false">http://bungeeconnect.wordpress.com/?p=186#comment-999</guid>
		<description>Hi,

I downloaded the Account.WSDL from Oracle DRM on Demand app and tried to add it to Bungee Connect. Nothing happened. It just pops up a window and closes. When I click done it says &quot;Please either add a WSDL or provide URL...&quot;.
The same WSDL gets imported succesfully in SOAPUI. What is the issue? Is there any problem with the software. How did you get your Contact.WSDL added here?

Your answer is much appreciated.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I downloaded the Account.WSDL from Oracle DRM on Demand app and tried to add it to Bungee Connect. Nothing happened. It just pops up a window and closes. When I click done it says &#8220;Please either add a WSDL or provide URL&#8230;&#8221;.<br />
The same WSDL gets imported succesfully in SOAPUI. What is the issue? Is there any problem with the software. How did you get your Contact.WSDL added here?</p>
<p>Your answer is much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daveb</title>
		<link>http://blogs.bungeeconnect.com/2008/03/28/oracle-crm-on-demand-integration-overview/#comment-881</link>
		<dc:creator>daveb</dc:creator>
		<pubDate>Fri, 29 Aug 2008 15:05:12 +0000</pubDate>
		<guid isPermaLink="false">http://bungeeconnect.wordpress.com/?p=186#comment-881</guid>
		<description>Bhavin, 

Looks to me like you&#039;re using a JAvA based IDE.  This blog post is specifically around developing in Bungee Connect against the Oracle Web Service.  Are you using Bungee Connect at all for building your web application?</description>
		<content:encoded><![CDATA[<p>Bhavin, </p>
<p>Looks to me like you&#8217;re using a JAvA based IDE.  This blog post is specifically around developing in Bungee Connect against the Oracle Web Service.  Are you using Bungee Connect at all for building your web application?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bhavin</title>
		<link>http://blogs.bungeeconnect.com/2008/03/28/oracle-crm-on-demand-integration-overview/#comment-867</link>
		<dc:creator>Bhavin</dc:creator>
		<pubDate>Thu, 28 Aug 2008 07:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://bungeeconnect.wordpress.com/?p=186#comment-867</guid>
		<description>Hi,i have got session id now i want to enter lead in On Demand, for that 3 string values are require firstname, lastname, owner i prepared webservice in Java and i am facing problem to enter the value. my code is as follows.
please guide me to complete application.
//--------------------------------------------------------------------------
    String firstname = jTextField4.getText().trim();
    String lastname = jTextField5.getText().trim();
    String sessionid = jTextField3.getText(); 
     Lead lead = new Lead();
     lead.getWebsite();
     lead.setWebsite(httpbase+server+&quot;/Services/Integration;jsessionid=&quot;+sessionid);

     LeadWS_LeadInsert_Input input = new LeadWS_LeadInsert_Input();
     input.listOfLead = new Lead[1];
     input.listOfLead[0] = new Lead();
     input.listOfLead[0].getLeadFirstName();
     input.listOfLead[0].setLeadFirstName(firstname);
     input.listOfLead[0].getLeadLastName();
     input.listOfLead[0].setLeadLastName(lastname);
     input.listOfLead[0].getLeadOwner();
     input.listOfLead[0].setLeadOwner(&quot;Bhavin Acharya&quot;);

     Default_Binding_LeadImpl output = new Default_Binding_LeadImpl();
     output.leadInsert(input); 

Thanks,</description>
		<content:encoded><![CDATA[<p>Hi,i have got session id now i want to enter lead in On Demand, for that 3 string values are require firstname, lastname, owner i prepared webservice in Java and i am facing problem to enter the value. my code is as follows.<br />
please guide me to complete application.<br />
//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
    String firstname = jTextField4.getText().trim();<br />
    String lastname = jTextField5.getText().trim();<br />
    String sessionid = jTextField3.getText();<br />
     Lead lead = new Lead();<br />
     lead.getWebsite();<br />
     lead.setWebsite(httpbase+server+&#8221;/Services/Integration;jsessionid=&#8221;+sessionid);</p>
<p>     LeadWS_LeadInsert_Input input = new LeadWS_LeadInsert_Input();<br />
     input.listOfLead = new Lead[1];<br />
     input.listOfLead[0] = new Lead();<br />
     input.listOfLead[0].getLeadFirstName();<br />
     input.listOfLead[0].setLeadFirstName(firstname);<br />
     input.listOfLead[0].getLeadLastName();<br />
     input.listOfLead[0].setLeadLastName(lastname);<br />
     input.listOfLead[0].getLeadOwner();<br />
     input.listOfLead[0].setLeadOwner(&#8220;Bhavin Acharya&#8221;);</p>
<p>     Default_Binding_LeadImpl output = new Default_Binding_LeadImpl();<br />
     output.leadInsert(input); </p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan Harwood</title>
		<link>http://blogs.bungeeconnect.com/2008/03/28/oracle-crm-on-demand-integration-overview/#comment-769</link>
		<dc:creator>Alan Harwood</dc:creator>
		<pubDate>Wed, 04 Jun 2008 14:19:50 +0000</pubDate>
		<guid isPermaLink="false">http://bungeeconnect.wordpress.com/?p=186#comment-769</guid>
		<description>daveb,

Thanks for your question.  If you open up the login function on the Main class and expand the condition and the case within that condition, you will see that I am creating the SOAP endpoint (service.address) and including the sessionID on the end.</description>
		<content:encoded><![CDATA[<p>daveb,</p>
<p>Thanks for your question.  If you open up the login function on the Main class and expand the condition and the case within that condition, you will see that I am creating the SOAP endpoint (service.address) and including the sessionID on the end.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daveb</title>
		<link>http://blogs.bungeeconnect.com/2008/03/28/oracle-crm-on-demand-integration-overview/#comment-768</link>
		<dc:creator>daveb</dc:creator>
		<pubDate>Wed, 04 Jun 2008 04:33:06 +0000</pubDate>
		<guid isPermaLink="false">http://bungeeconnect.wordpress.com/?p=186#comment-768</guid>
		<description>In your code, I see where you&#039;re getting the session ID from the cookie in your login function and saving it off; but I don&#039;t see in any of your other calls where you use that session ID.  Where am I missing it?
Thanks.</description>
		<content:encoded><![CDATA[<p>In your code, I see where you&#8217;re getting the session ID from the cookie in your login function and saving it off; but I don&#8217;t see in any of your other calls where you use that session ID.  Where am I missing it?<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SugarCRM Integration Overview &#171; Bungee Connect Developer Network</title>
		<link>http://blogs.bungeeconnect.com/2008/03/28/oracle-crm-on-demand-integration-overview/#comment-740</link>
		<dc:creator>SugarCRM Integration Overview &#171; Bungee Connect Developer Network</dc:creator>
		<pubDate>Mon, 19 May 2008 02:38:02 +0000</pubDate>
		<guid isPermaLink="false">http://bungeeconnect.wordpress.com/?p=186#comment-740</guid>
		<description>[...] I&#8217;ve taken some time to create another Bungee Connect reference application using the SugarCRM web services API. I have previously posted about NetSuite, Salesforce, and Oracle/Siebel CRM On Demand. [...]</description>
		<content:encoded><![CDATA[<p>[...] I&#8217;ve taken some time to create another Bungee Connect reference application using the SugarCRM web services API. I have previously posted about NetSuite, Salesforce, and Oracle/Siebel CRM On Demand. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
