Streaming result of cfpdf merge to browser, NOT file on server

Hi guys, as my title suggests...I have a PDF document that was created with cfdocument...I then have used cfpdf to merge the results of that PDF with 2 other PDF's to make a final document...my question is, how to do get this resulting PDF to open in the browser (as it can with cfdocument) instead of writing a physical PDF file on the server?  I just need the user to be able to see and print the file, not actually save it on the server itself.
Something like:
<cfdocument format="pdf" name="pdfsource">
stuff here
</cfdocument>
<cfpdf action="merge" destination="temp/test.pdf" overwrite="yes">
    <cfpdfparam source="pdfsource">
    <cfpdfparam source="includes/nlv_affidavit.pdf">
    <cfpdfparam source="includes/nlv_certapp.pdf">
</cfpdf>
So far my research has turned up nothing on this particular instance, strangely.
Thanks in advance!
T

I believe you can save the results to a variable, and then stream the variable to the browser using cfcontent.  Though this entry is on watermarking, it does use the same variable/cfcontent technique. See the last two lines of the code
http://www.coldfusionjedi.com/index.cfm/2007/7/13/ColdFusion-8-Working-with-PDFs-Part-3

Similar Messages

  • HELP! How to save resultset (NOT file) from server databse on local machine

    Our JSP web system allows our clients to be able to search data from the server-side database and then after get the resultset, they also should be able to save these data as a text file on their local machine by just a click. Of course, before they click the OK button, they should navigate the files system on their local machines and choose under which directory they want to put the file, and then provide a file name. I could NOT find a way to be able to navigate the local machine's drives.
    I know there is a standard Save As dialogue automatically launched by the browser. But my problem is: I don't need such a pumped-up Save As... dialogue which most brower will provide, because our system will have an interface which will provide the same function as the Save As guy. And this is the part that I am currently working on. Our interface will permit the client to browse their file system and then provide a filename, and then click OK to save the file. PLEASE, anybody who can help me. I know there are guys there have answers for my questions:
    1. In my JSP program, I save the resultset I get from the database as a string, and then this string should be sent through inputstream and outputstream and be saved as a text file onto the client's local machine. I know there's a lot file download topics but I am dealing with a string instead of a file, is there an inputstream accepting a string(which contains dataresultset) and output it to a file?
    2. As I already said, how to make my own Save As... dialogue?
    I really need help! I have been bothered by them for a long time. Thanks in advance!

    Well, it's hard to interpret exactly what you want to do but I'll take a stab.
    I would put the data into comma separated value (CSV) format and then stream it back to the browser using the "application/csv" content format.
    By doing this, they can either save it to their hard drive into the directory of their choice, or open it using whatever mapping they have for the CSV mime type. For most Windows machines, this is Excel (if it's loaded).

  • The merge process could not allocate memory for an operation; your system may be running low on virtual memory. Restart the Merge Agent.

    I encountered this problem on our SQL2012 and I have tried different scenarios (see below) to no avail. I have decided to give up and check if someone here has encountered this and resolved it. 
    One thing I know, it's not a memory issue. Both servers we're using has lots of memory to spare and we monitor the memory as the replication goes through it's steps. 
    I hope someone can help me on this. Thanks!
    The Error:
    The merge process could not allocate memory for an operation; your system may be running low on virtual memory. Restart the Merge Agent.
    Our Scenario
    We're using SQL Server 2012 SP1. All subscriptions are pull based.
    We're using direct Merge Replication (not FTP or web sync)
    We already have 10 active replications with larger databases. Only 1 has this issue.
    Database size is less than 5 GB
    Rebuilding the publisher is not an option.
    What have I tried?
    There is no memory problem --- we have lots to spare
    I have tried re-initialization of the database. Same problem.
    I tried deleting the database and reinitializing it. Same problem
    New snapshot. Same problem.
    I tried changing the subscriber server but still same issue. 
    MCP, MCSD, MCDBA (ANXA)

    Here is the result for the sp_configure on our subscriber. We're doing a pull on the server with the issue.
    name
    minimum
    maximum
    config_value
    run_value
    max server memory (MB)
    128
    2147483647
    2147483647
    2147483647
    In addition, I made a comparison between the working servers and the one with the issue -- there seems to be a difference in the service pack. Publisher has none but the subscriber is operating on SP1. But still strange as only 1 database is affected. 
    MCP, MCSD, MCDBA (ANXA)

  • CF 8 CFPDF "Merged" document throws 131 Error when opened in Acrobat

    We are using CF 8 on Windows Server 2003 platform.
    Any CFPDF "Merged" documents are throwing 131 Errors when opened in Acrobat
    Tried re-saving the documents on local machine and still same problem. Tried opening in multiple versions of Acrobat, same problem.
    Individual documents created are opening without issue. It is Only when these documents are merged that this error occurs.
    We do not experience this behavior in our CF 10 environment.
    We are a Big, Slow moving enterprise here so not much chance of getting our CF 10 environments promoted to meaningful production use soon.
    Found virtually nothing in HelpX and nothing online of any value regarding this issue.
    Has anyone else experienced the issue noted in the title of this discussion?
    Has anyone a work around or solution?

    I am getting the same error even in Acrobat version 8.1.3.
    Additionally, I noticed that if we click on menu ‘Advanced->Sign&Certify->Preview Document’, then we get a notification as “This document is not PDF/SigQ compliant and may display inconsistently”. On clicking  ‘View report’ on that notification, the below dialog pops up. It has errors listed as:-
    Code 4000 : Unrecognized PDF content. The document contains PDF content or custom content not supported by the current version of Acrobat.
    Code 4002: PDF content contains erros.
    However, if we sign the PDF using default adobe signature functionality and reopen that PDF, the error does NOT come and the notification also says ‘This document is PDF/SigQ compliant’.
    Can anybody please suggest what could be missing in the custom sign that we apply? Is it because of any of the missing fonts or any other resources?
    Awaiting reply!
    Regards.

  • How to get the number of records of a streaming result set

    Hi guys.
    So if it wasn't a streaming result set, I would have done this:
    {noformat}myResultSet<code class="jive-code jive-java">.last();
    {color:navy}*int*{color} numResults = </code>myResultSet<code class="jive-code jive-java">.getRow();
    </code>myResultSet<code class="jive-code jive-java">.beforeFirst();
    </code>{noformat}
    but being a streaming result set, beforeFirst() throws an exception...
    So how do you get the number of records in that result set? I wanna avoid an extra count(*) query, so I would appreciate other solutions than that.

    JoachimSauer wrote:
    vanwil wrote:
    you see, for now I just use a count(*) query to get the number of records, but that's adding a lot of extra waiting time...Iterating over the result twice will surely be slower then doing the count(*).great! so what I got now is actually the fastest way there is... awesome...
    If you get an exception, then you surely have a stack trace. That should tell you what happens, or at least where.com.mysql.jdbc.MysqlIO.checkForOutstandingStreamingData(MysqlIO.java:2066)
    Why do you need to know the number of elements beforehand, anyway?I need to know the number of elements because the incoming data goes into a table. Now of course, I could use ArrayList<String[]> or something, but wouldn't that require more memory resources than Object[][] ?
    No one can tell you that, at least not without more information (say, the stack trace for example).Here's the exception message:
    java.sql.SQLException: Streaming result set com.mysql.jdbc.RowDataDynamic@10c0ef2 is still active. Only one streaming result set may be open and in use per-connection. Ensure that you have called .close() on  any active result sets before attempting more queries.

  • AMF connection working on browser, not in stand alone player

    Greetings,
    I'm trying to communicate my SWF file with PHP using Zend_Amf. I compile the flash side using Flex SDK 4.
    Whenever I try to run the swf using the stand alone player (the projector), I always get a NetConnection.Call.BadVersion event. However, when running exactly the same file thorught the player of the browser (even not thoguht a server, just using the file:// kind of address), everything works OK, so I know my code is not completely wrong.
    I thought this could be related with the security sandbox. However, I added the folder where my swf file is to the global trusted folder; and actually made sure that Security.sandboxType returns "localTrusted". How ever, that didn't fix anything.
    So I'm out of ideas. Any suggestion on where to look next?

    Here's my code, in case its needed (it's a pretty straightforward hello world example):
    PHP SIDE:
    $a = new Amf_Model_Test();
    $server = new Zend_Amf_Server();
    $server->setClass('Amf_Model_Test');
    echo $server->handle();
    class Amf_Model_Test
    * return string               
    public function greet()
        return "hello";
    AS SIDE:
    public class main extends Sprite
    private var _resp: Responder;
    private var _nc: NetConnection;
    private var tf: TextField;
    private var _gateway: String;
    public function main()
    tf = new TextField();
    tf.width = 500;
    tf.border = true;
    tf.borderColor = 0x0000FF;
    addChild(tf);
          _gateway = 'http://cms.loc/amf';
    _resp = new Responder(onResult, onFault);
    _nc = new NetConnection();
    _nc.connect(_gateway);
    _nc.client = this;
    _nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
    _nc.call("Amf_Model_Test.greet", _resp);
    private function onNetStatus(event: NetStatusEvent): void
    trace(event.info['code']);
    tf.text = "Status = "+event.info['code'];
    private function onFault(result: Object): void
    tf.text = "Fault = " + String(result);
    private function onResult(result: Object): void
          tf.text = "Result = " + String(result);
    In my browser, I get "Result = hello", as expected. In the stand alone player (which is exactly the same version) I get "Status = NetConnection.Call.BadVersion".

  • Help with streaming result sets and prepared statements

    hi all
    I create a callable statement that is capable of streaming.
    statement = myConn2.prepareCall("{call graphProc(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}",java.sql.ResultSet.TYPE_FORWARD_ONLY,
    java.sql.ResultSet.CONCUR_READ_ONLY);
    statementOne.setFetchSize(Integer.MIN_VALUE);
    the class that contains the query is instantiated 6 times the first class streams the results beautifully and then when the second
    rs = DatabaseConnect.statementOne.executeQuery();
    is executed I get the following error
    java.sql.SQLException: Can not use streaming results with multiple result statements
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:910)
    at com.mysql.jdbc.MysqlIO.readAllResults(MysqlIO.java:1370)
    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1688)
    at com.mysql.jdbc.Connection.execSQL(Connection.java:3031)
    at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:943)
    at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1049)
    at com.mysql.jdbc.CallableStatement.executeQuery(CallableStatement.java:589)
    the 6 instances are not threaded and the result set is closed before the next query executes is there a solution to this problem it would be greatly appreciated
    thanks a lot
    Brian

    Database resources should have the narrowed scope
    possible. I don't think it's a good idea to use a
    ResultSet in a UI to generate a graph. Load the data
    into an object or data structure inside the method
    that's doing the query and close the ResultSet in a
    finally block. Use the data structure to generate
    the graph.
    It's an example of MVC and layering.
    Ok that is my bad for not elaborating on the finer points sorry, the results are not directly streamed into the graphs from the result set. and are processed in another object and then plotted from there.
    with regards to your statement in the beginning I would like to ask if you think it at least a viable option to create six connections. with that said would you be able to give estimated users using the six connections under full usage.
    just a few thoughts that I want to
    bounce off you if you don't mind. Closing the
    statement would defeat the object of of having a
    callable statement How so? I don't agree with that.
    %again I apologise I assumed that since callable statements inherit from prepared statements that they would have the pre compiled sql statement functionality of prepared statements,well If you consider in the example I'm about to give maybe you will see my point at least with regards to this.
    The statement that I create uses a connection and is created statically at the start of the program, every time I make a call the same statement and thus connection is used, creating a new connection each time takes up time and resources. and as you know every second counts
    thanks for your thoughts
    Brian.

  • Merge replication is not happening in one way

    Hi ALl,
    We have merge replications setup. it is not working in one direction. I enabled the logging to output fine but no use i could not find anything. The pings are fine no drops. Telnet is working. no load on server. i contacted network teams there is no issues.
    What could be the issue?
    The merge process could not retrieve column information for table 'dbo.MAINT'. Verify that you have sufficient privileges on the database and retry the operation.The merge process could not enumerate changes at the 'Subscriber'. When troubleshooting, restart
    the synchronization with verbose history logging and specify an output file to which to write.
    But the agent subsystem account and replication has sysadmin permission no possibility of password issue.
    Snapshot folder and file not be used here. 
    Select * from MSmerge_history
    order by time Desc
    Query result is
    Uploading data changes to the Publisher. 
    after that there is no status
    Please help Its very urgent issue

    Hi Ashwin,
    Thanks for the reply.
    PFB verbose output. there are no blocking on both publisher and suscriber.
    2015-01-27 13:07:23.493 Microsoft SQL Server Merge Agent 10.50.1600.1
    2015-01-27 13:07:23.502 Copyright (c) 2008 Microsoft Corporation
    2015-01-27 13:07:23.513 Microsoft SQL Server Replication Agent: replmerg
    2015-01-27 13:07:23.519 
    2015-01-27 13:07:23.524 The timestamps prepended to the output lines are expressed in terms of UTC time.
    2015-01-27 13:07:23.529 User-specified agent parameter values:
    -Publisher Publisher
    -PublisherDB DODA_Prod
    -Publication DODA_PUB
    -Subscriber Subsciber
    -SubscriberDB DODA
    -Distributor Publisher
    -DistributorSecurityMode 1
    -HostName West Ariel
    -Continuous
    -output E:\VerboseData\WAL\Replout.txt
    -XJOBID 0x9BBE899CE4C3FF4DB358BEDD0F7E3970
    -XJOBNAME Publisher-DODA_Prod-DODA_PUB-Subsciber-92
    -XSTEPID 2
    -XSUBSYSTEM Merge
    -XSERVER Publisher
    -XCMDLINE 0
    -XCancelEventHandle 0000000000001A34
    -XParentProcessHandle 0000000000002708
    2015-01-27 13:07:23.619 Percent Complete: 0
    2015-01-27 13:07:23.623 Connecting to Distributor 'Publisher'
    2015-01-27 13:07:23.627 Connecting to OLE DB Distributor at datasource: 'Publisher', location: '', catalog: '', providerstring: '' using provider 'SQLNCLI10'
    2015-01-27 13:07:23.715 OLE DB Distributor: Publisher
    DBMS: Microsoft SQL Server
    Version: 10.50.1600
    catalog name: 
    user name: dbo
    API conformance: 0
    SQL conformance: 0
    transaction capable: 1
    read only: F
    identifier quote char: "
    non_nullable_columns: 0
    owner usage: 15
    max table name len: 128
    max column name len: 128
    need long data len: 
    max columns in table: 1000
    max columns in index: 16
    max char literal len: 131072
    max statement len: 131072
    max row size: 131072
    2015-01-27 13:07:23.722 OLE DB Distributor 'Publisher': {call sp_MSgetversion }
    2015-01-27 13:07:23.738 OLE DB Distributor 'Publisher': {call sp_helpdistpublisher (N'Publisher') }
    2015-01-27 13:07:23.755 OLE DB Distributor 'Publisher': {call sp_MShelp_repl_agent (N'Publisher', N'DODA_Prod', N'DODA_PUB', N'Subsciber', N'DODA', 1)}
    2015-01-27 13:07:23.776 OLE DB Distributor 'Publisher': select datasource, srvid from master..sysservers where upper(srvname) = upper(N'Publisher')
    2015-01-27 13:07:23.781 OLE DB Distributor 'Publisher': {call sp_MShelp_merge_agentid (0,N'DODA_Prod',N'DODA_PUB',null,N'DODA',90,N'Subsciber')}
    2015-01-27 13:07:23.788 OLE DB Distributor 'Publisher': {call sp_MShelp_profile (92, 4, N'')}
    2015-01-27 13:07:23.794 Percent Complete: 0
    2015-01-27 13:07:23.794 Connecting to OLE DB Publisher at datasource: 'Publisher', location: '', catalog: 'DODA_Prod', providerstring: '' using provider 'SQLNCLI10'
    2015-01-27 13:07:23.796 Initializing
    2015-01-27 13:07:23.806 OLE DB Distributor 'Publisher': {call sys.sp_MSadd_merge_history90 (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    2015-01-27 13:07:23.812 OLE DB Publisher: Publisher
    DBMS: Microsoft SQL Server
    Version: 10.50.1600
    catalog name: DODA_Prod
    user name: dbo
    API conformance: 0
    SQL conformance: 0
    transaction capable: 1
    read only: F
    identifier quote char: "
    non_nullable_columns: 0
    owner usage: 15
    max table name len: 128
    max column name len: 128
    need long data len: 
    max columns in table: 1000
    max columns in index: 16
    max char literal len: 131072
    max statement len: 131072
    max row size: 131072
    2015-01-27 13:07:23.817 Percent Complete: 0
    2015-01-27 13:07:23.818 OLE DB Publisher 'Publisher': set nocount on declare @dbname sysname select @dbname = db_name() declare @collation nvarchar(255) select @collation = convert(nvarchar(255), databasepropertyex(@dbname, N'COLLATION')) select collationproperty(@collation,
    N'CODEPAGE') as 'CodePage', collationproperty(@collation, N'LCID') as 'LCID', collationproperty(@collation, N'COMPARISONSTYLE') as 'ComparisonStyle',cast(case when convert (int,databasepropertyex (@dbname,'comparisonstyle')) & 0x1 = 0x1 then 0 else 1 end
    as bit) as DB_CaseSensitive,cast(case when convert (int,serverproperty ('comparisonstyle')) & 0x1 = 0x1 then 0 else 1 end as bit) as Server_CaseSensitive set nocount off
    2015-01-27 13:07:23.822 Connecting to Publisher 'Publisher'
    2015-01-27 13:07:23.832 OLE DB Publisher 'Publisher': {call sp_MSgetversion }
    2015-01-27 13:07:23.835 OLE DB Distributor 'Publisher': {call sys.sp_MSadd_merge_history90 (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    2015-01-27 13:07:23.846 Connecting to OLE DB Publisher at datasource: 'Publisher', location: '', catalog: 'DODA_Prod', providerstring: '' using provider 'SQLNCLI10'
    2015-01-27 13:07:23.860 OLE DB Publisher: Publisher
    DBMS: Microsoft SQL Server
    Version: 10.50.1600
    catalog name: DODA_Prod
    user name: dbo
    API conformance: 0
    SQL conformance: 0
    transaction capable: 1
    read only: F
    identifier quote char: "
    non_nullable_columns: 0
    owner usage: 15
    max table name len: 128
    max column name len: 128
    need long data len: 
    max columns in table: 1000
    max columns in index: 16
    max char literal len: 131072
    max statement len: 131072
    max row size: 131072
    2015-01-27 13:07:23.870 OLE DB Distributor 'Publisher': {call sp_MShelp_repl_agent (N'Publisher', N'DODA_Prod', N'DODA_PUB', N'Subsciber', N'DODA', 1)}
    2015-01-27 13:07:23.878 Connecting to OLE DB Subscriber at datasource: 'Subsciber', location: '', catalog: 'DODA', providerstring: '' using provider 'SQLNCLI10'
    2015-01-27 13:07:29.240 OLE DB Subscriber: Subsciber
    DBMS: Microsoft SQL Server
    Version: 10.00.1600
    catalog name: DODA
    user name: dbo
    API conformance: 0
    SQL conformance: 0
    transaction capable: 1
    read only: F
    identifier quote char: "
    non_nullable_columns: 0
    owner usage: 15
    max table name len: 128
    max column name len: 128
    need long data len: 
    max columns in table: 1000
    max columns in index: 16
    max char literal len: 131072
    max statement len: 131072
    max row size: 131072
    2015-01-27 13:07:32.330 OLE DB Subscriber 'Subsciber': {call sp_MSgetversion }
    2015-01-27 13:07:33.910 OLE DB Subscriber 'Subsciber': set nocount on declare @dbname sysname select @dbname = db_name() declare @collation nvarchar(255) select @collation = convert(nvarchar(255), databasepropertyex(@dbname, N'COLLATION')) select collationproperty(@collation,
    N'CODEPAGE') as 'CodePage', collationproperty(@collation, N'LCID') as 'LCID', collationproperty(@collation, N'COMPARISONSTYLE') as 'ComparisonStyle',cast(case when convert (int,databasepropertyex (@dbname,'comparisonstyle')) & 0x1 = 0x1 then 0 else 1 end
    as bit) as DB_CaseSensitive,cast(case when convert (int,serverproperty ('comparisonstyle')) & 0x1 = 0x1 then 0 else 1 end as bit) as Server_CaseSensitive set nocount off
    2015-01-27 13:07:34.687 Percent Complete: 0
    2015-01-27 13:07:34.687 OLE DB Subscriber 'Subsciber': {call sys.sp_MSadd_merge_history90 (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    2015-01-27 13:07:34.690 Connecting to Subscriber 'Subsciber'
    2015-01-27 13:07:34.697 OLE DB Distributor 'Publisher': {call sys.sp_MSadd_merge_history90 (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    2015-01-27 13:07:35.730 Percent Complete: 0
    2015-01-27 13:07:35.730 OLE DB Subscriber 'Subsciber': {call sys.sp_MSadd_merge_history90 (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    2015-01-27 13:07:35.736 Retrieving publication information
    2015-01-27 13:07:35.744 OLE DB Distributor 'Publisher': {call sys.sp_MSadd_merge_history90 (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    2015-01-27 13:07:36.475 Percent Complete: 0
    2015-01-27 13:07:36.484 Retrieving subscription information.
    2015-01-27 13:07:36.490 OLE DB Distributor 'Publisher': {call sys.sp_MSadd_merge_history90 (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    2015-01-27 13:08:03.441 OLE DB Subscriber 'Subsciber': {call sys.sp_MSadd_merge_history90 (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    2015-01-27 13:08:04.265 Percent Complete: 0
    2015-01-27 13:08:04.269 Uploading data changes to the Publisher
    2015-01-27 13:08:04.278 OLE DB Distributor 'Publisher': {call sys.sp_MSadd_merge_history90 (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    2015-01-27 13:08:11.122 Connecting to OLE DB Subscriber at datasource: 'Subsciber', location: '', catalog: 'DODA', providerstring: '' using provider 'SQLNCLI10'
    2015-01-27 13:08:15.591 OLE DB Subscriber: Subsciber
    DBMS: Microsoft SQL Server
    Version: 10.00.1600
    catalog name: DODA
    user name: dbo
    API conformance: 0
    SQL conformance: 0
    transaction capable: 1
    read only: F
    identifier quote char: "
    non_nullable_columns: 0
    owner usage: 15
    max table name len: 128
    max column name len: 128
    need long data len: 
    max columns in table: 1000
    max columns in index: 16
    max char literal len: 131072
    max statement len: 131072
    max row size: 131072
    2015-01-27 13:08:18.670 Connecting to OLE DB Publisher at datasource: 'Publisher', location: '', catalog: 'DODA_Prod', providerstring: '' using provider 'SQLNCLI10'
    2015-01-27 13:08:18.690 OLE DB Publisher: Publisher
    DBMS: Microsoft SQL Server
    Version: 10.50.1600
    catalog name: DODA_Prod
    user name: dbo
    API conformance: 0
    SQL conformance: 0
    transaction capable: 1
    read only: F
    identifier quote char: "
    non_nullable_columns: 0
    owner usage: 15
    max table name len: 128
    max column name len: 128
    need long data len: 
    max columns in table: 1000
    max columns in index: 16
    max char literal len: 131072
    max statement len: 131072
    max row size: 131072
    2015-01-27 13:08:18.697 Connecting to OLE DB Subscriber at datasource: 'Subsciber', location: '', catalog: 'DODA', providerstring: '' using provider 'SQLNCLI10'
    2015-01-27 13:08:23.111 OLE DB Subscriber: Subsciber
    DBMS: Microsoft SQL Server
    Version: 10.00.1600
    catalog name: DODA
    user name: dbo
    API conformance: 0
    SQL conformance: 0
    transaction capable: 1
    read only: F
    identifier quote char: "
    non_nullable_columns: 0
    owner usage: 15
    max table name len: 128
    max column name len: 128
    need long data len: 
    max columns in table: 1000
    max columns in index: 16
    max char literal len: 131072
    max statement len: 131072
    max row size: 131072
    2015-01-27 13:08:26.124 Connecting to OLE DB Publisher at datasource: 'Publisher', location: '', catalog: 'DODA_Prod', providerstring: '' using provider 'SQLNCLI10'
    2015-01-27 13:08:26.141 OLE DB Publisher: Publisher
    DBMS: Microsoft SQL Server
    Version: 10.50.1600
    catalog name: DODA_Prod
    user name: dbo
    API conformance: 0
    SQL conformance: 0
    transaction capable: 1
    read only: F
    identifier quote char: "
    non_nullable_columns: 0
    owner usage: 15
    max table name len: 128
    max column name len: 128
    need long data len: 
    max columns in table: 1000
    max columns in index: 16
    max char literal len: 131072
    max statement len: 131072
    max row size: 131072
    2015-01-27 13:39:38.053 The merge process could not retrieve column information for table 'dbo.MAINT_STOCK_COSTS'. Verify that you have sufficient privileges on the database and retry the operation.The merge process could not enumerate changes at the 'Subscriber'.
    When troubleshooting, restart the synchronization with verbose history logging and specify an output file to which to write.
    2015-01-27 13:39:38.053 
    2015-01-27 13:39:38.078 OLE DB Subscriber 'Subsciber': {call sys.sp_MSadd_merge_history90 (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    2015-01-27 13:39:39.119 Percent Complete: 0
    2015-01-27 13:39:39.133 No data needed to be merged.
    2015-01-27 13:39:39.138 The process was cancelled.
    2015-01-27 13:39:39.146 OLE DB Subscriber 'Subsciber': {call sys.sp_MSadd_merge_history90 (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    2015-01-27 13:39:39.902 Percent Complete: 0
    2015-01-27 13:39:39.910 The process was successfully stopped.
    2015-01-27 13:39:39.915 The process was cancelled.
    2015-01-27 13:39:39.926 The Merge Agent was unable to update information about the last synchronization at the Subscriber. Ensure that the subscription exists at the Subscriber, and restart the Merge Agent. 
    2015-01-27 13:39:39.931 Percent Complete: 0
    2015-01-27 13:39:39.935 Category:NULL
    Source:  Merge Replication Provider
    Number:  -2147200999
    Message: The process was successfully stopped.
    2015-01-27 13:39:39.939 Percent Complete: 0
    2015-01-27 13:39:39.943 Category:NULL
    Source:  Merge Process
    Number:  -2147198718
    Message: The process was cancelled.
    2015-01-27 13:39:39.948 The Merge Agent was unable to update information about the last synchronization at the Subscriber. Ensure that the subscription exists at the Subscriber, and restart the Merge Agent. 
    2015-01-27 13:39:39.955 The merge process was unable to update last synchronization information at the Publisher.
    2015-01-27 13:39:39.962 OLE DB Subscriber 'Subsciber': {call sys.sp_MSadd_merge_history90 (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}
    2015-01-27 13:39:40.738 [100%] Percent Complete: 100
    2015-01-27 13:39:40.744 The process was successfully stopped.
    2015-01-27 13:39:40.750 The process was cancelled.
    2015-01-27 13:39:40.756 Disconnecting from OLE DB Subscriber 'Subsciber'
    2015-01-27 13:39:40.762 Disconnecting from OLE DB Subscriber 'Subsciber'
    2015-01-27 13:39:40.768 Disconnecting from OLE DB Publisher 'Publisher'
    2015-01-27 13:39:40.773 Disconnecting from OLE DB Publisher 'Publisher'
    2015-01-27 13:39:40.778 Disconnecting from OLE DB Subscriber 'Subsciber'
    2015-01-27 13:39:40.783 Disconnecting from OLE DB Subscriber 'Subsciber'
    2015-01-27 13:39:40.787 Disconnecting from OLE DB Subscriber 'Subsciber'
    2015-01-27 13:39:40.791 Disconnecting from OLE DB Subscriber 'Subsciber'
    2015-01-27 13:39:40.795 Disconnecting from OLE DB Publisher 'Publisher'
    2015-01-27 13:39:40.799 Disconnecting from OLE DB Publisher 'Publisher'
    2015-01-27 13:39:40.805 Disconnecting from OLE DB Publisher 'Publisher'
    2015-01-27 13:39:40.810 Disconnecting from OLE DB Publisher 'Publisher'
    2015-01-27 13:39:40.814 Disconnecting from OLE DB Publisher 'Publisher'
    2015-01-27 13:39:40.819 Disconnecting from OLE DB Publisher 'Publisher'
    2015-01-27 13:39:40.823 Disconnecting from OLE DB Distributor 'Publisher'
    2015-01-27 13:39:40.829 Disconnecting from OLE DB Distributor 'Publisher'

  • How to live stream vp6 from a browser/swf file.

    Hello,
    Currently we have a swf file application that runs in a browser and takes the live video stream from the camera on the computer and streams a live sorenson spark stream to the fms 3.5 server.
    Question is:
    How to live stream vp6 from the browser/swf file on the camera computer, instead of the sorenson spark. (We seem to be stuck only on sorenson spark).
    Thank you.

    Hi Vince,
    Jay has explained it about as best as can be done.  What you have now is a
    SWF that lives in a browser.  With Flix, you can eliminate the SWF
    altogether.  Or if there is logic that still will require the SWF, then both
    Flix and the SWF will live in the browser at the same time (and can talk via
    ExternalInterface).
    fyi .. When using Flix, if Flix does not eliminate the SWF altogether, you
    will remove from your SWF all logic for acquiring Camera and Microphone.  As
    Jay has reiterated, Flix Publisher will now be doing all that.
    If your SWF includes logic other than video/audio, e.g. maybe text chat,
    then you may need logic in your SSAS to associated the video from Flix with
    anything else from the SWF since each will have its own NetConnection to the
    FMIS application.
    In case it might help, following is On2's heavily commented JavaScript for
    invoking Flix Publisher:
    http://publisher.on2.com/fp_doc/3-1-5-5/samples/scripts/flixpub_conf.js
    And the full docs for the Flix SDK are here:
    http://publisher.on2.com/fp_doc/3-1-5-5/index.html
                    hth,
                    g

  • Lose interactivity (fillin fields) on CFPDF MERGE

    Hi guys, doing a standard CFPDF merge using something like:
    <cfpdf action="merge" name="builtpdf">
    <cfpdfparam source="pdfsource">
            <cfpdfparam source="includes/nlv_affidavit.pdf">
            <cfpdfparam source="includes/mil_regfee_exemption.pdf">
            <cfpdfparam source="includes/mil_regfee_exemption_txt.pdf">
            <cfpdfparam source="includes/nlv_certapp.pdf">
            <cfpdfparam source="includes/mil_checklist.pdf">
      </cfpdf>
    <cfcontent type="application/pdf" reset="true" variable="#toBinary(builtpdf)#">
    This is working fine, taking the content in "pdfsource" and adding the pages in correct order.
    However, I noticed that in my fillable PDF's (3 or them are), 2 have lost their interactivity, and depending on if I change the order (moving a NON fillable PDF to the bottom or not), will change which ones lose interactivity.  They all have proper interactivity if you open the actual files on the server.
    Any ideas?  None of the files were created with CFPDF "write" and flattened.
    Thanks in advance!
    T

    I should have been more clear. What I meant was I do not know if it is intended to merge interactive forms and leave them in an iteractive state, because the documentation also says "Note: ColdFusion automatically flattens form fields when you use the merge action of the cfpdf tag.", which is more consistent with the behavior you are describing.
    Though having said that, I have learned the hard way not to take the documentation as gospel ;-)   I also use iText a lot more than I do cfpdf, because it provides greater control.

  • When previewed in browser or on the server the path of my web site repeats folders. However the "href" in the html code does not show the repetition in the path.

    If someone could help me on this one, this would be great. I am creating a web site that has several departments. I have categorized and saved each department in a main folder called "departments" and a subfolder for each one. In the Dreamweaver code view the pop-up menu links seem to show up properly, but when I preview in browser or upload to server "page not found" comes up because for some reason the address changes. Some parts of the address seem to be appearing twice, sometimes the entire path will appear twice as shown below:
    http://www.graphicmechanic.com/DEKALBCOUNTY/departments/parks-and-recreation/departments/p arks-and-recreation/pr-arabiamtn-map.html
    that is incorrect and it takes me to "web page cannot be found".
    It is obviously repeating the folders (hence the "departments/parks-and-recreation" twice. The correct link is:
    http://www.graphicmechanic.com/DEKALBCOUNTY/departments/parks-and-recreation/pr-arabiamtn- map.html
    The link issues are happening in the pop-up menu. For example if you go to http://www.graphicmechanic.com/DEKALBCOUNTY/departments/parks-and-recreation/pr-arabiamtn. html and rollover the link called "Arabia Mountain" in the links to the left side of the page, then click the pop-up menu link entitled "Arabia Mountain Map" that's where the problem occurs.
    Can anyone tell me how I can fix this problem. I don't know what I should do with the code since it already appears correct in html view.
    Please help if you can...
    Thanks in advance for any possible help you can provide...

    XonoBoom wrote:
    It is obviously repeating the folders (hence the "departments/parks-and-recreation" twice. The correct link is:
    http://www.graphicmechanic.com/DEKALBCOUNTY/departments/parks-and-recreation/pr- arabiamtn-map.html
    The link issues are happening in the pop-up menu.
    This problem usually happens when the menu is either a server-side include or a library item using links relative to the document. When you reference a page at a different level of the folder hierarchy, the document-relative links no longer point to the correct destination.
    Change the links in the menu to be relative to the site root.
    A document-relative link usually looks like this:
    <a href="../products/index.html">Products</a>
    A link relative to the site root begins with a forward slash like this:
    <a href="/products/index.html">Products</a>

  • I had just put the finishing touches on my 36 minute documentatary when I got an error message that the external 1TB HD I was using to store the project had been ejected improperly (must have shaken a cord).  The result is that the project would not load

    I had just put the finishing touches on my 36 minute documentatary when I got an error message that the external 1TB HD I was using to store the project had been ejected improperly (must have shaken a cord).  The result is that the project would not load in the edit Projects window.  I can see the file in the finder window and it will launch iMovie but the file itself will not load in the projects window.
    I have contacted apple support and they tried to do a few things... to no available.
    With my limited knowledge of file structures I assume that the header file must be corrupt.
    Is there a 3rd party utility that can decompile and fix the file structure so it will load properly.  I've been working on this project since june and would hate to have to redo the whole thing again.

    I had just put the finishing touches on my 36 minute documentatary when I got an error message that the external 1TB HD I was using to store the project had been ejected improperly (must have shaken a cord).  The result is that the project would not load in the edit Projects window.  I can see the file in the finder window and it will launch iMovie but the file itself will not load in the projects window.
    I have contacted apple support and they tried to do a few things... to no available.
    With my limited knowledge of file structures I assume that the header file must be corrupt.
    Is there a 3rd party utility that can decompile and fix the file structure so it will load properly.  I've been working on this project since june and would hate to have to redo the whole thing again.

  • Creating a Windows 7 OS desktop short cut for gmail with Firefox as browser, not internet explorer

    I have an HP laptop that originally had Windows Vista Home Premium 64-bit OS. I recently upgraded to Windows 7 64-bit OS. I want to generate a desktop shortcut for gmail that uses Firefox as the browser not internet explorer (8). If I use IE 8 as the brower and enter in gmail.com, gmail opens. I can right click on that page and create a gmail desktop short cut with IE 8 as the browser. If I try the same steps using Firefox as the opened browser, I can't create a desktop short cut by right clicking...it is not an option. I can't make Firefox my default browser for everything as my work programs/shortcuts require IE. Again, how do I create a direct gmail desktop shortcut that uses Firefox as the browser, not IE 8, when IE 8 has to be the default browser?

    You could create a shortcut to open Firefox with a specific site using a command line argument.
    You can copy the shortcut that you use to open Firefox, then right-click on it and choose '''Properties'''. On the shortcut tab, you will see the target, it will look something like this:
    "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
    You can add gmail.com to this shortcut so it looks like this:
    "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" gmail.com
    For more details see http://kb.mozillazine.org/Command_line_arguments

  • I have Firefox 10.0.2. and OSX 10.6.8. and the latest PDF adobe reader, and still can not open with the browser PDF files.Can someone help,pls?Thanx

    Dear Ones,
    I have Firefox 10.0.2. and OSX 10.6.8. and the latest PDF adobe reader, and still can not open with the browser PDF files.Can someone help,pls?Thanx

    see if this is helpful : [http://support.mozilla.org/en-US/kb/Opening%20PDF%20files%20within%20Firefox Opening PDF files within Firefox]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • HT4075 when i drag the pdf file over other (in previewer) to merge it does not show green circle with plus one. what to do?

    when i drag the pdf file over other (in previewer) to merge it does not show green circle with plus one. what to do?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

Maybe you are looking for