Publish Profile Failed
Web Server forum
Back To The Forum Home!Search!Private Messaging System

Web Server Talk Web Server Talk > Web Servers reviews > Microsoft Commerce Server > User Profile Management > Publish Profile Failed




  Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

    Publish Profile Failed  
Abdullah YILDIZ


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
07-12-04 10:51 PM

I currently developping a project on W2003, CS2002 with
SP2, CMS2002 SP1a and MSIB 2.5.
I have a problem with profile publishing.
I have created a site term and associated with an user
object property. Then I tried to publish profile but I had
following error message.
Publish of Profiles Failed:

The refresh page on the site could not be accessed. Yhe
returned error is: 404 Not Found

I couldnt get progress in development because of this
error. I need your guidance urgently.

Thanks in Advance






[ Post a follow-up to this message ]



    RE: Publish Profile Failed  
Nikhil Singhal [MSFT]


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
07-12-04 10:51 PM

Can you please check for the following:
1.IIS server logs to check that the correct URL is being hit from bizdesk.
2. Are you logged in as Admin?
3. File access permissions on bdrefresh.asp

Thanks
Nikhil

This posting is provided "AS IS" with no warranties, and confers no rights.

EBusiness Server Team

--------------------
Content-Class: urn:content-classes:message
From: "Abdullah YILDIZ" <abdullah.yildiz@enova.com.tr>
Sender: "Abdullah YILDIZ" <abdullah.yildiz@enova.com.tr>
Subject: Publish Profile Failed
Date: Mon, 12 Jul 2004 10:19:20 -0700
Lines: 16
Message-ID: <2b5c301c46834$5e4eb0e0$a401280a@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcRoNF5O4ZbxmdCJQZ2UA4YuypKk1Q==
Newsgroups: microsoft.public.commerceserver.userprofilemgt
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.commerceserver.userprofilemgt:3040
NNTP-Posting-Host: tk2msftngxa12.phx.gbl 10.40.1.164
X-Tomcat-NG: microsoft.public.commerceserver.userprofilemgt

I currently developping a project on W2003, CS2002 with
SP2, CMS2002 SP1a and MSIB 2.5.
I have a problem with profile publishing.
I have created a site term and associated with an user
object property. Then I tried to publish profile but I had
following error message.
Publish of Profiles Failed:

The refresh page on the site could not be accessed. Yhe
returned error is: 404 Not Found

I couldnt get progress in development because of this
error. I need your guidance urgently.

Thanks in Advance







[ Post a follow-up to this message ]



    RE: Publish Profile Failed  
David Hargis [MSFT]


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
07-12-04 10:51 PM

When you try to publish the profiles, the application is attempting to call
RefreshApp.asp on your CS web site.  Can you confirm that your bizdesk site
can access pages on the application web site?

You can also manually edit the bizdesk asp page to output the URL that is
being used to connect to RefreshApp.asp.  The page is
Profiles\RefreshProfileSvcAll.asp, and the url being used to connect is
stored in the variable sURLString.  I'd recommend concatenating this onto
the end of the error message:

Call SetError(L_PROFILE_DialogTitle, _
L_RefreshFailed_Text, _
sErrDetail & " URL = " & sURLString, ERROR_ICON_CRITICAL)

My guess is that this URL is incorrect or not accessible.  This URL can be
configured through Commerce Server Manager - application properties.

Thanks,
David

--------------------
Content-Class: urn:content-classes:message
From: "Abdullah YILDIZ" <abdullah.yildiz@enova.com.tr>
Sender: "Abdullah YILDIZ" <abdullah.yildiz@enova.com.tr>
Subject: Publish Profile Failed
Date: Mon, 12 Jul 2004 10:19:20 -0700
Lines: 16
Message-ID: <2b5c301c46834$5e4eb0e0$a401280a@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcRoNF5O4ZbxmdCJQZ2UA4YuypKk1Q==
Newsgroups: microsoft.public.commerceserver.userprofilemgt
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.commerceserver.userprofilemgt:3040
NNTP-Posting-Host: tk2msftngxa12.phx.gbl 10.40.1.164
X-Tomcat-NG: microsoft.public.commerceserver.userprofilemgt

I currently developping a project on W2003, CS2002 with
SP2, CMS2002 SP1a and MSIB 2.5.
I have a problem with profile publishing.
I have created a site term and associated with an user
object property. Then I tried to publish profile but I had
following error message.
Publish of Profiles Failed:

The refresh page on the site could not be accessed. Yhe
returned error is: 404 Not Found

I couldnt get progress in development because of this
error. I need your guidance urgently.

Thanks in Advance



