Diff for ".NetWebServiceWorkBook" | UserPreferences |
===== ¿ÀÀü 10:13 2004-05-28 =====
[http://www.akadia.com/services/naming_conventions.html Naming Conventions for .NET / C# Projects]
[http://www.microsoft.com/downloads/details.aspx?familyid=08e3d5f8-033d-420b-a3b1-3074505c03f3&displaylang=en 101 Visual Basic and C# Code Samples]
===== ¿ÀÈÄ 2:27 2004-05-22 =====
Á¦±â¶ö ´å³ÝÀº ÇÁ·Î±×·¥ ½ÇÇàµÇ´Â °æ·Î ¾Ë¾Æ³»´Â °Íµµ ¹¹ À̸® º¹ÀâÇØ.
System.AppDomain.CurrentDomain.BaseDirectory¿¡¼ ±Ü¾î¿ÀÀÚ =3
===== ¿ÀÀü 12:57 2004-05-19 =====
Á÷·ÄÈÀÇ ±âº»
{{{
Project test = new Project();
test.m_dTeamStrength = 1.0d;
test.m_strName = "TestProject";
test.m_strDesc = "This is my test Project";
System.IO.FileStream fsOutput = new System.IO.FileStream(@"C:\1.xml", System.IO.FileMode.Create);
System.Xml.Serialization.XmlSerializer serializer= new System.Xml.Serialization.XmlSerializer(test.GetType());
serializer.Serialize(fsOutput, test);
}}}
===== ¿ÀÈÄ 4:58 2004-05-17 =====
* All that WebService
keyword : SOAP(Simple Object Access Protocol), WSDL(Web Services Description Language), UDDI(Universal Description, Discovery and Integration)
* Flows
MS.net
vs.net, .net Framework ±â¹ÝÀÇ IIS, .net Remoting
Web Services Project @ Apache http://ws.apache.org/
Apache with Axis
SunONE(Sun Open Net Environment) ÇÁ·ÎÁ§Æ® ; ÀÚ¹Ù Áø¿µÀÇ Sun, HP, ¼Ò´Ï, ³ëÅ°¾Æ µî 16°³»ç¿Í Liberty Alliance Project·Î ÀÌÇà
Forte, iPlanet Application Server
[http://java.sun.com/webservices/downloads/webservicespack.html Java WSDP(Web Service Developer Pack)]
[Eclipse]/WSAD(WebSphere Studio Application Developer)
IBM, º¼·£µå, ·¡¼Å³Î µî°ú ÇÔ²² Eclipse Project ; Open Source ±â¹ÝÀÇ ide °³¹ß ÇÁ·ÎÁ§Æ®
WSAD(WebSphere Studio Application Developer)/EclipseÀÇ °³¹ß ȯ°æ ; IBM WebSphere 4.0(2003.8),
[http://www.jlab.net/ Eclipse Çѱ¹ »ç¿ëÀÚ ¸ðÀÓ] [http://eclipse.org/ Eclipse °ø½Ä ÆäÀÌÁö] [http://eclipsians.net/ WSAD/Eclipse »ç¿ëÀÚ ¸ðÀÓ]
===== ¿ÀÀü 11:03 2004-05-12 =====
º° Â÷ÀÌ°¡ ¾øÀ» °Í °°Áö¸¸, À§ ±¸¹®Àº ÆäÀÌÁö ·»´õ¸µÀÌ ³¡³ ´ÙÀ½¿¡ ¼¼¼Ç°ªÀÌ ¸»¼ÒµÈ´Ù.
Áï½Ã °ªÀ» Á¦°ÅÇÏ°í ºñ±³ÇÒ °æ¿ì°¡ Àְŵç RemoveAll()À» »ç¿ëÇÏÀÚ.
{{{
Session.Abandon();
Response.Write(null!=Session["user_pid"]);
}}}
{{{
Session.RemoveAll();
Response.Write(null!=Session["user_pid"]);
}}}