<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7173308295606810244</id><updated>2011-08-26T00:24:42.209-07:00</updated><title type='text'>welcome to bhashithas' blog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://bhashitha.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7173308295606810244/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://bhashitha.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>bashi</name><uri>http://www.blogger.com/profile/06327672651140148048</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='19' height='32' src='http://bp0.blogger.com/_rbG9yZe_iwg/R-IG3DxkaHI/AAAAAAAAAAc/bm9XCoWhUrs/S220/me.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7173308295606810244.post-1233384244654850773</id><published>2008-06-30T03:45:00.000-07:00</published><updated>2008-06-30T05:19:26.145-07:00</updated><title type='text'>ALV in SAP</title><content type='html'>ALV - ( ABAP LIST VIEWER / Application List viewer)&lt;br /&gt;&lt;br /&gt;is a control which we can use to increase the readability and the functionality of reports in SAP.&lt;br /&gt;it allows user to select the columns that they want to display or hide, for sorting, arrange the order of the columns, group by function where user can sort and group the similar data, and get the total column by column , etc...&lt;br /&gt;&lt;br /&gt;its also make the developers life more easier. They have to get the relevent data acording to the selection criteria and pass it to a relevent ALV function ( most of the time its  'REUSE_ALV_GRID_DISPLAY' ) with the correct parameters. Then the function will be handle all  the other functions such as sorting, sub totaling etc...&lt;br /&gt;&lt;br /&gt;how to use ALV to display a simple report in SAP using ABAP.&lt;br /&gt;&lt;br /&gt;*Required Declarations.&lt;br /&gt;&lt;br /&gt;DATA: l_alv TYPE REF TO cl_gui_alv_grid.&lt;br /&gt;DATA : formatter TYPE i VALUE 0.&lt;br /&gt;DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE,&lt;br /&gt;gd_layout TYPE slis_layout_alv,&lt;br /&gt;gd_repid LIKE sy-repid,&lt;br /&gt;gt_sort TYPE slis_t_sortinfo_alv,&lt;br /&gt;gt_events TYPE slis_t_event,&lt;br /&gt;gd_prntparams TYPE slis_print_alv.&lt;br /&gt;&lt;br /&gt;*displaying ALV&lt;br /&gt;&lt;br /&gt;DEFINE m_fieldcat.&lt;br /&gt;ls_fieldcat-col_pos = 0.&lt;br /&gt;ls_fieldcat-fieldname = &amp;amp;1.&lt;br /&gt;ls_fieldcat-ref_tabname = &amp;amp;2.&lt;br /&gt;ls_fieldcat-do_sum = &amp;amp;3.&lt;br /&gt;ls_fieldcat-reptext_ddic = &amp;amp;4.&lt;br /&gt;append ls_fieldcat to lt_fieldcat.&lt;br /&gt;clear ls_fieldcat.&lt;br /&gt;END-OF-DEFINITION.&lt;br /&gt;&lt;br /&gt;DEFINE m_sort.&lt;br /&gt;add 1 to ls_sort-spos.&lt;br /&gt;ls_sort-fieldname = &amp;amp;1.&lt;br /&gt;ls_sort-up = 'X'.&lt;br /&gt;ls_sort-subtot = &amp;amp;2.&lt;br /&gt;ls_sort-expa = &amp;amp;3.&lt;br /&gt;append ls_sort to lt_sort.&lt;br /&gt;END-OF-DEFINITION.&lt;br /&gt;&lt;br /&gt;DATA:&lt;br /&gt;ls_fieldcat TYPE slis_fieldcat_alv,&lt;br /&gt;lt_fieldcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,&lt;br /&gt;lt_sort TYPE slis_t_sortinfo_alv,&lt;br /&gt;ls_sort TYPE slis_sortinfo_alv,&lt;br /&gt;ls_layout TYPE slis_layout_alv,&lt;br /&gt;ls_title TYPE slis_layout_alv_spec1,&lt;br /&gt;lt_sp_group TYPE slis_t_sp_group_alv,&lt;br /&gt;ls_col TYPE slis_layout_alv_spec,&lt;br /&gt;ls_sp_group TYPE slis_sp_group_alv.&lt;br /&gt;&lt;br /&gt;m_fieldcat 'CO_CODE' '' '' 'Country Code' .&lt;br /&gt;m_fieldcat 'COUNTRY' '' '' 'Country' .&lt;br /&gt;m_fieldcat '&lt;field&gt;' ' &lt;reference&gt;' '&lt;put&gt;' ' &lt;column&gt;&lt;br /&gt;&lt;br /&gt;this is the field catelogue that you declare before. you have to pass the correcr parameter .&lt;br /&gt;(DEFINE m_fieldcat.......................)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;m_sort 'CO_CODE' 'X' ' ' .&lt;br /&gt;m_sort 'FF_CODE' 'X' ' ' .&lt;br /&gt;&lt;br /&gt;if you want to sort it at the first time its displaying, define the fields that you want to sort.&lt;br /&gt;this is optional. and this the m_sort that we defined eirlier.&lt;br /&gt;(DEFINE m_sort............................)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;gd_layout-no_input = 'X'.&lt;br /&gt;gd_layout-colwidth_optimize = 'X'.&lt;br /&gt;gd_layout-totals_text = 'Totals'(256).&lt;br /&gt;gd_layout-coltab_fieldname = 'CELL_COLOUR'.&lt;br /&gt;* perform build_events.&lt;br /&gt;gd_prntparams-reserve_lines = '4'. "Lines reserved for footer&lt;br /&gt;gd_prntparams-no_coverpage = 'X'.&lt;br /&gt;gd_repid = sy-repid.&lt;br /&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;br /&gt;EXPORTING&lt;br /&gt; i_callback_program = gd_repid&lt;br /&gt; is_layout = gd_layout&lt;br /&gt; it_fieldcat = lt_fieldcat[]&lt;br /&gt; i_grid_title = '&lt;your&gt;'&lt;br /&gt; it_sort = lt_sort&lt;br /&gt; it_events = gt_events&lt;br /&gt; is_print = gd_prntparams&lt;br /&gt;TABLES&lt;br /&gt; t_outtab = &lt;&gt;&lt;br /&gt;EXCEPTIONS&lt;br /&gt; program_error = 1&lt;br /&gt;OTHERS = 2.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;this will show the final ALV .&lt;br /&gt;you need to change the field names and the itab name of the above code.&lt;br /&gt;&lt;br /&gt;this is an example code...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;br /&gt;*&amp;amp; Report ZTESTMARA&lt;br /&gt;*&amp;amp;&lt;br /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;br /&gt;*&amp;amp;&lt;br /&gt;*&amp;amp;&lt;br /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;br /&gt;REPORT ZTESTMARA.&lt;br /&gt;tables : MARA.&lt;br /&gt;DATA : BEGIN OF itabrec occurs 0.&lt;br /&gt;INCLUDE STRUCTURE mara.&lt;br /&gt;DATA : END OF itabrec.&lt;br /&gt;************ ALV declarations****************&lt;br /&gt;DATA: l_alv TYPE REF TO cl_gui_alv_grid.&lt;br /&gt;DATA : formatter TYPE i VALUE 0.&lt;br /&gt;DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH&lt;br /&gt;HEADER LINE,&lt;br /&gt;gd_layout TYPE slis_layout_alv,&lt;br /&gt;gd_repid LIKE sy-repid,&lt;br /&gt;gt_sort TYPE slis_t_sortinfo_alv,&lt;br /&gt;gt_events TYPE slis_t_event,&lt;br /&gt;gd_prntparams TYPE slis_print_alv.&lt;br /&gt;*********************************************&lt;br /&gt;** Selection options..**********************************&lt;br /&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;br /&gt;SELECT-OPTIONS tmatnr FOR mara-matnr .&lt;br /&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;br /&gt;********************************************************&lt;br /&gt;*** Program logic****************************&lt;br /&gt;perform getData.&lt;br /&gt;perform showALV.&lt;br /&gt;*********************************************&lt;br /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;br /&gt;*&amp;amp; Form getData&lt;br /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;br /&gt;* get the data from MARA&lt;br /&gt;*----------------------------------------------------------------------*&lt;br /&gt;* --&gt; p1 text&lt;br /&gt;* &lt;-- p2 text&lt;br /&gt;*----------------------------------------------------------------------*&lt;br /&gt;form getData .&lt;br /&gt;select * from mara into table itabrec where&lt;br /&gt;matnr in tmatnr.&lt;br /&gt;endform. " getData&lt;br /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;br /&gt;*&amp;amp; Form showALV&lt;br /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;br /&gt;* Display ALV&lt;br /&gt;*----------------------------------------------------------------------*&lt;br /&gt;* --&gt; p1 text&lt;br /&gt;* &lt;-- p2 text&lt;br /&gt;*----------------------------------------------------------------------*&lt;br /&gt;form showALV .&lt;br /&gt;&lt;br /&gt;DEFINE m_fieldcat.&lt;br /&gt;ls_fieldcat-col_pos = 0.&lt;br /&gt;ls_fieldcat-fieldname = &amp;amp;1.&lt;br /&gt;ls_fieldcat-ref_tabname = &amp;amp;2.&lt;br /&gt;ls_fieldcat-do_sum = &amp;amp;3.&lt;br /&gt;ls_fieldcat-reptext_ddic = &amp;amp;4.&lt;br /&gt;append ls_fieldcat to lt_fieldcat.&lt;br /&gt;clear ls_fieldcat.&lt;br /&gt;END-OF-DEFINITION.&lt;br /&gt;&lt;br /&gt;DEFINE m_sort.&lt;br /&gt;add 1 to ls_sort-spos.&lt;br /&gt;ls_sort-fieldname = &amp;amp;1.&lt;br /&gt;ls_sort-up = 'X'.&lt;br /&gt;ls_sort-subtot = &amp;amp;2.&lt;br /&gt;ls_sort-expa = &amp;amp;3.&lt;br /&gt;append ls_sort to lt_sort.&lt;br /&gt;END-OF-DEFINITION.&lt;br /&gt;&lt;br /&gt;DATA:&lt;br /&gt;ls_fieldcat TYPE slis_fieldcat_alv,&lt;br /&gt;lt_fieldcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,&lt;br /&gt;lt_sort TYPE slis_t_sortinfo_alv,&lt;br /&gt;ls_sort TYPE slis_sortinfo_alv,&lt;br /&gt;ls_layout TYPE slis_layout_alv,&lt;br /&gt;ls_title TYPE slis_layout_alv_spec1,&lt;br /&gt;lt_sp_group TYPE slis_t_sp_group_alv,&lt;br /&gt;ls_col TYPE slis_layout_alv_spec,&lt;br /&gt;ls_sp_group TYPE slis_sp_group_alv.&lt;br /&gt;&lt;br /&gt;m_fieldcat 'MATNR' '' '' 'Material Number' .&lt;br /&gt;m_fieldcat 'MEINS' '' '' 'Base Unit of Measure' .&lt;br /&gt;&lt;br /&gt;m_sort 'MATNR' 'X' ' ' .&lt;br /&gt;gd_layout-no_input = 'X'.&lt;br /&gt;gd_layout-colwidth_optimize = 'X'.&lt;br /&gt;gd_layout-totals_text = 'Totals'(256).&lt;br /&gt;gd_layout-coltab_fieldname = 'CELL_COLOUR'.&lt;br /&gt;* perform build_events.&lt;br /&gt;gd_prntparams-reserve_lines = '4'. "Lines reserved for footer&lt;br /&gt;gd_prntparams-no_coverpage = 'X'.&lt;br /&gt;gd_repid = sy-repid.&lt;br /&gt;&lt;br /&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;br /&gt;EXPORTING&lt;br /&gt;i_callback_program = gd_repid&lt;br /&gt;is_layout = gd_layout&lt;br /&gt;it_fieldcat = lt_fieldcat[]&lt;br /&gt;i_grid_title = 'Materials....'&lt;br /&gt;* i_save = 'A'&lt;br /&gt;it_sort = lt_sort&lt;br /&gt;it_events = gt_events&lt;br /&gt;is_print = gd_prntparams&lt;br /&gt;TABLES&lt;br /&gt;t_outtab = itabrec&lt;br /&gt;EXCEPTIONS&lt;br /&gt;program_error = 1&lt;br /&gt;OTHERS = 2.&lt;br /&gt;&lt;br /&gt;endform. " showALV&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;**** make sure that you have typed the field names in capital letters , when you defined the field catalogue and sorting catalogue...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7173308295606810244-1233384244654850773?l=bhashitha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bhashitha.blogspot.com/feeds/1233384244654850773/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7173308295606810244&amp;postID=1233384244654850773' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7173308295606810244/posts/default/1233384244654850773'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7173308295606810244/posts/default/1233384244654850773'/><link rel='alternate' type='text/html' href='http://bhashitha.blogspot.com/2008/06/alv-in-sap.html' title='ALV in SAP'/><author><name>bashi</name><uri>http://www.blogger.com/profile/06327672651140148048</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='19' height='32' src='http://bp0.blogger.com/_rbG9yZe_iwg/R-IG3DxkaHI/AAAAAAAAAAc/bm9XCoWhUrs/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7173308295606810244.post-5407245235942954789</id><published>2008-03-18T08:00:00.000-07:00</published><updated>2008-07-07T00:23:20.343-07:00</updated><title type='text'>Uva Dev cam conducted by Student Champs-Sri lanka....</title><content type='html'>&lt;a href="http://images.somarathne.multiply.com/image/5/photos/22/400x400/135/DSC09681.JPG?et=pq86XlOGy%2CVVdL7ICsoONA&amp;amp;nmid=83601798"&gt;&lt;img style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 400px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://images.somarathne.multiply.com/image/5/photos/22/400x400/135/DSC09681.JPG?et=pq86XlOGy%2CVVdL7ICsoONA&amp;amp;nmid=83601798" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;visit here for more details........&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://dotnetforum.lk/forums/t/9168.aspx"&gt;http://dotnetforum.lk/forums/t/9168.aspx&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://somarathne.multiply.com/photos/album/22/Uva_Dev_Camp_2008"&gt;http://somarathne.multiply.com/photos/album/22/Uva_Dev_Camp_2008&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7173308295606810244-5407245235942954789?l=bhashitha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bhashitha.blogspot.com/feeds/5407245235942954789/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7173308295606810244&amp;postID=5407245235942954789' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7173308295606810244/posts/default/5407245235942954789'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7173308295606810244/posts/default/5407245235942954789'/><link rel='alternate' type='text/html' href='http://bhashitha.blogspot.com/2008/03/uva-dev-cam-conducted-by-student-champs.html' title='Uva Dev cam conducted by Student Champs-Sri lanka....'/><author><name>bashi</name><uri>http://www.blogger.com/profile/06327672651140148048</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='19' height='32' src='http://bp0.blogger.com/_rbG9yZe_iwg/R-IG3DxkaHI/AAAAAAAAAAc/bm9XCoWhUrs/S220/me.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7173308295606810244.post-6040293020498579309</id><published>2008-02-29T18:37:00.000-08:00</published><updated>2008-02-29T19:13:12.934-08:00</updated><title type='text'>Using Apache and IIS for hosting in the same machine</title><content type='html'>Today both the IIS and Apahe are 2 leading servers in the world. but unfortunately  Apache  is not supporting  for asp  where  IIS  support for both  asp and  PHP (not by default but we can configure  with PHP instaltions).  But still there are  some issues  where I faced when i try to use MySQL with PHP in IIS. There for its better to use IIS for ASP and Apache for PHP.&lt;br /&gt;       &lt;br /&gt;        In this case we should install both IIS and Apache in the same PC(If we have more than one computer then there wont be any issue.we can install IIS in one machine and Apache in other machine.) .&lt;br /&gt;        when we host a website in a server the server should run on port 80. Otherwise the user have to type the port number as well in order to access the website. But we know that we cant use one port for 2 applications. There for we can configure only one server to run on port 80. But in our case we have 2 servers run on the same machine (i.e. IIS and Apache). and both servers should be accessible from the outside without typing the port number.&lt;br /&gt;&lt;br /&gt;        By doing the followings we can achieve this task.&lt;br /&gt;1. Install Apache in the server and configure it to use port 80.(by default its using port 80, so no need to configure it).&lt;br /&gt;2. Configure it for php support.&lt;br /&gt;    * if you using  XAMP or WAMP kind of a software then you do not need to configure for PHP.     its all configured and we can use it without any changes.&lt;br /&gt;3. Install IIS and add the website that you want to host in IIS.&lt;br /&gt;4. Right click on the newly created website and go to properties&lt;br /&gt;5. Change the port number to some other port number (Not 80).&lt;br /&gt;6. Start the website by click on the Start Icon in the tool bar.&lt;br /&gt;&lt;br /&gt;7. Open your browser and check weather the site can be accessed with the url and the port.&lt;br /&gt;        e.g  85 is the port number.&lt;br /&gt;         http://localhost:85   &lt;br /&gt;&lt;br /&gt;8. Open the httpd.conf. uncomment the following lines by removing '#'&lt;br /&gt;   &lt;br /&gt;        LoadModule proxy_module modules/mod_proxy.so&lt;br /&gt;        LoadModule proxy_ajp_module modules/mod_proxy_ajp.so&lt;br /&gt;        LoadModule proxy_balancer_module modules/mod_proxy_balancer.so&lt;br /&gt;        LoadModule proxy_connect_module modules/mod_proxy_connect.so&lt;br /&gt;        LoadModule proxy_http_module modules/mod_proxy_http.so&lt;br /&gt;        #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so&lt;br /&gt;        LoadModule rewrite_module modules/mod_rewrite.so&lt;br /&gt;&lt;br /&gt;    This will enable proxy support of Apache and we can use Apache for redirection and etc...&lt;br /&gt;&lt;br /&gt;9. then go to     # Virtual hosts  in httpd.conf ( if you use XAMPP then it will be as follows   &lt;br /&gt;    # Virtual hosts&lt;br /&gt;    Include conf/extra/httpd-vhosts.conf&lt;br /&gt;    which means the virtual host configurations will be in a file call httpd-vhosts.conf in conf/extra. you have to open that file)&lt;br /&gt;&lt;br /&gt;then add the following lines.&lt;br /&gt;&lt;br /&gt;                Namevirtualhost *:80&lt;br /&gt;&lt;br /&gt;                &lt;virtualhost&gt;&lt;br /&gt;                ServerName your url here&lt;br /&gt;                    ProxyRequests off&lt;br /&gt;                ProxyPass / http://your ip here:new port/&lt;br /&gt;                ProxyPassReverse / http://your ip here:new port/&lt;br /&gt;                &lt;/virtualhost&gt;&lt;br /&gt;&lt;br /&gt;e.g&lt;br /&gt;&lt;br /&gt;Namevirtualhost *:80&lt;br /&gt;&lt;br /&gt;&lt;virtualhost&gt;&lt;br /&gt;ServerName www.myserver.com&lt;br /&gt;ProxyRequests off&lt;br /&gt;ProxyPass / http://87.106.76.47:8080/&lt;br /&gt;ProxyPassReverse / http://87.106.76.47:8080/&lt;br /&gt;&lt;/virtualhost&gt;&lt;br /&gt;&lt;br /&gt;10. start the Apache. ( after any modification, you have to restart Apache.)&lt;br /&gt;&lt;br /&gt;10. open your browser and type the URL without the port number. Thats it you can see your ASP page.&lt;br /&gt;&lt;br /&gt; How it works.&lt;br /&gt;         all the incoming requests through port 80 will be handled by Apache.  Then it will check the virtual host list and will handover to the relevant server to handle other transactions. all the connection will be handled by the Apache. IIS wont listen to Port 80.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7173308295606810244-6040293020498579309?l=bhashitha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bhashitha.blogspot.com/feeds/6040293020498579309/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7173308295606810244&amp;postID=6040293020498579309' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7173308295606810244/posts/default/6040293020498579309'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7173308295606810244/posts/default/6040293020498579309'/><link rel='alternate' type='text/html' href='http://bhashitha.blogspot.com/2008/02/using-apache-and-iis-for-hosting-in.html' title='Using Apache and IIS for hosting in the same machine'/><author><name>bashi</name><uri>http://www.blogger.com/profile/06327672651140148048</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='19' height='32' src='http://bp0.blogger.com/_rbG9yZe_iwg/R-IG3DxkaHI/AAAAAAAAAAc/bm9XCoWhUrs/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7173308295606810244.post-8493627625703866858</id><published>2008-02-28T05:57:00.000-08:00</published><updated>2008-02-28T06:06:39.748-08:00</updated><title type='text'>Unexpected Error 0x8ffe2740 in IIS 5.1</title><content type='html'>If you are using IIS 5.1 on XP and if you get an error when you try to start the default website saying that "Unexpected Error 0x8ffe2740 Occurred", which means you have a port conflict with some other software in your system. Most of the time this can be some other server software such as Apache. But in my case it was "Skype". skype is using port 80 and 443 as alternatives for incoming connections.&lt;br /&gt;&lt;br /&gt;so if you want to use both IIS and Skype at the same time change the port settings of the skype or change the port settings of the iis. but the port 80 is the default port for any webserver such as IIS , Apache. there for its better to change the port settings of the Skype.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7173308295606810244-8493627625703866858?l=bhashitha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bhashitha.blogspot.com/feeds/8493627625703866858/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7173308295606810244&amp;postID=8493627625703866858' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7173308295606810244/posts/default/8493627625703866858'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7173308295606810244/posts/default/8493627625703866858'/><link rel='alternate' type='text/html' href='http://bhashitha.blogspot.com/2008/02/unexpected-error-0x8ffe2740-in-iis-51.html' title='Unexpected Error 0x8ffe2740 in IIS 5.1'/><author><name>bashi</name><uri>http://www.blogger.com/profile/06327672651140148048</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='19' height='32' src='http://bp0.blogger.com/_rbG9yZe_iwg/R-IG3DxkaHI/AAAAAAAAAAc/bm9XCoWhUrs/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7173308295606810244.post-8967992514510495270</id><published>2008-02-09T09:14:00.000-08:00</published><updated>2008-03-18T08:22:35.487-07:00</updated><title type='text'>About me</title><content type='html'>Name :Bhashitha Jayawardhane N.W.J.L&lt;br /&gt;Address : No 23, 7th lane, Colombo road, padukka.&lt;br /&gt;email :  bashi003j@gmail.com ; &lt;a href="mailto:bashi003j@yahoo.com"&gt;bashi003j@yahoo.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7173308295606810244-8967992514510495270?l=bhashitha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bhashitha.blogspot.com/feeds/8967992514510495270/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7173308295606810244&amp;postID=8967992514510495270' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7173308295606810244/posts/default/8967992514510495270'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7173308295606810244/posts/default/8967992514510495270'/><link rel='alternate' type='text/html' href='http://bhashitha.blogspot.com/2008/02/about-me.html' title='About me'/><author><name>bashi</name><uri>http://www.blogger.com/profile/06327672651140148048</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='19' height='32' src='http://bp0.blogger.com/_rbG9yZe_iwg/R-IG3DxkaHI/AAAAAAAAAAc/bm9XCoWhUrs/S220/me.JPG'/></author><thr:total>0</thr:total></entry></feed>
