RE: CrystalReports on sharepoint

2011-12-05 Thread Matthew Cosier
Glad I could be of assistance.

 

That developer needs to be slapped in the face with a large fish.  That
really is a laughable piece of code - I don't think I have ever seen anyone
reference the aspnet_client directly like that before.  Pretty funny J

 

Matthew Cosier

Hazaa

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Ishai Sagi
Sent: Tuesday, 6 December 2011 4:37 PM
To: ozMOSS
Subject: RE: CrystalReports on sharepoint 

 

Mate - you were 100% correct.

The code the developer had included one reference to a url:

 

var url = web.Url;

crystalReportViewer1.ToolbarImagesFolderUrl = url + 

 
"\\aspnet_client\\system_web\\2_0_50727\\CrystalReportWebFormViewer4\\images
\\toolbar
 ";

 

Needless to say, that caused the error. I am now crystalled out.

 

 

Description: Description: Description: C:\Users\Brian\Pictures\EXD
Logos\Extelligent logo no text.jpgIshai Sagi | Solutions Architect 
0488 789 786 |   is...@exd.com.au |
 www.sharepoint-tips.com |
 @ishaisagi  

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Matthew Cosier
Sent: Tuesday, 6 December 2011 4:21 PM
To: 'ozMOSS'
Subject: RE: CrystalReports on sharepoint 

 

I have experience with both.

 

Sounds as though it's changed from accepting a relative path to a full path
- I could be wrong, but perhaps you should check the report viewer with
reflector on both versions and see whether this is the case. if it is,
you'll just have to generate the URL differently.

 

That's just my first guess though, would need to see the code to really give
any better type of assessment than that.

 

Matthew Cosier

Hazaa

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Ishai Sagi
Sent: Tuesday, 6 December 2011 3:44 PM
To: ozMOSS
Subject: CrystalReports on sharepoint 

 

I am desperate. anyone has ANY experience with CrystalReports on
SharePoint2010?

Code I am trying to upgrade from 2007 (written by someone else) downloads a
rpt file from a document library to a temp folder on the server, then loads
it, gives it the current parameters and then feeds it to a reportviewer
object. This is where I get a "Invalid URI: The hostname could not be
parsed." Error. Nothing in the logs, no exception thrown in the web part.
Works in 2007, but in 2010 there  is a new version of crystal report runtime
so that could explain it.

 

 

 

Description: Description: Description: C:\Users\Brian\Pictures\EXD
Logos\Extelligent logo no text.jpgIshai Sagi | Solutions Architect 
0488 789 786 | is...@exd.com.au | www.sharepoint-tips.com
  |  
@ishaisagi  

 

<><><>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: CrystalReports on sharepoint

2011-12-05 Thread Ishai Sagi
Mate - you were 100% correct.
The code the developer had included one reference to a url:

var url = web.Url;
crystalReportViewer1.ToolbarImagesFolderUrl = url +

"\\aspnet_client\\system_web\\2_0_50727\\CrystalReportWebFormViewer4\\images\\toolbar";

Needless to say, that caused the error. I am now crystalled out.


[Description: Description: Description: C:\Users\Brian\Pictures\EXD 
Logos\Extelligent logo no text.jpg]Ishai Sagi | Solutions Architect
0488 789 786 | is...@exd.com.au | 
www.sharepoint-tips.com | 
@ishaisagi

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Matthew Cosier
Sent: Tuesday, 6 December 2011 4:21 PM
To: 'ozMOSS'
Subject: RE: CrystalReports on sharepoint

I have experience with both.

Sounds as though it's changed from accepting a relative path to a full path - I 
could be wrong, but perhaps you should check the report viewer with reflector 
on both versions and see whether this is the case... if it is, you'll just have 
to generate the URL differently.

That's just my first guess though, would need to see the code to really give 
any better type of assessment than that.

Matthew Cosier
Hazaa

From: ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Ishai Sagi
Sent: Tuesday, 6 December 2011 3:44 PM
To: ozMOSS
Subject: CrystalReports on sharepoint

