Re: scheduled task save output to a network share

2014-11-12 Thread marc --

>Are you still running cf under the system account? If so then this is why,
>and is also insecure.

I forgot to add, CF10 is _not_ running under the local system acct - it runs as 
a dedicated user that has access to the share. I found a solution already:

file: \\myNetworkShare\path\to\networkshare is not recognized by CF admin
file: myNetworkShare\path\to\networkshare is recognized by CF admin

Looks like you have to escape the \\ that is part of the UNC name...

I tested this, the ST ran and it created a file on this network file location 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359618
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: scheduled task save output to a network share

2014-11-12 Thread Russ Michaels

Are you still running cf under the system account? If so then this is why,
and is also insecure.
You need to run cf as a user who has access to the network share.
If you are still running an out of the box install then you should also
follow the lock down guide.


On Wed, Nov 12, 2014 at 9:15 AM, marc --  wrote:


Hello,

ColdFusion 10,286680 running on a Windows 2012R2 machine.
I want to create a Scheduled Task. The output should be saved to a file on
a network share. The network share is accessible via  Windows explorer:
either using the UNC notation (\\) or via a mapping (F:).

When I enable the option Publish on the "Server Settings > Add/Edit
Scheduled Task" page the UNC path in the field File is not accepted. Also
using the mapped drive F: is not accepted. Submitting the form gives this
error

“If you want to publish the result of this task, you must use an existing,
valid directory name.”

Using the “Browse Server” button does not give me the directory  - just
drives: A,C and Z. Only C gives access to the C: drive. Clicking the other
two driveletters do nothing.

Is Coldfusion unable to save the result of a scheduled task to a network
share?



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359617
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


scheduled task save output to a network share

2014-11-12 Thread marc --

Hello,

ColdFusion 10,286680 running on a Windows 2012R2 machine.
I want to create a Scheduled Task. The output should be saved to a file on a 
network share. The network share is accessible via  Windows explorer: either 
using the UNC notation (\\) or via a mapping (F:).

When I enable the option Publish on the "Server Settings > Add/Edit Scheduled 
Task" page the UNC path in the field File is not accepted. Also using the 
mapped drive F: is not accepted. Submitting the form gives this error 

“If you want to publish the result of this task, you must use an existing, 
valid directory name.”

Using the “Browse Server” button does not give me the directory  - just 
drives: A,C and Z. Only C gives access to the C: drive. Clicking the other two 
driveletters do nothing.

Is Coldfusion unable to save the result of a scheduled task to a network share?

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359616
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfprint - labels network printer

2012-02-14 Thread Keith McGee

I should also add, this only happens when you change the roll in the middles of 
a process. After changing the roll and the next process starts everything works 
ok again. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349894
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cfprint - labels network printer

2012-02-14 Thread Keith McGee

I am creating and printing labels with barcodes to a network GK420d zebra 
printer. Everything works fine until you have to replace the label roll. The 
printer will pause, print half labels, skip labels, and act erratically. I have 
tried printing directly to the printer, spooling, numerous settings. 

Has anyone ran into this issue and how did you solve it?

Also I have to create a 1 sec pause in between new labels for the printed to 
keep up. Any ideas on that also. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349893
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CreateObject referencing a .NET assembly on Network Storage

2011-09-19 Thread Mike Chabot

Have you tried making sure your code works in a development
environment with the DLL available locally?

-Mike Chabot

On Wed, Sep 14, 2011 at 2:21 PM, Andrey Baranov
 wrote:
>
> The main issue is that the dll is not being found. I am getting the error:
>
> "Class FMSMQ.MSMQWriter not found in the specified assembly list.
>
> The assembly that contains the class must be provided to the assembly 
> attribute."
>
> The IIS virtual directory is serving up content from the same root level 
> directory on the Network Storage.
>
> The page I'm calling, is trying to create the class object, and then call a 
> single method.
>
> 
>
>    variables.assemblyPath = 
> "\\NETWORK_STORAGE_DRV\PRD\DMV\Assemblies\Feeds\FMSMQ.dll";
>
>    objVar = CreateObject(".NET", "FMSMQ.MSMQWriter", variables.assemblyPath);
>
>    rc = FMSMQ.Write(variables.INPUTXML);
>    //WriteOutput(rc);
>
> 
>
> So, both IIS and Coldfusion are installed on the same server, but the actual 
> web content resides elsewhere. Coldfusion is running under a local account 
> that's synced to an account for the Network Storage, so it has access to the 
> pages it needs. As far as I can see, there should be no problem accessing 
> assembly, since it resides under the same share.
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347525
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CreateObject referencing a .NET assembly on Network Storage

2011-09-19 Thread Russ Michaels

it may be then that the request is running under the application pool identity.
try changing that, or trying impersonating another user.


On Mon, Sep 19, 2011 at 2:31 PM, Andrey Baranov
 wrote:
>
>>by default it uses the SYSTEM account like all other CF services, so
>>you may need to change this as well.
>>
>>
>>>
>
> Good catch, the .NET service was not using this account. Unfortunately, I'm 
> still getting the error.
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347515
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CreateObject referencing a .NET assembly on Network Storage

2011-09-19 Thread Andrey Baranov

>by default it uses the SYSTEM account like all other CF services, so
>you may need to change this as well.
>
>
>>

Good catch, the .NET service was not using this account. Unfortunately, I'm 
still getting the error. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347514
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CreateObject referencing a .NET assembly on Network Storage

2011-09-16 Thread Russ Michaels

by default it uses the SYSTEM account like all other CF services, so
you may need to change this as well.

On Fri, Sep 16, 2011 at 8:56 AM, Jochem van Dieten  wrote:
>
> On Wed, Sep 14, 2011 at 8:21 PM, Andrey Baranov wrote:
>> So, both IIS and Coldfusion are installed on the same server, but the actual 
>> web content resides elsewhere. Coldfusion is running under a local account 
>> that's synced to an account for the Network Storage, so it has access to the 
>> pages it needs.
>
> But what account is the ColdFusion .NET Service using?
>
> Jochem
>
> --
> Jochem van Dieten
> http://jochem.vandieten.net/
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347494
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CreateObject referencing a .NET assembly on Network Storage

2011-09-16 Thread Jochem van Dieten

On Wed, Sep 14, 2011 at 8:21 PM, Andrey Baranov wrote:
> So, both IIS and Coldfusion are installed on the same server, but the actual 
> web content resides elsewhere. Coldfusion is running under a local account 
> that's synced to an account for the Network Storage, so it has access to the 
> pages it needs.

But what account is the ColdFusion .NET Service using?

Jochem

-- 
Jochem van Dieten
http://jochem.vandieten.net/

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347493
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CreateObject referencing a .NET assembly on Network Storage

2011-09-14 Thread Andrey Baranov

The main issue is that the dll is not being found. I am getting the error: 

"Class FMSMQ.MSMQWriter not found in the specified assembly list.

The assembly that contains the class must be provided to the assembly 
attribute."

The IIS virtual directory is serving up content from the same root level 
directory on the Network Storage. 

The page I'm calling, is trying to create the class object, and then call a 
single method. 



variables.assemblyPath = 
"\\NETWORK_STORAGE_DRV\PRD\DMV\Assemblies\Feeds\FMSMQ.dll";

objVar = CreateObject(".NET", "FMSMQ.MSMQWriter", variables.assemblyPath);

rc = FMSMQ.Write(variables.INPUTXML);
//WriteOutput(rc);



So, both IIS and Coldfusion are installed on the same server, but the actual 
web content resides elsewhere. Coldfusion is running under a local account 
that's synced to an account for the Network Storage, so it has access to the 
pages it needs. As far as I can see, there should be no problem accessing 
assembly, since it resides under the same share.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347462
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFDIRECTORY of a mapped network drive

2011-06-29 Thread Leigh

> They're really not
> specific to CF,
> but rather to how Windows and services work.

True. But the cfdirectory + mapped drive question comes up frequently. Seems 
worthy of a trouble-shooting note or a comment at least. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345938
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFDIRECTORY of a mapped network drive

2011-06-29 Thread Dave Watts

> > By default, there are two problems with using mapped drives
> > from CF.
>
> Anyone know if those two tips are in the official documentation anywhere? I 
> looked, but may have missed it ..

I would expect that they aren't. They're really not specific to CF,
but rather to how Windows and services work.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345937
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFDIRECTORY of a mapped network drive

2011-06-29 Thread Leigh

> By default, there are two problems with using mapped drives
> from CF.

Anyone know if those two tips are in the official documentation anywhere? I 
looked, but may have missed it .. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345935
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFDIRECTORY of a mapped network drive

2011-06-29 Thread Dave Watts

> What am I doing wrong here as nothing shows up even with debugging turned on.
> The S drive is a mapped network drive. If mapped drive is the issue, is there 
> any way around it?

By default, there are two problems with using mapped drives from CF.

First, CF runs as SYSTEM by default, and SYSTEM has no access to
network resources.

Second, if you run CF as another user with explicit permissions to a
network share, CF can access that network share. But that doesn't mean
that CF can access a drive mapping. For that to work, you'd need to
log in as the user in question and create a persistent drive mapping.
Instead, I'd recommend just accessing the UNC path directly rather
than bothering with a drive mapping.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345932
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFDIRECTORY of a mapped network drive

