Skip to main content

Eclipse Proxy Authentication Credentials


In Eclipse, to give the proxy authentication credentials, go to Window – Preferences – General – Network Connections

In the Active Provider combo box, choose “Manual“.

In the proxy entries table, for each entry click “Edit” and supply your proxy host, port, username and password details.


Comments

Popular posts from this blog

SOAP UI faster start up

If you feel like your SOAP UI is starting up very slowly, check whether this is due to any start up web page call. You can check this @ Preferences - UI Settings - Show Startup Page ==> Here you can deselect this option to improve the start-up time.

Google Chrome shortcut keys

If you are a Google Chromey guy, please find below the list of shortcut keys for some of the most used features  :-) Find more shortcut keys @  http://www.google.com/support/chrome/bin/static.py?page=guide.cs&guide=25799&topic=28650

Apache Lucene quick links

Lucene home page –> http://lucene.apache.org/ Download Lucene from –> http://www.apache.org/dyn/closer.cgi/lucene/java/ Lucene API Doc –> http://lucene.apache.org/java/docs/api/index.html Lucene docs for each release –> http://lucene.apache.org/java/docs/ Where can I get help from –> java-user@lucene.apache.org Lucene wiki  –> http://wiki.apache.org/lucene-java/FrontPage Lucene , how to improve search speed –> http://wiki.apache.org/lucene-java/ImproveSearchingSpeed Lucene , how to improve index speed  –>   http://wiki.apache.org/lucene-java/ImproveIndexingSpeed Lucene FAQ –> http://wiki.apache.org/lucene-java/LuceneFAQ

Basic design decisions for a commerce search setup ( with an ATG Search view)

In this blog I would like to explain the basic set of configuration/design decisions needed to setup an ATG search project. Most of these design decisions are common for all Enterprise search applications. 1. Decide the searchable properties :   This means the properties that the business want the user to search in the ecommerce platform. In ATG search these are configured as the text properties in the product-catalog-output-config.xml ( the definitionFile of the \atg\commerce\search\ProductCatalogOutputConfig). Usually the displayName of product/sku, displayName of department/category/sub-category, skuId, brandName are the properties configured as searchable. 2. Decide the search refinement properties or the faceted properties :   After a user search for a keyword, search refinement is the next step done to filter his results. ATG supports the search refinement using the Faceted Search concept. Read more about facted search @...

ATG Search Indexing - overview of different steps in search indexing

Read more about the search indexing behind the scene steps @  http://tips4ufromsony.blogspot.in/2011/12/atg-search-indexing-behind-scene-steps.html ATG Search prepares searchable content by indexing the products specified in the XML definition file (/atg/commerce/search/ProductCatalogOutputConfig). Generally there are two types of indexing 1.  Full Indexing  --> all data taken for indexing 2.  Incremental Indexing --> only changed data will be taken for indexing When full indexing is triggered, following happens:    1. The out of box component BulkLoader will call IndexedItemsGroup.getGroupMembers() to load the products to the XHTL document. It prevents uncategorized products from getting indexed. The definition file format begins with a top-level item as a product and includes the properties of parent category and childskus. For each product, the set of Variant Producers configured in ProductCatalogOutputConfig is execute...