I am desperate. anyone has ANY experience with CrystalReports on SharePoint2010?
Code I am trying to upgrade from 2007 (written by someone else) downloads a rpt 
file from a document library to a temp folder on the server, then loads it, 
gives it the current parameters and then feeds it to a reportviewer object. 
This is where I get a "Invalid URI: The hostname could not be parsed." Error. 
Nothing in the logs, no exception thrown in the web part. Works in 2007, but in 
2010 there  is a new version of crystal report runtime so that could explain it.



[Description: Description: Description: C:\Users\Brian\Pictures\EXD 
Logos\Extelligent logo no text.jpg]Ishai Sagi | Solutions Architect
0488 789 786 | is...@exd.com.au | 
www.sharepoint-tips.com | 
@ishaisagi

<><><>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: CrystalReports on sharepoint

2011-12-05 Thread Matthew Cosier
If it's as nasty as it sounds, then a rewrite is probably the best option.
As you know, it's often best to just start fresh and salvage as much of the
business requirements as you can from the pre-existing pile of manure.

 

Talking this stuff out loud always helps. the Teddy Bear programming
methodology wins again.

 

M

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Ishai Sagi
Sent: Tuesday, 6 December 2011 4:28 PM
To: ozMOSS
Subject: RE: CrystalReports on sharepoint 

 

Ah! The plot thickens (as is my hatred to the developer who did the work for
this client). 

 

I created my own web part, added a reportviewer, and used the stupid
download code from the mentioned article to load the report - works like
magic. So it is the custom web part that was written by someone who has
never written a web part before. I think I will have to rewrite!

 

 

Description: Description: Description: C:\Users\Brian\Pictures\EXD
Logos\Extelligent logo no text.jpgIshai Sagi | Solutions Architect 
0488 789 786 |   is...@exd.com.au |
 www.sharepoint-tips.com |
 @ishaisagi  

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Ishai Sagi
Sent: Tuesday, 6 December 2011 4:25 PM
To: ozMOSS
Subject: RE: CrystalReports on sharepoint 

 

The code is basically exactly the same as
http://www.codeproject.com/KB/sharepoint/CustomCRWP2.aspx but modified to
add parameters and to load different reports when user chooses from a
dropdown.

 

I cannot see anything in the code that has any URL in it, but then again,
the article above specifies creating a stupid aspx in the root folder of the
IIS web site (WTF) and adding a httphandler to point to it (WTF) which I am
suspecting is the reason for the error. Have you done anything similar?

 

 

Description: Description: Description: C:\Users\Brian\Pictures\EXD
Logos\Extelligent logo no text.jpgIshai Sagi | Solutions Architect 
0488 789 786 |   is...@exd.com.au |
 www.sharepoint-tips.com |
 @ishaisagi  

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Matthew Cosier
Sent: Tuesday, 6 December 2011 4:21 PM
To: 'ozMOSS'
Subject: RE: CrystalReports on sharepoint 

 

I have experience with both.

 

Sounds as though it's changed from accepting a relative path to a full path
- I could be wrong, but perhaps you should check the report viewer with
reflector on both versions and see whether this is the case. if it is,
you'll just have to generate the URL differently.

 

That's just my first guess though, would need to see the code to really give
any better type of assessment than that.

 

Matthew Cosier

Hazaa

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Ishai Sagi
Sent: Tuesday, 6 December 2011 3:44 PM
To: ozMOSS
Subject: CrystalReports on sharepoint 

 

I am desperate. anyone has ANY experience with CrystalReports on
SharePoint2010?

Code I am trying to upgrade from 2007 (written by someone else) downloads a
rpt file from a document library to a temp folder on the server, then loads
it, gives it the current parameters and then feeds it to a reportviewer
object. This is where I get a "Invalid URI: The hostname could not be
parsed." Error. Nothing in the logs, no exception thrown in the web part.
Works in 2007, but in 2010 there  is a new version of crystal report runtime
so that could explain it.

 

 

 

Description: Description: Description: C:\Users\Brian\Pictures\EXD
Logos\Extelligent logo no text.jpgIshai Sagi | Solutions Architect 
0488 789 786 | is...@exd.com.au | www.sharepoint-tips.com
  |  
@ishaisagi  

 

<><><><>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: CrystalReports on sharepoint

2011-12-05 Thread Ishai Sagi
Ah! The plot thickens (as is my hatred to the developer who did the work for 
this client).

