Posted on 03-26-2009 11:30 AM
What is the difference between yours and mine, which is:
tell application "finder"
mount volume "afp://user:password@x.x.x.x/sharepoint"
end tell
I mean isn't it essentially the same thing?
Posted on 03-05-2009 04:39 AM
(
http://www.novell.com/support/viewContent.do?externalId=3054602&sliceId=1
)
And then to:
http://www.macosxhints.com/article.php?story071028025409750&mode=print
(
http://www.macosxhints.com/article.php?story071028025409750&mode=print
)
You can run:
$ defaults write com.apple.AppleShareClient "afp_cleartext_allow" -bool
YES
$ defaults write com.apple.AppleShareClient "afp_cleartext_warn" -bool
YES
This is for older Novell servers that don’t have Universal passwords set
up on them (they really should, but I doubt I need to tell you that).
For then doing the mounts, we have a set of scripts (I assume this is
NWEA?) that we use to do the mounts and loads of tests. If this is the
case, I can send them along off-list, let me know. Or, for opening
single apps that require a mount point, I use script editor to write an
app and then save it as an app bundle so we can brand it and use it.
Below is sample code for this.
if
(list disks) does not contain "VolumeName" then
--test to see if volume is already mounted then
tell application "Finder"
mount volume "afp://user:password@stell application "System Events" to delay 2
tell application "Finder"
open file "Applications:MyApp" of startup disk
end tell
Note in the above that the /usr/bin/SetFile file is from the developer
tools and is used to hide the volume from the desktop. It works much
like the jamf mount –hidden command but this doesn’t seem to hide it
from finder like the jamf one does (which changed in 6) so that apps can
still see the volume. We use this to launch our apps needing a volume,
but don’t use it for testing.
-John
On 3/20/09 11:26 AM, "Thomas Larkin" <tlarki at kckps.org> wrote:
I thought about that, but I don't want all 6,000 clients accessing the
share at once and I also don't want it permanently mounted. In my
experience with this testing app from last year is that it works best if
you stagger connections and testing sessions to say, no more than 400
clients at one time.
I am going to try to invoke apple script from the command line like
suggested and see if it makes a difference.
Thanks for everyone's input and help, it is appreciated.
tom
>>> Miles Leacy <miles.leacy at themacadmin.com> 03/20/09 11:21 AM >>>
Are you using Open Directory? You can set a share as a login item via
Workgroup Manager. I'm not sure of the applicable MCX settings off the
top of my head, but if WGM can do it, you can push the MCX via a dscl
script.
----------
Miles A. Leacy IV
 Certified System Administrator
 Certified Trainer