This posting is provided "AS IS" with no warranties, and confers no rights.

EBusiness Server Team





[ Post a follow-up to this message ]



    RE: Publish Profile Failed  
Abdullah YILDIZ


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
07-13-04 07:48 AM

Thanks for your quick response,
My URL is incorrect because I use host header name at my
commerce site.

the configuration of my application is for example:
Site Name: www.example.com
Application Name: /
Web Server: Ebiz

So in the error message I have this:

The refresh page on the site could not be accesses. The
returned error is: 404 Not Found
URL= http://Ebiz:80///RefreshApp.asp?
bNeedRefresh=True&sIndex=1


It normally must used the web site name not the web server
name and there shouldn't be 3 slashes after 'Ebiz:80'.

The correct URL must be :
http://www.example.com:80/RefreshApp.asp?
bNeedRefresh=True&sIndex=1

I need your guidance again. I think my setup parameters
could be wrong.


Thanks in advance



>-----Original Message-----
>When you try to publish the profiles, the application is
attempting to call
>RefreshApp.asp on your CS web site.  Can you confirm that
your bizdesk site
>can access pages on the application web site?
>
>You can also manually edit the bizdesk asp page to output
the URL that is
>being used to connect to RefreshApp.asp.  The page is
>Profiles\RefreshProfileSvcAll.asp, and the url being used
to connect is
>stored in the variable sURLString.  I'd recommend
concatenating this onto
>the end of the error message:
>
>			Call SetError
(L_PROFILE_DialogTitle, _
>
L_RefreshFailed_Text, _
>
sErrDetail & " URL = " & sURLString,
ERROR_ICON_CRITICAL)
>
>My guess is that this URL is incorrect or not
accessible.  This URL can be
>configured through Commerce Server Manager - application
properties.
>
>Thanks,
>David
>
>--------------------
>Content-Class: urn:content-classes:message
>From: "Abdullah YILDIZ" <abdullah.yildiz@enova.com.tr>
>Sender: "Abdullah YILDIZ" <abdullah.yildiz@enova.com.tr>
>Subject: Publish Profile Failed
>Date: Mon, 12 Jul 2004 10:19:20 -0700
>Lines: 16
>Message-ID: <2b5c301c46834$5e4eb0e0$a401280a@phx.gbl>
>MIME-Version: 1.0
>Content-Type: text/plain;
>	charset="iso-8859-1"
>Content-Transfer-Encoding: 7bit
>X-Newsreader: Microsoft CDO for Windows 2000
>X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
>Thread-Index: AcRoNF5O4ZbxmdCJQZ2UA4YuypKk1Q==
>Newsgroups: microsoft.public.commerceserver.userprofilemgt
>Path: cpmsftngxa06.phx.gbl
>Xref: cpmsftngxa06.phx.gbl
>microsoft.public.commerceserver.userprofilemgt:3040
>NNTP-Posting-Host: tk2msftngxa12.phx.gbl 10.40.1.164
>X-Tomcat-NG:
microsoft.public.commerceserver.userprofilemgt
>
>I currently developping a project on W2003, CS2002 with
>SP2, CMS2002 SP1a and MSIB 2.5.
>I have a problem with profile publishing.
>I have created a site term and associated with an user
>object property. Then I tried to publish profile but I
had
>following error message.
>Publish of Profiles Failed:
>
>The refresh page on the site could not be accessed. Yhe
>returned error is: 404 Not Found
>
>I couldnt get progress in development because of this
>error. I need your guidance urgently.
>
>Thanks in Advance
>
>
>
>This posting is provided "AS IS" with no warranties, and
confers no rights.
>
>EBusiness Server Team





[ Post a follow-up to this message ]



    RE: Publish Profile Failed  
David Hargis [MSFT]


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
07-13-04 10:51 PM


I think that your best course of action will be to change the URL that is
used by BizDesk.  It's actually a very simple code change.

Just open up RefreshProfileSvcAll.asp again and look for the sub
SelectRefresh.  Change the places that refreshform.sWebPath.value are set
to use the site instead of webserver.  Try this code:

refreshform.sWebPath.value = "http://" &
oSelection.SelectSingleNode(".//site").text & ":" & sPort & "/" &
"RefreshApp.asp"

You should also change the application name in your configuration to ""
(empty string) instead of "/".  This is what is causing that extr "/" to
show up in the URL of.

If that does not work, you may be able to change your host file to properly
point the Ebiz webserver name to the IP you need.  I don't have any setup
to test whether this works, however.  I'd recommend changing the source
code rather than changing your host file.

Hope this helps,
David