I created my own web part, added a reportviewer, and used the stupid download 
code from the mentioned article to load the report - works like magic. So it is 
the custom web part that was written by someone who has never written a web 
part before. I think I will have to rewrite!


[Description: Description: Description: C:\Users\Brian\Pictures\EXD 
Logos\Extelligent logo no text.jpg]Ishai Sagi | Solutions Architect
0488 789 786 | is...@exd.com.au | 
www.sharepoint-tips.com | 
@ishaisagi

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ishai Sagi
Sent: Tuesday, 6 December 2011 4:25 PM
To: ozMOSS
Subject: RE: CrystalReports on sharepoint

The code is basically exactly the same as 
http://www.codeproject.com/KB/sharepoint/CustomCRWP2.aspx but modified to add 
parameters and to load different reports when user chooses from a dropdown.

I cannot see anything in the code that has any URL in it, but then again, the 
article above specifies creating a stupid aspx in the root folder of the IIS 
web site (WTF) and adding a httphandler to point to it (WTF) which I am 
suspecting is the reason for the error. Have you done anything similar?


[Description: Description: Description: C:\Users\Brian\Pictures\EXD 
Logos\Extelligent logo no text.jpg]Ishai Sagi | Solutions Architect
0488 789 786 | is...@exd.com.au | 
www.sharepoint-tips.com | 
@ishaisagi

From: ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Matthew Cosier
Sent: Tuesday, 6 December 2011 4:21 PM
To: 'ozMOSS'
Subject: RE: CrystalReports on sharepoint

I have experience with both.

Sounds as though it's changed from accepting a relative path to a full path - I 
could be wrong, but perhaps you should check the report viewer with reflector 
on both versions and see whether this is the case... if it is, you'll just have 
to generate the URL differently.

That's just my first guess though, would need to see the code to really give 
any better type of assessment than that.

Matthew Cosier
Hazaa

From: ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Ishai Sagi
Sent: Tuesday, 6 December 2011 3:44 PM
To: ozMOSS
Subject: CrystalReports on sharepoint

I am desperate. anyone has ANY experience with CrystalReports on SharePoint2010?
Code I am trying to upgrade from 2007 (written by someone else) downloads a rpt 
file from a document library to a temp folder on the server, then loads it, 
gives it the current parameters and then feeds it to a reportviewer object. 
This is where I get a "Invalid URI: The hostname could not be parsed." Error. 
Nothing in the logs, no exception thrown in the web part. Works in 2007, but in 
2010 there  is a new version of crystal report runtime so that could explain it.



[Description: Description: Description: C:\Users\Brian\Pictures\EXD 
Logos\Extelligent logo no text.jpg]Ishai Sagi | Solutions Architect
0488 789 786 | is...@exd.com.au | 
www.sharepoint-tips.com | 
@ishaisagi

<><><>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: CrystalReports on sharepoint

2011-12-05 Thread Ishai Sagi
The code is basically exactly the same as 
http://www.codeproject.com/KB/sharepoint/CustomCRWP2.aspx but modified to add 
parameters and to load different reports when user chooses from a dropdown.

I cannot see anything in the code that has any URL in it, but then again, the 
article above specifies creating a stupid aspx in the root folder of the IIS 
web site (WTF) and adding a httphandler to point to it (WTF) which I am 
suspecting is the reason for the error. Have you done anything similar?


[Description: Description: Description: C:\Users\Brian\Pictures\EXD 
Logos\Extelligent logo no text.jpg]Ishai Sagi | Solutions Architect
0488 789 786 | is...@exd.com.au | 
www.sharepoint-tips.com | 
@ishaisagi

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Matthew Cosier
Sent: Tuesday, 6 December 2011 4:21 PM
To: 'ozMOSS'
Subject: RE: CrystalReports on sharepoint

I have experience with both.

Sounds as though it's changed from accepting a relative path to a full path - I 
could be wrong, but perhaps you should check the report viewer with reflector 
on both versions and see whether this is the case... if it is, you'll just have 
to generate the URL differently.

That's just my first guess though, would need to see the code to really give 
any better type of assessment than that.

Matthew Cosier
Hazaa