2011-06-29 Thread Terry Troxel

It just might help if I pasted in the code.sorry.

> What am I doing wrong here as nothing shows up even with debugging turned
> on.
> The S drive is a mapped network drive.
> If mapped drive is the issue, is there any way around it?
>
> Terry
>





#name#




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345930
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: social network application based on CF ?

2011-03-26 Thread Akos Fortagh

HI there, I just came across this thread via google.  I've developed a social 
networking app in CF.  It has many features like friend request, become friends 
with one another, news feed if someone become friends with somebody else, news 
feed on different things like if someone uploads a new pic etc,messaging 
between users, simple upload photos.  You an see it here at 
http://www.pgcegateway.co.uk which is an educational social networking site.
The site needs a fresh look but it works OK.  The idea could be adopted to many 
other sites, adding or taking away features.
Let me know what you think.
CHeers
Akos
http://www.akosnet.co.uk


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343300
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: social network application based on CF ?

2011-03-26 Thread Akos Fortagh

HI there, I just came across this thread via google.  I've developed a social 
networking app in CF.  It has many features like friend request, become friends 
with one another, news feed if someone become friends with somebody else, news 
feed on different things like if someone uploads a new pic etc,messaging 
between users, simple upload photos.  You an see it here at 
http://www.pgcegateway.co.uk which is an educational social networking site.
The site needs a fresh look but it works OK.  The idea could be adopted to many 
other sites, adding or taking away features.
Let me know what you think.
CHeers
Akos
http://www.akosnet.co.uk 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343299
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looking for CF/Adobe Network group in Chicago

2011-02-09 Thread J.J. Merrick

The Chicago Geek Breakfast is a great place to meet other techies. Might get
you started to finding other groups.

http://chicago.geekbreakfast.org/


We have a couple around Nashville that we have started and they are a great
resource.


-J.J.

On Wed, Feb 9, 2011 at 9:24 AM, Eric Roberts <
ow...@threeravensconsulting.com> wrote:

>
> Joshua...check out Linkdin-Chicago (obviously on Linkdin).  They have
> regular networking events downtown.  There is also a tech group...I'll have
> to look it up when I get a chance that does the same.  Currently, there
> isn't anything specifically CF going on at this time as far as I know.
>
> Eric
>
> -Original Message-
> From: Casey Dougall [mailto:ca...@uberwebsitesolutions.com]
> Sent: Tuesday, February 08, 2011 21:49
> To: cf-talk
> Subject: Re: Looking for CF/Adobe Network group in Chicago
>
>
> On Tue, Feb 8, 2011 at 10:09 PM, Joshua O'Connor-Rose <
> joshua.oconnorr...@gmail.com> wrote:
>
> >
> > While CFMeetup is great and there are awesome presentations going on
> > it's not exactly a networking opportunity for folks in the area.
> >
> > I participate in the web events and they are great, but networking ops
> > aren't quite the same.
> >
> > Thanks for the info.
> >
> > -Joshua O'Connor-Rose
> > -All is Good
> >
> >
>
> The most intriging events like that around here are more the local chamber
> of commerce mixers. Also the Young Professional Networks many cities have.
> I
> know you may want something more specific to CFML, but if your looking to
> meet people and network, here ya go ;-)
>
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342053
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Looking for CF/Adobe Network group in Chicago

2011-02-09 Thread Eric Roberts

Joshua...check out Linkdin-Chicago (obviously on Linkdin).  They have
regular networking events downtown.  There is also a tech group...I'll have
to look it up when I get a chance that does the same.  Currently, there
isn't anything specifically CF going on at this time as far as I know.

Eric

-Original Message-
From: Casey Dougall [mailto:ca...@uberwebsitesolutions.com] 
Sent: Tuesday, February 08, 2011 21:49 
To: cf-talk
Subject: Re: Looking for CF/Adobe Network group in Chicago


On Tue, Feb 8, 2011 at 10:09 PM, Joshua O'Connor-Rose <
joshua.oconnorr...@gmail.com> wrote:

>
> While CFMeetup is great and there are awesome presentations going on 
> it's not exactly a networking opportunity for folks in the area.
>
> I participate in the web events and they are great, but networking ops 
> aren't quite the same.
>
> Thanks for the info.
>
> -Joshua O'Connor-Rose
> -All is Good
>
>

The most intriging events like that around here are more the local chamber
of commerce mixers. Also the Young Professional Networks many cities have. I
know you may want something more specific to CFML, but if your looking to
meet people and network, here ya go ;-)




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342050
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looking for CF/Adobe Network group in Chicago

2011-02-08 Thread Casey Dougall

On Tue, Feb 8, 2011 at 10:09 PM, Joshua O'Connor-Rose <
joshua.oconnorr...@gmail.com> wrote:

>
> While CFMeetup is great and there are awesome presentations going on
> it's not exactly a networking opportunity for folks in the area.
>
> I participate in the web events and they are great, but networking ops
> aren't quite the same.
>
> Thanks for the info.
>
> -Joshua O'Connor-Rose
> -All is Good
>
>

The most intriging events like that around here are more the local chamber
of commerce mixers. Also the Young Professional Networks many cities have. I
know you may want something more specific to CFML, but if your looking to
meet people and network, here ya go ;-)


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342032
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looking for CF/Adobe Network group in Chicago

2011-02-08 Thread Joshua O'Connor-Rose

While CFMeetup is great and there are awesome presentations going on
it's not exactly a networking opportunity for folks in the area.

I participate in the web events and they are great, but networking ops
aren't quite the same.

Thanks for the info.

-Joshua O'Connor-Rose
-All is Good

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342030
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Looking for CF/Adobe Network group in Chicago

2011-02-08 Thread Terry Troxel

Thank you Casey, that is EXACTLY what I meant. I am off to read up on what I
gotta do to get into that and learn.

Thank you again.
Terry

-Original Message-
From: Casey Dougall [mailto:ca...@uberwebsitesolutions.com] 
Sent: Tuesday, February 08, 2011 3:11 PM
To: cf-talk
Subject: Re: Looking for CF/Adobe Network group in Chicago


On Tue, Feb 8, 2011 at 5:55 PM, Terry Troxel  wrote:

>
> Hey, is this the INTERNET world? Are we having a hard time finding the
> funds
> to have a big Coldfusion Extravaganza to host, participate in, attend,
> etc.?
>
>

You mean like?
http://www.meetup.com/coldfusionmeetup/




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342014
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looking for CF/Adobe Network group in Chicago

2011-02-08 Thread Kelly

You beat me to it! LOL :)

On 2/8/2011 6:10 PM, Casey Dougall wrote:
>
> You mean like?
> http://www.meetup.com/coldfusionmeetup/
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342013
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looking for CF/Adobe Network group in Chicago

2011-02-08 Thread Casey Dougall

On Tue, Feb 8, 2011 at 5:55 PM, Terry Troxel  wrote:

>
> Hey, is this the INTERNET world? Are we having a hard time finding the
> funds
> to have a big Coldfusion Extravaganza to host, participate in, attend,
> etc.?
>
>

You mean like?
http://www.meetup.com/coldfusionmeetup/


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342012
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Looking for CF/Adobe Network group in Chicago

2011-02-08 Thread Terry Troxel

Hey, is this the INTERNET world? Are we having a hard time finding the funds
to have a big Coldfusion Extravaganza to host, participate in, attend, etc.?

Why cannot some enterprising folks come up with some sort of Webinar that we
can all attend and not have to leave our desk?

Would you be willing to join something that was a forward thinking, idea
creating, learning experience, knowledge expandinghey I am not a
writer, but I don't have to bucks to travel somewhere to experience
Something that just might be way over my head, but I certainly would want to
partake in something well thought out that I could attend online that would
allow me to expand, meet, and partake in anything CF related, that just
might put some forward momentum in this wild and crazy language we all love
so much.
Some of you folks in this group certainly have the knowledge, resources,
desire to pull something like this off.

How 'bout you?

Terry


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342011
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Looking for CF/Adobe Network group in Chicago

2011-02-08 Thread Eric Roberts

Joshua,
The CHIFUG group has been relative dormant and there has only been a couple
of meetings over the past couple of years.  I would love to see something
start up again.  They guy that used to run it had twins a few years ago and
obviously, that and the coffee shop he runs with his wife (which was an
awesome place for meetings), took up all his time.  Unfortunately that had
the side effect of taking the steam out of the momentum of the group.

Eric

-Original Message-
From: Joshua O'Connor-Rose [mailto:joshua.oconnorr...@gmail.com] 
Sent: Tuesday, February 08, 2011 15:05 
To: cf-talk
Subject: Looking for CF/Adobe Network group in Chicago


Does anybody know of any groups in Chicago (downtown) that are active and
has a focus on Coldfusion/Adobe products

I'm looking to possibly shift back into Java/CF/Mobile world from .NET
world.

thanks in advance

-Joshua O'Connor-Rose
-All is Good



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342007
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looking for CF/Adobe Network group in Chicago

2011-02-08 Thread John M Bliss

http://chicago.groups.adobe.com

On Tue, Feb 8, 2011 at 3:05 PM, Joshua O'Connor-Rose <
joshua.oconnorr...@gmail.com> wrote:

