You've already forked lazarus-ccr
ws_helper now has the following parameters : ws_helper [-u] [-p] [-b] [-i] [-oPATH] inputFilename -u Generate the pascal translation of the WSDL input file -p Generate service proxy -b Generate service binder -i Generate service minimal implementation -o PATH Relative output directory -a PATH Absolute output directory git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@135 8e941d3f-bd1b-0410-a28a-d453659cc2b4
76 lines
1.4 KiB
Plaintext
76 lines
1.4 KiB
Plaintext
object fMain: TfMain
|
|
Left = 290
|
|
Height = 300
|
|
Top = 180
|
|
Width = 400
|
|
HorzScrollBar.Page = 399
|
|
VertScrollBar.Page = 299
|
|
ActiveControl = Button1
|
|
Caption = 'Simple TCP App Server'
|
|
OnCreate = FormCreate
|
|
object Label1: TLabel
|
|
Left = 16
|
|
Height = 18
|
|
Top = 72
|
|
Width = 24
|
|
Caption = 'Log'
|
|
Color = clNone
|
|
ParentColor = False
|
|
end
|
|
object Button1: TButton
|
|
Left = 16
|
|
Height = 25
|
|
Top = 8
|
|
Width = 104
|
|
Action = actStart
|
|
TabOrder = 0
|
|
end
|
|
object mmoLog: TMemo
|
|
Left = 8
|
|
Height = 192
|
|
Top = 96
|
|
Width = 384
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
ReadOnly = True
|
|
ScrollBars = ssAutoBoth
|
|
TabOrder = 1
|
|
end
|
|
object Button2: TButton
|
|
Left = 16
|
|
Height = 25
|
|
Top = 40
|
|
Width = 104
|
|
Action = actStop
|
|
TabOrder = 2
|
|
end
|
|
object edtPort: TEdit
|
|
Left = 128
|
|
Height = 23
|
|
Top = 10
|
|
Width = 80
|
|
TabOrder = 3
|
|
Text = '1234'
|
|
end
|
|
object AL: TActionList
|
|
left = 152
|
|
top = 32
|
|
object actStart: TAction
|
|
Caption = 'Start( Port=)'
|
|
DisableIfNoHandler = True
|
|
OnExecute = actStartExecute
|
|
OnUpdate = actStartUpdate
|
|
end
|
|
object actStop: TAction
|
|
Caption = 'Stop'
|
|
DisableIfNoHandler = True
|
|
OnExecute = actStopExecute
|
|
OnUpdate = actStopUpdate
|
|
end
|
|
object actClearLog: TAction
|
|
Caption = 'Clear Log'
|
|
DisableIfNoHandler = True
|
|
OnExecute = actClearLogExecute
|
|
end
|
|
end
|
|
end
|