From: ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Ishai Sagi
Sent: Tuesday, 6 December 2011 3:44 PM
To: ozMOSS
Subject: CrystalReports on sharepoint

I am desperate. anyone has ANY experience with CrystalReports on SharePoint2010?
Code I am trying to upgrade from 2007 (written by someone else) downloads a rpt 
file from a document library to a temp folder on the server, then loads it, 
gives it the current parameters and then feeds it to a reportviewer object. 
This is where I get a "Invalid URI: The hostname could not be parsed." Error. 
Nothing in the logs, no exception thrown in the web part. Works in 2007, but in 
2010 there  is a new version of crystal report runtime so that could explain it.



[Description: Description: Description: C:\Users\Brian\Pictures\EXD 
Logos\Extelligent logo no text.jpg]Ishai Sagi | Solutions Architect
0488 789 786 | is...@exd.com.au | 
www.sharepoint-tips.com | 
@ishaisagi

<><><>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: CrystalReports on sharepoint

2011-12-05 Thread Matthew Cosier
I have experience with both.

 

Sounds as though it's changed from accepting a relative path to a full path
- I could be wrong, but perhaps you should check the report viewer with
reflector on both versions and see whether this is the case. if it is,
you'll just have to generate the URL differently.

 

That's just my first guess though, would need to see the code to really give
any better type of assessment than that.

 

Matthew Cosier

Hazaa

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Ishai Sagi
Sent: Tuesday, 6 December 2011 3:44 PM
To: ozMOSS
Subject: CrystalReports on sharepoint 

 

I am desperate. anyone has ANY experience with CrystalReports on
SharePoint2010?

Code I am trying to upgrade from 2007 (written by someone else) downloads a
rpt file from a document library to a temp folder on the server, then loads
it, gives it the current parameters and then feeds it to a reportviewer
object. This is where I get a "Invalid URI: The hostname could not be
parsed." Error. Nothing in the logs, no exception thrown in the web part.
Works in 2007, but in 2010 there  is a new version of crystal report runtime
so that could explain it.

 

 

 

Description: Description: Description: C:\Users\Brian\Pictures\EXD
Logos\Extelligent logo no text.jpgIshai Sagi | Solutions Architect 
0488 789 786 | is...@exd.com.au | www.sharepoint-tips.com
  |  
@ishaisagi  

 

<><>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


CrystalReports on sharepoint

2011-12-05 Thread Ishai Sagi
I am desperate. anyone has ANY experience with CrystalReports on SharePoint2010?
Code I am trying to upgrade from 2007 (written by someone else) downloads a rpt 
file from a document library to a temp folder on the server, then loads it, 
gives it the current parameters and then feeds it to a reportviewer object. 
This is where I get a "Invalid URI: The hostname could not be parsed." Error. 
Nothing in the logs, no exception thrown in the web part. Works in 2007, but in 
2010 there  is a new version of crystal report runtime so that could explain it.



[Description: Description: Description: C:\Users\Brian\Pictures\EXD 
Logos\Extelligent logo no text.jpg]Ishai Sagi | Solutions Architect
0488 789 786 | is...@exd.com.au | 
www.sharepoint-tips.com | 
@ishaisagi

<><>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: VS2010 - Multi-server deployment

2011-12-05 Thread Paul Noone
Thanks mate. I couldn't agree more but we don't have the luxury of three farms 
for 2010 at this stage.

Your assumptions about the VS commands are correct. They are apparently limited 
to singel server setups.

I'll try using PS to do some post-build stuff. Thanks.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Matthew Cosier
Sent: Tuesday, 6 December 2011 2:21 PM
To: 'ozMOSS'
Subject: RE: VS2010 - Multi-server deployment

Perhaps I'm missing something here, but if you perform an Add-SPSolution, then 
an Install-SPSolution  targeted at a web application (-WebApplication) in a 
farm environment, SharePoint will take care of deploying this to all necessary 
servers in the farm (via the timer service).

You're saying that the VS 2010 deployment commands aren't doing this?  Perhaps 
IIS isn't being reset?  Have you told it in the package to perform a 
start/stop?  You can always ditch the commands and execute a custom set of PS 
scripts in the post/pre's in VS instead. (Also, I recommend using 'No 
Activation' if you can help it.).  Your scripts can then be smarter about 
things, and perform an Upgrade-SPSolution instead of Add's and retracts all the 
time, etc.