>
> Does anybody know of any groups in Chicago (downtown) that are active
> and has a focus on Coldfusion/Adobe products
>
> I'm looking to possibly shift back into Java/CF/Mobile world from .NET
> world.
>
> thanks in advance
>
> -Joshua O'Connor-Rose
> -All is Good
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342004
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Looking for CF/Adobe Network group in Chicago

2011-02-08 Thread Joshua O'Connor-Rose

Does anybody know of any groups in Chicago (downtown) that are active
and has a focus on Coldfusion/Adobe products

I'm looking to possibly shift back into Java/CF/Mobile world from .NET world.

thanks in advance

-Joshua O'Connor-Rose
-All is Good

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342001
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: social network application based on CF ?

2010-08-28 Thread Wil Genovese

I know that Shoutlife.com is a ColdFusion based social network, but they custom 
wrote theirs.  


Wil Genovese
Sr. Web Application Developer/
Systems Administrator

Wil Genovese Consulting
651-894-4238
wilg...@trunkful.com
www.trunkful.com

On Aug 28, 2010, at 1:19 PM, Rick Eidson wrote:

> 
> I have been looking for something like this too with no luck.  I can't
> believe nobody has built one yet. There are forum applications that are open
> source and I have tried to add basic features for extending profiles but its
> still not anything near a social network.
> 
> 
> 
> Rick
> 
> -Original Message-
> From: Will Tomlinson [mailto:w...@wtomlinson.com] 
> Sent: Saturday, August 28, 2010 12:15 PM
> To: cf-talk
> Subject: Re: social network application based on CF ?
> 
> 
>> Hi list, is there any social network application / social network 
>> framework based on CF you guys are aware of ?
>> Thanks in advance for your feedback !
>> 
>> Uwe
>> 
> 
> This one is PHP, but I know folks that seem to love it. 
> 
> http://www.socialengine.net/
> 
> Will
> 
> 
> 
> 
> 
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336646
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: social network application based on CF ?

2010-08-28 Thread Rick Eidson

I have been looking for something like this too with no luck.  I can't
believe nobody has built one yet. There are forum applications that are open
source and I have tried to add basic features for extending profiles but its
still not anything near a social network.



Rick

-Original Message-
From: Will Tomlinson [mailto:w...@wtomlinson.com] 
Sent: Saturday, August 28, 2010 12:15 PM
To: cf-talk
Subject: Re: social network application based on CF ?


> Hi list, is there any social network application / social network 
> framework based on CF you guys are aware of ?
> Thanks in advance for your feedback !
> 
> Uwe
> 

This one is PHP, but I know folks that seem to love it. 

http://www.socialengine.net/

Will





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336645
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: social network application based on CF ?

2010-08-28 Thread Will Tomlinson

> Hi list, is there any social network application / social network 
> framework based on CF you guys are aware of ?
> Thanks in advance for your feedback !
> 
> Uwe
> 

This one is PHP, but I know folks that seem to love it. 

http://www.socialengine.net/

Will



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336644
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: social network application based on CF ?

2010-08-28 Thread cf-t...@sdsolutions.de

I mean it, as I asked. s.th. similar to: http://elgg.org/ 
e.g.


From: Sean Corfield 
Sent: Samstag, 28. August 2010 04:59
To: cf-talk 
Subject: Re: social network application based on CF ? 

On Fri, Aug 27, 2010 at 3:23 PM, cf-t...@sdsolutions.de
 wrote:
> Hi list, is there any social network application / social network framework 
> based on CF you guys are aware of ?

What do you mean by "social network application / social network
framework"? Twitter? Facebook? Ning? LinkedIn? MySpace? They're all
very different - and they're all custom applications anyway (with a
LOT of low-level tweaks and customizations behind the scenes to make
them scale).
-- 
Sean A Corfield -- (904) 302-SEAN
Railo Technologies, Inc. -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336643
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: social network application based on CF ?

2010-08-27 Thread Sean Corfield

On Fri, Aug 27, 2010 at 3:23 PM, cf-t...@sdsolutions.de
 wrote:
> Hi list, is there any social network application / social network framework 
> based on CF you guys are aware of ?

What do you mean by "social network application / social network
framework"? Twitter? Facebook? Ning? LinkedIn? MySpace? They're all
very different - and they're all custom applications anyway (with a
LOT of low-level tweaks and customizations behind the scenes to make
them scale).
-- 
Sean A Corfield -- (904) 302-SEAN
Railo Technologies, Inc. -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336642
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: social network application based on CF ?

2010-08-27 Thread Wil Genovese

Are you looking for an app you can download and use or just want to know if any 
social networking sites are using ColdFusion?


Wil Genovese
Sr. Web Application Developer/
Systems Administrator

Wil Genovese Consulting
651-894-4238
wilg...@trunkful.com
www.trunkful.com

On Aug 27, 2010, at 5:23 PM, cf-t...@sdsolutions.de wrote:

> 
> Hi list, is there any social network application / social network framework 
> based on CF you guys are aware of ?
> Thanks in advance for your feedback !
> 
> Uwe
> 
> 
> 
> 
> 
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336641
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: social network application based on CF ?

2010-08-27 Thread Won Lee

myspace used to be in CF I think.

On Fri, Aug 27, 2010 at 6:23 PM, cf-t...@sdsolutions.de <
cf-t...@sdsolutions.de> wrote:

>
> Hi list, is there any social network application / social network framework
> based on CF you guys are aware of ?
> Thanks in advance for your feedback !
>
> Uwe
>
>
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336640
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


social network application based on CF ?

2010-08-27 Thread cf-t...@sdsolutions.de

Hi list, is there any social network application / social network framework 
based on CF you guys are aware of ?
Thanks in advance for your feedback !

Uwe





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336637
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: [Macromedia][SequeLink JDBC Driver]Network problem, session aborted due to internal error in remote procedure call, connection closed

2009-12-16 Thread Gabriela Palombi

Hi. Did you solve this problem? Iam getting this error...CF 8 and Oracle 11.

> Hi
> 
> I am getting the following error everytime i try to run the query 
> below from the coldfusion page.
> 
> [Macromedia][SequeLink JDBC Driver]Network problem, session aborted 
> due to internal error in remote procedure call, connection closed. 
> 
> 
> SELECT job_info.org_name, job_info.Position, job_info.offer_id, 
> job_info.accepted_date, job_info.job_id,
> job_info.org_id, job_info.job_info_id, job_info.job_type, job_info.
> acceptance_status,
> offer_list.Offer_type, corporation.title
> FROM job_info, offer_list, corporation
> WHERE job_info.Student_ID = '#COOKIE.id#'
>   AND job_info.offer_id *= offer_list.offer_id
>   AND job_info.org_id *= corporation.org_id
> ORDER BY job_info.org_name, job_info.Position
> 
> 
> The query is fine, it works if i directly run it in the MS SQL Query 
> Analyzer...
> 
> While submitting the page which has this query, If i click on submit 
> several times, then in one of the clicks the query gives correct 
> results.
> 
> Has anyone faced the same problem. If yes, did you get a resolution to 
> it?
> 
> Thanks
Nimesh 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329173
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Copying files to a network directory

