- 浏览: 1466988 次
- 性别:
- 来自: 青岛人在北京
最新评论
-
yhxf_ie:
azheng270 写道 永远是0知道答案了, inser ...
使用MySQL的LAST_INSERT_ID -
yhxf_ie:
insert了还是0... 可能还要设置些什么?
使用MySQL的LAST_INSERT_ID -
一如年少:
123123
Flex使用ribbit.com的服务给手机发送短信SMS -
pointdew:
poincare 写道您好,请教一个问题,如果我的 swf 文 ...
Flex:使用FlexPaper显示PDF文档 -
pointdew:
swf远程加载问题 : flexpaper无法加载http方式 ...
Flex:使用FlexPaper显示PDF文档
文章列表
在EJB3写的WebService中获取HttpServletRequest对象
HttpServletRequest request =
(HttpServletRequest)PolicyContext.getContext("javax.servlet.http.HttpServletRequest");
这样就可以取得访问这个WebService方法的Request了。(我是用来取对方IP)
- 2009-04-16 17:18
- 浏览 3373
- 评论(1)
从外网访问JBoss,可以加启动参数 run -b 0.0.0.0
也可以修改配置文件
jboss-4.2.3.GA\server\default\deploy\jboss-web.deployer\server.xml
修改 Connector port="8080" address="${jboss.bind.address}"
为 Connector port="8080" address="0.0.0.0"
再启动后,就可以从外网访问了
- 2009-04-15 21:55
- 浏览 6528
- 评论(0)
Apache FtpServer是纯Java写的开源FTP服务器。 http://mina.apache.org/ftpserver/
下面简单讲一下配置安装过程
1. 从 http://mina.apache.org/ftpserver/ 下载apache-ftpserver-1.0.0
2. 解压缩到本地
3. 在安装目录的res\conf目录中找到users.properties,复制一份为myusers.properties
修改成自己的用户名
写道
ftpserver.user.myusername.userpassword=12345678
ftpserv ...
- 2009-04-10 00:25
- 浏览 41022
- 评论(1)
你是否开始厌倦在 mxml 中写 <mx:Script></mx:Script> 代码块?
你是否有通用的业务方法,要在多个mxml中使用?
你是否想过,让mxml专门负责页面效果,而让as文件去负责业务?
下面的方法将提供一种方案
1. 创建一个工程叫asCodeBehind
2. 创建package
3. 创建一个as文件叫LoginPage.as
package cee.view {
import mx.containers.Canvas;
import mx.controls.Alert;
import mx.controls.Butt ...
- 2009-04-09 20:27
- 浏览 2750
- 评论(2)
De MonsterDebugger
http://www.demonsterdebugger.com/
是一个开源的Flex运行时调试器,不仅可以查看trace输出,还能以树型结构显示组件模型,并浏览每个组件的属性值,还可以在运行时动态修改属性的值,允许运行时调用组件的某些方法。
1. 在 http://www.demonsterdebugger.com/ 下载 MonsterDebuggerV2_02.air (需要先安装AIR Runtime)
2. 将MonsterDebuggerV2_02.air安装到硬盘里,并启动此程序
3. 选 File > Export Cl ...
- 2009-04-09 15:53
- 浏览 4092
- 评论(1)
在Flex的某个组件中使用
var somePopupWindow : MyPopupWindow =
MyPopupWindow(PopUpManager.createPopUp(this, MyPopupWindow, false));
PopUpManager.centerPopUp(somePopupWindow);
则弹出窗口将出现在此组件的局部坐标中心。若要在全局坐标中心弹出,则修改代码如下:
var somePopupWindow : MyPopupWindow =
MyPopupWindow(PopUpManager.create ...
- 2009-04-02 19:52
- 浏览 5056
- 评论(0)
Flex访问部署在JBoss4.2上的WebService时报错
Web Service Error
code: Channel.Security.Error
detail: Destination: DefaultHTTP
message: Security error accessing url
rootCause: [SecurityErrorEvent type="securityError" bubbles=false cancelable=false eventPhase=2 text="Error #2170"]
需要给JBos ...
- 2009-03-31 20:54
- 浏览 5768
- 评论(0)
在FlexBuilder的菜单上选
Data -> Import Web Service (WSDL)...
选中你要在哪个项目生成webservice的client类,下一步
输入WSDL URI,如http://127.0.0.1/test/UserService?wsdl (请确保webservice服务开启),下一步
在Configure Code Generation页面,会显示解析出的wsdl提供的信息,Finish。(请注意这里Main Class的类名)
然后我们就可以使用这些生成的client类来访问webservice了。
参考
http://livedo ...
- 2009-03-28 21:36
- 浏览 2532
- 评论(0)
要延迟(delay)执行Flex的function,或按顺序同步执行Flex的某些function,可以使用下面两个库
KitchenSync http://code.google.com/p/kitchensynclib/
CASALib http://casalib.org/
1.使用KitchenSync
KitchenSync并没有正式支持Flex,但没有正式支持并不代表不能使用。使用KitchenSync必须先初始化 "KitchenSync.initialize(this);" 而这个方法必须在Application的addedToSt ...
- 2009-02-25 18:26
- 浏览 3432
- 评论(0)
在FlexBuilder中运行app没有问题,复制项目的 bin-debug 文件夹给同事看,报错
Error #2044: 未处理的 securityError:。 text=Error #2140: 安全沙箱冲突:file:///C|/Documents%20and%20Settings/aaa/桌面/flexproject/bin%2Ddebug/main.swf 不能加载 file:///C|/Documents%20and%20Settings/aaa/桌面/flexproject/bin%2Ddebug/assets/swf/loading.swf。仅限于文件系统的 SWF 文件 ...
- 2009-02-25 16:54
- 浏览 6667
- 评论(0)
Flex加载Flash CS3制作的swf文件, 看Demo
package myflex {
import flash.display.DisplayObject;
import flash.display.Loader;
import flash.display.MovieClip;
import flash.events.*;
import flash.net.URLRequest;
import mx.core.UIComponent;
/**
* http://livedocs.adobe.com/flex/3/html/help.html ...
- 2009-02-14 20:37
- 浏览 6330
- 评论(2)
使用xampp-win32-1.7.0.zip
配置XAMPP中apache的Alias
在xampp\apache\conf\httpd.conf 文件最后,添加如下:
Alias /myphp "D:/source/pdt-workspaces/myphp"
<Directory "D:/source/pdt-workspaces/myphp">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directo ...
- 2009-02-06 15:23
- 浏览 4440
- 评论(1)
1098 TCP org.jboss.naming.NamingService
命令行中输入
C:\Documents and Settings\Administrator>netstat -a -o -n
Proto Local Address Foreign Address State PID
TCP 127.0.0.1:1098 0.0.0.0:0 LISTENING 4324
在windows任务管理器中
查看 -> 选择列 -> 选中PID ...
- 2009-01-15 15:08
- 浏览 6756
- 评论(0)
删除Eclipse的workspace,
找到 eclipse\configuration\.settings\org.eclipse.ui.ide.prefs 文件
用记事本打开,找到
RECENT_WORKSPACES=D\:\\source\\svn\\ver09\nD\:\\workspace\\ver09
将不用的workspace目录删掉就可以了
- 2009-01-14 10:16
- 浏览 2800
- 评论(0)
使用GAppProxy在Google App Engine上做代理服务器。这里基于GAppProxy.r55版本
GAppProxy Home Page http://code.google.com/p/gappproxy/
安装Python和Google App Engine的步骤就不复述了,网上很多。
GAppProxy.r55.tar.gz解压缩后的目录中有4个目录
center
fetchserver
localproxy
tools
新建一个文件夹,比如叫proxy,并从fetchserver目录中复制fetch.py和app.yaml到这个proxy目录中。
这就是要 ...
- 2009-01-06 23:31
- 浏览 4423
- 评论(0)