Plus, I'm not sure if everyone agrees with me on this - but using a farm for 
your dev environment is probably overkill anyway - your test environment and 
staging however, should almost certainly mimic production as much as possible.

Matthew Cosier
Hazaa

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 6 December 2011 1:46 PM
To: ozMOSS
Subject: RE: VS2010 - Multi-server deployment

What I mean is that the Deploy command does not work on multi-server farms, 
which is what my dev farm is. :)

So instead I Package and then use PS or STSADM to deploy/upgrade/retract. Very 
annoying.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ajay
Sent: Tuesday, 6 December 2011 1:32 PM
To: ozMOSS
Subject: Re: VS2010 - Multi-server deployment

What are you building.. VS 2010 SharePoint tools build a WSP.

I think it has everything devs need.. have not felt need to use any other tool 
since started using VS2010
On Tue, Dec 6, 2011 at 3:22 PM, Paul Noone 
mailto:paul.no...@ceosyd.catholic.edu.au>> 
wrote:
Does anyone know if this achievable using the standard Visual Studio UI 
commands, or do I go back to using WSPBuilder?

___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss

___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: VS2010 - Multi-server deployment

2011-12-05 Thread Matthew Cosier
Perhaps I'm missing something here, but if you perform an Add-SPSolution,
then an Install-SPSolution  targeted at a web application (-WebApplication)
in a farm environment, SharePoint will take care of deploying this to all
necessary servers in the farm (via the timer service).

 

You're saying that the VS 2010 deployment commands aren't doing this?
Perhaps IIS isn't being reset?  Have you told it in the package to perform a
start/stop?  You can always ditch the commands and execute a custom set of
PS scripts in the post/pre's in VS instead. (Also, I recommend using 'No
Activation' if you can help it.).  Your scripts can then be smarter about
things, and perform an Upgrade-SPSolution instead of Add's and retracts all
the time, etc.

 

Plus, I'm not sure if everyone agrees with me on this - but using a farm for
your dev environment is probably overkill anyway - your test environment and
staging however, should almost certainly mimic production as much as
possible. 

 

Matthew Cosier

Hazaa

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Paul Noone
Sent: Tuesday, 6 December 2011 1:46 PM
To: ozMOSS
Subject: RE: VS2010 - Multi-server deployment

 

What I mean is that the Deploy command does not work on multi-server farms,
which is what my dev farm is. J

 

So instead I Package and then use PS or STSADM to deploy/upgrade/retract.
Very annoying.

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Ajay
Sent: Tuesday, 6 December 2011 1:32 PM
To: ozMOSS
Subject: Re: VS2010 - Multi-server deployment

 

What are you building.. VS 2010 SharePoint tools build a WSP.

 

I think it has everything devs need.. have not felt need to use any other
tool since started using VS2010

On Tue, Dec 6, 2011 at 3:22 PM, Paul Noone
 wrote:

Does anyone know if this achievable using the standard Visual Studio UI
commands, or do I go back to using WSPBuilder?


___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss

 

___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: VS2010 - Multi-server deployment

2011-12-05 Thread Paul Noone
What I mean is that the Deploy command does not work on multi-server farms, 
which is what my dev farm is. :)

So instead I Package and then use PS or STSADM to deploy/upgrade/retract. Very 
annoying.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ajay
Sent: Tuesday, 6 December 2011 1:32 PM
To: ozMOSS
Subject: Re: VS2010 - Multi-server deployment

What are you building.. VS 2010 SharePoint tools build a WSP.

I think it has everything devs need.. have not felt need to use any other tool 
since started using VS2010
On Tue, Dec 6, 2011 at 3:22 PM, Paul Noone 
mailto:paul.no...@ceosyd.catholic.edu.au>> 
wrote:
Does anyone know if this achievable using the standard Visual Studio UI 
commands, or do I go back to using WSPBuilder?

___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss

___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


Re: VS2010 - Multi-server deployment

2011-12-05 Thread Ajay
What are you building.. VS 2010 SharePoint tools build a WSP.