Certified Casper Administrator
----------
voice: 1-347-277-7321
miles.leacy at themacadmin.com
www.themacadmin.com <http://www.themacadmin.com>
2009/3/20 Thomas Larkin
<tlarki at kckps.org>
Still no dice. The problem I think I am having is that these shares are
on old Netware 6.5 servers and 6.5 supports AFP but heck if I know what
version of AFP it is. I do know that it is old enough that it does not
support encrypted passwords. If I recall you need to have universal
passwords enabled and well the Novell side is being migrated to SuSe but
I am not really a part of that project. Different network admins.
So, I can hit cmd + K and connect to the file share just fine. I can't
connect via command line. I don't know if there is actually a
difference. DNS is kind of weird because we have an old DNS running on
some legacy systems, which it is running an older DNS for these file
shares. At this point in time I am almost considering hosting the
database file on one of my Mac servers instead. I don't know how well
that will fare though, and my window to get this working is getting
shorter and shorter.
I just want to create a generic account, grant it access to this one
particular file on a network share so the application can write data to
the database file. Once the file share is mounted the application
launches and takes care of the rest.
It works if I do it manually, no problem. I however, want to have the
end user click one self service policy and have all the work done for
them under the hood. That way they just click and it works.
I was looking at Apple Scripts but those can be interrupted by the end
user. I'd rather it work under the hood via a shell script.
eric winkelhake
mundocomww
office 312 220 1669
cell 312 504 5155
Yaniv Lugassy <ylugassy at promedianj.com
>
Posted on 03-26-2009 11:34 AM
The only difference I saw between what you were doing and what I was doing
in my scripts was the use of 548 in yours. You were specifically calling
out the AFP port number in yours. Have you tried it without that?
Steve Wood
Director of IT
swood at integerdallas.com
The Integer Group | 1999 Bryan St. | Ste. 1700 | Dallas, TX 75201
T 214.758.6813 | F 214.758.6901 | C 940.312.2475
Posted on 03-26-2009 11:41 AM
OK, it seems that it is working now for some strange reason. I had sent
the Novell admins a few emails and it works, so maybe they did
something.
for the record this is how I do it
tell application "finder"
mount volume "afp://user:password@fs106.kckps.k12.ks.us/FS106.VOL2"
end tell
I just need now to verify if it is mounted and then have it launch my
application and I am done, any pointers on that. I have no freaking
clue why mount_afp was such a pain and it still won't work.
thanks
--missing content--
(
http://www.novell.com/support/viewContent.do?externalId=3054602&sliceId=1
)
And then to:
http://www.macosxhints.com/article.php?story071028025409750&mode=print
(
http://www.macosxhints.com/article.php?story071028025409750&mode=print
)
You can run:
$ defaults write com.apple.AppleShareClient "afp_cleartexup on them (they really should, but I doubt I need to tell you that).
For then doing the mounts, we have a set of scripts (I assume this is
NWEA?) that we use to do the mounts and loads of tests. If this is the
case, I can send them along off-list, let me know. Or, for opening
single apps that require a mount point, I use script editor to write an
app and then save it as an app bundle so we can brand it and use it.
Below is sample code for this.
if
(list disks) does not contain "VolumeName" then
--test to see if volume is already mounted then
tell application "Finder"
mount volume "afp://user:password@server.domain.org/VolumeName"
end tell
end if
--hide volume from desktops so it doesn’t get messed with
do shell script "/usr/bin/SetFile -a V /Volumes/VolumeName"
do shell script "killall Finder"
tell application "System Events" to delay 2
tell application "Finder"
open file "Applications:MyApp" of startup disk
end tell
Note in the above that the /usr/bin/SetFile file is from the developer
tools and is used to hide the volume from the desktop. It works much
like the jamf mount –hidden command but this doesn’t seem to hide it
from finder like the jamf one does (which changed in 6) so that apps can
still see the volume. We use this to launch our apps needing a volume,
but don’t use it for testing.
-John
On 3/20/09 11:26 AM, "Thomas Larkin" <tlarki at kckps.org> wrote:
I thought about that, but I don't want all 6,000 clients accessing the
share at once and I also don't want it permanently mounted. In my
experience with this testing app from last year is that it works best if
you stagger connections and testing sessions to say, no more than 400
clients at one time.
I am going to try to invoke apple script from the command line like
suggested and see if it makes a difference.
Thanks for everyone's input and help, it is appreciated.
tom
Posted on 03-26-2009 11:52 AM
You can do something like:
if (exists 'sharepointname') then
do shell script 'open a /path/to/application'
end if
Yaniv Lugassy
Promedia Technology Services, Inc.
Office: 973.253.7600 x2308
Fax: 973.253.5601
www.promedianj.com <http://www.promedianj.com>
--missing content--
&sliceId1</a><BR>
And then to:<BR>
<a href"http://www.macosxhints.com/article.php?story20071028025409750&
;modeprint">http://www.macosxhints.com/article.php?story20071028025409750&
amp;modeprint</a><BR>
<BR>
You can run:<BR>
$ defaults write com.apple.AppleShareClient "afp_cleartext_allow"
-bool YES<BR>
$ defaults write com.apple.AppleShareClient "afp_cleartext_warn"
-bool YES<BR>
<BR>
This is for older Novell servers that don’t have Universal passwords
set up on them (they really should, but I doubt I need to tell you that).<BR
<BR>
For then doing the mounts, we have a set of scripts (I assume this is NWEA?
) that we use to do the mounts and loads of tests. If this is the case, I ca
n send them along off-list, let me know. Or, for opening single apps that re
quire a mount point, I use script editor to write an app and then save it as
an app bundle so we can brand it and use it. Below is sample code for this.
<BR>
<BR>
<BR>
<BR>
<BR>
&nb
sp; <BR>
<BR>
<BR>
</SPAN><FONT SIZE"1"><SPAN STYLE'font-size:9pt'> <BR>
<BR>
<BR>
<BR>
<B>if<BR>
</B><BR>
&nb
sp; <BR>
<BR>
</SPAN></FONT><SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
</SPAN><FONT SIZE"1"><SPAN STYLE'font-size:9pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
</SPAN></FONT><SPAN STYLE'font-size:11pt'> <BR>
</SPAN><FONT SIZE"1"><SPAN STYLE'font-size:9pt'> <BR>
<BR>
</SPAN></FONT></FONT><FONT SIZE"1"><SPAN STYLE'font-size:9pt'><FONT
FACE"Verdana, Helvetica, Arial">(<FONT COLOR"#1800FF">list disks</FONT>)<
/FONT><FONT FACE"Helvetica, Verdana, Arial"> </FONT><FONT COLOR"#3500FF"><
FONT FACE"Verdana, Helvetica, Arial"><B>does not</B></FONT></FONT><FONT FAC
E"Helvetica, Verdana, Arial"> </FONT><FONT COLOR"#3500FF"><FONT FACE"Verd
ana, Helvetica, Arial"><B>contain</B></FONT></FONT><FONT FACE"Helvetica, Ve
rdana, Arial"> </FONT><FONT FACE"Verdana, Helvetica, Arial">"VolumeNam
e"</FONT><FONT FACE"Helvetica, Verdana, Arial"> </FONT><FONT COLOR"#3
500FF"><FONT FACE"Verdana, Helvetica, Arial"><B>then<BR>
</B></FONT></FONT><FONT FACE"Verdana, Helvetica, Arial">--<FONT COLOR"#4B
4E4E">test to see if volume is already mounted then<BR>
</FONT><FONT COLOR"#3500FF"><B>tell</B></FONT></FONT><FONT FACE"Helvetica
, Verdana, Arial"> </FONT><FONT COLOR"#1800FF"><FONT FACE"Verdana, Helveti
ca, Arial">application</FONT></FONT><FONT FACE"Helvetica, Verdana, Arial">
</FONT><FONT FACE"Verdana, Helvetica, Arial">"Finder"<BR>
<FONT COLOR"#1800FF">mount volume</FONT></FONT><FONT FACE"Helvetica, Verd
ana, Arial"> </FONT><FONT FACE"Verdana, Helvetica, Arial">"<a href"af
p://user:password@server.domain.org/VolumeName">afp://user:password@server.d
omain.org/VolumeName</a>"<BR>
<FONT COLOR"#3500FF"><B>end</B></FONT></FONT><FONT FACE"Helvetica, Verdan
a, Arial"> </FONT><FONT COLOR"#3500FF"><FONT FACE"Verdana, Helvetica, Aria
l"><B>tell<BR>
end</B></FONT></FONT><FONT FACE"Helvetica, Verdana, Arial"> </FONT><FONT C
OLOR"#3500FF"><FONT FACE"Verdana, Helvetica, Arial"><B>if<BR>
</B></FONT></FONT><FONT FACE"Helvetica, Verdana, Arial">--hide volume from
desktops so it doesn’t get messed with<BR>
</FONT><FONT COLOR"#1800FF"><FONT FACE"Verdana, Helvetica, Arial">do shel
l script</FONT></FONT><FONT FACE"Helvetica, Verdana, Arial"> </FONT><FONT F
ACE"Verdana, Helvetica, Arial">"/usr/bin/SetFile -a V /Volumes/VolumeN
ame"<BR>
<FONT COLOR"#1800FF">do shell script</FONT></FONT><FONT FACE"Helvetica, V
erdana, Arial"> </FONT><FONT FACE"Verdana, Helvetica, Arial">"killall
Finder"<BR>
<FONT COLOR"#3500FF"><B>tell</B></FONT></FONT><FONT FACE"Helvetica, Verda
na, Arial"> </FONT><FONT COLOR"#1800FF"><FONT FACE"Verdana, Helvetica, Ari
al">application</FONT></FONT><FONT FACE"Helvetica, Verdana, Arial"> </FONT>
<FONT FACE"Verdana, Helvetica, Arial">"System Events"</FONT><FONT
FACE"Helvetica, Verdana, Arial"> </FONT><FONT COLOR"#3500FF"><FONT FACE"
Verdana, Helvetica, Arial"><B>to</B></FONT></FONT><FONT FACE"Helvetica, Ver
dana, Arial"> </FONT><FONT COLOR"#1800FF"><FONT FACE"Verdana, Helvetica, A
rial">delay</FONT></FONT><FONT FACE"Helvetica, Verdana, Arial"> </FONT><FON
T FACE"Verdana, Helvetica, Arial">2<BR>
<FONT COLOR"#3500FF"><B>tell</B></FONT></FONT><FONT FACE"Helvetica, Verda
na, Arial"> </FONT><FONT COLOR"#1800FF"><FONT FACE"Verdana, Helvetica, Ari
al">application</FONT></FONT><FONT FACE"Helvetica, Verdana, Arial"> </FONT>
<FONT FACE"Verdana, Helvetica, Arial">"Finder"<BR>
<FONT COLOR"#1800FF">open</FONT></FONT><FONT FACE"Helvetica, Verdana, Ari
al"> </FONT><FONT COLOR"#1800FF"><FONT FACE"Verdana, Helvetica, Arial">fil
e</FONT></FONT><FONT FACE"Helvetica, Verdana, Arial"> </FONT><FONT FACE"Ve
rdana, Helvetica, Arial">"Applications:MyApp"</FONT><FONT FACE"He
lvetica, Verdana, Arial"> </FONT><FONT COLOR"#3500FF"><FONT FACE"Verdana,
Helvetica, Arial"><B>of</B></FONT></FONT><FONT FACE"Helvetica, Verdana, Ari
al"> </FONT><FONT COLOR"#1800FF"><FONT FACE"Verdana, Helvetica, Arial">sta
rtup disk<BR>
</FONT></FONT><FONT FACE"Verdana, Helvetica, Arial"><FONT COLOR"#3500FF">
<B>end</B></FONT></FONT><FONT FACE"Helvetica, Verdana, Arial"> </FONT><FONT
COLOR"#3500FF"><FONT FACE"Verdana, Helvetica, Arial"><B>tell<BR>
</B></FONT></FONT><FONT FACE"Calibri, Verdana, Helvetica, Arial"><BR>
<BR>
&nb
sp; <BR>
<BR>
</FONT></SPAN></FONT><FONT FACE"Calibri, Verdana, Helvetica, Arial"><SPAN
STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
Note in the above that the /usr/bin/SetFile file is from the develope
r tools and is used to hide the volume from the desktop. It works much like
the jamf mount –hidden command but this doesn’t seem to hide it
from finder like the jamf one does (which changed in 6) so that apps can sti
ll see the volume. We use this to launch our apps needing a volume, but don&
#8217;t use it for testing.<BR>
<BR>
-John<BR>
<BR>
<BR>
On 3/20/09 11:26 AM, "Thomas Larkin" <<a href"tlarki at kckps.or
g">tlarki at kckps.org</a> <<a href"http://tlarki@kckps.org">http://tlarki@
kckps.org</a>> > wrote:<BR>
<BR>
<BR>
<BR>
<BR>
&nb
sp; <BR>
<BR>
<BR>
</SPAN></FONT><BLOCKQUOTE><FONT FACE"Calibri, Verdana, Helvetica, Arial"><
SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
</SPAN><FONT SIZE"4"><SPAN STYLE'font-size:14pt'> <BR>
<BR>
<BR>
<BR>
I thought about that, but I don't want all 6,000 clients accessing th
e share at once and I also don't want it permanently mounted. In my experien
ce with this testing app from last year is that it works best if you stagger
connections and testing sessions to say, no more than 400 clients at one ti
me.<BR>
<BR>
&nb
sp; <BR>
<BR>
</SPAN></FONT><SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
</SPAN><FONT SIZE"4"><SPAN STYLE'font-size:14pt'> <BR>
<BR>
<BR>
<BR>
I am going to try to invoke apple script from the command line like s
uggested and see if it makes a difference.<BR>
<BR>
&nb
sp; <BR>
<BR>
</SPAN></FONT><SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
</SPAN><FONT SIZE"4"><SPAN STYLE'font-size:14pt'> <BR>
<BR>
<BR>
<BR>
Thanks for everyone's input and help, it is appreciated.<BR>
<BR>
&nb
sp; <BR>
<BR>
</SPAN></FONT><SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
</SPAN><FONT SIZE"4"><SPAN STYLE'font-size:14pt'> <BR>
<BR>
<BR>
<BR>
tom<BR>
<BR>
<BR>
&nb
sp; <BR>
<BR>
</SPAN></FONT><SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
>>> Miles Leacy <<a href"miles.leacy at themacadmin.com">mi
les.leacy at themacadmin.com</a> <<a href"http://miles.leacy@themacadmin.co
m">http://miles.leacy@themacadmin.com</a>> > 03/20/09 11:21 AM >>
;><BR>
Are you using Open Directory? You can set a share as a login item via Workg
roup Manager. I'm not sure of the applicable MCX settings off the top of my
head, but if WGM can do it, you can push the MCX via a dscl script.<BR>
<BR>
----------<BR>
Miles A. Leacy IV<BR>
<BR>
 Certified System Administrator<BR>
 Certified Trainer<BR>