--------------------
Content-Class: urn:content-classes:message
From: "Abdullah YILDIZ" <abdullah.yildiz@enova.com.tr>
Sender: "Abdullah YILDIZ" <abdullah.yildiz@enova.com.tr>
References: <2b5c301c46834$5e4eb0e0$a401280a@phx.gbl>
<K2W004EaEHA.3272@cpmsftngxa06.phx.gbl>
Subject: RE: Publish Profile Failed
Date: Tue, 13 Jul 2004 01:12:27 -0700
Lines: 110
Message-ID: <2bb8f01c468b1$22a0a530$a401280a@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcRosSKeK3n8fZIwQCezSpvDQLPuDg==
Newsgroups: microsoft.public.commerceserver.userprofilemgt
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.commerceserver.userprofilemgt:3043
NNTP-Posting-Host: tk2msftngxa12.phx.gbl 10.40.1.164
X-Tomcat-NG: microsoft.public.commerceserver.userprofilemgt

Thanks for your quick response,
My URL is incorrect because I use host header name at my
commerce site.

the configuration of my application is for example:
Site Name: www.example.com
Application Name: /
Web Server: Ebiz

So in the error message I have this:

The refresh page on the site could not be accesses. The
returned error is: 404 Not Found
URL= http://Ebiz:80///RefreshApp.asp?
bNeedRefresh=True&sIndex=1


It normally must used the web site name not the web server
name and there shouldn't be 3 slashes after 'Ebiz:80'.

The correct URL must be :
http://www.example.com:80/RefreshApp.asp?
bNeedRefresh=True&sIndex=1

I need your guidance again. I think my setup parameters
could be wrong.


Thanks in advance



>-----Original Message-----
>When you try to publish the profiles, the application is
attempting to call
>RefreshApp.asp on your CS web site.  Can you confirm that
your bizdesk site
>can access pages on the application web site?
>
>You can also manually edit the bizdesk asp page to output
the URL that is
>being used to connect to RefreshApp.asp.  The page is
>Profiles\RefreshProfileSvcAll.asp, and the url being used
to connect is
>stored in the variable sURLString.  I'd recommend
concatenating this onto
>the end of the error message:
>
>			Call SetError
(L_PROFILE_DialogTitle, _
>
L_RefreshFailed_Text, _
>
sErrDetail & " URL = " & sURLString,
ERROR_ICON_CRITICAL)
>
>My guess is that this URL is incorrect or not
accessible.  This URL can be
>configured through Commerce Server Manager - application
properties.
>
>Thanks,
>David
>
>--------------------
>Content-Class: urn:content-classes:message
>From: "Abdullah YILDIZ" <abdullah.yildiz@enova.com.tr>
>Sender: "Abdullah YILDIZ" <abdullah.yildiz@enova.com.tr>
>Subject: Publish Profile Failed
>Date: Mon, 12 Jul 2004 10:19:20 -0700
>Lines: 16
>Message-ID: <2b5c301c46834$5e4eb0e0$a401280a@phx.gbl>
>MIME-Version: 1.0
>Content-Type: text/plain;
>	charset="iso-8859-1"
>Content-Transfer-Encoding: 7bit
>X-Newsreader: Microsoft CDO for Windows 2000
>X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
>Thread-Index: AcRoNF5O4ZbxmdCJQZ2UA4YuypKk1Q==
>Newsgroups: microsoft.public.commerceserver.userprofilemgt
>Path: cpmsftngxa06.phx.gbl
>Xref: cpmsftngxa06.phx.gbl
>microsoft.public.commerceserver.userprofilemgt:3040
>NNTP-Posting-Host: tk2msftngxa12.phx.gbl 10.40.1.164
>X-Tomcat-NG:
microsoft.public.commerceserver.userprofilemgt
>
>I currently developping a project on W2003, CS2002 with
>SP2, CMS2002 SP1a and MSIB 2.5.
>I have a problem with profile publishing.
>I have created a site term and associated with an user
>object property. Then I tried to publish profile but I
had
>following error message.
>Publish of Profiles Failed:
>
>The refresh page on the site could not be accessed. Yhe
>returned error is: 404 Not Found
>
>I couldnt get progress in development because of this
>error. I need your guidance urgently.
>
>Thanks in Advance
>
>
>
>This posting is provided "AS IS" with no warranties, and
confers no rights.
>
>EBusiness Server Team


This posting is provided "AS IS" with no warranties, and confers no rights.

EBusiness Server Team





[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 10:16 AM.      Post New Thread    Post A Reply      
  Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 
Medical and Health forum | Computer Games Reviews | Graphics design forum

Back To The Top
Home | Usercp | Faq | Register