I think it has everything devs need.. have not felt need to use any other
tool since started using VS2010

On Tue, Dec 6, 2011 at 3:22 PM, Paul Noone <
paul.no...@ceosyd.catholic.edu.au> wrote:

>  Does anyone know if this achievable using the standard Visual Studio UI
> commands, or do I go back to using WSPBuilder?
>
> ___
> ozmoss mailing list
> ozmoss@ozmoss.com
> http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss
>
>
___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


VS2010 - Multi-server deployment

2011-12-05 Thread Paul Noone
Does anyone know if this achievable using the standard Visual Studio UI 
commands, or do I go back to using WSPBuilder?
___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: SPS2010 - people search error

2011-12-05 Thread Nigel Hertz
Yeah, only occurs with people searches. My comments inline below. I'm stumped.




It only occurs with People searches? Sounds like you're not alone.


* Did it EVER work? Yes. We've only noticed the issue after going live 
yesterday.

* Are you using FAST Search? No.

* Look at the query string in the failed URL. If you convert the %20s 
to %22s do you get a result? There are no %20's, it's a space. Replacing the 
space with %20 sometimes works, sometimes doesn't. %22 seems to work all the 
time.

* If you search on "John Sm*" do you get a result? Yes, without issues.

* Are you seeing Event ID 60 on the search server? Only 1, on the WFE - 
dated 3 Dec.

* Do you have more than one Query Component in the farm? Nope.

* Have you recently patched the farm? If so, confirm that the Content 
Access account is correct and not been reverted to Network Service. No. 
double-checked, and the correct account is being used.

* Does an IIS reset on the WFE resolve it? Haven't tried yet - will do 
this tonight.


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Tuesday, 6 December 2011 8:43 AM
To: ozMOSS
Subject: RE: SPS2010 - people search error

But wouldn't that affect ALL searches?

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 6 December 2011 8:41 AM
To: ozMOSS
Subject: RE: SPS2010 - people search error

Default search results page? Looks like you've got a dataview wp on there 
somewhere.

I had this on MOSS. Can't remember what I did to resolve but it may have been 
as simple as enabling stemming on the source search web part.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Monday, 5 December 2011 12:44 PM
To: ozMOSS
Subject: SPS2010 - people search error

Hi all

Has anyone ever seen the below? It happens in people search, if I search for 
"firstname first-letter-of-surname" and it only occurs intermittently. 
Searching on firstname only works, as does searching on last surname. Any 
ideas? The UPS is running fine, and I don't see any errors...

Nigel

Internal server error exception: System.Threading.ThreadAbortException: Thread 
was being aborted.
   at 
Microsoft.SharePoint.WebPartPages.DataFormWebPart.PrepareAndPerformTransform(Boolean
 bDeferExecuteTransform)
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.PerformSelect()
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.DataBind()
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.EnsureDataBound()
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.CreateChildControls()
   at 
Microsoft.Office.Server.Search.WebControls.SearchResultsBaseWebPart.CreateChildControls()
   at 
Microsoft.Office.Server.Search.WebControls.CoreResultsWebPart.CreateChildControls()






Kind Regards,
Nigel Hertz

SharePoint Administrator & Developer, Information Technology
Stockland, Level 25, 133 Castlereagh Street, Sydney NSW 2000
T: +61 2 9035 2617  M: +61 4 0103 4605
F: +61 2 8988 2617   E:  
nigel.he...@stockland.com.au
www.stockland.com.au
Before printing this email, please consider the environment.

___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: SPS2010 - people search error

2011-12-05 Thread Paul Noone
It only occurs with People searches? Sounds like you're not alone.


* Did it EVER work?

* Are you using FAST Search?

* Look at the query string in the failed URL. If you convert the %20s 
to %22s do you get a result?

* If you search on "John Sm*" do you get a result?

* Are you seeing Event ID 60 on the search server?

* Do you have more than one Query Component in the farm?

* Have you recently patched the farm? If so, confirm that the Content 
Access account is correct and not been reverted to Network Service.

* Does an IIS reset on the WFE resolve it?


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Tuesday, 6 December 2011 8:43 AM
To: ozMOSS
Subject: RE: SPS2010 - people search error