Certified Casper Administrator<BR>
----------<BR>
voice: 1-347-277-7321<BR>
<a href"miles.leacy at themacadmin.com">miles.leacy at themacadmin.com</a> <<
a href"http://miles.leacy@themacadmin.com">http://miles.leacy@themacadmin.c
om</a>> <BR>
www.themacadmin.com <<a href"http://www.themacadmin.com">http://www.the
macadmin.com</a>> <<a href"http://www.themacadmin.com">http://w
ww.themacadmin.com</a>><BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
2009/3/20 Thomas Larkin<BR>
<BR>
<BR>
<BR>
<<a href"tlarki at kckps.org">tlarki at kckps.org</a> <<a href"http://tla
rki at kckps.org">http://tlarki@kckps.org</a>> ><BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
&nb
sp; <BR>
<BR>
<BR>
</SPAN></FONT><BLOCKQUOTE><FONT FACE"Calibri, Verdana, Helvetica, Arial"><
SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
</SPAN><FONT SIZE"4"><SPAN STYLE'font-size:14pt'> <BR>
<BR>
<BR>
<BR>
Still no dice. The problem I think I am having is that these shares a
re on old Netware 6.5 servers and 6.5 supports AFP but heck if I know what v
ersion of AFP it is. I do know that it is old enough that it does not suppor
t encrypted passwords. If I recall you need to have universal passwords enab
led and well the Novell side is being migrated to SuSe but I am not really a
part of that project. Different network admins.<BR>
<BR>
&nb
sp; <BR>
<BR>
</SPAN></FONT><SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
</SPAN><FONT SIZE"4"><SPAN STYLE'font-size:14pt'> <BR>
<BR>
<BR>
<BR>
So, I can hit cmd + K and connect to the file share just fine. I can'
t connect via command line. I don't know if there is actually a difference.
DNS is kind of weird because we have an old DNS running on some legacy syste
ms, which it is running an older DNS for these file shares. At this point in
time I am almost considering hosting the database file on one of my Mac ser
vers instead. I don't know how well that will fare though, and my window to
get this working is getting shorter and shorter.<BR>
<BR>
&nb
sp; <BR>
<BR>
</SPAN></FONT><SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
</SPAN><FONT SIZE"4"><SPAN STYLE'font-size:14pt'> <BR>
<BR>
<BR>
<BR>
I just want to create a generic account, grant it access to this one
particular file on a network share so the application can write data to the
database file. Once the file share is mounted the application launches and t
akes care of the rest.<BR>
<BR>
&nb
sp; <BR>
<BR>
</SPAN></FONT><SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
</SPAN><FONT SIZE"4"><SPAN STYLE'font-size:14pt'> <BR>
<BR>
<BR>
<BR>
It works if I do it manually, no problem. I however, want to have the
end user click one self service policy and have all the work done for them
under the hood. That way they just click and it works.<BR>
<BR>
&nb
sp; <BR>
<BR>
</SPAN></FONT><SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
</SPAN><FONT SIZE"4"><SPAN STYLE'font-size:14pt'> <BR>
<BR>
<BR>
<BR>
I was looking at Apple Scripts but those can be interrupted by the en
d user. I'd rather it work under the hood via a shell script.<BR>
<BR>
&nb
sp; <BR>
<BR>
</SPAN></FONT><SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
_____________________<BR>
Thomas Larkin<BR>
TIS Department<BR>
KCKPS USD500<BR>
<a href"tlarki at kckps.org">tlarki at kckps.org</a> <<a href"http://tlarki@
kckps.org">http://tlarki@kckps.org</a>> <BR>
blackberry: 913-449-7589<BR>
office: 913-627-0351<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
>>> Eric Winkelhake <<a href"eric.winkelhake at mundocomww.com">e
ric.winkelhake at mundocomww.com</a> <<a href"http://eric.winkelhake@mundoc
omww.com">http://eric.winkelhake@mundocomww.com</a>> > 03/19/09 5:29 P
M >>><BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
I think he's looking to have the user log in with their creds, right?? so a
ctually that osascript works if you remove the user name and password part.
that'll make the finder request that the user log in rather then the shell.<
BR>
<BR>
eric winkelhake<BR>
mundocomww<BR>
office 312 220 1669<BR>
cell 312 504 5155<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
&nb
sp; <BR>
<BR>
<BR>
</SPAN><FONT SIZE"2"><SPAN STYLE'font-size:10pt'> <BR>
<BR>
<BR>
<BR>
<B>Yaniv Lugassy <<a href"ylugassy at promedianj.com">ylugassy at prome
dianj.com</a> <<a href"http://ylugassy@promedianj.com">http://ylugassy@p
romedianj.com</a>> <BR>
</B><BR>
&nb
sp; <BR>
<BR>
</SPAN></FONT><SPAN STYLE'font-size:11pt'> <BR>
<BR>
<BR>
<BR>
<BR>
<BR>
><BR>
<BR>
<BR>
<BR>
&nb
sp; <BR>
<BR>
<BR>
</SPAN><FONT SIZE"2"><SPAN STYLE'font-size:10pt'> <BR>
<BR>
<BR>
<BR>