본문 바로가기

분류 전체보기

Flash Builder 4 for Android 배포 swf를 가지고 컴파일 하는 경우 adt -package -target apk -storetype pkcs12 -keystore ../codesign.p12 myApp.apk myApp-app.xml myApp.swf icons air를 가지고 컴파일 하는 경우 adt -package -target apk -storetype pkcs12 -keystore ../codesign.p12 myApp.apk myApp.air 더보기
[FLEX] Flash Builder Skin 관련 옵션 Module을 load 하려고 할때 Graph 관련 에러가 난다. ArgumentError: Error #2004: One of the parameters is invalid. at flash.display::Graphics/drawRect() at mx.graphics::RectangularDropShadow/drawShadow()[E:\dev\4.0.0\framewor ks\project s\framework\src\mx\graphics\RectangularDropShadow.as:575] at cobalt.skins::BorderSkin/updateDisplayList()[E:\dev\4.0.0\samples\the mes\cobalt \src\cobalt\skins\BorderSkin.mxml:1.. 더보기
[MSSQL] Driver, URL 2000과 다른 2005 JDBC 연결시 SQL Server 2000과 2005의 다른 점 2000 : driver - com.microsoft.jdbc.sqlserver.SQLServerDriver 2005 : driver - com.mircosoft.sqlserver.jdbc.SQLServerDriver 2005 : url="jdbc:sqlserver://127.0.0.1:64280;databaseName=uamdb" 포트번호를 sql Server Configuration Manager에서 TCP/IP 사용으로 하고 IPALL의 포트번호를 적는다. 아니면 거꾸로 포트를 지정하고 url에 지정된 포트를 넣는다. 더보기
Flash Builder 4 + WebTools Flash Builder 4 Help -> Install New Software... -> Add Galileo - http://download.eclipse.org/releases/galileo Web Tools - http://download.eclipse.org/webtools/updates Web Tools Platform (WTP) 3.1.2 Web Tools Platform SDK (WTP SDK) 3.1.2 등등 선택 Tomcat 6 구동시 오류 The APR based Apache Tomcat Native library which allows optimal performance in production environments was not fount on the java.library.pa.. 더보기
SQL 2005부터 바뀌었다는데.... ㅠㅠ db만들고 사용자 만들고 db 사용자 매칭 해주었는데 사용자가 테이블을 만들수 없다네... ㅠㅠ 열라 검색해보니.. 보안이 강화.. ㅠㅠ USE [dbname] GO GRANT control to [dbuser] GO 해야 함. 물론 로그인 사용자, 권한사용자는 따로 만들어 한다는.... 그러니 TABLE을 만들 수 있었다능.. ㅠㅠ 점점 어려워지는 MSSQL ㅠㅠ 더보기
[FLEX, JAVA] ANT and release Flash Builder 4 standalone (eclipse 3.5.1) http://archive.eclipse.org/eclipse/downloads/drops/R-3.5.1-200909170800/index.php -> JDT Runtime Binary : Download the appropriate file for your OS -> Extract zip file -> Then copy the files in features/* into your “Adobe Flash Builder 4/features” folder. -> Do the same for plugins/* -> “Adobe Flash Builder 4/plugins”. -> Restart Flash Builder 4 and now you should have the Ant UI available. [Lin.. 더보기
[ASP] ASP에서 WebService 호출하기 ASP 에서 웹서비스를 호출 하는 경우에 Soap 을 이용하여 처리 한다. '******************************************************************************************************************* ' 웹서비스 호출(오류처리 추가) '******************************************************************************************************************* Function sendToWebService(WebService,Data) Dim SoapRequest Set SoapRequest = Server.CreateObject("MSXML.. 더보기
[PHP] 변수에 여러줄 문자열 입력시 유용한 히어닥(Heredoc) $var = 더보기
[FLEX] 플렉스에서 웹메시지 보는 프로그램 FLEX 에서 WebService 나 HTTPService 를 이용한 웹접근시 에러메시지를 잘보여주지 못한다. 그럴땐 위의 프로그램을 써보자. 쉽게 어떤 WebService에서 문제가 있는지 확인할 수 있다. Introducing Fiddler What is Fiddler? Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet. Fiddler allows you to inspect all HTTP(S) traffic, set breakpoints, and "fiddle" with incoming or outgoing data. Fiddler includes a powerful.. 더보기
INSERT INTO ~ SELECT 에서 필드가 자동증가값이라면... b_item의 PRIMARY KEY 걸려있는 필드는 자동증가값이면 INSERT INTO b_item (field1, field2,......) SELECT field1, field2,...... FROM item_work A LEFT JOIN b_item B ON A.ITEM_CD = B.ITEM_CD 이런식으로 해당 필드를 제외하고 입력하세요 출처 : 데브피아 더보기