But wouldn't that affect ALL searches?

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 6 December 2011 8:41 AM
To: ozMOSS
Subject: RE: SPS2010 - people search error

Default search results page? Looks like you've got a dataview wp on there 
somewhere.

I had this on MOSS. Can't remember what I did to resolve but it may have been 
as simple as enabling stemming on the source search web part.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Monday, 5 December 2011 12:44 PM
To: ozMOSS
Subject: SPS2010 - people search error

Hi all

Has anyone ever seen the below? It happens in people search, if I search for 
"firstname first-letter-of-surname" and it only occurs intermittently. 
Searching on firstname only works, as does searching on last surname. Any 
ideas? The UPS is running fine, and I don't see any errors...

Nigel

Internal server error exception: System.Threading.ThreadAbortException: Thread 
was being aborted.
   at 
Microsoft.SharePoint.WebPartPages.DataFormWebPart.PrepareAndPerformTransform(Boolean
 bDeferExecuteTransform)
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.PerformSelect()
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.DataBind()
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.EnsureDataBound()
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.CreateChildControls()
   at 
Microsoft.Office.Server.Search.WebControls.SearchResultsBaseWebPart.CreateChildControls()
   at 
Microsoft.Office.Server.Search.WebControls.CoreResultsWebPart.CreateChildControls()






Kind Regards,
Nigel Hertz

SharePoint Administrator & Developer, Information Technology
Stockland, Level 25, 133 Castlereagh Street, Sydney NSW 2000
T: +61 2 9035 2617  M: +61 4 0103 4605
F: +61 2 8988 2617   E:  
nigel.he...@stockland.com.au
www.stockland.com.au
Before printing this email, please consider the environment.

___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: SPS2010 - people search error

2011-12-05 Thread Nigel Hertz
But wouldn't that affect ALL searches?

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 6 December 2011 8:41 AM
To: ozMOSS
Subject: RE: SPS2010 - people search error

Default search results page? Looks like you've got a dataview wp on there 
somewhere.

I had this on MOSS. Can't remember what I did to resolve but it may have been 
as simple as enabling stemming on the source search web part.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Monday, 5 December 2011 12:44 PM
To: ozMOSS
Subject: SPS2010 - people search error

Hi all

Has anyone ever seen the below? It happens in people search, if I search for 
"firstname first-letter-of-surname" and it only occurs intermittently. 
Searching on firstname only works, as does searching on last surname. Any 
ideas? The UPS is running fine, and I don't see any errors...

Nigel

Internal server error exception: System.Threading.ThreadAbortException: Thread 
was being aborted.
   at 
Microsoft.SharePoint.WebPartPages.DataFormWebPart.PrepareAndPerformTransform(Boolean
 bDeferExecuteTransform)
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.PerformSelect()
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.DataBind()
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.EnsureDataBound()
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.CreateChildControls()
   at 
Microsoft.Office.Server.Search.WebControls.SearchResultsBaseWebPart.CreateChildControls()
   at 
Microsoft.Office.Server.Search.WebControls.CoreResultsWebPart.CreateChildControls()






Kind Regards,
Nigel Hertz

SharePoint Administrator & Developer, Information Technology
Stockland, Level 25, 133 Castlereagh Street, Sydney NSW 2000
T: +61 2 9035 2617  M: +61 4 0103 4605
F: +61 2 8988 2617   E:  
nigel.he...@stockland.com.au
www.stockland.com.au
Before printing this email, please consider the environment.

___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: SPS2010 - people search error

2011-12-05 Thread Paul Noone
Default search results page? Looks like you've got a dataview wp on there 
somewhere.

I had this on MOSS. Can't remember what I did to resolve but it may have been 
as simple as enabling stemming on the source search web part.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Monday, 5 December 2011 12:44 PM
To: ozMOSS
Subject: SPS2010 - people search error

Hi all

Has anyone ever seen the below? It happens in people search, if I search for 
"firstname first-letter-of-surname" and it only occurs intermittently. 
Searching on firstname only works, as does searching on last surname. Any 
ideas? The UPS is running fine, and I don't see any errors...

Nigel

