many thanks rohit..........I followed that salesforce link which u have
sent.

I solved that proxy error by using below code.Please check it.



<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="SOQLSamplesSection"
      type="System.Configuration.NameValueSectionHandler" />
  </configSections>
  <appSettings>
    <add key="connstring" value="" />
  </appSettings>
  <SOQLSamplesSection>
    <add key="Simple SOQL" value="Select Id, Name, Industry From Account" />
    <add key="Account and Contacts" value ="Select a.AccountNumber,
a.BillingCity, a.BillingCountry, a.BillingPostalCode, a.BillingState,
a.BillingStreet, a.Id, a.Name, (Select Email, FirstName, Id, LastName From
Contacts) from Account a" />
    <add key="Contact to Account Filtered by Account name" value="SELECT id,
lastname, contact.account.name FROM contact, contact.account Where
contact.account.Name = 'Global Media'" />
    <add key="Contact and CreatedBy user name" value="Select
c.CreatedBy.FirstName, c.CreatedBy.LastName, c.Id, c.LastName from Contact
c" />
    <add key="Aggregate - Count of Account" value="Select Count() From
Account" />
    <add key="Account sorted by Name (ascending values)" value="Select Name
from Account Order By Name" />
    <add key="Account sorted by LastModifiedDate (descending values)"
value="Select Name from Account Order By LastModifiedDate Desc" />
    <add key="Using toLabel (translation workbench)" value="Select Company,
toLabel(Status) from Lead " />
    <add key="Convert currency (multi-currency only)" value="Select
convertCurrency(Amount), Name from Opportunity" />
  </SOQLSamplesSection>
  <system.net>
    <defaultProxy useDefaultCredentials="true"></defaultProxy>
  </system.net>

</configuration>

Thanks,
Mahendiran Jayavarma.

---------- Forwarded message ----------
From: mahendiran jayavarma <[email protected]>
Date: Fri, Aug 20, 2010 at 10:30 AM
Subject: Re: Reg: Salesforce Apex Explorer: Error 407 - Proxy Authentication
Required
To: [email protected]


Rohit, I added the below codes in ApexExplorer8.0.exe.config file But still
getting same issues.

<system.net>
    <defaultProxy useDefaultCredentials="true"></defaultProxy>
  </system.net>


Actually Im new to salesforce project.

Thanks,
Mahendiran Jayavarma.

On Thu, Aug 19, 2010 at 6:15 PM, rohit aggarwal wrote:

> This might help you
>
>
> http://community.salesforce.com/t5/Force-com-Builder-Native-Apps/not-able-to-run-apex-explorer/m-p/117006
>
> Rohit
>
>
> On Thu, Aug 19, 2010 at 11:11 AM, mahendiran jayavarma <
> [email protected]> wrote:
>
>>  Hi,
>>
>> I have just installed the  Apex Explorer and am trying to Login and
>> connect to Salesforce CRM Database
>>
>> Getting bellow error :
>>
>> Login failed: The request failed with HTTP status 407: Proxy
>> Authentication Required.
>>
>> Also Im trying to access the salesforce webservices via the .net
>> application. I could n't connect
>>
>> Please Can anyone be of help?
>>
>> Thanks,
>> Mahendiran Jayavarma.
>>
>
>

Reply via email to