2009-01-26 Thread Dave Watts
> When trying to access a network share, you have to either have the CF
> service run as a user with a mapped drive to the share or use the file's UNC
> path (\\server\share) in your CF code.  By default, ColdFusion does not run
> as a standard user account (which can have mapped drives); instead, it runs
> as a local service (which cannot have mapped drives).  So, either change how
> the service logs in (via the "Services" control panel applet or use the UNC.

By default, CF can't access UNC paths either, because SYSTEM doesn't
have network access. You will need to run CF with a user account that
has permission to the share in question.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318569
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Copying files to a network directory

2009-01-26 Thread Mosh Teitelbaum
Nupur Gupta wrote:
> This may be an obvious question. There is a file what I want to copy
> using coldfusion to a directory that I have write permission to -.
> However when I try this, I get an access denied error.
> Do I need to use ftp to copy files over, or the like?

Nupur:

When trying to access a network share, you have to either have the CF
service run as a user with a mapped drive to the share or use the file's UNC
path (\\server\share) in your CF code.  By default, ColdFusion does not run
as a standard user account (which can have mapped drives); instead, it runs
as a local service (which cannot have mapped drives).  So, either change how
the service logs in (via the "Services" control panel applet or use the UNC.

--
Mosh Teitelbaum
evoch, LLC
http://www.evoch.com/




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318568
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Copying files to a network directory

2009-01-26 Thread Andy Matthews
Nope. As long as the user under which CF us running has permissions to the
file server you're golden. Just remember that CF probably isn't running as
"you". 

-Original Message-
From: Nupur Gupta [mailto:nupurgupta0...@gmail.com] 
Sent: Monday, January 26, 2009 1:23 PM
To: cf-talk
Subject: Copying files to a network directory

This may be an obvious question. There is a file what I want to copy using
coldfusion to a directory that I have write permission to -.
However when I try this, I get an access denied error.
Do I need to use ftp to copy files over, or the like?
Thanks a great deal.
NG




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318565
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Copying files to a network directory

2009-01-26 Thread Nupur Gupta
This may be an obvious question. There is a file what I want to copy using
coldfusion to a directory that I have write permission to -.
However when I try this, I get an access denied error.
Do I need to use ftp to copy files over, or the like?
Thanks a great deal.
NG


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318561
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: cffile cannot access network drive

2009-01-21 Thread Bobby Hartsfield
Then your options are limited to having the same user on each machine and
running the CF service as that user. Just make the user an administrator and
use the administrative shares if you aren't comfortable playing with the
permissions.

There is a hidden admin share for each drive on the machines. For instance,
the C drive can be accessed by \\servername\c$\ (if it hasn't been
explicitly disabled)
D drive would be \\servername\d$\ etc...

If it is for development only and not accessible outside of a corporate/dev
firewall, doing this would have very limited security risks.

..:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com


-Original Message-
From: sam Detweiler [mailto:sdetw...@gmail.com] 
Sent: Wednesday, January 21, 2009 9:16 AM
To: cf-talk
Subject: Re: cffile cannot access network drive

>So I take it these servers aren't on a domain...
>
>.:.:.:.:.:.:.:.:.:.:.
>Bobby Hartsfield
>http://acoderslife.com
>http://cf4em.com
>
correct.. only for development and pre-production test

Sam 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318276
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cffile cannot access network drive

2009-01-21 Thread Matthew Small
This is Windows, right? As these are not domain machines, create an account on 
the machine whic has permissions necessary to run CF, and set that as your CF 
account.  Create an account on the remote machine with the same username and 
password that has permission to access the remote share.  The credentials wil 
be passed from the server to the remote share and hopefully, you'll get in.  Be 
sure to use UNC names rather that mapped drives - mapped drives are kept in 
user profiles and are not available across the entire system to all machines.  

HTH,
Matt Small


>>So I take it these servers aren't on a domain...
>>
>>.:.:.:.:.:.:.:.:.:.:.
>>Bobby Hartsfield
>>http://acoderslife.com
>>http://cf4em.com
>>
>correct.. only for development and pre-production test
>
>Sam 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318275
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cffile cannot access network drive

2009-01-21 Thread sam Detweiler
>So I take it these servers aren't on a domain...
>
>.:.:.:.:.:.:.:.:.:.:.
>Bobby Hartsfield
>http://acoderslife.com
>http://cf4em.com
>
correct.. only for development and pre-production test

Sam 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318274
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cffile cannot access network drive

2009-01-21 Thread Bobby Hartsfield
So I take it these servers aren't on a domain...

..:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com


-Original Message-
From: sam Detweiler [mailto:sdetw...@gmail.com] 
Sent: Wednesday, January 21, 2009 8:47 AM
To: cf-talk
Subject: Re: cffile cannot access network drive

>If you cant change one, then change the other. As in, change CF to run 
>as you.
>
>.:.:.:.:.:.:.:.:.:.:.
>Bobby Hartsfield


well, it takes adding a user to the service, adding that user to the server,
AND specifying both access permission AND security permission to the user
(or group).
AND accessing via unc

thanks

Sam 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318273
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cffile cannot access network drive

2009-01-21 Thread sam Detweiler
>If you cant change one, then change the other. As in, change CF to run as
>you.
>
>.:.:.:.:.:.:.:.:.:.:.
>Bobby Hartsfield


well, it takes adding a user to the service, adding that user to the server, 
AND specifying both access permission AND security permission to the user (or 
group).
AND accessing via unc

thanks

Sam 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318272
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cffile cannot access network drive

2009-01-20 Thread Bobby Hartsfield
If you cant change one, then change the other. As in, change CF to run as
you.

..:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com

-Original Message-
From: sam Detweiler [mailto:sdetw...@gmail.com] 
Sent: Tuesday, January 20, 2009 7:57 PM
To: cf-talk
Subject: Re: cffile cannot access network drive

> well, I don't know on the first.. the 'other system' is really a 
> virtual machine running under my userid with a shared drive. I can't 
> logoff or the VM will be shut down.
> 
> I am using drive letters, not UNC
> 
> Sam

and it doesn't matter, fails with UNCs as well.

Sam 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318261
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cffile cannot access network drive

2009-01-20 Thread sam Detweiler
> well, I don't know on the first.. the 'other system' is really a 
> virtual machine running under my userid with a shared drive. I can't 
> logoff or the VM will be shut down. 
> 
> I am using drive letters, not UNC
> 
> Sam 

and it doesn't matter, fails with UNCs as well.

Sam 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318258
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cffile cannot access network drive

2009-01-20 Thread sam Detweiler
>> thanks.. created a special account, but this didn't help
>> either.
>
>Are you able to access the network shares with that account if you
>login directly? Are you using drive mappings or UNC paths?
>
>Dave Watts, CTO, Fig Leaf Software
>http://www.figleaf.com/
>

well, I don't know on the first.. the 'other system' is really a virtual 
machine running under my userid with a shared drive. I can't logoff or the VM 
will be shut down. 

I am using drive letters, not UNC

Sam 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318257
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cffile cannot access network drive

2009-01-20 Thread Dave Watts
> thanks.. created a special account, but this didn't help
> either.

Are you able to access the network shares with that account if you
login directly? Are you using drive mappings or UNC paths?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318254
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cffile cannot access network drive

2009-01-20 Thread sam Detweiler
> > thanks.. this is CF on tomcat.. tomcat is running on the system 
> account with permission
> > to interact with the console..
> 
> That is not sufficient to access network resources. SYSTEM has no
> access to network resources. You must run CF as an account with
> explicit access to those resources. Ideally, this would be a domain
> account.
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> 
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more 
information!

thanks.. created a special account, but this didn't help either. 
Sam 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318252
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cffile cannot access network drive

2009-01-20 Thread Dave Watts
> thanks.. this is CF on tomcat.. tomcat is running on the system account with 
> permission
> to interact with the console..

That is not sufficient to access network resources. SYSTEM has no
access to network resources. You must run CF as an account with
explicit access to those resources. Ideally, this would be a domain
account.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318249
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cffile cannot access network drive

2009-01-20 Thread sam Detweiler
>sam Detweiler wrote:
>
>ColdFusion does not run as you, it does not have your permissions.  You 
>have to configure it as a user that does have the desired permissions.

thanks.. this is CF on tomcat.. tomcat is running on the system account with 
permission to interact with the console..

Sam 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318248
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cffile cannot access network drive

2009-01-20 Thread Ian Skinner
sam Detweiler wrote:
> I have an application that needs to access files on another machine, whose 
> drives are mapped here.. I can do anything I want from the commandline, or 
> browser or windows explorer on that drive.. but CF will not allow me to 
> access it..
>
> read, write or list..
>
> anyone know of a workaround?
>
> thanks
>
> Sam 

ColdFusion does not run as you, it does not have your permissions.  You 
have to configure it as a user that does have the desired permissions.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318237
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cffile cannot access network drive

2009-01-20 Thread Andrew Scott
Have you checked to see that the account ColdFusion is running under has the
correct permission on that server?



On Wed, Jan 21, 2009 at 7:25 AM, sam Detweiler  wrote:

> I have an application that needs to access files on another machine, whose
> drives are mapped here.. I can do anything I want from the commandline, or
> browser or windows explorer on that drive.. but CF will not allow me to
> access it..
>
> read, write or list..
>
> anyone know of a workaround?
>
> thanks
>
> Sam
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318236
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cffile cannot access network drive

2009-01-20 Thread sam Detweiler
I have an application that needs to access files on another machine, whose 
drives are mapped here.. I can do anything I want from the commandline, or 
browser or windows explorer on that drive.. but CF will not allow me to access 
it..

read, write or list..

anyone know of a workaround?

thanks

Sam 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318235
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Is it possible to access network drives with CFDIRECTORY and CFCONTENT

2008-07-10 Thread Peterson, Chris
Arden,

This is a permissions issue (almost guarantee it).  Change the
coldfusion service to run as a user in the domain with access to the
shares you need to save/read from, and you will be all set.  Personally,
I create a 'cfUser' or 'coldfusion' user on the domain and give it very
specific permissions to anything it needs to access.

Chris Peterson

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 10, 2008 6:57 AM
To: CF-Talk
Subject: RE: Is it possible to access network drives with CFDIRECTORY
and CFCONTENT

I haven't done it with the actual drive letter of a mapped network drive
but
we upload and read files at work all the time with a UNC path since our
storage server is a separate machine. Have you tried that instead?

Eg. \\[ipaddress or computer name]\sharename

I will try cfdirectory and cfcontent specifically when I get into the
office
today and let you know the results

-Original Message-
From: Arden Weiss [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 10, 2008 2:46 AM
To: CF-Talk
Subject: Is it possible to access network drives with CFDIRECTORY and
CFCONTENT

I seem to not be able to access a mapped network drive with CFDIRECTORY
and
CFCONTENT. 

The CF7 app needs to be able to access/manage a store of PDF files and
display them in the user's browser.

Everything works great as long as the PDF files are located in a folder
on a
drive directly attached to the box on which CF7 is installed, but fails
when
I try to access the same files located on a mapped network drive.

The simple solution would be to put the files on one of the drives on
the CF
box, but the network guys are fussy about doing that. 

So any insight on how to access and display the PDF files located on a
networked drive  would be most helpful.








~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308846
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Is it possible to access network drives with CFDIRECTORY and CFCONTENT

2008-07-10 Thread Bobby Hartsfield
I haven't done it with the actual drive letter of a mapped network drive but
we upload and read files at work all the time with a UNC path since our
storage server is a separate machine. Have you tried that instead?

Eg. \\[ipaddress or computer name]\sharename

I will try cfdirectory and cfcontent specifically when I get into the office
today and let you know the results

-Original Message-
From: Arden Weiss [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 10, 2008 2:46 AM
To: CF-Talk
Subject: Is it possible to access network drives with CFDIRECTORY and
CFCONTENT

I seem to not be able to access a mapped network drive with CFDIRECTORY and
CFCONTENT. 

The CF7 app needs to be able to access/manage a store of PDF files and
display them in the user's browser.

Everything works great as long as the PDF files are located in a folder on a
drive directly attached to the box on which CF7 is installed, but fails when
I try to access the same files located on a mapped network drive.

The simple solution would be to put the files on one of the drives on the CF
box, but the network guys are fussy about doing that. 

So any insight on how to access and display the PDF files located on a
networked drive  would be most helpful.






~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308843
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Is it possible to access network drives with CFDIRECTORY and CFCONTENT

2008-07-09 Thread Arden Weiss
I seem to not be able to access a mapped network drive with CFDIRECTORY and 
CFCONTENT. 

The CF7 app needs to be able to access/manage a store of PDF files and display 
them in the user's browser.

Everything works great as long as the PDF files are located in a folder on a 
drive directly attached to the box on which CF7 is installed, but fails when I 
try to access the same files located on a mapped network drive.

The simple solution would be to put the files on one of the drives on the CF 
box, but the network guys are fussy about doing that. 

So any insight on how to access and display the PDF files located on a 
networked drive  would be most helpful.




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308841
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF8 server for intranet, which OS? what hardware? what network?

2008-05-31 Thread James Holmes
If at all possible, put the DB on a different machine.

Stick with 32 bit for now. 4 GB will be fine.

If you value your data and really want a reliable server, get ECC RAM.

AD (or any LDAP solution)  is good for hundreds or thousands of users.
For 10 users it may be overkill.



On Sat, May 31, 2008 at 4:47 PM, henry ho <[EMAIL PROTECTED]> wrote:
> To all server experts...
>
> My situation is that since the DB of choice is MS-SQL, I need a windows 
> server that host the CF8 (Standard), and MS-SQL Server 2005.

-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306500
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CF8 server for intranet, which OS? what hardware? what network?

2008-05-31 Thread Mark Kruger
Henry,

Your question is really broad and a lot of answers could be right. I would
buy based on cost. For less than 10 clients it is not going to matter a
great deal whether your RAM is one type or another. A 4GB windows server
(2003r2) should be fine - buy what you can afford. Heck, buy a desktop and
an OEM copy of 2003r2 - as long as you have a good backup you would be ok. 

As for the networking question - you should have  router/firewall that is
used for internet access. You should not be using windows as a router or
firewall. Even though it's possible saying "windows firewall" sort of makes
most of us cringe a bit :)

When you say "clients running Linux" - if you mean your desktops are Linux
then you probably have other problems (ha)  - but connecting to the cf8
server is done via the browser - so no, no problems. File sharing is also
doable.

By the sound of your questions you might be "in over your head" just a
little bit. Go slow. You sound like someone who knows how to gather
information though - so you should be ok. Good luck.

-Mark


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: henry ho [mailto:[EMAIL PROTECTED] 
Sent: Saturday, May 31, 2008 3:47 AM
To: CF-Talk
Subject: CF8 server for intranet, which OS? what hardware? what network?

To all server experts...

My situation is that since the DB of choice is MS-SQL, I need a windows
server that host the CF8 (Standard), and MS-SQL Server 2005.

1. Which version of windows is appropriate for a CF & SQL server for a small
Intranet (< 10 clients)?
 - Windows Server 2008?
 - Windows Server 2003 SP2?
 - Windows Vista Business version? is this enough???

2. Is 4GB on 32-bit OS enough?  Or should I go for 64-bit? (keep in mind
I'll be using CF8 Standard with no 64bit Windows support)

3. Is ECC RAM necessary?  If not, when is it necessary?

4. When is using active directory on CF8 for authentication a good idea?

5. If I want the intranet to also have access to the internet, should they
all go through the windows server by a hub/switch?  Or should they be
connected directly to the internet router using another network cable?

6. Will there be any foreseeable problem with clients running Linux?




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306499
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CF8 server for intranet, which OS? what hardware? what network?

2008-05-31 Thread henry ho
To all server experts...

My situation is that since the DB of choice is MS-SQL, I need a windows server 
that host the CF8 (Standard), and MS-SQL Server 2005.

1. Which version of windows is appropriate for a CF & SQL server for a small 
Intranet (< 10 clients)?
 - Windows Server 2008?
 - Windows Server 2003 SP2?
 - Windows Vista Business version? is this enough???

2. Is 4GB on 32-bit OS enough?  Or should I go for 64-bit? (keep in mind I'll 
be using CF8 Standard with no 64bit Windows support)

3. Is ECC RAM necessary?  If not, when is it necessary?

4. When is using active directory on CF8 for authentication a good idea?

5. If I want the intranet to also have access to the internet, should they all 
go through the windows server by a hub/switch?  Or should they be connected 
directly to the internet router using another network cable?

6. Will there be any foreseeable problem with clients running Linux?


Thank you very much for your help. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306492
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Network Solutions??

2008-04-07 Thread Cutter (CFRelated)
The chances of a shared hosting provider turning on Robust Debugging are 
slim to none, as it can quickly become a huge security concern as system 
paths become exposed. Don't hold your breath expecting them to answer 
you on this one.

Steve "Cutter" Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

William Seiter wrote:
> Does anyone here know how to get in touch with a network solutions engineer?
>  
> I have a client that is using them as his CF host.
>  
> I have created a couple of 'tickets' with their phone answering monkeys, but
> have gotten nothing in the way of a useable response from them. When I call
> back to inquire about the response in the past, the monkey just creates a
> new ticket and a new 24 - 72 hour wait.
>  
> All I need from them, at this point, is to have them turn on 'robust debug',
> but I am getting no response from them.  Now, today, I have been trying to
> call them again, but I keep getting 'disconnected' while being transferred
> from their 'menu' system to their phone 'que/cue'.
>  
> Any ideas or suggestions as to how to bypass the menu system and get the
> phone cue directly?  Or better approach?
>  
> William
> 
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302839
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


OT: Network Solutions??

2008-04-05 Thread William Seiter
Does anyone here know how to get in touch with a network solutions engineer?
 
I have a client that is using them as his CF host.
 
I have created a couple of 'tickets' with their phone answering monkeys, but
have gotten nothing in the way of a useable response from them. When I call
back to inquire about the response in the past, the monkey just creates a
new ticket and a new 24 - 72 hour wait.
 
All I need from them, at this point, is to have them turn on 'robust debug',
but I am getting no response from them.  Now, today, I have been trying to
call them again, but I keep getting 'disconnected' while being transferred
from their 'menu' system to their phone 'que/cue'.
 
Any ideas or suggestions as to how to bypass the menu system and get the
phone cue directly?  Or better approach?
 
William


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302790
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: control network printer from windows command line.

2008-04-04 Thread Ian Skinner
Ryan J. Heldt wrote:
> ColdFusion 8 has a cfprint tag you can use to print a PDF. So, you could 
> then use cfdocument to create a pdf in landscape mode, the cfprint to 
> send it to the printer.
>
> Thanks!
> Ryan

OOOPS Wrong list.  This is not a ColdFusion application.  It's actually 
a Perl port.  I meant to send this to community because so many of you 
out there are just knowledgable and well versed in many technologies.

It so saves me from having to find a different support list for every 
little different thing I run across.  Especially one off tasks such as this.

Sorry for the misspost.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302739
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: control network printer from windows command line.

2008-04-04 Thread Ryan J. Heldt
ColdFusion 8 has a cfprint tag you can use to print a PDF. So, you could 
then use cfdocument to create a pdf in landscape mode, the cfprint to 
send it to the printer.

Thanks!
Ryan

Ian Skinner wrote:
> I've used these two lines to print a file to a network printer from a 
> dos command line.
>
> net use lpt1: \\hardcopy\ApDev
> print test.text /d:lpt1
>
> Is there an easy way to tell the printer to print this file landscape?
>
> Do I need to be getting other tools involved in here to do this?
>
> This is to replace some old code that used to print from the command 
> line on a Unix box that now resides on a Windows box.  The less code 
> change the better.
>
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302735
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


control network printer from windows command line.

2008-04-04 Thread Ian Skinner
I've used these two lines to print a file to a network printer from a 
dos command line.

net use lpt1: \\hardcopy\ApDev
print test.text /d:lpt1

Is there an easy way to tell the printer to print this file landscape?

Do I need to be getting other tools involved in here to do this?

This is to replace some old code that used to print from the command 
line on a Unix box that now resides on a Windows box.  The less code 
change the better.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302733
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF Dev Edition store local file on Network drive - help

2007-11-12 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Neither.  This is the built in Web server that comes with the CF developer's 
edition.  We have a dev server, but we won't have access to the Web server's
config.  Any ideas on what we can do?  I really want to start using this shared
drive and offload the files from the site off my laptop.

Thanks

>Are you doing this in IIS, Apache or what?  Our webroots are sometimes on
>other PCs and it works just fine in Apache. 
>
>Russ
>
>
>
>> 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293143
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF Dev Edition store local file on Network drive - help

2007-11-09 Thread Russ
Are you doing this in IIS, Apache or what?  Our webroots are sometimes on
other PCs and it works just fine in Apache. 

Russ



> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Friday, November 09, 2007 2:23 PM
> To: CF-Talk
> Subject: CF Dev Edition store local file on Network drive - help
> 
> All,
> 
> I'm trying to map my Webroot for local dev to a folder on a network drive.
> When I log into the
> CFAdmin and try to map the / it doesn't show the network drive.  Then I
> added my
> account to the CF service so that it would be able to see the drives my
> accounts allows
> and then restarted the service and still no network drives.  so I tried
> //machine/path/
> and the mapping took the path for /  but when I pull up the web root it
> still shows the
> default install as the Web root and not the network drive and folder.
> 
> Thanks
> 
> D
> 
> 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293062
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CF Dev Edition store local file on Network drive - help

2007-11-09 Thread coldfusion . developer
All,

I'm trying to map my Webroot for local dev to a folder on a network drive.  
When I log into the
CFAdmin and try to map the / it doesn't show the network drive.  Then I added my
account to the CF service so that it would be able to see the drives my 
accounts allows
and then restarted the service and still no network drives.  so I tried 
//machine/path/
and the mapping took the path for /  but when I pull up the web root it still 
shows the
default install as the Web root and not the network drive and folder.  

Thanks

D

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293057
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFADmin: datasource - connect to Access DB on network drive

2007-10-22 Thread Tom Chiverton
On Friday 19 Oct 2007, [EMAIL PROTECTED] wrote:
> I need to connect to an Access database on a netowkr drive and the drives
> that show up in the Java file tree are only local drives.  Is there another
> way to connect to an Access DB on a network drive?

Type the path by hand ?

-- 
Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and 
ColdSpring, and has done some Flex work ? Would you like to work for a top 30 
law firm in Manchester, UK ? Are not an agency ? If yes, send email !



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office.  Any reference to a partner in 
relation to Halliwells LLP means a member of Halliwells LLP.  Regulated by The 
Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291733
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CFADmin: datasource - connect to Access DB on network drive

2007-10-19 Thread coldfusion . developer
I need to connect to an Access database on a netowkr drive and the drives
that show up in the Java file tree are only local drives.  Is there another way
to connect to an Access DB on a network drive?

Thanks

Dan

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291581
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: custom tags and UNC or map network drives

2007-09-26 Thread Jochem van Dieten
Miguel Gonzalez wrote:
>> Miguel_Gonzalez_Castaños wrote:
>>>   We have a Windows Server 2003 running Coldfusion MX. When I try to 
>>> create a custom tag using UNC paths or map network drives it simply 
>>> doesn't work. Apparently only admits local drives.

> I have checked and the Application Server is running under a domain account

That is interesting. If you log on to the server interactively using the 
account the Application server uses, can you then access the shares?

Jochem

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289590
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: custom tags and UNC or map network drives

2007-09-26 Thread Ian Skinner
Make sure that the domain account that CF is running under has the 
desired permissions to the network resource you want to map to.

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289556
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: custom tags and UNC or map network drives

2007-09-26 Thread Dawson, Michael
The Application Server service is the only service that needs to run as a 
domain account.

Also, make sure that particular domain account can actually access the remote 
file system.

Finally, have you setup a CF mapping or CF custom tag path that points to the 
remote file system?

M!ke 

-Original Message-
From: Miguel Gonzalez [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 26, 2007 3:56 PM
To: CF-Talk
Subject: Re: custom tags and UNC or map network drives

>Miguel_Gonzalez_Castaños wrote:
>>   We have a Windows Server 2003 running Coldfusion MX. When I try to 
>> create a custom tag using UNC paths or map network drives it simply 
>> doesn't work. Apparently only admits local drives. Is there any way 
>> to work around this? We have the content of the IIS site hosted in a 
>> NAS and would like to keep it all together.
>
>By default CF runs under a local system account that can only access 
>local resources. Change the account and try again:
>http://livedocs.adobe.com/coldfusion/8/htmldocs/configuring_13.html#117
>0613
>
>Jochem

I have checked and the Application Server is running under a domain account but 
the ODB C Server, ODBC Agent and the Search Server are under a local account, 
which one should I change?

Many thanks for the promptly answer

Miguel

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289555
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: custom tags and UNC or map network drives

2007-09-26 Thread Miguel Gonzalez
>Miguel_Gonzalez_Castaños wrote:
>>   We have a Windows Server 2003 running Coldfusion MX. When I try to 
>> create a custom tag using UNC paths or map network drives it simply 
>> doesn't work. Apparently only admits local drives. Is there any way to 
>> work around this? We have the content of the IIS site hosted in a NAS 
>> and would like to keep it all together.
>
>By default CF runs under a local system account that can only access 
>local resources. Change the account and try again:
>http://livedocs.adobe.com/coldfusion/8/htmldocs/configuring_13.html#1170613
>
>Jochem

I have checked and the Application Server is running under a domain account but 
the ODB C Server, ODBC Agent and the Search Server are under a local account, 
which one should I change?

Many thanks for the promptly answer

Miguel

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289548
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: custom tags and UNC or map network drives

2007-09-26 Thread Jochem van Dieten
Miguel_Gonzalez_Castaños wrote:
>   We have a Windows Server 2003 running Coldfusion MX. When I try to 
> create a custom tag using UNC paths or map network drives it simply 
> doesn't work. Apparently only admits local drives. Is there any way to 
> work around this? We have the content of the IIS site hosted in a NAS 
> and would like to keep it all together.

By default CF runs under a local system account that can only access 
local resources. Change the account and try again:
http://livedocs.adobe.com/coldfusion/8/htmldocs/configuring_13.html#1170613

Jochem

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289540
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


custom tags and UNC or map network drives

2007-09-26 Thread Miguel_Gonzalez_Casta
Hi,

  We have a Windows Server 2003 running Coldfusion MX. When I try to 
create a custom tag using UNC paths or map network drives it simply 
doesn't work. Apparently only admits local drives. Is there any way to 
work around this? We have the content of the IIS site hosted in a NAS 
and would like to keep it all together.

  Thanks in advance,

  Miguel

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289536
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: [Macromedia][SequeLink JDBC Driver]Network problem, session aborted due to internal error in remote procedure call, connection closed

2007-05-25 Thread Jochem van Dieten
Fernando Richter wrote:
> 
> I have the same problem that you..  When I try execute the query, I see 
> [Macromedia][SequeLink JDBC Driver]Network problem, session aborted due to 
> internal error in remote procedure call, connection closed.

Are you up to date with your JDBC hotfixes from Adobe? The last one 
fixed a bunch of these errors.

Jochem

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279213
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: [Macromedia][SequeLink JDBC Driver]Network problem, session aborted due to internal error in remote procedure call, connection closed

2007-05-25 Thread Tom Chiverton
On Thursday 24 May 2007, Fernando Richter wrote:
> > [Macromedia][SequeLink JDBC Driver]Network problem, session aborted
> > due to internal error in remote procedure call, connection closed.

Could there be a trigger or similar run by your SELECT ?
Also, you really, really, want to cfqueryparam your parameters.
Esp. ones the client sends like COOKIE.

-- 
Tom Chiverton
Helping to efficiently scale one-to-one e-tailers
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279207
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: [Macromedia][SequeLink JDBC Driver]Network problem, session aborted due to internal error in remote procedure call, connection closed

2007-05-24 Thread Fernando Richter
> Hi
> 
> I am getting the following error everytime i try to run the query 
> below from the coldfusion page.
> 
> [Macromedia][SequeLink JDBC Driver]Network problem, session aborted 
> due to internal error in remote procedure call, connection closed. 
> 
> 
> SELECT job_info.org_name, job_info.Position, job_info.offer_id, 
> job_info.accepted_date, job_info.job_id,
> job_info.org_id, job_info.job_info_id, job_info.job_type, job_info.
> acceptance_status,
> offer_list.Offer_type, corporation.title
> FROM job_info, offer_list, corporation
> WHERE job_info.Student_ID = '#COOKIE.id#'
>   AND job_info.offer_id *= offer_list.offer_id
>   AND job_info.org_id *= corporation.org_id
> ORDER BY job_info.org_name, job_info.Position
> 
> 
> The query is fine, it works if i directly run it in the MS SQL Query 
> Analyzer...
> 
> While submitting the page which has this query, If i click on submit 
> several times, then in one of the clicks the query gives correct 
> results.
> 
> Has anyone faced the same problem. If yes, did you get a resolution to 
> it?
> 
> Thanks
Nimesh


Hi,
I have the same problem that you..  When I try execute the query, I see 
[Macromedia][SequeLink JDBC Driver]Network problem, session aborted due to 
internal error in remote procedure call, connection closed.

Any help will be excelent!

Thanks
Fernando

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279105
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: get a list of database servers on network

2007-05-18 Thread Brad Wood
Thanks for the insight Dave.  

I was thinking, to be able to access any data off a remote server
without a datasource specifically set up for it, it would have to be a
linked server to the one I was using anyway.

I might as well just use 

select *
from sys.servers 

Hmmm--

Oh well, I just wanted to see if it was possible anyway.

~Brad

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 18, 2007 6:01 PM
To: CF-Talk
Subject: RE: get a list of database servers on network

> In my internal web app, is it possible to populate a dropdown 
> with a list of computers on the network running a SQL Server.
> 
> Basically, like in SQL enterprise Manager, when you would go 
> to register a new database with the wizard it would "search" 
> somehow and give you a list of servers to choose from.
> 
> How did that work?  Would it just scan the subnet for hosts 
> with port 1433 open?

My understanding is that this is a bit more complicated. SQL Server has
a
discovery port, UDP/1434, and I think that's what is used to discover
instances using TCP/IP (as opposed to Windows Networking). SQL
Enterprise
Manager, however, may also use DBNETLIB to discover servers listening on
named pipes, which your application will not be able to do. Finally,
TCP/1433 is the default port for a single default instance, but you can
configure your SQL Server to listen on another port - and will have to
if
you're running multiple named instances: each of those requires its own
port.

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278659
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: get a list of database servers on network

2007-05-18 Thread Brad Wood
Yeah, I was just messing around with nmap, which  I use for port
scanning from DOS. 

"nmap 10.10.0.1-255 -p1433 -R -oX C:\port_scan.txt"

would output an XML file I could then parse with CF, but reliability
would probably be suspect.

~Brad

-Original Message-
From: Ken Wexel [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 18, 2007 4:54 PM
To: CF-Talk
Subject: Re: get a list of database servers on network

In CF natively?  Not any way that I'm aware of, but there are a
variety of other apps to use (or code) that can scan for hosts
listening on a given port...

On 5/18/07, Brad Wood <[EMAIL PROTECTED]> wrote:
> Here's a good Friday question.
>
>
>
> In my internal web app, is it possible to populate a dropdown with a
> list of computers on the network running a SQL Server.
>
> Basically, like in SQL enterprise Manager, when you would go to
register
> a new database with the wizard it would "search" somehow and give you
a
> list of servers to choose from.
>
> How did that work?  Would it just scan the subnet for hosts with port
> 1433 open?
>
> Is that possible with ColdFusion?
>
>
>
> Note: I am not talking about ColdFusion data sources at all here.
>
>
>
> ~Brad
>
>
>
> 



~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278658
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: get a list of database servers on network

2007-05-18 Thread Dave Watts
> In my internal web app, is it possible to populate a dropdown 
> with a list of computers on the network running a SQL Server.
> 
> Basically, like in SQL enterprise Manager, when you would go 
> to register a new database with the wizard it would "search" 
> somehow and give you a list of servers to choose from.
> 
> How did that work?  Would it just scan the subnet for hosts 
> with port 1433 open?

My understanding is that this is a bit more complicated. SQL Server has a
discovery port, UDP/1434, and I think that's what is used to discover
instances using TCP/IP (as opposed to Windows Networking). SQL Enterprise
Manager, however, may also use DBNETLIB to discover servers listening on
named pipes, which your application will not be able to do. Finally,
TCP/1433 is the default port for a single default instance, but you can
configure your SQL Server to listen on another port - and will have to if
you're running multiple named instances: each of those requires its own
port.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278657
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: get a list of database servers on network

2007-05-18 Thread Ken Wexel
In CF natively?  Not any way that I'm aware of, but there are a
variety of other apps to use (or code) that can scan for hosts
listening on a given port...

On 5/18/07, Brad Wood <[EMAIL PROTECTED]> wrote:
> Here's a good Friday question.
>
>
>
> In my internal web app, is it possible to populate a dropdown with a
> list of computers on the network running a SQL Server.
>
> Basically, like in SQL enterprise Manager, when you would go to register
> a new database with the wizard it would "search" somehow and give you a
> list of servers to choose from.
>
> How did that work?  Would it just scan the subnet for hosts with port
> 1433 open?
>
> Is that possible with ColdFusion?
>
>
>
> Note: I am not talking about ColdFusion data sources at all here.
>
>
>
> ~Brad
>
>
>
> 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278656
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


get a list of database servers on network

2007-05-18 Thread Brad Wood
Here's a good Friday question.

 

In my internal web app, is it possible to populate a dropdown with a
list of computers on the network running a SQL Server.

Basically, like in SQL enterprise Manager, when you would go to register
a new database with the wizard it would "search" somehow and give you a
list of servers to choose from.

How did that work?  Would it just scan the subnet for hosts with port
1433 open?

Is that possible with ColdFusion?

 

Note: I am not talking about ColdFusion data sources at all here.

 

~Brad



~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278654
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Can't get Data Sources to see network drives

2007-02-05 Thread Curt Carpenter
Dave,

Thanks for the info.  I had pulled out what little hair I have trying to
get the CF Administrator to see network drives.  I think I'll take your
advice and move the database to the same server as the webserver.

Thanks again.

Curt 

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Saturday, February 03, 2007 8:56 AM
To: CF-Talk
Subject: RE: Can't get Data Sources to see network drives

> Problem:
> 
> We need to access a data source on a network server different 
> from the one that ColdFusion is running on.  When I try and 
> add a new Data Source in the ColdFusion Administrator and 
> browse the network, it will ONLY show local drives - no 
> drives on the other network server.
> 
> Environment:
> 
> ColdFusion is running on a W2K3 Server with IIS. We even did 
> a "clean" install of the W2K3 Server to make sure everything 
> was set correctly.  Right now, the trial version of 
> ColdFusion is installed to make sure everything that the 
> programmer has done will work because he did his programming 
> on his local machine that is not part of our network.
> 
> All of the services (Application Server, ODBC Agent, ODBC 
> Server, Search Server, JRun Admin Server & JRun CFusion 
> Server) are running "logged on as" a user account setup with 
> full rights to the network server I am trying to access.  The 
> server we are trying to access is a W2K3 SBS that contains 
> the order information we need to make available to users of 
> our new web application.

Network shares will not show up in the CF Administrator. I don't know if
drive mappings to network shares will show up or not, but I suspect they
won't. You don't have to use the browser applet, though. You can just
put in
the path using the appropriate drive mapping. You can probably even
enter a
UNC path, although I haven't tested that.

You should first log into a shell with that user account to ensure that
it
can get to these resources.

However, you should be aware that using an Access database stored on a
network share will be VERY, VERY SLOW. I would strongly recommend that
you
copy it to the application server, and use it there.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!




~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268767
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Can't get Data Sources to see network drives

2007-02-05 Thread Cutter (CFRelated)
Or, rather than running in Access at all, you could convert the db to 
MySQL, PostrgeSQL, MSSQL, or some other database type that will give you 
a higher degree of scalability and performance.

Dave Watts wrote:
>>Problem:
>>
>>We need to access a data source on a network server different 
>>from the one that ColdFusion is running on.  When I try and 
>>add a new Data Source in the ColdFusion Administrator and 
>>browse the network, it will ONLY show local drives - no 
>>drives on the other network server.
>>
>>Environment:
>>
>>ColdFusion is running on a W2K3 Server with IIS. We even did 
>>a "clean" install of the W2K3 Server to make sure everything 
>>was set correctly.  Right now, the trial version of 
>>ColdFusion is installed to make sure everything that the 
>>programmer has done will work because he did his programming 
>>on his local machine that is not part of our network.
>>
>>All of the services (Application Server, ODBC Agent, ODBC 
>>Server, Search Server, JRun Admin Server & JRun CFusion 
>>Server) are running "logged on as" a user account setup with 
>>full rights to the network server I am trying to access.  The 
>>server we are trying to access is a W2K3 SBS that contains 
>>the order information we need to make available to users of 
>>our new web application.
> 
> 
> Network shares will not show up in the CF Administrator. I don't know if
> drive mappings to network shares will show up or not, but I suspect they
> won't. You don't have to use the browser applet, though. You can just put in
> the path using the appropriate drive mapping. You can probably even enter a
> UNC path, although I haven't tested that.
> 
> You should first log into a shell with that user account to ensure that it
> can get to these resources.
> 
> However, you should be aware that using an Access database stored on a
> network share will be VERY, VERY SLOW. I would strongly recommend that you
> copy it to the application server, and use it there.
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> 
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
> 
> 
> 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268661
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Can't get Data Sources to see network drives

2007-02-03 Thread Dave Watts
> Problem:
> 
> We need to access a data source on a network server different 
> from the one that ColdFusion is running on.  When I try and 
> add a new Data Source in the ColdFusion Administrator and 
> browse the network, it will ONLY show local drives - no 
> drives on the other network server.
> 
> Environment:
> 
> ColdFusion is running on a W2K3 Server with IIS. We even did 
> a "clean" install of the W2K3 Server to make sure everything 
> was set correctly.  Right now, the trial version of 
> ColdFusion is installed to make sure everything that the 
> programmer has done will work because he did his programming 
> on his local machine that is not part of our network.
> 
> All of the services (Application Server, ODBC Agent, ODBC 
> Server, Search Server, JRun Admin Server & JRun CFusion 
> Server) are running "logged on as" a user account setup with 
> full rights to the network server I am trying to access.  The 
> server we are trying to access is a W2K3 SBS that contains 
> the order information we need to make available to users of 
> our new web application.

Network shares will not show up in the CF Administrator. I don't know if
drive mappings to network shares will show up or not, but I suspect they
won't. You don't have to use the browser applet, though. You can just put in
the path using the appropriate drive mapping. You can probably even enter a
UNC path, although I haven't tested that.

You should first log into a shell with that user account to ensure that it
can get to these resources.

However, you should be aware that using an Access database stored on a
network share will be VERY, VERY SLOW. I would strongly recommend that you
copy it to the application server, and use it there.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268570
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Can't get Data Sources to see network drives

2007-02-03 Thread Curt Carpenter
Greetings -
I am new to ColdFusion and need some help.  I actually have hired a programmer 
to develop and application (but he doesn't know much about networking) and our 
networking vendor doesn't know anything about ColdFusion.  So I am trying to 
solve the problem.  The programmer completed the application and now we're 
trying to install it on our server but can't get things working.

Problem:

We need to access a data source on a network server different from the one that 
ColdFusion is running on.  When I try and add a new Data Source in the 
ColdFusion Administrator and browse the network, it will ONLY show local drives 
- no drives on the other network server.

Environment:

ColdFusion is running on a W2K3 Server with IIS. We even did a "clean" install 
of the W2K3 Server to make sure everything was set correctly.  Right now, the 
trial version of ColdFusion is installed to make sure everything that the 
programmer has done will work because he did his programming on his local 
machine that is not part of our network.

All of the services (Application Server, ODBC Agent, ODBC Server, Search 
Server, JRun Admin Server & JRun CFusion Server) are running "logged on as" a 
user account setup with full rights to the network server I am trying to 
access.  The server we are trying to access is a W2K3 SBS that contains the 
order information we need to make available to users of our new web application.

I think I've covered all the bases?  Any suggestions would be greatly 
appreciated.

Curt Carpenter


~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268565
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Links to Network shares in Safari

2007-02-01 Thread Jacob Munson
Thanks for the warning, but I just tried it in IE 7 and it works fine.

On 2/1/07, Zaphod Beeblebrox <[EMAIL PROTECTED]> wrote:
> as a warning, it's probably going to stop working on IE7.  At least that's
> been our experience with our intranet.
>
>
> On 2/1/07, Jacob Munson <[EMAIL PROTECTED]> wrote:
> >
> > I've got some local users that use Macs, and one of our Intranet pages
> > has videos that people can view.  This works in IE, but not in Firefox
> > or Safari:
> > href="file:///\\midland\info\#enewsVideo#"
> >
> > Any ideas on what I could do for non-IE users?  I've done this before
> > but can't remember what I did.  Also, Google, Yahoo, etc.  are useless
> > to me in this case because any search that includes "file://" as a
> > term just searches for "file".
> >
> > --
> > My Sites:
> > http://www.techfeed.net/blog/
> > http://www.cfquickdocs.com/
> > http://cfformprotect.riaforge.org/
> >
> >
>
> 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268350
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Links to Network shares in Safari

2007-02-01 Thread Zaphod Beeblebrox
as a warning, it's probably going to stop working on IE7.  At least that's
been our experience with our intranet.


On 2/1/07, Jacob Munson <[EMAIL PROTECTED]> wrote:
>
> I've got some local users that use Macs, and one of our Intranet pages
> has videos that people can view.  This works in IE, but not in Firefox
> or Safari:
> href="file:///\\midland\info\#enewsVideo#"
>
> Any ideas on what I could do for non-IE users?  I've done this before
> but can't remember what I did.  Also, Google, Yahoo, etc.  are useless
> to me in this case because any search that includes "file://" as a
> term just searches for "file".
>
> --
> My Sites:
> http://www.techfeed.net/blog/
> http://www.cfquickdocs.com/
> http://cfformprotect.riaforge.org/
>
> 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268347
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Links to Network shares in Safari

2007-02-01 Thread Jacob Munson
I've got some local users that use Macs, and one of our Intranet pages
has videos that people can view.  This works in IE, but not in Firefox
or Safari:
href="file:///\\midland\info\#enewsVideo#"

Any ideas on what I could do for non-IE users?  I've done this before
but can't remember what I did.  Also, Google, Yahoo, etc.  are useless
to me in this case because any search that includes "file://" as a
term just searches for "file".

-- 
My Sites:
http://www.techfeed.net/blog/
http://www.cfquickdocs.com/
http://cfformprotect.riaforge.org/

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268329
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Coldfusion using network resources

2007-01-31 Thread So Kenfused
Don't know what I did but it now appears to be working. 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268194
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion using network resources

2007-01-31 Thread Jochem van Dieten
So Kenfused wrote:
> Coldfusion logs on as a local user that has access to all the required 
> local directories.  However, if I create a windows user on the network 
> (CFUser) and use that user as the ColdFusion and the Macromedia 
> Instance logon in services everything goes to Hades in a heart a beat.  
> I get the following error.
> 
> 500 There is no web application configured to service your request
> There is no web application configured to service your request.

Start a console as CFUser:
runas /user:cfuser cmd

>From that console start CF:
jrun -start 

What errors do you see in the console?

Jochem

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268189
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion using network resources

2007-01-31 Thread John Beynon
I seem to remember replacing permissions on my servers folder with the
domain user. You're definitely on the right track

one thing i did use is Filemon
(http://www.microsoft.com/technet/sysinternals/utilities/filemon.mspx)
which shows the file access in real time so you can diagnose where
it's failing

john.


On 1/31/07, Ryan, Terrence <[EMAIL PROTECTED]> wrote:
> What happens when you try and start the ColdFusion service?  Is it starting?  
> What do the Windows Security logs tell you? Is the service account 
> authenticating properly?
>
> Terrence Ryan
> Senior Systems Programmer
> Wharton Computing and Information Technology
> E-mail: [EMAIL PROTECTED]
>
>
> -Original Message-
> From: So Kenfused [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, January 31, 2007 8:11 AM
> To: CF-Talk
> Subject: Coldfusion using network resources
>
> I am trying to allow Coldfusion (7 Enterprise) access to other network 
> resources (I want to read and write to directories and files) on other 
> servers within our network.
>
> Coldfusion logs on as a local user that has access to all the required local 
> directories.  However, if I create a windows user on the network (CFUser) and 
> use that user as the ColdFusion and the Macromedia Instance logon in services 
> everything goes to Hades in a heart a beat.  I get the following error.
>
> 500 There is no web application configured to service your request
> There is no web application configured to service your request.
>
> I have added the CFUser to the administrators group on the server thinking it 
> would give it pretty much global access locally, then I could give the CFUser 
> the appropriate access on the other system resources.  However, I seem to 
> have killed CF.
>
> Any help would be appreciated
>
>
>
> 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268188
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Coldfusion using network resources

2007-01-31 Thread Ryan, Terrence
What happens when you try and start the ColdFusion service?  Is it starting?  
What do the Windows Security logs tell you? Is the service account 
authenticating properly?  

Terrence Ryan
Senior Systems Programmer
Wharton Computing and Information Technology   
E-mail:     [EMAIL PROTECTED]


-Original Message-
From: So Kenfused [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 31, 2007 8:11 AM
To: CF-Talk
Subject: Coldfusion using network resources

I am trying to allow Coldfusion (7 Enterprise) access to other network 
resources (I want to read and write to directories and files) on other servers 
within our network. 

Coldfusion logs on as a local user that has access to all the required local 
directories.  However, if I create a windows user on the network (CFUser) and 
use that user as the ColdFusion and the Macromedia Instance logon in services 
everything goes to Hades in a heart a beat.  I get the following error.

500 There is no web application configured to service your request
There is no web application configured to service your request.

I have added the CFUser to the administrators group on the server thinking it 
would give it pretty much global access locally, then I could give the CFUser 
the appropriate access on the other system resources.  However, I seem to have 
killed CF.  

Any help would be appreciated



~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268186
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Coldfusion using network resources

2007-01-31 Thread So Kenfused
I am trying to allow Coldfusion (7 Enterprise) access to other network 
resources (I want to read and write to directories and files) on other servers 
within our network. 

Coldfusion logs on as a local user that has access to all the required local 
directories.  However, if I create a windows user on the network (CFUser) and 
use that user as the ColdFusion and the Macromedia Instance logon in services 
everything goes to Hades in a heart a beat.  I get the following error.

500 There is no web application configured to service your request
There is no web application configured to service your request.

I have added the CFUser to the administrators group on the server thinking it 
would give it pretty much global access locally, then I could give the CFUser 
the appropriate access on the other system resources.  However, I seem to have 
killed CF.  

Any help would be appreciated

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268184
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Getting Novell Network login information

2006-12-09 Thread Dawson, Michael
Cool.  Those damn network guys...   ;^) 

-Original Message-
From: Bruce Sorge [mailto:[EMAIL PROTECTED] 
Sent: Saturday, December 09, 2006 12:45 PM
To: CF-Talk
Subject: RE: Getting Novell Network login information

We were getting things from Active Directory. Once we got everything
working and the network guys got their act together it worked out fine.
I was just new to LDAP and all.

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:263422
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


  1   2   3   4   5   >