Internal server error exception: System.Threading.ThreadAbortException: Thread 
was being aborted.
   at 
Microsoft.SharePoint.WebPartPages.DataFormWebPart.PrepareAndPerformTransform(Boolean
 bDeferExecuteTransform)
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.PerformSelect()
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.DataBind()
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.EnsureDataBound()
   at Microsoft.SharePoint.WebPartPages.DataFormWebPart.CreateChildControls()
   at 
Microsoft.Office.Server.Search.WebControls.SearchResultsBaseWebPart.CreateChildControls()
   at 
Microsoft.Office.Server.Search.WebControls.CoreResultsWebPart.CreateChildControls()






Kind Regards,
Nigel Hertz

SharePoint Administrator & Developer, Information Technology
Stockland, Level 25, 133 Castlereagh Street, Sydney NSW 2000
T: +61 2 9035 2617  M: +61 4 0103 4605
F: +61 2 8988 2617   E:  
nigel.he...@stockland.com.au
www.stockland.com.au
Before printing this email, please consider the environment.

___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: Sharepoint Foundations - Site Template Error

2011-12-05 Thread Paul Noone
Open up manifest.xml for starters but also do a full search on http: or https: 
to see if there are any absolute URLs hiding in there.

Regards,

Paul

--
Online Developer/SharePoint Administrator,
ICT Infrastructure Team
CEO Sydney

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
MacDonald, MM
Sent: Saturday, 3 December 2011 3:00 AM
To: ozMOSS
Subject: RE: Sharepoint Foundations - Site Template Error

Thank you all - I did that but it gives me an error when trying to open the 
.zip.

Eitherway I can use visual studio.  What file should I be looking at for the 
incorrect URL's?
Mike

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Thursday, December 01, 2011 8:31 PM
To: ozMOSS
Subject: RE: Sharepoint Foundations - Site Template Error

Hi Mike,

Yes, WSP, sorry. My head is still halfway in 2007. :)

You can extract it in the same manner. Change the extension to ZIP and then 
open it up and have a look. You won't be able to make and save your 
modifications this way but it may give you an idea as to what's wrong.

You would need to take Ajay's advice on that.

Regards,

Paul

--
Online Developer/SharePoint Administrator,
ICT Infrastructure Team
CEO Sydney

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
MacDonald, MM
Sent: Friday, 2 December 2011 5:18 AM
To: ozMOSS
Subject: RE: Sharepoint Foundations - Site Template Error

Hi Paul,

The side is exporting in a .wsp file since it is an actual site and not use a 
list.

Is there a way to extract that?  Also once I edit it, how do I recompile?  
Sorry, this is something I have not done before, nor do we have any other 
support here.

Thanks,

Mike

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, November 30, 2011 3:52 PM
To: ozMOSS
Subject: RE: Sharepoint Foundations - Site Template Error

Extract the stp contents and open up the manifest in your favourite text 
editor. Do a search on the source server URL. Sounds like some hard-coded URLs 
to the old site. You *can* correct these and repackage but I'd recommend 
identifying the [problem first, and then correcting it via SharePoint manager 
on the new site, if possible.

Is this a publishing site template by an chance?

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Chris Walsh
Sent: Thursday, 1 December 2011 8:19 AM
To: ozMOSS
Subject: RE: Sharepoint Foundations - Site Template Error

Best thing to do is fire up ULS Log Viewer on the server and look at the logs 
for that Correlation ID, that'll give you the right information on what the 
issue is.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
MacDonald, MM
Sent: Thursday, 1 December 2011 8:15 AM
To: ozmoss@ozmoss.com
Subject: Sharepoint Foundations - Site Template Error

All,

I have two different site collections, one a test environment and the other our 
production environment.  When I save a site in my test environment as a 
template and import it into my production environment, the new site works.  
However I cannot edit any settings.  I save the site as a template, then export 
that to my desktop, then import it into the production site collection and then 
build a new site out of that.


If I go into Site Settings on the new site I get the following error:

[cid:image001.jpg@01CCB3F2.8AE65470]

When I try to get into permissions on this site, I get this error:

[cid:image002.jpg@01CCB3F2.8AE65470]

Any help would be greatly appreciated!!!

Thanks,

Mike
<><>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss