What do you seem the method ?
lunes, 23 de julio de 2007
Designing VLAN
What do you seem the method ?
viernes, 20 de julio de 2007
Automation sending email
Part Involved : Excel
Summary: Monitoring process involved to send notifications in the same moment that the event has been detected..
Scenario : After the event has been triggered using VBA programming code enviroment is used to send a warn message by email to chief supervisor.
Company : Ministry of Health of Peru (MINSA).
Reference Date : March 2007.
Develop programming code VBA brings a intesting integration tool because the entire Office Suite (Access, Excel, Word, Power Point, OutLook itself) can be connected to the programmed VBA code developed and use as instance every resource available into Office as input data for our programming code to fire the event desired (in this case -send an email-). The exception is : only works up to office 2000, after that Microsoft inserted into office suite a security issue where it forbids a third party vendor use this plattaform as base to launch emails. The same restriction is applied when the interchange information between every office suite is used. But there is another type of executable file that handle client email functions that I will take in additionally topic. Next example works nice but up to Office 2000
Dim Uno As Object
Set Uno = CreateObject("Outlook.application")
Set Dos = Uno.GetNameSpace("MAPI")
Set Tres = Uno.CreateItem(0)
Tres.To = "germanmedinavirtual@gmail.com"
Tres.Subject = "Summary " + Str(hoy)
Tres.Body = Message
Tres.Send
Set Uno = Nothing: Set Dos = Nothing: Set Tres = Nothing:
lunes, 16 de julio de 2007
GSM 850 MHZ with noise ?
Part Involved : GSM 850 MHz
Summary: The quality of mobile call party has been degraded.
Scenario : Mobile call party has a lot of noise inside of main building of MINSA (HQ).
Company : Ministry of Health of Peru (MINSA).
Reference Date : April 2007.
sábado, 14 de julio de 2007
Opening a new GSM mobile phone shop center
Part involved : Assistance to the entire sets of mobile phone of Telefonica of Peru (GSM 850Mhz).
Summary : A new point of Technical support opening for GSM mobile phones.
Scenario : The user of the mobile phone services need to discard problems from the same equipment and following the best quality of the call service.
Company : Chaquinet Telecomunicaciones SRL.
Reference date : Julio 2007.
My friend Freddy Fabian has opened a new point of sales and technical support for GSM mobile phone while at the same time is an authorized agent of the mobile carrier operator Telefonica of Peru on north of Lima city. I was invited by him during the opening party and from here I want to congratulate him for this important step into the business world.
martes, 10 de julio de 2007
Wireless DWL-900AP+ Configuration
viernes, 6 de julio de 2007
Connection to database Oracle 10G
Part Involved : Log in
Summary : Can not log in to database.
Scenario : Your connection to database is refused, the problem become from LAN issues ?
Company : National Institute of Cancer sickness of Peru (INEN).
Reference Date : June 2006.
This subject involved to know additional knowledge from Oracle plattform in order to discard suppose Oracle problems and focused on LAN issues.
1.- The client computer has a file called tnsnames.ora saving the profile of the strings of connections of every database available into networking infrastructure configured.
2.- Next lines belongs to a sample of tnsnames.ora file
#tnsnames.ora Network Configuration File:
D:\oracle\product\10.2.0\db_1\network\admin\tnsnames.ora
# Generated by Oracle configuration tools.
ORCL=
(DESCRIPTION=
(ADDRESS=(PROTOCOL=TCP)(HOST=707-03)(PORT=1521)
(CONNECT_DATA=
(SERVER=DEDICATED)
(SERVICE_NAME= sw1)
)
)
BD=
(DESCRIPTION=
(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.16.100)(PORT=1521)
(CONNECT_DATA=
(SERVER=DEDICATED)
(SERVICE_NAME= sw1)
)
)
EXTPROC_CONNECTION_DATA=
(DESCRIPTION=
(ADDRESS_LIST=
(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1))
)
(CONNECT_DATA=
(SID=PLSExtProc)
(PRESENTATION= RO)
)
)
3.- SERVICE_NAME is the name of the Oracle instance while ORCL and BD are the strings of connections to database, then from DOS windows execute next command directed to the strings of connection :
C:\> tnsping bd
TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 06-JUL-2007 17:51:29
Copyright (c) 1997,2005, Oracle. All rights reserved.
Archivos de parametros utilizados:
D:\Oracle\product\10.2.0\db_1\network\admin\sqlnet.ora
Adaptador TNSNAMES utilizado para resolver el alias
Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.16.100)(PORT = 1521)(CONNECT_DATA = (SERVER=DEDICATED) (SERVICE_NAME = sw1)))
Realizado correctamente (10 mseg)
C:\>
This is a example that connection from your computer and database is working.
4.- Now try with next command :
C:\> ping 192.168.16.100
5.- If you have answer from ping command and not from tnsping command then the Oracle listener is down. Later I will take this issue.
lunes, 2 de julio de 2007
POP3 connectivity
Part Involved : Port 110
Summary : Checking if POP3 functions is working with configuration of email service.
Scenario : Sometimes email does not arrive to our inbox while client insist you to say : I have sent you.
Company : National Institute of Cancer sickness of Peru (INEN).
Reference Date : April 2003.
Sometimes is not enough to set up configuration of user mailbox, POP3 and SMTP into outlook user profile account such as http://germanmedinavirtual.blogspot.com/2007/04/migrating-pst-2003-2007-to-previous.html when trying to recover email is not working because there is some type of lost connection -seemingly- , after that additionally it needs to test if mailbox account is working and you can achive when log in to email server account and execute POP3 commands and rule out bad connections of LAN issues from probably email server services problems. Next lines are a true example (with real email server and user account) that you can follow to troubleshoot your connection with email server using POP3 commands.
C:\> telnet inen6.inen.sld.pe 110
+OK POP3 inen6.inen.sld.pe 2004.89 server ready
user prueba1
+OK User name accepted, password please
pass prueba1
+OK Mailbox open, 20 messages
list
+OK Mailbox scan listing follows
1 15955
2 36492
3 31637
4 14385
5 1340
6 1441
7 1444
8 1444
9 1444
10 1444
11 1443
12 1443
13 1443
14 1443
15 1443
16 1443
17 1443
18 1444
19 11596
20 1443
stat
+OK 20 131610
Reach to here means connectivity from your pc to email server account is ok, list command shows the quantity of email saved temporaly into email server -identify by ID- waiting to download in the next connection and stat command shows the summary of the previous command. To close connection proceed :
quit
+OK Sayonara
Se ha perdido la conexión con el host
C:\>